Added new april 1st event
This commit is contained in:
parent
5a6dd6f5df
commit
22b6ee2741
@ -714,6 +714,15 @@
|
||||
"startMonth": "1",
|
||||
"endDay": "7",
|
||||
"endMonth": "1"
|
||||
}
|
||||
},
|
||||
{
|
||||
"enabled": true,
|
||||
"name": "April fools",
|
||||
"type": "APRIL_FOOLS",
|
||||
"startDay": "1",
|
||||
"startMonth": "4",
|
||||
"endDay": "2",
|
||||
"endMonth": "4"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -4,4 +4,5 @@ export enum SeasonalEventType {
|
||||
HALLOWEEN = "Halloween",
|
||||
NEW_YEARS = "NewYears",
|
||||
PROMO = "Promo",
|
||||
APRIL_FOOLS = "AprilFools",
|
||||
}
|
||||
|
@ -363,6 +363,16 @@ export class SeasonalEventService {
|
||||
break;
|
||||
case SeasonalEventType.NEW_YEARS.toLowerCase():
|
||||
break;
|
||||
case SeasonalEventType.APRIL_FOOLS.toLowerCase():
|
||||
this.addGifterBotToMaps();
|
||||
this.addLootItemsToGifterDropItemsList();
|
||||
this.addEventGearToBots(SeasonalEventType.HALLOWEEN);
|
||||
this.addEventGearToBots(SeasonalEventType.CHRISTMAS);
|
||||
this.addEventBossesToMaps(SeasonalEventType.HALLOWEEN);
|
||||
this.enableHalloweenSummonEvent();
|
||||
this.addPumpkinsToScavBackpacks();
|
||||
this.enableSnow();
|
||||
break;
|
||||
default:
|
||||
// Likely a mod event
|
||||
this.addEventGearToBots(eventType);
|
||||
|
Loading…
x
Reference in New Issue
Block a user