Interface QuestOptions

Options of a quest.

interface QuestOptions {
    award: QuestAward;
    condition: QuestCondition;
    iconPath?: string;
    tips?: string | RawMessage;
}

Properties

award: QuestAward

It will be called when the Quest is completed by the player.

condition: QuestCondition

Condition to complete the quest.

iconPath?: string

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

texture/gui/example_pic
tips?: string | RawMessage

Tips of the quest.