Update splash-messages.ts

This commit is contained in:
damocleas 2025-03-02 02:46:11 -05:00 committed by GitHub
parent 538f39f6fe
commit a7fbae5227
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -54,7 +54,7 @@ const SEASONAL_WEIGHT_MULTIPLIER = 10;
const commonSplashMessages = [ const commonSplashMessages = [
...Array(BATTLES_WON_WEIGHT_MULTIPLIER).fill("battlesWon"), ...Array(BATTLES_WON_WEIGHT_MULTIPLIER).fill("battlesWon"),
...Array(POKEMON_NAMES_WEIGHT_MULTIPLIER).fill("pokemon"), ...Array(POKEMON_NAMES_WEIGHT_MULTIPLIER).fill("underratedPokemon"),
"joinTheDiscord", "joinTheDiscord",
"infiniteLevels", "infiniteLevels",
"everythingIsStackable", "everythingIsStackable",
@ -81,7 +81,7 @@ const commonSplashMessages = [
"mostlyConsistentSeeds", "mostlyConsistentSeeds",
"achievementPointsDontDoAnything", "achievementPointsDontDoAnything",
"nothingBeatsAJellyFilledDonut", "nothingBeatsAJellyFilledDonut",
"dontTalkAboutTheTinkatonIncident", "dontTalkAboutThePokemonIncident",
"alsoTryPokengine", "alsoTryPokengine",
"alsoTryEmeraldRogue", "alsoTryEmeraldRogue",
"alsoTryRadicalRed", "alsoTryRadicalRed",
@ -183,11 +183,78 @@ const commonSplashMessages = [
"porygonDidNothingWrong", "porygonDidNothingWrong",
"critMattered", "critMattered",
"pickupNotRequired", "pickupNotRequired",
"stayHydrated",
"alsoTryCobblemon",
"alsoTryPokeDoku",
"mySleepStyleIsDoesnt",
"makeYourOwnWorldChampDifference",
"yoChampInTheMaking",
"notLiableForDecisionAnxiety",
"theAirIsTastyHere",
"continue",
"startANewRunToday",
"neverGiveUp",
"theresAlwaysNextTime",
"oneTwoThreeAndPoof",
"yourPokemonOnlyGoToLevelOneHundred",
"theBattlesWillBeLegendary",
"levelCurveBetterThanJohto",
"alsoTryShowering",
"wellStillBeHere",
"weHopeToSeeYouAgain",
"aHealthyTeamCanMeanGreaterRewards",
"aWildPokemonAppeared",
"isThisThingOn"
]; ];
//#region Seasonal Messages //#region Seasonal Messages
const seasonalSplashMessages: Season[] = [ const seasonalSplashMessages: Season[] = [
{
name: "New Year's",
start: "01-01",
end: "01-15",
messages: [
"newYears.happyNewYear",
"newYears.andAHappyNewYear"
],
},
{
name: "Valentines",
start: "2-7",
end: "2-21",
messages: [
"valentines.fullOfLove",
"valentines.applinForYou",
"valentines.thePowerOfLoveIsThreeThirtyBST",
"valentines.haveAHeartScale",
"valentines.i<3You"
],
},
{
name: "April Fools",
start: "04-01",
end: "04-02",
messages: [
"aprilFools.gotcha",
"aprilFools.alsoTryPokerogueTwo",
"aprilFools.nowWithSameScumCountermeasures",
"aprilFools.neverGonnaGiveYouGoodRolls",
"aprilFools.youBumblingBuffoon",
"aprilFools.doubleShinyOddsForTrainersOnly",
"aprilFools.nowWithZMoves",
"aprilFools.newLightType",
"aprilFools.removedMegas",
"aprilFools.nerfedYourFavorites",
"aprilFools.removedPokemon",
"aprilFools.grrr",
"aprilFools.enabledEternatusPassiveGoodLuck",
"aprilFools.theDarkestDaySoundsLikeAFutureProblem",
"aprilFools.tmShopWhen",
"aprilFools.whoIsFinn",
"aprilFools.helloKyleAmber"
],
},
{ {
name: "Halloween", name: "Halloween",
start: "10-15", start: "10-15",
@ -211,24 +278,17 @@ const seasonalSplashMessages: Season[] = [
"winterHoliday.delibirdSeason", "winterHoliday.delibirdSeason",
"winterHoliday.diamondsFromTheSky", "winterHoliday.diamondsFromTheSky",
"winterHoliday.holidayStylePikachuNotIncluded", "winterHoliday.holidayStylePikachuNotIncluded",
"winterHoliday.delibirdDirectlyToYourHouse",
"winterHoliday.haveAnIceDay", "winterHoliday.haveAnIceDay",
"winterHoliday.spinTheClaydol", "winterHoliday.spinTheClaydol",
"winterHoliday.beGoodForGoodnessSake", "winterHoliday.beGoodForGoodnessSake",
"winterHoliday.moomooMilkAndLavaCookies", "winterHoliday.moomooMilkAndLavaCookies",
"winterHoliday.iNeedAYacheBerry", "winterHoliday.iNeedAYacheBerry",
"winterHoliday.getJolly", "winterHoliday.getJolly",
"winterHoliday.tisTheSeasonToBeSpeSpa",
"winterHoliday.deckTheHalls", "winterHoliday.deckTheHalls",
"winterHoliday.saveScummingGetsYouOnTheNaughtyList", "winterHoliday.saveScummingGetsYouOnTheNaughtyList",
"winterHoliday.stockingsFullOfRolycoly" "winterHoliday.badTrainersGetRolycoly"
],
},
{
name: "New Year's",
start: "01-01",
end: "01-15",
messages: [
"newYears.happyNewYear",
"newYears.andAHappyNewYear"
], ],
}, },
]; ];