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:
Natalie
2024-07-25 13:55:38 -04:00
committed by GitHub
parent 4789946c4e
commit 2aade9aaa6
14 changed files with 382 additions and 3 deletions

View File

@@ -626,6 +626,9 @@ const backgrounds = {
backgrounds072024: {
river_bottom: { },
},
backgrounds082024: {
savanna: { },
},
eventBackgrounds: {
birthday_bash: {
price: 0,

View File

@@ -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 = {

View File

@@ -429,6 +429,7 @@ export const MONTHLY_SCHEDULE = {
'penguin',
'butterfly',
'cheetah',
'crab',
],
},
{

View File

@@ -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, {

View File

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

View File

@@ -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: { },
};

View File

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

View File

@@ -23,6 +23,7 @@ const potentialFeaturedPetQuests = [
'chameleon',
'cheetah',
'crab',
'beetle',