mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 14:47:53 +01:00
WIP(world-boss): partial build
This commit is contained in:
@@ -411,6 +411,7 @@ api.specialPets = {
|
||||
'Tiger-Veteran': 'veteranTiger',
|
||||
'Phoenix-Base': 'phoenix',
|
||||
'Turkey-Gilded': 'gildedTurkey',
|
||||
'Bumblebee-Base': 'bumblebee',
|
||||
};
|
||||
|
||||
api.specialMounts = {
|
||||
@@ -422,7 +423,8 @@ api.specialMounts = {
|
||||
'Orca-Base': 'orca',
|
||||
'Gryphon-RoyalPurple': 'royalPurpleGryphon',
|
||||
'Phoenix-Base': 'phoenix',
|
||||
'JackOLantern-Base': 'jackolantern'
|
||||
'JackOLantern-Base': 'jackolantern',
|
||||
'Bumblebee-Base': 'bumblebee',
|
||||
};
|
||||
|
||||
api.timeTravelStable = {
|
||||
@@ -2527,6 +2529,85 @@ api.quests = {
|
||||
unlock: t('questSnailUnlockText')
|
||||
}
|
||||
},
|
||||
bewilder: {
|
||||
text: t("questBewilderText"),
|
||||
notes: t("questBewilderNotes"),
|
||||
completion: t("questBewilderCompletion"),
|
||||
value: 0,
|
||||
canBuy: (function() {
|
||||
return false;
|
||||
}),
|
||||
category: 'world',
|
||||
boss: {
|
||||
name: t("questBewilderText"),
|
||||
hp: 20000000,
|
||||
str: 1,
|
||||
def: 1,
|
||||
rage: {
|
||||
title: t("questBewilderBossRageTitle"),
|
||||
description: t("questBewilderBossRageDescription"),
|
||||
value: 800000,
|
||||
bailey: t('questBewilderBossRageBailey'),
|
||||
stables: t('questBewilderBossRageStables'),
|
||||
market: t('questBewilderBossRageMarket')
|
||||
}
|
||||
},
|
||||
drop: {
|
||||
items: [
|
||||
{
|
||||
type: 'pets',
|
||||
key: 'Bumblebee-Base',
|
||||
text: t('questBewilderDropBumblebeePet')
|
||||
}, {
|
||||
type: 'mounts',
|
||||
key: 'Bumblebee-Base',
|
||||
text: t('questBewilderDropBumblebeeMount')
|
||||
}, {
|
||||
type: 'food',
|
||||
key: 'Meat',
|
||||
text: t('foodMeat')
|
||||
}, {
|
||||
type: 'food',
|
||||
key: 'Milk',
|
||||
text: t('foodMilk')
|
||||
}, {
|
||||
type: 'food',
|
||||
key: 'Potatoe',
|
||||
text: t('foodPotatoe')
|
||||
}, {
|
||||
type: 'food',
|
||||
key: 'Strawberry',
|
||||
text: t('foodStrawberry')
|
||||
}, {
|
||||
type: 'food',
|
||||
key: 'Chocolate',
|
||||
text: t('foodChocolate')
|
||||
}, {
|
||||
type: 'food',
|
||||
key: 'Fish',
|
||||
text: t('foodFish')
|
||||
}, {
|
||||
type: 'food',
|
||||
key: 'RottenMeat',
|
||||
text: t('foodRottenMeat')
|
||||
}, {
|
||||
type: 'food',
|
||||
key: 'CottonCandyPink',
|
||||
text: t('foodCottonCandyPink')
|
||||
}, {
|
||||
type: 'food',
|
||||
key: 'CottonCandyBlue',
|
||||
text: t('foodCottonCandyBlue')
|
||||
}, {
|
||||
type: 'food',
|
||||
key: 'Honey',
|
||||
text: t('foodHoney')
|
||||
},
|
||||
],
|
||||
gp: 0,
|
||||
exp: 0,
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
_.each(api.quests, function(v, key) {
|
||||
|
||||
Reference in New Issue
Block a user