This commit is contained in:
SandPoot
2023-01-23 20:44:28 -03:00
parent e292452aae
commit 54641ce201
103 changed files with 730 additions and 232 deletions
+4 -2
View File
@@ -4,15 +4,17 @@
weight = 5
max_occurrences = 1
min_players = 15
category = EVENT_CATEGORY_ENTITIES
description = "Spawns spider eggs, ready to hatch."
/datum/round_event/spider_infestation
announceWhen = 400
announce_when = 400
var/spawncount = 1
/datum/round_event/spider_infestation/setup()
announceWhen = rand(announceWhen, announceWhen + 50)
announce_when = rand(announce_when, announce_when + 50)
spawncount = rand(5, 8)
/datum/round_event/spider_infestation/announce(fake)