Create new SNOW event separte from new years

This commit is contained in:
Dev 2024-01-27 23:08:21 +00:00
parent f2c2f23438
commit 215e8f1c4b
3 changed files with 12 additions and 1 deletions

View File

@ -671,8 +671,15 @@
"type": "NEW_YEARS", "type": "NEW_YEARS",
"startDay": "1", "startDay": "1",
"startMonth": "1", "startMonth": "1",
"endDay": "27", "endDay": "7",
"endMonth": "1" "endMonth": "1"
}, {
"name": "snow",
"type": "SNOW",
"startDay": "8",
"startMonth": "1",
"endDay": "5",
"endMonth": "2"
} }
] ]
} }

View File

@ -5,4 +5,5 @@ export enum SeasonalEventType
HALLOWEEN = "Halloween", HALLOWEEN = "Halloween",
NEW_YEARS = "NewYears", NEW_YEARS = "NewYears",
PROMO = "Promo", PROMO = "Promo",
SNOW = "Snow"
} }

View File

@ -344,6 +344,9 @@ export class SeasonalEventService
this.giveGift(sessionId, "NewYear2023"); this.giveGift(sessionId, "NewYear2023");
this.enableSnow(); this.enableSnow();
break; break;
case SeasonalEventType.SNOW.toLowerCase():
this.enableSnow();
break;
default: default:
// Likely a mod event // Likely a mod event
this.addEventGearToBots(eventType); this.addEventGearToBots(eventType);