Added method comments
This commit is contained in:
parent
be20eff165
commit
8114271faf
@ -365,14 +365,24 @@ export class SeasonalEventService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Force zryachiy to always have a melee weapon
|
||||||
|
*/
|
||||||
protected adjustZryachiyMeleeChance(): void {
|
protected adjustZryachiyMeleeChance(): void {
|
||||||
this.databaseService.getBots().types.bosszryachiy.chances.equipment.Scabbard = 100;
|
this.databaseService.getBots().types.bosszryachiy.chances.equipment.Scabbard = 100;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Enable the halloween zryachiy summon event
|
||||||
|
*/
|
||||||
protected enableHalloweenSummonEvent(): void {
|
protected enableHalloweenSummonEvent(): void {
|
||||||
this.databaseService.getGlobals().config.EventSettings.EventActive = true;
|
this.databaseService.getGlobals().config.EventSettings.EventActive = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Add event bosses to maps
|
||||||
|
* @param eventType Seasonal event, e.g. HALLOWEEN/CHRISTMAS
|
||||||
|
*/
|
||||||
protected addEventBossesToMaps(eventType: SeasonalEventType): void {
|
protected addEventBossesToMaps(eventType: SeasonalEventType): void {
|
||||||
const botsToAddPerMap = this.seasonalEventConfig.eventBossSpawns[eventType.toLowerCase()];
|
const botsToAddPerMap = this.seasonalEventConfig.eventBossSpawns[eventType.toLowerCase()];
|
||||||
if (!botsToAddPerMap) {
|
if (!botsToAddPerMap) {
|
||||||
@ -484,6 +494,9 @@ export class SeasonalEventService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Add pumpkin loot boxes to scavs
|
||||||
|
*/
|
||||||
protected addPumpkinsToScavBackpacks(): void {
|
protected addPumpkinsToScavBackpacks(): void {
|
||||||
this.databaseService.getBots().types.assault.inventory.items.Backpack[
|
this.databaseService.getBots().types.assault.inventory.items.Backpack[
|
||||||
ItemTpl.RANDOMLOOTCONTAINER_PUMPKIN_RAND_LOOT_CONTAINER
|
ItemTpl.RANDOMLOOTCONTAINER_PUMPKIN_RAND_LOOT_CONTAINER
|
||||||
@ -562,6 +575,9 @@ export class SeasonalEventService {
|
|||||||
return this.seasonalEventConfig.eventBotMapping[eventBotRole];
|
return this.seasonalEventConfig.eventBotMapping[eventBotRole];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Force the weather to be snow
|
||||||
|
*/
|
||||||
public enableSnow(): void {
|
public enableSnow(): void {
|
||||||
this.weatherConfig.overrideSeason = Season.WINTER;
|
this.weatherConfig.overrideSeason = Season.WINTER;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user