mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-30 08:39:12 +01:00
Merge pull request #6451 from CHOMPStation2/Razgriz-event
Event buffs: Meteors and Spiderlings
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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--
|
||||
|
||||
Reference in New Issue
Block a user