From fe8e42c5c3db5f571014c4e8e970026ee01d9d3c Mon Sep 17 00:00:00 2001 From: Sabe Jones Date: Sun, 16 Mar 2014 22:26:09 -0500 Subject: [PATCH] fix(quests): Make Gryphon and Hedgebeast drop 3 eggs --- dist/habitrpg-shared.js | 14 +++++++++++--- script/content.coffee | 6 ++++-- 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/dist/habitrpg-shared.js b/dist/habitrpg-shared.js index 01dc8afaeb..2d04aa8779 100644 --- a/dist/habitrpg-shared.js +++ b/dist/habitrpg-shared.js @@ -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, diff --git a/script/content.coffee b/script/content.coffee index e50c2426a4..b1979d6181 100644 --- a/script/content.coffee +++ b/script/content.coffee @@ -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