Nerfs Clogged Vents Harder (#35317)

* Nerfs Clogged Vents Harder

nnow requires 50 people minimum, lowers the weight down to 25

* Update vent_clog.dm
This commit is contained in:
Iamgoofball
2018-02-05 12:01:54 -08:00
committed by vuonojenmustaturska
parent b75a5ef901
commit 4eb008f5bb

View File

@@ -1,8 +1,9 @@
/datum/round_event_control/vent_clog /datum/round_event_control/vent_clog
name = "Clogged Vents" name = "Clogged Vents"
typepath = /datum/round_event/vent_clog typepath = /datum/round_event/vent_clog
weight = 35 weight = 25
max_occurrences = 1 max_occurrences = 1
min_players = 50
/datum/round_event/vent_clog /datum/round_event/vent_clog
announceWhen = 1 announceWhen = 1
@@ -27,9 +28,9 @@
if(vent && vent.loc) if(vent && vent.loc)
var/datum/reagents/R = new/datum/reagents(1000) var/datum/reagents/R = new/datum/reagents(1000)
R.my_atom = vent R.my_atom = vent
R.add_reagent(get_random_reagent_id(), 1000) R.add_reagent(get_random_reagent_id(), 250)
var/datum/effect_system/foam_spread/long/foam = new var/datum/effect_system/foam_spread/foam = new
foam.set_up(200, get_turf(vent), R) foam.set_up(200, get_turf(vent), R)
foam.start() foam.start()