Readjusts blob random event

This commit is contained in:
RKF45
2014-02-07 19:57:46 +01:00
parent 27dba28a54
commit 64dcb5a693
2 changed files with 3 additions and 3 deletions

View File

@@ -15,8 +15,8 @@
if(!T)
kill()
return
Blob = new /obj/effect/blob/core(T, 200)
for(var/i = 1; i < rand(3, 6), i++)
Blob = new /obj/effect/blob/core(T, 120)
for(var/i = 1; i < rand(3, 4), i++)
Blob.process()

View File

@@ -70,7 +70,7 @@ var/list/event_last_fired = list()
if(minutes_passed >= 30) // Give engineers time to set up engine
possibleEvents[/datum/event/meteor_wave] = 10 * active_with_role["Engineer"]
possibleEvents[/datum/event/meteor_shower] = 20 * active_with_role["Engineer"]
possibleEvents[/datum/event/blob] = 20 * active_with_role["Engineer"]
possibleEvents[/datum/event/blob] = 10 * active_with_role["Engineer"]
possibleEvents[/datum/event/viral_infection] = 25 + active_with_role["Medical"] * 15
if(active_with_role["Medical"] > 0)