Interface RewardType

Types of gift reward.

interface RewardType {
    exp?: number;
    items?: ItemStack[];
    level?: number;
}

Properties

Properties

exp?: number

The specific point will be given to the player.

items?: ItemStack[]

Player will get these items when the quest is finished.

level?: number

The specific level will be given to the player.