mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-10 14:18:20 +00:00
fix(quests): Make Gryphon and Hedgebeast drop 3 eggs
This commit is contained in:
parent
061f2ef47b
commit
fe8e42c5c3
2 changed files with 15 additions and 5 deletions
14
dist/habitrpg-shared.js
vendored
14
dist/habitrpg-shared.js
vendored
|
|
@ -10650,12 +10650,12 @@ var global=typeof self !== "undefined" ? self : typeof window !== "undefined" ?
|
|||
api.questEggs = {
|
||||
Gryphon: {
|
||||
text: 'Gryphon',
|
||||
adjective: 'regal',
|
||||
adjective: 'proud',
|
||||
canBuy: false
|
||||
},
|
||||
Hedgehog: {
|
||||
text: 'Hedgehog',
|
||||
adjective: 'prickly',
|
||||
adjective: 'spiky',
|
||||
canBuy: false
|
||||
}
|
||||
};
|
||||
|
|
@ -10948,6 +10948,10 @@ var global=typeof self !== "undefined" ? self : typeof window !== "undefined" ?
|
|||
type: 'eggs',
|
||||
key: 'Gryphon',
|
||||
text: "Gryphon (Egg)"
|
||||
}, {
|
||||
type: 'eggs',
|
||||
key: 'Gryphon',
|
||||
text: "Gryphon (Egg)"
|
||||
}
|
||||
],
|
||||
gp: 25,
|
||||
|
|
@ -10957,7 +10961,7 @@ var global=typeof self !== "undefined" ? self : typeof window !== "undefined" ?
|
|||
hedgehog: {
|
||||
text: "The Hedgebeast",
|
||||
notes: 'Hedgehogs are a funny group of animals. They are some of the most affectionate pets a Habiteer could own. But rumor has it, if you feed them milk after midnight, they grow quite irritable. And fifty times their size. And @Inventrix did just that. Oops.',
|
||||
completion: 'Your party successfully calmed down the hedgehog! After shrinking down to a normal size, she hobbles away to her eggs. She returns squeeking and nudging some of her eggs along towards your party. Hopefully, these hedgehog\'s like milk better!',
|
||||
completion: 'Your party successfully calmed down the hedgehog! After shrinking down to a normal size, she hobbles away to her eggs. She returns squeeking and nudging some of her eggs along towards your party. Hopefully, these hedgehogs like milk better!',
|
||||
value: 4,
|
||||
boss: {
|
||||
name: "Hedgebeast",
|
||||
|
|
@ -10974,6 +10978,10 @@ var global=typeof self !== "undefined" ? self : typeof window !== "undefined" ?
|
|||
type: 'eggs',
|
||||
key: 'Hedgehog',
|
||||
text: "Hedgehog (Egg)"
|
||||
}, {
|
||||
type: 'eggs',
|
||||
key: 'Hedgehog',
|
||||
text: "Hedgehog (Egg)"
|
||||
}
|
||||
],
|
||||
gp: 30,
|
||||
|
|
|
|||
|
|
@ -523,8 +523,8 @@ _.each api.dropEggs, (egg,key) ->
|
|||
|
||||
api.questEggs =
|
||||
# value & other defaults set below
|
||||
Gryphon: text: 'Gryphon', adjective: 'regal', canBuy: false
|
||||
Hedgehog: text: 'Hedgehog', adjective: 'prickly', canBuy: false
|
||||
Gryphon: text: 'Gryphon', adjective: 'proud', canBuy: false
|
||||
Hedgehog: text: 'Hedgehog', adjective: 'spiky', canBuy: false
|
||||
_.each api.questEggs, (egg,key) ->
|
||||
_.defaults egg,
|
||||
canBuy:false
|
||||
|
|
@ -651,6 +651,7 @@ api.quests =
|
|||
items: [
|
||||
{type: 'eggs', key: 'Gryphon', text: "Gryphon (Egg)"}
|
||||
{type: 'eggs', key: 'Gryphon', text: "Gryphon (Egg)"}
|
||||
{type: 'eggs', key: 'Gryphon', text: "Gryphon (Egg)"}
|
||||
]
|
||||
gp: 25
|
||||
exp: 125
|
||||
|
|
@ -668,6 +669,7 @@ api.quests =
|
|||
items: [
|
||||
{type: 'eggs', key: 'Hedgehog', text: "Hedgehog (Egg)"}
|
||||
{type: 'eggs', key: 'Hedgehog', text: "Hedgehog (Egg)"}
|
||||
{type: 'eggs', key: 'Hedgehog', text: "Hedgehog (Egg)"}
|
||||
]
|
||||
gp: 30
|
||||
exp: 125
|
||||
|
|
|
|||
Loading…
Reference in a new issue