feat(content): Nudibranch Pets
This commit is contained in:
@@ -211,6 +211,10 @@
|
||||
"questEggButterflyMountText": "Butterfly",
|
||||
"questEggButterflyAdjective": "a cute",
|
||||
|
||||
"questEggNudibranchText": "Nudibranch",
|
||||
"questEggNudibranchMountText": "Nudibranch",
|
||||
"questEggNudibranchAdjective": "a nifty",
|
||||
|
||||
"eggNotes": "Find a hatching potion to pour on this egg, and it will hatch into <%= eggAdjective(locale) %> <%= eggText(locale) %>.",
|
||||
|
||||
"hatchingPotionBase": "Base",
|
||||
|
||||
@@ -556,5 +556,12 @@
|
||||
"questMayhemMistiflying3DropWeapon": "Roguish Rainbow Message (Weapon)",
|
||||
|
||||
"featheredFriendsText": "Feathered Friends Quest Bundle",
|
||||
"featheredFriendsNotes": "Contains 'Help! Harpy!,' 'The Night-Owl,' and 'The Birds of Preycrastination.' Available until May 31."
|
||||
"featheredFriendsNotes": "Contains 'Help! Harpy!,' 'The Night-Owl,' and 'The Birds of Preycrastination.' Available until May 31.",
|
||||
|
||||
"questNudibranchText": "Infestation of the NowDo Nudibranches",
|
||||
"questNudibranchNotes": "You finally get around to checking your To-dos on a lazy day in Habitica. Bright against your deepest red tasks are a gaggle of vibrant blue sea slugs. You are entranced! Their sapphire colors make your most intimidating tasks look as easy as your best Habits. In a feverish stupor you get to work, tackling one task after the other in a ceaseless frenzy...<br><br>The next thing you know, @LilithofAlfheim is pouring cold water over you. “The NowDo Nudibranches have been stinging you all over! You need to take a break!”<br><br>Shocked, you see that your skin is as bright red as your To-Do list was. \"Being productive is one thing,\" @beffymaroo says, \"but you've also got to take care of yourself. Hurry, let's get rid of them!\"",
|
||||
"questNudibranchCompletion": "You see the last of the NowDo Nudibranches sliding off of a pile of completed tasks as @amadshade washes them away. One leaves behind a cloth bag, and you open it to reveal some gold and a few little ellipsoids you guess are eggs.",
|
||||
"questNudibranchBoss": "NowDo Nudibranch",
|
||||
"questNudibranchDropNudibranchEgg": "Nudibranch (Egg)",
|
||||
"questNudibranchUnlockText": "Unlocks purchasable Nudibranch eggs in the Market"
|
||||
}
|
||||
|
||||
@@ -320,6 +320,12 @@ let quests = {
|
||||
adjective: t('questEggButterflyAdjective'),
|
||||
canBuy: hasQuestAchievementFunction('butterfly'),
|
||||
},
|
||||
Nudibranch: {
|
||||
text: t('questEggNudibranchText'),
|
||||
mountText: t('questEggNudibranchMountText'),
|
||||
adjective: t('questEggNudibranchAdjective'),
|
||||
canBuy: hasQuestAchievementFunction('nudibranch'),
|
||||
},
|
||||
};
|
||||
|
||||
applyEggDefaults(drops, {
|
||||
|
||||
@@ -2688,6 +2688,38 @@ let quests = {
|
||||
exp: 650,
|
||||
},
|
||||
},
|
||||
nudibranch: {
|
||||
text: t('questNudibranchText'),
|
||||
notes: t('questNudibranchNotes'),
|
||||
completion: t('questNudibranchCompletion'),
|
||||
value: 4,
|
||||
category: 'pet',
|
||||
boss: {
|
||||
name: t('questNudibranchBoss'),
|
||||
hp: 400,
|
||||
str: 1.5,
|
||||
},
|
||||
drop: {
|
||||
items: [
|
||||
{
|
||||
type: 'eggs',
|
||||
key: 'Nudibranch',
|
||||
text: t('questNudibranchDropNudibranchEgg'),
|
||||
}, {
|
||||
type: 'eggs',
|
||||
key: 'Nudibranch',
|
||||
text: t('questNudibranchDropNudibranchEgg'),
|
||||
}, {
|
||||
type: 'eggs',
|
||||
key: 'Nudibranch',
|
||||
text: t('questNudibranchDropNudibranchEgg'),
|
||||
},
|
||||
],
|
||||
gp: 31,
|
||||
exp: 200,
|
||||
unlock: t('questNudibranchUnlockText'),
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
each(quests, (v, key) => {
|
||||
|
||||
Reference in New Issue
Block a user