Files
klorpaandGitHub f445ffde0a Spelling Fixes (#8973)
* SpellingFixes

* OtherTypos

* OtherTypos
2023-04-08 21:39:28 -08:00

19 lines
728 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 that's not really controllable.
chaotic_threshold = EVENT_CHAOS_THRESHOLD_MEDIUM_IMPACT
event_type = /datum/event2/event/spacevine
regions = list(EVENT_REGION_PLAYER_MAIN_AREA)
/datum/event2/meta/spacevine/get_weight()
return 20 + (metric.count_people_in_department(DEPARTMENT_ENGINEERING) * 10) + (metric.count_people_in_department(DEPARTMENT_EVERYONE) * 5)
/datum/event2/event/spacevine/announce()
level_seven_announcement()
/datum/event2/event/spacevine/start()
spacevine_infestation()