From 30b19b5e7d8cf3b5bebd8d0d43528f4440928c3d Mon Sep 17 00:00:00 2001 From: Tyler Renelle Date: Thu, 14 Nov 2013 14:05:44 -0800 Subject: [PATCH] pets: add adjectives (@SabreCat) --- dist/habitrpg-shared.js | 29 +++++++++++++++++++---------- script/items.coffee | 20 ++++++++++---------- 2 files changed, 29 insertions(+), 20 deletions(-) diff --git a/dist/habitrpg-shared.js b/dist/habitrpg-shared.js index d7fce83954..544c19423d 100644 --- a/dist/habitrpg-shared.js +++ b/dist/habitrpg-shared.js @@ -9688,35 +9688,44 @@ try { }, eggs: { Wolf: { - text: 'Wolf' + text: 'Wolf', + adjective: 'loyal' }, TigerCub: { text: 'Tiger Cub', - mountText: 'Tiger' + mountText: 'Tiger', + adjective: 'fierce' }, PandaCub: { text: 'Panda Cub', - mountText: 'Panda' + mountText: 'Panda', + adjective: 'gentle' }, LionCub: { text: 'Lion Cub', - mountText: 'Lion' + mountText: 'Lion', + adjective: 'regal' }, Fox: { - text: 'Fox' + text: 'Fox', + adjective: 'wily' }, FlyingPig: { - text: 'Flying Pig' + text: 'Flying Pig', + adjective: 'whimsical' }, Dragon: { - text: 'Dragon' + text: 'Dragon', + adjective: 'mighty' }, Cactus: { - text: 'Cactus' + text: 'Cactus', + adjective: 'prickly' }, BearCub: { text: 'Bear Cub', - mountText: 'Bear' + mountText: 'Bear', + adjective: 'cuddly' } }, hatchingPotions: { @@ -9828,7 +9837,7 @@ try { return _.defaults(egg, { value: 3, name: k, - notes: 'Find a hatching potion to pour on this egg, and it will hatch into a loyal pet.', + notes: "Find a hatching potion to pour on this egg, and it will hatch into a " + egg.adjective + " " + egg.text + ".", mountText: egg.text }); }); diff --git a/script/items.coffee b/script/items.coffee index f7af7d9222..e43fde3cf8 100644 --- a/script/items.coffee +++ b/script/items.coffee @@ -47,15 +47,15 @@ items = module.exports.items = eggs: # value & other defaults set below - Wolf: text: 'Wolf' - TigerCub: text: 'Tiger Cub', mountText: 'Tiger' - PandaCub: text: 'Panda Cub', mountText: 'Panda' - LionCub: text: 'Lion Cub', mountText: 'Lion' - Fox: text: 'Fox' - FlyingPig: text: 'Flying Pig' - Dragon: text: 'Dragon' - Cactus: text: 'Cactus' - BearCub: text: 'Bear Cub', mountText: 'Bear' + Wolf: text: 'Wolf', adjective: 'loyal' + TigerCub: text: 'Tiger Cub', mountText: 'Tiger', adjective: 'fierce' + PandaCub: text: 'Panda Cub', mountText: 'Panda', adjective: 'gentle' + LionCub: text: 'Lion Cub', mountText: 'Lion', adjective: 'regal' + Fox: text: 'Fox', adjective: 'wily' + FlyingPig: text: 'Flying Pig', adjective: 'whimsical' + Dragon: text: 'Dragon', adjective: 'mighty' + Cactus: text: 'Cactus', adjective: 'prickly' + BearCub: text: 'Bear Cub', mountText: 'Bear', adjective: 'cuddly' #{text: 'Polar Bear Cub', name: 'PolarBearCub', value: 3} hatchingPotions: @@ -101,7 +101,7 @@ _.each items.eggs, (egg,k) -> _.defaults egg, value: 3 name: k - notes: 'Find a hatching potion to pour on this egg, and it will hatch into a loyal pet.' + notes: "Find a hatching potion to pour on this egg, and it will hatch into a #{egg.adjective} #{egg.text}." mountText: egg.text _.each items.hatchingPotions, (pot,k) ->