From a2f7e2f3e8084dc57e6c4f2415c245a8c69212fe Mon Sep 17 00:00:00 2001 From: Necaladun Date: Tue, 17 Jun 2014 14:36:10 +0930 Subject: [PATCH] Random Event Chance Tweaks Reduce viral outbreak and ninja chances. --- code/modules/events/event_dynamic.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/events/event_dynamic.dm b/code/modules/events/event_dynamic.dm index 3a03999b0a7..2045a3b4a3d 100644 --- a/code/modules/events/event_dynamic.dm +++ b/code/modules/events/event_dynamic.dm @@ -95,7 +95,7 @@ var/global/list/possibleEvents = list() if(active_with_role["Medical"] > 0) possibleEvents[/datum/event/radiation_storm] = active_with_role["Medical"] * 50 possibleEvents[/datum/event/spontaneous_appendicitis] = active_with_role["Medical"] * 150 - possibleEvents[/datum/event/viral_outbreak] = active_with_role["Medical"] * 10 + possibleEvents[/datum/event/viral_outbreak] = active_with_role["Medical"] * 5 possibleEvents[/datum/event/organ_failure] = active_with_role["Medical"] * 50 possibleEvents[/datum/event/prison_break] = active_with_role["Security"] * 50 @@ -103,7 +103,7 @@ var/global/list/possibleEvents = list() if(aliens_allowed && !sent_aliens_to_station) possibleEvents[/datum/event/alien_infestation] = max(active_with_role["Security"], 5) + 2.5 if(!sent_ninja_to_station && toggle_space_ninja) - possibleEvents[/datum/event/space_ninja] = active_with_role["Security"] * 20 + possibleEvents[/datum/event/space_ninja] = active_with_role["Security"] * 5 possibleEvents[/datum/event/undead] = active_with_role["Security"] * 15 possibleEvents[/datum/event/ghosts] = active_with_role["Security"] * 25 possibleEvents[/datum/event/tear] = active_with_role["Security"] * 25