Interface QuestAward

Award of a quest.

interface QuestAward {
    exp?: number;
    item?: ItemData;
    level?: number;
}

Properties

Properties

exp?: number

The specific point will be given to the player.

item?: ItemData

Player will get these items when the quest is finished.

level?: number

The specific level will be given to the player.