mirror of
https://github.com/Aurorastation/Aurora-Old.git
synced 2026-07-14 09:12:27 +01:00
13 lines
264 B
Plaintext
13 lines
264 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
|