| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- - type: entity
- id: BaseGameRule
- abstract: true
- components:
- - type: GameRule
- - type: entity
- parent: BaseGameRule
- id: RespawnDeadRule
- components:
- - type: RespawnDeadRule
- alwaysRespawnDead: true
- - type: RespawnTracker
- respawnDelay: 300
- deleteBody: false
- #shorter respawn timer for TDM
- - type: entity
- parent: BaseGameRule
- id: RespawnDeadRuleTDM
- components:
- - type: RespawnDeadRule
- alwaysRespawnDead: true
- - type: RespawnTracker
- respawnDelay: 120
- deleteBody: false
- # A fixed timer where all reinforcements are spawned at the same time.
- - type: entity
- parent: BaseGameRule
- id: RespawnDeadRuleTDMFixed
- components:
- - type: RespawnDeadRule
- alwaysRespawnDead: true
- - type: RespawnTracker
- respawnDelay: 120
- deleteBody: false
- fixed: true
- - type: entity
- id: InactivityTimeRestart
- parent: BaseGameRule
- components:
- - type: InactivityRule
- inactivityMaxTime: 600
- roundEndDelay: 10
- - type: entity
- id: MaxTimeRestart
- parent: BaseGameRule
- components:
- - type: MaxTimeRestartRule
- roundMaxTime: 300
- roundEndDelay: 10
- - type: entity
- id: Sandbox
- parent: BaseGameRule
- components:
- - type: SandboxRule
- - type: entity
- id: Secret
- parent: BaseGameRule
- components:
- - type: SecretRule
- - type: entity
- parent: BaseGameRule
- id: GracewallRule
- components:
- - type: GracewallRule
- - type: entity
- parent: BaseGameRule
- id: GracewallRule5
- components:
- - type: GracewallRule
- gracewallDuration: 300
- - type: entity
- parent: BaseGameRule
- id: CaptureAreaRule
- components:
- - type: CaptureAreaRule
- - type: entity
- parent: BaseGameRule
- id: CaptureAreaRuleAsymmetric
- components:
- - type: CaptureAreaRule
- mode: Asymmetric
- timer: 40
- defenderFactionName: SovietCW
- - type: entity
- id: TeamDeathMatchRule
- parent: BaseGameRule
- components:
- - type: TeamDeathMatchRule
- - type: entity
- parent: BaseGameRule
- id: FactionRule
- components:
- - type: FactionRule
- - type: entity
- id: RandomWeatherRule
- parent: BaseGameRule
- components:
- - type: RandomWeatherRule
- allowedWeathers: ["Rain", "Clear", "Storm"]
- - type: entity
- id: RandomWeatherRuleNightSnow
- parent: BaseGameRule
- components:
- - type: RandomWeatherRule
- allowedWeathers: ["SnowfallLight"]
- dayTimes: ["Night"]
|