Merge pull request #6451 from CHOMPStation2/Razgriz-event

Event buffs: Meteors and Spiderlings
This commit is contained in:
Raeschen
2023-06-24 08:53:42 +02:00
committed by GitHub
2 changed files with 8 additions and 2 deletions
+1 -1
View File
@@ -51,7 +51,7 @@
endWhen = worst_case_end()
/datum/event/meteor_wave/proc/get_wave_size()
return severity * rand(2, 3)
return severity * rand(2,4) //CHOMP Edit: Increase maximum multipler from 3 to 4.
/datum/event/meteor_wave/proc/worst_case_end()
return activeFor + ((30 / severity) * waves) + 10
+7 -1
View File
@@ -33,6 +33,12 @@
while((spawncount >= 1) && vents.len)
var/obj/vent = pick(vents)
new /obj/effect/spider/spiderling(vent.loc) //VOREStation Edit - No nurses //Oh my JESUS CHRIST, this slipped past me. Literally no nurses. Well guess what, nurses are back.
//CHOMPEDIT START adding spider EGGS to the possible spawns instead of singular spiderling spawns.
var/spawn_spiderlings = pickweight(list(
/obj/effect/spider/spiderling = 90,
/obj/effect/spider/eggcluster = 10
))
new spawn_spiderlings(vent.loc) //VOREStation Edit - No nurses //Oh my JESUS CHRIST, this slipped past me. Literally no nurses. Well guess what, nurses are back.
//CHOMPEDIT END
vents -= vent
spawncount--