diff --git a/code/_helpers/global_lists_vr.dm b/code/_helpers/global_lists_vr.dm index edc61731ed3..660344cbf5e 100644 --- a/code/_helpers/global_lists_vr.dm +++ b/code/_helpers/global_lists_vr.dm @@ -720,7 +720,6 @@ var/global/list/xenobio_gold_mobs_bosses = list( var/global/list/xenobio_gold_mobs_safe = list( /mob/living/simple_mob/vore/alienanimals/dustjumper, - /mob/living/simple_mob/vore/alienanimals/teppi, /mob/living/simple_mob/animal/passive/chicken, /mob/living/simple_mob/animal/passive/cow, /mob/living/simple_mob/animal/goat, @@ -897,8 +896,7 @@ var/global/list/event_wildlife_roaming = list( list(/mob/living/simple_mob/vore/sheep = 3, /mob/living/simple_mob/animal/goat = 1), list(/mob/living/simple_mob/vore/hippo = 1), - list(/mob/living/simple_mob/vore/alienanimals/dustjumper = 1), - list(/mob/living/simple_mob/vore/alienanimals/teppi = 1) + list(/mob/living/simple_mob/vore/alienanimals/dustjumper = 1) ), list( list(/mob/living/simple_mob/vore/aggressive/frog = 1), diff --git a/code/game/objects/effects/semirandom_mobs_vr.dm b/code/game/objects/effects/semirandom_mobs_vr.dm index 63be43d6aff..4b7cba1b437 100644 --- a/code/game/objects/effects/semirandom_mobs_vr.dm +++ b/code/game/objects/effects/semirandom_mobs_vr.dm @@ -426,7 +426,6 @@ var/global/list/semirandom_mob_spawner_decisions = list() ) = 5, list(/mob/living/simple_mob/animal/sif/siffet) = 5, list(/mob/living/simple_mob/animal/sif/tymisian) = 5, - list(/mob/living/simple_mob/vore/alienanimals/teppi) = 10, list(/mob/living/simple_mob/vore/alienanimals/dustjumper) = 5, list(/mob/living/simple_mob/vore/alienanimals/space_jellyfish) = 5, list(/mob/living/simple_mob/vore/alienanimals/space_ghost) = 5, @@ -788,8 +787,7 @@ var/global/list/semirandom_mob_spawner_decisions = list() /mob/living/simple_mob/vore/sect_queen = 1 ) = 50, list(/mob/living/simple_mob/vore/solargrub) = 100, - list(/mob/living/simple_mob/vore/woof) = 1, - list(/mob/living/simple_mob/vore/alienanimals/teppi) = 25 + list(/mob/living/simple_mob/vore/woof) = 1 ) /obj/random/mob/semirandom_mob_spawner/sus diff --git a/code/game/turfs/flooring/seasonal.dm b/code/game/turfs/flooring/seasonal.dm index b5adfeac83e..720ccefc176 100644 --- a/code/game/turfs/flooring/seasonal.dm +++ b/code/game/turfs/flooring/seasonal.dm @@ -41,8 +41,6 @@ var/world_time_season /obj/structure/flora/tree/jungle ) animal_types = list( - /mob/living/simple_mob/vore/alienanimals/teppi = 10, - /mob/living/simple_mob/vore/alienanimals/teppi/mutant = 1, /mob/living/simple_mob/vore/redpanda = 40, /mob/living/simple_mob/vore/redpanda/fae = 2, /mob/living/simple_mob/vore/sheep = 20, @@ -75,8 +73,6 @@ var/world_time_season /obj/structure/flora/tree/jungle ) animal_types = list( - /mob/living/simple_mob/vore/alienanimals/teppi = 10, - /mob/living/simple_mob/vore/alienanimals/teppi/mutant = 1, /mob/living/simple_mob/vore/redpanda = 40, /mob/living/simple_mob/vore/redpanda/fae = 2, /mob/living/simple_mob/vore/sheep = 20, @@ -99,8 +95,6 @@ var/world_time_season ) animal_types = list( - /mob/living/simple_mob/vore/alienanimals/teppi = 10, - /mob/living/simple_mob/vore/alienanimals/teppi/mutant = 1, /mob/living/simple_mob/vore/redpanda = 40, /mob/living/simple_mob/vore/redpanda/fae = 2, /mob/living/simple_mob/vore/sheep = 20, @@ -127,8 +121,6 @@ var/world_time_season animal_types = list( /mob/living/simple_mob/vore/rabbit/white = 40, - /mob/living/simple_mob/vore/alienanimals/teppi = 10, - /mob/living/simple_mob/vore/alienanimals/teppi/mutant = 1, /mob/living/simple_mob/vore/redpanda = 10 ) if(prob(snow_chance)) diff --git a/code/modules/mining/abandonedcrates_vr.dm b/code/modules/mining/abandonedcrates_vr.dm index 7e4b8e24377..e5297e4f6c9 100644 --- a/code/modules/mining/abandonedcrates_vr.dm +++ b/code/modules/mining/abandonedcrates_vr.dm @@ -75,7 +75,6 @@ prob(5);/obj/item/weapon/gun/energy/mouseray/giantrat, prob(50);/obj/item/weapon/gun/energy/mouseray/redpanda, prob(5);/obj/item/weapon/gun/energy/mouseray/catslug, - prob(5);/obj/item/weapon/gun/energy/mouseray/teppi, prob(1);/obj/item/weapon/gun/energy/mouseray/metamorphosis, prob(1);/obj/item/weapon/gun/energy/mouseray/metamorphosis/advanced/random ), 8) = 2, diff --git a/code/modules/planet/virgo3c_vr.dm b/code/modules/planet/virgo3c_vr.dm index e4cb8299816..3a461a5107b 100644 --- a/code/modules/planet/virgo3c_vr.dm +++ b/code/modules/planet/virgo3c_vr.dm @@ -640,8 +640,6 @@ VIRGO3C_TURF_CREATE(/turf/simulated/floor/tiled/asteroid_steel/outdoors) var/animal_chance = 0.5 var/animal_types = list( - /mob/living/simple_mob/vore/alienanimals/teppi = 10, - /mob/living/simple_mob/vore/alienanimals/teppi/mutant = 1, /mob/living/simple_mob/vore/redpanda = 40, /mob/living/simple_mob/vore/redpanda/fae = 2, /mob/living/simple_mob/vore/sheep = 20, diff --git a/code/modules/vore/mouseray.dm b/code/modules/vore/mouseray.dm index 8ec0a348d20..20ea7baa0be 100644 --- a/code/modules/vore/mouseray.dm +++ b/code/modules/vore/mouseray.dm @@ -402,7 +402,6 @@ "red otie" = /mob/living/simple_mob/otie/red, "defanged xenomorph" = /mob/living/simple_mob/vore/xeno_defanged, "catslug" = /mob/living/simple_mob/vore/alienanimals/catslug, - "teppi" = /mob/living/simple_mob/vore/alienanimals/teppi, "monkey" = /mob/living/carbon/human/monkey, "wolpin" = /mob/living/carbon/human/wolpin, "sparra" = /mob/living/carbon/human/sparram, @@ -513,7 +512,6 @@ prob(5);/obj/item/weapon/gun/energy/mouseray/giantrat, prob(50);/obj/item/weapon/gun/energy/mouseray/redpanda, prob(5);/obj/item/weapon/gun/energy/mouseray/catslug, - prob(5);/obj/item/weapon/gun/energy/mouseray/teppi, prob(1);/obj/item/weapon/gun/energy/mouseray/metamorphosis, prob(1);/obj/item/weapon/gun/energy/mouseray/metamorphosis/advanced/random ) diff --git a/code/modules/xenoarcheaology/artifacts/replicator_vr.dm b/code/modules/xenoarcheaology/artifacts/replicator_vr.dm index 8fc3dba9b4d..43580ad72b8 100644 --- a/code/modules/xenoarcheaology/artifacts/replicator_vr.dm +++ b/code/modules/xenoarcheaology/artifacts/replicator_vr.dm @@ -22,7 +22,6 @@ /mob/living/simple_mob/animal/wolf/direwolf, /mob/living/simple_mob/otie/friendly, /mob/living/simple_mob/vore/alienanimals/catslug, - /mob/living/simple_mob/vore/alienanimals/teppi, /mob/living/simple_mob/vore/fennec, /mob/living/simple_mob/vore/xeno_defanged, /mob/living/simple_mob/vore/redpanda/fae, diff --git a/maps/expedition_vr/beach/_beach.dm b/maps/expedition_vr/beach/_beach.dm index f63be856253..9013936d50a 100644 --- a/maps/expedition_vr/beach/_beach.dm +++ b/maps/expedition_vr/beach/_beach.dm @@ -85,10 +85,8 @@ //guard = 40 //They'll stay within this range (not defining this disables them staying nearby and they will wander the map (and through step teleports)) mobs_to_pick_from = list( /mob/living/simple_mob/vore/fennec = 300, - /mob/living/simple_mob/animal/passive/snake/python = 100, - /mob/living/simple_mob/vore/alienanimals/teppi = 10, - /mob/living/simple_mob/vore/alienanimals/teppi/baby = 1 - ) + /mob/living/simple_mob/animal/passive/snake/python = 100 + ) /obj/tether_away_spawner/beach_outside_friendly name = "Fennec Spawner" diff --git a/maps/stellar_delight/stellar_delight2.dmm b/maps/stellar_delight/stellar_delight2.dmm index 38f3f01c8d2..3c45547994e 100644 --- a/maps/stellar_delight/stellar_delight2.dmm +++ b/maps/stellar_delight/stellar_delight2.dmm @@ -340,13 +340,6 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"aH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/mob/living/simple_mob/vore/alienanimals/teppi/baby, -/turf/simulated/floor/grass, -/area/hydroponics) "aI" = ( /obj/structure/cable{ icon_state = "1-2" @@ -406,11 +399,6 @@ /obj/random/tech_supply, /turf/simulated/floor/tiled/eris/dark/orangecorner, /area/engineering/engine_eva) -"aP" = ( -/obj/structure/disposalpipe/segment, -/mob/living/simple_mob/vore/alienanimals/teppi/baby, -/turf/simulated/floor/grass, -/area/hydroponics) "aQ" = ( /obj/structure/grille, /turf/simulated/floor/airless, @@ -31200,7 +31188,7 @@ sA iZ ii WN -aH +ok LS Jp KK @@ -31343,7 +31331,7 @@ wP JI fa aJ -aP +rP rP hf Nw diff --git a/maps/tether/tether_things.dm b/maps/tether/tether_things.dm index 13c1b6cec08..31c72fcbfc2 100644 --- a/maps/tether/tether_things.dm +++ b/maps/tether/tether_things.dm @@ -350,6 +350,5 @@ prob_spawn = 75 prob_fall = 50 mobs_to_pick_from = list( - /mob/living/simple_mob/animal/passive/gaslamp = 300, - /mob/living/simple_mob/vore/alienanimals/teppi = 4 + /mob/living/simple_mob/animal/passive/gaslamp = 300 )