mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-20 20:37:34 +01:00
14 lines
299 B
Plaintext
14 lines
299 B
Plaintext
/var/global/spacevines_spawned = 0
|
|
|
|
/datum/event/spacevine
|
|
name = "Space Vines"
|
|
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
|