Extended rework & ramping event scheduler (#11362)

This commit is contained in:
Kara
2022-10-18 19:51:47 -07:00
committed by GitHub
parent 095a4a7136
commit 3fd226d9f0
19 changed files with 403 additions and 212 deletions

View File

@@ -1,2 +1,2 @@
extended-title = Extended
extended-description = No antagonists, have fun!
extended-description = A calm experience. Admin intervention required.

View File

@@ -0,0 +1,2 @@
survival-title = Survival
survival-description = No internal threats, but how long can the station survive increasingly chaotic and frequent events?

View File

@@ -1,4 +1,4 @@
## BasicStationEventSchedulerSystem
station-event-system-run-event = Running event {$eventName}
station-event-system-run-random-event-no-valid-events = No valid events available
station-event-system-run-random-event-no-valid-events = No valid event was given

View File

@@ -72,3 +72,9 @@
config:
!type:GenericGameRuleConfiguration
id: BasicStationEventScheduler
- type: gameRule
id: RampingStationEventScheduler
config:
!type:GenericGameRuleConfiguration
id: RampingStationEventScheduler

View File

@@ -1,13 +1,23 @@
- type: gamePreset
id: Survival
alias:
- survival
name: survival-title
showInVote: false # secret
description: survival-description
rules:
- RampingStationEventScheduler
- type: gamePreset
id: Extended
alias:
- extended
- shittersafari
- extended
- shittersafari
name: extended-title
showInVote: false #2boring2vote
description: extended-description
rules:
- BasicStationEventScheduler
- BasicStationEventScheduler
- type: gamePreset
id: Secret

View File

@@ -2,7 +2,7 @@
id: Welcome
sound: /Audio/Announcements/welcome.ogg
presets:
- Extended
- Survival
- Sandbox
- Secret
- Traitor

View File

@@ -1,7 +1,7 @@
- type: weightedRandom
id: Secret
weights:
Extended: 0.25
Survival: 0.25
Nukeops: 0.25
Traitor: 0.75
Zombie: 0.05