Change set for new armoire items (#15328)

This commit is contained in:
Phillip Thelen 2024-09-19 22:47:59 +02:00 committed by GitHub
parent f9fb463128
commit 1203cbbad8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 5 additions and 5 deletions

View file

@ -788,7 +788,7 @@
"weaponArmoireFunnyFoolBatonText": "Funny Fool Baton",
"weaponArmoireFunnyFoolBatonNotes": "With a wave of your baton you can deliver a punchline, redirect attention, or summon applause. Increases Constitution and Strength by <%= attrs %> each. Enchanted Armoire: Funny Fool Set (Item 3 of 3)",
"weaponArmoireSpookyCandyBucketText": "Spooky Candy Bucket",
"weaponArmoireSpookyCandyBucketNotes": "With an epic costume like that, youre going to get so much candy! Good thing youve got this bottomless bucket to hold it all. Try not to snack on any until you get home. Increases Intelligence by <%= int %>. Enchanted Armoire: Trick or Treat Set (Item 2 of 2)",
"weaponArmoireSpookyCandyBucketNotes": "With an epic costume like that, youre going to get so much candy! Good thing youve got this bottomless bucket to hold it all. Try not to snack on any until you get home. Increases Intelligence by <%= int %>. Enchanted Armoire: Fright Night Set (Item 2 of 2)",
"armor": "armor",
"armorCapitalized": "Armor",
@ -3005,7 +3005,7 @@
"shieldArmoireBuoyantBeachBallText": "Beachball",
"shieldArmoireBuoyantBeachBallNotes": "Got too many balls up in the air already? Heres one that you can safely set down, roll, bounce and bounce and bounce... Increases Strength by <%= str %>. Enchanted Armoire: Beachside Set (Item 4 of 4).",
"shieldArmoireSafetyFlashlightText": "Safety Flashlight",
"shieldArmoireSafetyFlashlightNotes": "Wait, did you hear that noise? Quick! Shine your flashlight into the shadows over there. Hmmm. Looks like it was just the wind. Or was it…? Increases Constitution by <%= con $>. Enchanted Armoire: Trick or Treat Set (Item 1 of 2)",
"shieldArmoireSafetyFlashlightNotes": "Wait, did you hear that noise? Quick! Shine your flashlight into the shadows over there. Hmmm. Looks like it was just the wind. Or was it…? Increases Constitution by <%= con %>. Enchanted Armoire: Fright Night Set (Item 1 of 2)",
"back": "Back Accessory",
"backBase0Text": "No Back Accessory",

View file

@ -11,7 +11,7 @@ export const ARMOIRE_RELEASE_DATES = {
corsairSet: { year: 2024, month: 7 },
dragonKnightSet: { year: 2024, month: 8 },
funnyFoolSet: { year: 2024, month: 9 },
trickOrTreatSet: { year: 2024, month: 10 },
frightNightSet: { year: 2024, month: 10 },
};
export const EGGS_RELEASE_DATES = {

View file

@ -1372,7 +1372,7 @@ const shield = {
},
safetyFlashlight: {
con: 10,
set: 'trickOrTreatSet',
set: 'frightNightSet',
},
};
@ -1875,7 +1875,7 @@ const weapon = {
},
spookyCandyBucket: {
int: 10,
set: 'trickOrTreatSet',
set: 'frightNightSet',
},
};