From 8265a303d14a70aa4c3bc51ed8a28fc7c99a342f Mon Sep 17 00:00:00 2001 From: Razgriz Date: Wed, 5 Jul 2023 17:18:55 -0700 Subject: [PATCH] Broodling spiderlings and eggs --- modular_chomp/game/objects/effects/spiders.dm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 modular_chomp/game/objects/effects/spiders.dm diff --git a/modular_chomp/game/objects/effects/spiders.dm b/modular_chomp/game/objects/effects/spiders.dm new file mode 100644 index 0000000000..f3991f1568 --- /dev/null +++ b/modular_chomp/game/objects/effects/spiders.dm @@ -0,0 +1,19 @@ +//Eggs +/obj/effect/spider/eggcluster/broodling + spider_type = /obj/effect/spider/spiderling/broodling + +/obj/effect/spider/eggcluster/royal/broodling + spider_type = /obj/effect/spider/spiderling/varied/broodling + + + +//Spiderling types +/obj/effect/spider/spiderling/broodling + name = "brood spiderling" + grow_as = list(/mob/living/simple_mob/animal/giant_spider/broodling, /mob/living/simple_mob/animal/giant_spider/nurse/broodling, /mob/living/simple_mob/animal/giant_spider/hunter/broodling) + +/obj/effect/spider/spiderling/varied/broodling + grow_as = list(/mob/living/simple_mob/animal/giant_spider/broodling, /mob/living/simple_mob/animal/giant_spider/nurse/broodling, /mob/living/simple_mob/animal/giant_spider/hunter/broodling, + /mob/living/simple_mob/animal/giant_spider/frost/broodling, /mob/living/simple_mob/animal/giant_spider/electric/broodling, /mob/living/simple_mob/animal/giant_spider/lurker/broodling, + /mob/living/simple_mob/animal/giant_spider/pepper/broodling, /mob/living/simple_mob/animal/giant_spider/thermic/broodling, /mob/living/simple_mob/animal/giant_spider/tunneler/broodling, + /mob/living/simple_mob/animal/giant_spider/webslinger/broodling) \ No newline at end of file