Files
CHOMPStation2/code/modules/gamemaster/actions/spacevine.dm
Neerti f830985d38 Merge pull request #6072 from Mechoid/Start_Conversion_To_Good_RNG
[RNG is the new RNG] Converts a bunch of events to the Game Master datum system.
2019-05-13 22:57:23 -04:00

15 lines
416 B
Plaintext

/datum/gm_action/spacevine
name = "space-vine infestation"
departments = list(ROLE_ENGINEERING)
chaotic = 2
/datum/gm_action/spacevine/start()
..()
spacevine_infestation()
/datum/gm_action/spacevine/announce()
level_seven_announcement()
/datum/gm_action/spacevine/get_weight()
return 20 + (metric.count_people_in_department(ROLE_ENGINEERING) * 20) + (metric.count_people_in_department(ROLE_EVERYONE) * 10)