mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-22 04:37:45 +01:00
19 lines
848 B
Plaintext
19 lines
848 B
Plaintext
/datum/event2/meta/spacevine
|
|
name = "space-vine infestation"
|
|
departments = list(DEPARTMENT_ENGINEERING)
|
|
chaos = 10 // There's a really rare chance of vines getting something awful like phoron atmosphere but thats not really controllable.
|
|
chaotic_threshold = EVENT_CHAOS_THRESHOLD_MEDIUM_IMPACT
|
|
event_type = /datum/event2/event/spacevine
|
|
|
|
/datum/event2/meta/spacevine/get_weight()
|
|
return 20 + (GLOB.metric.count_people_in_department(DEPARTMENT_ENGINEERING) * 10) + (GLOB.metric.count_people_in_department(DEPARTMENT_EVERYONE) * 5)
|
|
|
|
|
|
|
|
/datum/event2/event/spacevine/announce()
|
|
//level_seven_announcement() // Chomp Edit
|
|
GLOB.command_announcement.Announce("Hazardous plant infestation detected on \the [station_name()]. Station facilities may be overgrown.", "Hazardous Biomass")
|
|
|
|
/datum/event2/event/spacevine/start()
|
|
spacevine_infestation()
|