Interface QuestChapter

Chapters of a quest book.

interface QuestChapter {
    body: string | RawMessage;
    iconPath?: string;
    quests: Quest[];
    title: string | RawMessage;
}

Properties

body: string | RawMessage

Body of the chapter.

iconPath?: string

The icon of the Chapter. It should be the path from the root of the resource pack.

texture/gui/example_pic
quests: Quest[]

Quests of the chapter.

title: string | RawMessage

Title of the chapter.