From 2f410443a2d396e5559aa3a399759089c811ca85 Mon Sep 17 00:00:00 2001 From: Migratingcocofruit Date: Fri, 22 Aug 2025 05:48:46 +0300 Subject: [PATCH] slightly reduces crew requirements for disasters and also reduces crew weight for disasters --- code/modules/events/alien_infestation.dm | 2 +- code/modules/events/blob_spawn.dm | 6 +++--- code/modules/events/spider_terror.dm | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/code/modules/events/alien_infestation.dm b/code/modules/events/alien_infestation.dm index 9506b72988d..7b7b0210cb7 100644 --- a/code/modules/events/alien_infestation.dm +++ b/code/modules/events/alien_infestation.dm @@ -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() diff --git a/code/modules/events/blob_spawn.dm b/code/modules/events/blob_spawn.dm index 3cc491ce2af..dc986ad7265 100644 --- a/code/modules/events/blob_spawn.dm +++ b/code/modules/events/blob_spawn.dm @@ -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 diff --git a/code/modules/events/spider_terror.dm b/code/modules/events/spider_terror.dm index e76b79adc24..50ac3c1520e 100644 --- a/code/modules/events/spider_terror.dm +++ b/code/modules/events/spider_terror.dm @@ -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.