mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-27 10:41:42 +00:00
13 lines
276 B
Plaintext
13 lines
276 B
Plaintext
/var/global/spacevines_spawned = 0
|
|
|
|
/datum/event/spacevine
|
|
oneShot = 1
|
|
|
|
/datum/event/spacevine/start()
|
|
//biomass is basically just a resprited version of space vines
|
|
if(prob(50))
|
|
spacevine_infestation()
|
|
else
|
|
biomass_infestation()
|
|
spacevines_spawned = 1
|