slightly reduces crew requirements for disasters and also reduces crew weight for disasters

This commit is contained in:
Migratingcocofruit
2025-08-22 05:48:46 +03:00
parent 51f9c196d7
commit 2f410443a2
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ GLOBAL_LIST_INIT(xeno_things, list("xenos" = list(), "eggs" = list()))
var/list/playercount
var/successSpawn = FALSE //So we don't make a command report if nothing gets spawned.
nominal_severity = EVENT_LEVEL_DISASTER
role_weights = list(ASSIGNMENT_SECURITY = 5, ASSIGNMENT_CREW = 2, ASSIGNMENT_MEDICAL = 4)
role_weights = list(ASSIGNMENT_SECURITY = 5, ASSIGNMENT_CREW = 1.2, ASSIGNMENT_MEDICAL = 4)
role_requirements = list(ASSIGNMENT_SECURITY = 3, ASSIGNMENT_CREW = 50, ASSIGNMENT_MEDICAL = 5)
/datum/event/alien_infestation/setup()
+3 -3
View File
@@ -1,10 +1,10 @@
/datum/event/blob
name = "Blob"
announceWhen = 180
announceWhen = 180
noAutoEnd = TRUE
nominal_severity = EVENT_LEVEL_DISASTER
role_weights = list(ASSIGNMENT_SECURITY = 5, ASSIGNMENT_CREW = 2, ASSIGNMENT_MEDICAL = 3)
role_requirements = list(ASSIGNMENT_SECURITY = 3, ASSIGNMENT_CREW = 50, ASSIGNMENT_MEDICAL = 4)
role_weights = list(ASSIGNMENT_SECURITY = 5, ASSIGNMENT_CREW = 1.2, ASSIGNMENT_MEDICAL = 3)
role_requirements = list(ASSIGNMENT_SECURITY = 3, ASSIGNMENT_CREW = 45, ASSIGNMENT_MEDICAL = 4)
/// So we don't make a command report if nothing gets spawned.
var/successSpawn = FALSE
/// List of all blob cores and blob mice related to this event
+2 -2
View File
@@ -5,8 +5,8 @@
announceWhen = 240
noAutoEnd = TRUE
nominal_severity = EVENT_LEVEL_DISASTER
role_weights = list(ASSIGNMENT_SECURITY = 6, ASSIGNMENT_CREW = 2, ASSIGNMENT_MEDICAL = 4)
role_requirements = list(ASSIGNMENT_SECURITY = 5, ASSIGNMENT_CREW = 50, ASSIGNMENT_MEDICAL = 3)
role_weights = list(ASSIGNMENT_SECURITY = 6, ASSIGNMENT_CREW = 1.2, ASSIGNMENT_MEDICAL = 4)
role_requirements = list(ASSIGNMENT_SECURITY = 5, ASSIGNMENT_CREW = 45, ASSIGNMENT_MEDICAL = 3)
var/spawncount = 1
var/successSpawn = FALSE //So we don't make a command report if nothing gets spawned.