Interface QuestCondition

Conditions of a quest.

interface QuestCondition {
    item?: ItemData;
    killEntity?: EntityData;
    playerXpLevel?: number;
    playerXpPoint?: number;
    quests?: Quest[];
}

Properties

item?: ItemData

Match only typeId and min amount.

killEntity?: EntityData

The specific entity will be required to unlock the quest.

playerXpLevel?: number

The specific level will be required to unlock the quest.

playerXpPoint?: number

The specific point will be required to unlock the quest.

quests?: Quest[]

The specific quests will be required to unlock the quest.