diff --git a/code/datums/supplypacks/misc_vr.dm b/code/datums/supplypacks/misc_vr.dm index 8118ff0ab1..67cdfbb562 100644 --- a/code/datums/supplypacks/misc_vr.dm +++ b/code/datums/supplypacks/misc_vr.dm @@ -176,3 +176,10 @@ access_pilot ) one_access = TRUE + +/datum/supply_pack/misc/swoopie //CHOMPAdd + name = "SWOOPIE XL CleanBot Kit" + contains = list() + cost = 100 + containertype = /obj/structure/largecrate/animal/swoopie + containername = "SWOOPIE XL CleanBot Starter Kit" \ No newline at end of file diff --git a/modular_chomp/code/game/objects/structures/crate_lockers/largecrate.dm b/modular_chomp/code/game/objects/structures/crate_lockers/largecrate.dm index d942579f16..034459d944 100644 --- a/modular_chomp/code/game/objects/structures/crate_lockers/largecrate.dm +++ b/modular_chomp/code/game/objects/structures/crate_lockers/largecrate.dm @@ -14,8 +14,12 @@ name = "Dangerous drone carrier" starts_with = list(/mob/living/simple_mob/vore/sect_drone) - /obj/structure/largecrate/animal/bugsect/Initialize() starts_with = list(pick(/mob/living/simple_mob/vore/sect_drone, /mob/living/simple_mob/vore/sect_queen)) return ..() + +/obj/structure/largecrate/animal/swoopie + name = "SWOOPIE XL CleanBot Starter Kit" + desc = "WARNING: HAZARDOUS CONTENTS. HANDLE WITH CAUTION. Consult spiritual observer intervention to avoid rogue units. (That means ghosts. Ominous.)" + starts_with = list(/mob/living/simple_mob/vore/aggressive/corrupthound/swoopie) diff --git a/modular_chomp/code/modules/mob/living/simple_mob/subtypes/vore/swoopie.dm b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/vore/swoopie.dm index 5f456e4a95..f86ab27e42 100644 --- a/modular_chomp/code/modules/mob/living/simple_mob/subtypes/vore/swoopie.dm +++ b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/vore/swoopie.dm @@ -17,6 +17,7 @@ vore_pounce_chance = 100 vore_pounce_maxhealth = 125 has_hands = TRUE + faction = "neutral" /mob/living/simple_mob/vore/aggressive/corrupthound/swoopie/init_vore() if(!voremob_loaded)