mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 22:27:26 +01:00
August 2024 Content Prebuild (#15277)
* add sprites * 2024-08 content build * fixing stuff * update boss rage effects * update quest rage text and releaseDates.js * update shop-featuredItems.js * fricken fracken beach umbrella * more beach umbrella * remove egregious typo
This commit is contained in:
@@ -626,6 +626,9 @@ const backgrounds = {
|
||||
backgrounds072024: {
|
||||
river_bottom: { },
|
||||
},
|
||||
backgrounds082024: {
|
||||
savanna: { },
|
||||
},
|
||||
eventBackgrounds: {
|
||||
birthday_bash: {
|
||||
price: 0,
|
||||
|
||||
@@ -9,11 +9,13 @@ export const ARMOIRE_RELEASE_DATES = {
|
||||
pottersSet: { year: 2024, month: 5 },
|
||||
beachsideSet: { year: 2024, month: 6 },
|
||||
corsairSet: { year: 2024, month: 7 },
|
||||
dragonKnightSet: { year: 2024, month: 8 },
|
||||
};
|
||||
|
||||
export const EGGS_RELEASE_DATES = {
|
||||
Giraffe: { year: 2024, month: 6, day: 1 },
|
||||
Chameleon: { year: 2024, month: 7, day: 14 },
|
||||
Crab: { year: 2024, month: 8, day: 14 },
|
||||
};
|
||||
|
||||
export const HATCHING_POTIONS_RELEASE_DATES = {
|
||||
|
||||
@@ -429,6 +429,7 @@ export const MONTHLY_SCHEDULE = {
|
||||
'penguin',
|
||||
'butterfly',
|
||||
'cheetah',
|
||||
'crab',
|
||||
],
|
||||
},
|
||||
{
|
||||
|
||||
@@ -405,6 +405,12 @@ const quests = {
|
||||
adjective: t('questEggChameleonAdjective'),
|
||||
canBuy: hasQuestAchievementFunction('chameleon'),
|
||||
},
|
||||
Crab: {
|
||||
text: t('questEggCrabText'),
|
||||
mountText: t('questEggCrabMountText'),
|
||||
adjective: t('questEggCrabAdjective'),
|
||||
canBuy: hasQuestAchievementFunction('crab'),
|
||||
},
|
||||
};
|
||||
|
||||
applyEggDefaults(drops, {
|
||||
|
||||
@@ -490,6 +490,10 @@ const armor = {
|
||||
con: 14,
|
||||
set: 'corsairSet',
|
||||
},
|
||||
dragonKnightsArmor: {
|
||||
str: 8,
|
||||
set: 'dragonKnightSet',
|
||||
},
|
||||
};
|
||||
|
||||
const body = {
|
||||
@@ -1003,6 +1007,10 @@ const head = {
|
||||
int: 7,
|
||||
set: 'corsairSet',
|
||||
},
|
||||
dragonKnightsHelm: {
|
||||
int: 8,
|
||||
set: 'dragonKnightSet',
|
||||
},
|
||||
};
|
||||
|
||||
const shield = {
|
||||
@@ -1844,6 +1852,10 @@ const weapon = {
|
||||
str: 7,
|
||||
set: 'corsairSet',
|
||||
},
|
||||
dragonKnightsLance: {
|
||||
con: 8,
|
||||
set: 'dragonKnightSet',
|
||||
},
|
||||
};
|
||||
|
||||
const releaseDay = 7;
|
||||
|
||||
@@ -273,6 +273,7 @@ const shield = {
|
||||
201902: { },
|
||||
202011: { },
|
||||
202209: { },
|
||||
202408: { },
|
||||
301405: { },
|
||||
301704: { },
|
||||
};
|
||||
@@ -297,6 +298,7 @@ const weapon = {
|
||||
202311: { },
|
||||
202403: { },
|
||||
202404: { twoHanded: true },
|
||||
202408: { },
|
||||
301404: { },
|
||||
};
|
||||
|
||||
|
||||
@@ -328,6 +328,44 @@ const QUEST_PETS = {
|
||||
unlock: t('questCowUnlockText'),
|
||||
},
|
||||
},
|
||||
crab: {
|
||||
text: t('questCrabText'),
|
||||
notes: t('questCrabNotes'),
|
||||
completion: t('questCrabCompletion'),
|
||||
value: 4,
|
||||
category: 'pet',
|
||||
boss: {
|
||||
name: t('questCrabBoss'),
|
||||
hp: 1200,
|
||||
str: 2.5,
|
||||
rage: {
|
||||
title: t('questCrabRageTitle'),
|
||||
description: t('questCrabRageDescription'),
|
||||
value: 50,
|
||||
mpDrain: 0.33,
|
||||
effect: t('questCrabRageEffect'),
|
||||
},
|
||||
},
|
||||
drop: {
|
||||
items: [
|
||||
{
|
||||
type: 'eggs',
|
||||
key: 'Crab',
|
||||
text: t('questCrabDropCrabEgg'),
|
||||
}, {
|
||||
type: 'eggs',
|
||||
key: 'Crab',
|
||||
text: t('questCrabDropCrabEgg'),
|
||||
}, {
|
||||
type: 'eggs',
|
||||
key: 'Crab',
|
||||
text: t('questCrabDropCrabEgg'),
|
||||
},
|
||||
],
|
||||
gp: 90,
|
||||
exp: 900,
|
||||
},
|
||||
},
|
||||
dilatory_derby: { // eslint-disable-line camelcase
|
||||
text: t('questSeahorseText'),
|
||||
notes: t('questSeahorseNotes'),
|
||||
|
||||
@@ -23,6 +23,7 @@ const potentialFeaturedPetQuests = [
|
||||
'chameleon',
|
||||
|
||||
'cheetah',
|
||||
'crab',
|
||||
|
||||
'beetle',
|
||||
|
||||
|
||||
Reference in New Issue
Block a user