diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/wolf.dm b/code/modules/mob/living/simple_mob/subtypes/vore/wolf.dm index 65c64bb9f3..e236eb80bb 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/wolf.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/wolf.dm @@ -81,7 +81,7 @@ harm_intent_damage = 10 melee_damage_lower = 10 melee_damage_upper = 20 - maxHealth = 200 + maxHealth = 300 minbodytemp = 0 @@ -103,3 +103,48 @@ /mob/living/simple_mob/animal/wolf/direwolf/MouseDrop_T(mob/living/M, mob/living/user) return + +/mob/living/simple_mob/animal/wolf/direwolf/dog + name = "large dog" + desc = "The biggest and goodest dog around." + tt_desc = "Canis maxdirus familiaris" + + icon_dead = "diredog-dead" + icon_living = "diredog" + icon_state = "diredog" + icon_rest = "diredog_rest" + +/mob/living/simple_mob/animal/wolf/direwolf/rykka + name = "Rykka" + desc = "This big canine looks like a GSD. It has a collar tagged, 'Bitch'" + tt_desc = "Canidae" + + icon_dead = "rykka-dead" + icon_living = "rykka" + icon_state = "rykka" + icon_rest = "rykka_rest" + faction = "underdark" + has_eye_glow = TRUE + + vore_bump_chance = 100 + vore_bump_emote = "clamps down on with iron jaws" + vore_default_contamination_color = "purple" + vore_default_contamination_flavor = "Acrid" + vore_digest_chance = 85 + vore_escape_chance = 5 + vore_pounce_chance = 100 + vore_pounce_maxhealth = 100 + vore_stomach_name = "Gut" + vore_stomach_flavor = "A black-and-purple veined gut, pulsing warmly around you. Loud gurgles sound around you as the gut squishes inwards and attempts to crush you - Rykka seems intent on digesting you, like the meat you are." + +/mob/living/simple_mob/animal/wolf/direwolf/andrews + name = "andrewsarchus" + desc = "That's one massive mean-looking piece of long extinct megafauna." + tt_desc = "Andrewsarchus mongoliensis" + + icon_dead = "andrews-dead" + icon_living = "andrews" + icon_state = "andrews" + icon_rest = "andrews_rest" + + mount_offset_y = 17 \ No newline at end of file