feat(content): Guinea Pig quest

This commit is contained in:
Sabe Jones
2017-02-16 20:51:12 +00:00
parent 6c16b4b77e
commit 605488dd47
49 changed files with 74 additions and 11 deletions
+4
View File
@@ -199,6 +199,10 @@
"questEggTriceratopsMountText": "Triceratops",
"questEggTriceratopsAdjective": "a tricky",
"questEggGuineaPigText": "Guinea Pig",
"questEggGuineaPigMountText": "Guinea Pig",
"questEggGuineaPigAdjective": "a giddy",
"eggNotes": "Find a hatching potion to pour on this egg, and it will hatch into <%= eggAdjective(locale) %> <%= eggText(locale) %>.",
"hatchingPotionBase": "Base",
+8 -1
View File
@@ -505,5 +505,12 @@
"questStoikalmCalamity3Boss": "Icicle Drake Queen",
"questStoikalmCalamity3DropBlueCottonCandy": "Blue Cotton Candy (Food)",
"questStoikalmCalamity3DropShield": "Mammoth Rider's Horn (Shield)",
"questStoikalmCalamity3DropWeapon": "Mammoth Rider Spear (Weapon)"
"questStoikalmCalamity3DropWeapon": "Mammoth Rider Spear (Weapon)",
"questGuineaPigText": "The Guinea Pig Gang",
"questGuineaPigNotes": "You're casually strolling through Habit City's famous Market when @Pandah waves you down. \"Hey, check these out!\" They're holding up a brown and beige egg you don't recognize.<br><br>Alexander the Merchant frowns at it. \"I don't remember putting that out. I wonder where it came--\" A small paw cuts him off.<br><br>\"Guinea all your gold, merchant!\" squeaks a tiny voice brimming with evil.<br><br>\"Oh no, the egg was a distraction!\" @mewrose exclaims. \"It's the gritty, greedy Guinea Pig Gang! They never do their Dailies, so they constantly steal gold to buy health potions.\"<br><br>\"Robbing the Market?\" says @emmavig. \"Not on our watch!\" Without further prompting, you leap to Alexander's aid.",
"questGuineaPigCompletion": "\"We submit!\" The Guinea Pig Gang Boss waves his paws at you, fluffy head hanging in shame. From underneath his hat falls a list, and @snazzyorange quickly swipes it for evidence. \"Wait a minute,\" you say. \"It's no wonder you've been getting hurt! You've got way too many Dailies. You don't need health potions -- you just need help organizing.\"<br><br>\"Really?\" squeaks the Guinea Pig Gang Boss. \"We've robbed so many people because of this! Please take our eggs as an apology for our crooked ways.\"",
"questGuineaPigBoss": "Guinea Pig Gang",
"questGuineaPigDropGuineaPigEgg": "Guinea Pig (Egg)",
"questGuineaPigUnlockText": "Unlocks purchasable Guinea Pig eggs in the Market"
}
+5
View File
@@ -264,6 +264,11 @@ let quests = {
adjective: t('questEggTriceratopsAdjective'),
canBuy: hasQuestAchievementFunction('triceratops'),
},
GuineaPig: {
text: t('questEggGuineaPigText'),
adjective: t('questEggGuineaPigAdjective'),
canBuy: hasQuestAchievementFunction('guineapig'),
},
};
applyEggDefaults(drops, {
+32
View File
@@ -2922,6 +2922,38 @@ api.quests = {
exp: 650
}
},
guineapig: {
text: t('questGuineaPigText'),
notes: t('questGuineaPigNotes'),
completion: t('questGuineaPigCompletion'),
value: 4,
category: 'pet',
boss: {
name: t('questGuineaPigBoss'),
hp: 400,
str: 1.5,
},
drop: {
items: [
{
type: 'eggs',
key: 'GuineaPig',
text: t('questGuineaPigDropGuineaPigEgg'),
}, {
type: 'eggs',
key: 'GuineaPig',
text: t('questGuineaPigDropGuineaPigEgg'),
}, {
type: 'eggs',
key: 'GuineaPig',
text: t('questGuineaPigDropGuineaPigEgg'),
},
],
gp: 31,
exp: 200,
unlock: t('questGuineaPigUnlockText'),
},
},
};
_.each(api.quests, function(v, key) {