Squashed commit of the following:
commit 78fe7721a373effbfe62f31583296ee02c050a92 Author: CuriousMagpie <eilatan@gmail.com> Date: Wed Jan 15 15:16:56 2025 -0500 fix: typo fix commit 6a73cb247aff59102f91171f52c1d56f87bff562 Author: CuriousMagpie <eilatan@gmail.com> Date: Wed Jan 15 14:51:00 2025 -0500 build: February 2025 content build
This commit is contained in:
@@ -644,6 +644,9 @@ const backgrounds = {
|
||||
backgrounds012025: {
|
||||
winter_landscape_with_cabin: { },
|
||||
},
|
||||
backgrounds022025: {
|
||||
old_fashioned_tea_shop: { },
|
||||
},
|
||||
eventBackgrounds: {
|
||||
birthday_bash: {
|
||||
price: 0,
|
||||
|
||||
@@ -15,6 +15,7 @@ export const ARMOIRE_RELEASE_DATES = {
|
||||
stormKnightSet: { year: 2024, month: 11 },
|
||||
festiveHelperSet: { year: 2024, month: 12 },
|
||||
snowyTrapperSet: { year: 2025, month: 1 },
|
||||
fancyFloralSet: { year: 2025, month: 2 },
|
||||
};
|
||||
|
||||
export const EGGS_RELEASE_DATES = {
|
||||
@@ -23,6 +24,7 @@ export const EGGS_RELEASE_DATES = {
|
||||
Crab: { year: 2024, month: 8, day: 14 },
|
||||
Raccoon: { year: 2024, month: 9, day: 14 },
|
||||
Dog: { year: 2024, month: 10, day: 14 },
|
||||
Cat: { year: 2025, month: 2, day: 14 },
|
||||
};
|
||||
|
||||
export const HATCHING_POTIONS_RELEASE_DATES = {
|
||||
|
||||
@@ -142,6 +142,7 @@ export const MONTHLY_SCHEDULE = {
|
||||
'slime',
|
||||
'peacock',
|
||||
'bunny',
|
||||
'cat',
|
||||
],
|
||||
},
|
||||
{
|
||||
|
||||
@@ -423,6 +423,12 @@ const quests = {
|
||||
adjective: t('questEggDogAdjective'),
|
||||
canBuy: hasQuestAchievementFunction('dog'),
|
||||
},
|
||||
Cat: {
|
||||
text: t('questEggCatText'),
|
||||
mountText: t('questEggCatMountText'),
|
||||
adjective: t('questEggCatAdjective'),
|
||||
canBuy: hasQuestAchievementFunction('cat'),
|
||||
},
|
||||
};
|
||||
|
||||
applyEggDefaults(drops, {
|
||||
|
||||
@@ -1045,6 +1045,10 @@ const head = {
|
||||
per: 6,
|
||||
set: 'snowyTrapperSet',
|
||||
},
|
||||
fancyFloralHat: {
|
||||
int: 14,
|
||||
set: 'fancyFloralSet',
|
||||
},
|
||||
};
|
||||
|
||||
const shield = {
|
||||
@@ -1400,6 +1404,10 @@ const shield = {
|
||||
con: 10,
|
||||
set: 'frightNightSet',
|
||||
},
|
||||
fancyFloralFan: {
|
||||
per: 14,
|
||||
set: 'fancyFloralSet',
|
||||
},
|
||||
};
|
||||
|
||||
const headAccessory = {
|
||||
|
||||
@@ -68,6 +68,7 @@ const armor = {
|
||||
202406: { },
|
||||
202407: { },
|
||||
202412: { },
|
||||
202502: { },
|
||||
301404: { },
|
||||
301703: { },
|
||||
301704: { },
|
||||
@@ -235,6 +236,7 @@ const head = {
|
||||
202411: { },
|
||||
202412: { },
|
||||
202501: { },
|
||||
202502: { },
|
||||
301404: { },
|
||||
301405: { },
|
||||
301703: { },
|
||||
@@ -284,6 +286,7 @@ const shield = {
|
||||
202408: { },
|
||||
202409: { },
|
||||
202501: { },
|
||||
202502: { },
|
||||
301405: { },
|
||||
301704: { },
|
||||
};
|
||||
|
||||
@@ -232,6 +232,47 @@ const QUEST_PETS = {
|
||||
unlock: t('questButterflyUnlockText'),
|
||||
},
|
||||
},
|
||||
cat: {
|
||||
text: t('questCatText'),
|
||||
notes: t('questCatNotes'),
|
||||
completion: t('questCatCompletion'),
|
||||
value: 4,
|
||||
category: 'pet',
|
||||
boss: {
|
||||
name: t('questCatBoss'),
|
||||
hp: 600,
|
||||
str: 1.5,
|
||||
rage: {
|
||||
title: t('questCatRageTitle'),
|
||||
description: t('questCatRageDescription'),
|
||||
value: 50,
|
||||
mpDrain: 0.33,
|
||||
effect: t('questCatRageEffect'),
|
||||
},
|
||||
},
|
||||
drop: {
|
||||
items: [
|
||||
{
|
||||
type: 'eggs',
|
||||
key: 'Cat',
|
||||
text: t('questCatDropCatEgg'),
|
||||
},
|
||||
{
|
||||
type: 'eggs',
|
||||
key: 'Cat',
|
||||
text: t('questCatDropCatEgg'),
|
||||
},
|
||||
{
|
||||
type: 'eggs',
|
||||
key: 'Cat',
|
||||
text: t('questCatDropCatEgg'),
|
||||
},
|
||||
],
|
||||
gp: 55,
|
||||
exp: 500,
|
||||
unlock: t('questCatUnlockText'),
|
||||
},
|
||||
},
|
||||
chameleon: {
|
||||
text: t('questChameleonText'),
|
||||
notes: t('questChameleonNotes'),
|
||||
|
||||
Reference in New Issue
Block a user