From aa2c74aef54429a08bad2e5556bcd6fa9d8126ad Mon Sep 17 00:00:00 2001 From: Spades Date: Fri, 3 Jun 2016 22:57:51 -0400 Subject: [PATCH] Replaced mobs with vore versions. --- code/game/gamemodes/cult/cult_structures.dm | 4 ++-- code/game/gamemodes/events.dm | 2 +- code/game/machinery/teleporter.dm | 2 +- code/game/objects/items/weapons/grenades/spawnergrenade.dm | 2 +- code/modules/events/carp_migration.dm | 6 +++--- code/modules/mob/transform_procs.dm | 4 ++-- .../xenoarchaeology/artifact/artifact_autocloner.dm | 6 +++--- .../modules/research/xenoarchaeology/finds/finds_special.dm | 2 +- code/modules/spells/aoe_turf/summons.dm | 4 ++-- 9 files changed, 16 insertions(+), 16 deletions(-) diff --git a/code/game/gamemodes/cult/cult_structures.dm b/code/game/gamemodes/cult/cult_structures.dm index 0f2c4d83b6..b310bc9ca1 100644 --- a/code/game/gamemodes/cult/cult_structures.dm +++ b/code/game/gamemodes/cult/cult_structures.dm @@ -109,7 +109,7 @@ light_color="#ff0000" spawnable=list( /mob/living/simple_animal/hostile/scarybat, - /mob/living/simple_animal/hostile/creature, + /mob/living/simple_animal/hostile/vore/creature, // Vorestation Edit /mob/living/simple_animal/hostile/faithless ) @@ -118,7 +118,7 @@ light_color="#ff0000" spawnable=list( /mob/living/simple_animal/hostile/scarybat/cult, - /mob/living/simple_animal/hostile/creature/cult, + /mob/living/simple_animal/hostile/vore/creature/cult, // Vorestation Edit /mob/living/simple_animal/hostile/faithless/cult ) diff --git a/code/game/gamemodes/events.dm b/code/game/gamemodes/events.dm index 4bf9e808dd..bdc4052589 100644 --- a/code/game/gamemodes/events.dm +++ b/code/game/gamemodes/events.dm @@ -210,7 +210,7 @@ var/hadevent = 0 /proc/carp_migration() // -- Darem for(var/obj/effect/landmark/C in landmarks_list) if(C.name == "carpspawn") - new /mob/living/simple_animal/hostile/carp(C.loc) + new /mob/living/simple_animal/hostile/vore/carp(C.loc) // Vorestation edit //sleep(100) spawn(rand(300, 600)) //Delayed announcements to keep the crew on their toes. command_announcement.Announce("Unknown biological entities have been detected near [station_name()], please stand-by.", "Lifesign Alert", new_sound = 'sound/AI/commandreport.ogg') diff --git a/code/game/machinery/teleporter.dm b/code/game/machinery/teleporter.dm index 13ff75e071..4dad236b73 100644 --- a/code/game/machinery/teleporter.dm +++ b/code/game/machinery/teleporter.dm @@ -64,7 +64,7 @@ for(var/obj/machinery/teleport/hub/H in range(1)) var/amount = rand(2,5) for(var/i=0;i= 3) if(prob(5)) charges -= 1 - var/spawn_type = pick(/mob/living/simple_animal/hostile/creature) + var/spawn_type = pick(/mob/living/simple_animal/hostile/vore/creature) // Vorestation Edit new spawn_type(pick(view(1,src))) playsound(src.loc, pick('sound/hallucinations/growl1.ogg','sound/hallucinations/growl2.ogg','sound/hallucinations/growl3.ogg'), 50, 1, -3) diff --git a/code/modules/spells/aoe_turf/summons.dm b/code/modules/spells/aoe_turf/summons.dm index 996b583585..2d62b7c561 100644 --- a/code/modules/spells/aoe_turf/summons.dm +++ b/code/modules/spells/aoe_turf/summons.dm @@ -20,7 +20,7 @@ invocation_type = SpI_SHOUT range = 1 - summon_type = list(/mob/living/simple_animal/hostile/carp) + summon_type = list(/mob/living/simple_animal/hostile/vore/carp) // Vorestation Edit hud_state = "wiz_carp" @@ -36,6 +36,6 @@ summon_amt = 10 range = 3 - summon_type = list(/mob/living/simple_animal/hostile/creature) + summon_type = list(/mob/living/simple_animal/hostile/vore/creature) // Vorestation Edit hud_state = "wiz_creature" \ No newline at end of file