From 051c3c89c87b883e06afe19723f6227de7eabc2c Mon Sep 17 00:00:00 2001 From: Tyler Renelle Date: Tue, 21 Jan 2014 13:12:58 -0800 Subject: [PATCH] feat(quests): allow quests to drop multiple items --- script/content.coffee | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/script/content.coffee b/script/content.coffee index 83f0e3c0ea..4fe4b26d69 100644 --- a/script/content.coffee +++ b/script/content.coffee @@ -536,9 +536,9 @@ api.quests = hp: 300 str: 1 # Multiplier of users' missed dailies drop: - type: 'mounts' - key: 'BearCub-Polar' - text: "Polar Bear (Mount)" + items: [ + {type: 'mounts', key: 'BearCub-Polar', text: "Polar Bear (Mount)"} + ] gp: 20 exp: 100 # Exp bonus from defeating the boss @@ -551,7 +551,12 @@ api.quests = collect: tracks: text: 'Tracks', count: 20 branches: text: 'Broken Twigs', count: 10 - drop: type: 'pets', key: 'BearCub-Polar', text: "Polar Bear (Pet)", gp: 20, exp: 100 + drop: + items: [ + {type: 'pets', key: 'BearCub-Polar', text: "Polar Bear (Pet)"} + ] + gp: 20 + exp: 100 _.each api.quests, (v,key) ->