From 30d4d95a3f350014c278da85c756dea1a707df84 Mon Sep 17 00:00:00 2001 From: SarmentiCampbell <111698205+UniquaSa@users.noreply.github.com> Date: Tue, 6 Sep 2022 18:41:15 +0200 Subject: [PATCH] removed crates --- .../structures/crate_lockers/largecrate.dm | 39 ------------------- 1 file changed, 39 deletions(-) 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 9bac08c2b6..d942579f16 100644 --- a/modular_chomp/code/game/objects/structures/crate_lockers/largecrate.dm +++ b/modular_chomp/code/game/objects/structures/crate_lockers/largecrate.dm @@ -19,42 +19,3 @@ starts_with = list(pick(/mob/living/simple_mob/vore/sect_drone, /mob/living/simple_mob/vore/sect_queen)) return ..() - -/obj/structure/largecrate/animal/guardbeast - name = "VARMAcorp autoNOMous security solution" - desc = "The VARMAcorp bioengineering division flagship product on trained optimal snowflake guard dogs." - icon = 'icons/obj/storage_vr.dmi' - icon_state = "sotiecrate" - starts_with = list(/mob/living/simple_mob/otie/security) - -/obj/structure/largecrate/animal/guardmutant - name = "VARMAcorp autoNOMous security solution for hostile environments." - desc = "The VARMAcorp bioengineering division flagship product on trained optimal snowflake guard dogs. This one can survive hostile atmosphere." - icon = 'icons/obj/storage_vr.dmi' - icon_state = "sotiecrate" - starts_with = list(/mob/living/simple_mob/otie/security/phoron) - -/obj/structure/largecrate/animal/otie - name = "VARMAcorp adoptable reject (Dangerous!)" - desc = "A warning on the side says the creature inside was returned to the supplier after injuring or devouring several unlucky members of the previous adoption family. It was given a second chance with the next customer. Godspeed and good luck with your new pet!" - icon = 'icons/obj/storage_vr.dmi' - icon_state = "otiecrate2" - starts_with = list(/mob/living/simple_mob/otie/cotie) - var/taped = 1 - -/obj/structure/largecrate/animal/otie/phoron - name = "VARMAcorp adaptive beta subject (Experimental)" - desc = "VARMAcorp experimental hostile environment adaptive breeding development kit. WARNING, DO NOT RELEASE IN WILD!" - starts_with = list(/mob/living/simple_mob/otie/cotie/phoron) - -/obj/structure/largecrate/animal/otie/phoron/Initialize() - starts_with = list(pick(/mob/living/simple_mob/otie/cotie/phoron;2, - /mob/living/simple_mob/otie/red/friendly;0.5)) - return ..() - -/obj/structure/largecrate/animal/otie/attack_hand(mob/living/carbon/human/M as mob) - if(taped == 1) - playsound(src, 'sound/items/poster_ripped.ogg', 50, 1) - icon_state = "otiecrate" - taped = 0 - ..()