diff --git a/code/modules/events/spider_infestation.dm b/code/modules/events/spider_infestation.dm index cccf1485a6..58fc5e3298 100644 --- a/code/modules/events/spider_infestation.dm +++ b/code/modules/events/spider_infestation.dm @@ -11,7 +11,7 @@ kill() return announceWhen = rand(announceWhen, announceWhen + 60) - spawncount = rand(6 * severity, 14 * severity) //spiderlings only have a 50% chance to grow big and strong //CHOMP Edit: old: 2/4 new: 6/14 + spawncount = rand(4 * severity, 10 * severity) //spiderlings only have a 50% chance to grow big and strong //CHOMP Edit: old: 2/4 new: 6/14 new: 4/10 sent_spiders_to_station = 0 /datum/event/spider_infestation/announce() @@ -35,8 +35,9 @@ var/obj/vent = pick(vents) //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 + /obj/effect/spider/spiderling = 85, + /obj/effect/spider/eggcluster = 10, + /obj/effect/spider/eggcluster/royal = 5 )) 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 diff --git a/modular_chomp/code/modules/mob/living/simple_mob/subtypes/animal/spider.dm b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/animal/spider.dm index 0d24d4e28a..2fa6c9dcac 100644 --- a/modular_chomp/code/modules/mob/living/simple_mob/subtypes/animal/spider.dm +++ b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/animal/spider.dm @@ -1,45 +1,52 @@ //Unfiying spider health, into two catagories. Disrupters and tanks. /mob/living/simple_mob/animal/giant_spider/carrier //Disrupter, old 100 - maxHealth = 70 - health = 70 + maxHealth = 60 + health = 60 /mob/living/simple_mob/animal/giant_spider/electric //disrupter, old 210 - maxHealth = 70 - health = 70 + maxHealth = 60 + health = 60 projectiletype = /obj/item/projectile/energy/mob/electric_spider /mob/living/simple_mob/animal/giant_spider/frost //tank, old 175 - maxHealth = 130 - health = 130 + maxHealth = 120 + health = 120 + +/mob/living/simple_mob/animal/giant_spider //tank, old 200 + maxHealth = 120 + health = 120 /mob/living/simple_mob/animal/giant_spider/ion //disrupter, old 90 - maxHealth = 70 - health = 70 + maxHealth = 60 + health = 60 /mob/living/simple_mob/animal/giant_spider/hunter //disrupter, old 120 - maxHealth = 70 - health = 70 + maxHealth = 60 + health = 60 /mob/living/simple_mob/animal/giant_spider/lurker //disrupter, old 100 - maxHealth = 70 - health = 70 + maxHealth = 60 + health = 60 /mob/living/simple_mob/animal/giant_spider/pepper //tank, old 210 - maxHealth = 130 - health = 130 + maxHealth = 120 + health = 120 /mob/living/simple_mob/animal/giant_spider/phorogenic //tank, old 225 - maxHealth = 130 - health = 130 + maxHealth = 120 + health = 120 /mob/living/simple_mob/animal/giant_spider/thermic //tank, old 175 - maxHealth = 130 - health = 130 + maxHealth = 120 + health = 120 /mob/living/simple_mob/animal/giant_spider/tunneler_spider //disrupter, old 120 - maxHealth = 70 - health = 70 + maxHealth = 60 + health = 60 /mob/living/simple_mob/animal/giant_spider/webslinger //disrupter, old 90 - maxHealth = 70 - health = 70 \ No newline at end of file + maxHealth = 60 + health = 60 + +/obj/effect/spider/eggcluster + spider_type = /obj/effect/spider/spiderling/varied \ No newline at end of file