From 97cf07960d77302c472d4c5a7caeaaf6d4d537df Mon Sep 17 00:00:00 2001 From: Razgriz Date: Tue, 19 Feb 2019 02:38:09 -0700 Subject: [PATCH] Adds lizardman mob Health: 50 Damage: 5~15 Vore pounce chance: 1% --- .../living/simple_animal/vore/lizardman.dm | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 code/modules/mob/living/simple_animal/vore/lizardman.dm diff --git a/code/modules/mob/living/simple_animal/vore/lizardman.dm b/code/modules/mob/living/simple_animal/vore/lizardman.dm new file mode 100644 index 0000000000..17cbf5822d --- /dev/null +++ b/code/modules/mob/living/simple_animal/vore/lizardman.dm @@ -0,0 +1,34 @@ +/mob/living/simple_animal/hostile/lizardman //CHOMPERS addition, an aggressive angry lizardman. + name = "lizardman" + desc = "That is one buff, angry lizard." + tt_desc = "E Anolis cuvieri muscular" + icon = 'icons/mob/vore32x64.dmi' + icon_state = "lizardman" + icon_living = "lizardman" + icon_dead = "lizardman-dead" + + maxHealth = 50 + health = 50 + + investigates = TRUE + melee_damage_lower = 5 + melee_damage_upper = 15 + grab_resist = 100 + attack_sound = 'sound/weapons/bite.ogg' + + speak_chance = 4 + speak = list("Gwar!","Rawr!","Hiss.") + speak_emote = list("growls","hisses") + say_maybe_target = list("Rawr?") + say_got_target = list("GWAR!!") + response_help = "pets the" + response_disarm = "bops the" + response_harm = "hits the" + attacktext = list("bit") + friendly = list("nuzzles", "licks", "noses softly at", "noseboops", "headbumps against", "leans on", "nibbles affectionately on") + + + vore_active = TRUE + vore_capacity = 1 + vore_pounce_chance = 1 + vore_icons = SA_ICON_LIVING \ No newline at end of file