mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-17 01:12:18 +00:00
feat(quests): allow quests to drop multiple items
This commit is contained in:
parent
bc986ba45a
commit
051c3c89c8
1 changed files with 9 additions and 4 deletions
|
|
@ -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) ->
|
||||
|
|
|
|||
Loading…
Reference in a new issue