mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-02-09 07:49:09 +00:00
* Return of the scrubber overflow event (#68378) About The Pull Request Brings back the scrubber overflow event, previously removed in #53549 This version has nerfed numbers because foam changes made it stupidly powerful. Also snake_cases some event variables. Why It's Good For The Game More dangerous but not station-damaging events. Bonus: janitor content. Changelog cl add: Re-adds the scrubber overflow event as a random event /cl * Return of the scrubber overflow event * update modular and fix missing non modular edit * update stray meteor event Co-authored-by: tattle <66640614+dragomagol@users.noreply.github.com> Co-authored-by: Tom <8881105+tf-4@users.noreply.github.com>
17 lines
436 B
Plaintext
17 lines
436 B
Plaintext
/datum/round_event_control/wizard/lava //THE LEGEND NEVER DIES
|
|
name = "The Floor Is LAVA!"
|
|
weight = 2
|
|
typepath = /datum/round_event/wizard/lava
|
|
max_occurrences = 3
|
|
earliest_start = 0 MINUTES
|
|
description = "Turns the floor into hot lava."
|
|
|
|
/datum/round_event/wizard/lava
|
|
end_when = 0
|
|
var/started = FALSE
|
|
|
|
/datum/round_event/wizard/lava/start()
|
|
if(!started)
|
|
started = TRUE
|
|
SSweather.run_weather(/datum/weather/floor_is_lava)
|