pets: add adjectives (@SabreCat)

This commit is contained in:
Tyler Renelle 2013-11-14 14:05:44 -08:00
parent 9863ca0ce5
commit 30b19b5e7d
2 changed files with 29 additions and 20 deletions

View file

@ -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
});
});

View file

@ -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) ->