From d036363d3fee9962fcd39b1ecf3c68f578486fad Mon Sep 17 00:00:00 2001 From: QuoteFox <49098813+quotefox@users.noreply.github.com> Date: Thu, 25 Jun 2020 07:10:00 +0100 Subject: [PATCH] remove mimic remove mimic because it fucks with other mimics in the game --- hyperstation/code/mobs/mimic.dm | 58 --------------------------------- 1 file changed, 58 deletions(-) diff --git a/hyperstation/code/mobs/mimic.dm b/hyperstation/code/mobs/mimic.dm index ec0ccf2e..e69de29b 100644 --- a/hyperstation/code/mobs/mimic.dm +++ b/hyperstation/code/mobs/mimic.dm @@ -1,58 +0,0 @@ -/mob/living/simple_animal/hostile/mimic - name = "Mimic" - icon = 'hyperstation/icons/mobs/mimic.dmi' - icon_state = "mimic" - icon_living = "mimic" - icon_dead = "mimic_dead" - gender = NEUTER - speak_chance = 0 - turns_per_move = 5 - maxHealth = 30 - health = 30 - see_in_dark = 3 - butcher_results = list(/obj/item/reagent_containers/food/snacks/meat/slab/killertomato = 2) - response_help = "prods" - response_disarm = "pushes aside" - response_harm = "smacks" - melee_damage_lower = 8 - melee_damage_upper = 12 - attacktext = "slams" - attack_sound = 'sound/weapons/punch1.ogg' - ventcrawler = VENTCRAWLER_ALWAYS - faction = list("plants") - - var/unstealth = FALSE - - -/mob/living/simple_animal/hostile/mimic/Initialize() -// When initialized, make sure they take the form of something. - unstealth = FALSE - Mimictransform() - -/mob/living/simple_animal/hostile/mimic/proc/Mimictransform() - - var/transformitem = rand(1,3) - - if (unstealth == FALSE) - switch(transformitem) - if(1) - //Glass - icon = 'icons/obj/drinks.dmi' - icon_state = "glass_empty" - aggro_vision_range = 0 - - if(2) - //Glass - icon = 'icons/obj/drinks.dmi' - icon_state = "glass_empty" - aggro_vision_range = 0 - - if(3) - //Glass - icon = 'icons/obj/drinks.dmi' - icon_state = "glass_empty" - aggro_vision_range = 0 - else - //back to normal - icon = 'hyperstation/icons/mobs/mimic.dmi' - icon_state = "mimic" \ No newline at end of file