diff --git a/code/modules/mob/living/simple_animal/vore/fennec.dm b/code/modules/mob/living/simple_animal/vore/fennec.dm new file mode 100644 index 00000000000..c11ae7886b4 --- /dev/null +++ b/code/modules/mob/living/simple_animal/vore/fennec.dm @@ -0,0 +1,37 @@ +/mob/living/simple_animal/fennec + name = "fennec" + desc = "It's a dusty big-eared sandfox! Adorable!" + icon = 'icons/mob/vore.dmi' + icon_state = "fennec" + icon_living = "fennec" + icon_dead = "fennec_dead" + icon_rest = "fennec_rest" + + faction = "fennec" + maxHealth = 30 + health = 30 + + response_help = "pats the" + response_disarm = "gently pushes aside the" + response_harm = "hits the" + + harm_intent_damage = 5 + melee_damage_lower = 5 + melee_damage_upper = 2 + attacktext = "bapped" + + speak_chance = 1 + speak = list("SKREEEE!", + "Chrp?", + "Ararrrararr.") + emote_hear = list("screEEEEeeches!","chirps.") + emote_see = list("earflicks","sniffs at the ground") + +// Activate Noms! +/mob/living/simple_animal/fennec + vore_active = 1 + vore_bump_chance = 10 + vore_bump_emote = "playfully lunges at" + vore_pounce_chance = 40 + vore_default_mode = DM_HOLD + vore_icons = SA_ICON_LIVING diff --git a/icons/mob/vore.dmi b/icons/mob/vore.dmi index 0a6958c1b78..baa68b7b38f 100644 Binary files a/icons/mob/vore.dmi and b/icons/mob/vore.dmi differ diff --git a/vorestation.dme b/vorestation.dme index 11efe620ffc..d55bb76d6cb 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -2121,6 +2121,7 @@ #include "code\modules\mob\living\simple_animal\vore\deathclaw.dm" #include "code\modules\mob\living\simple_animal\vore\dino.dm" #include "code\modules\mob\living\simple_animal\vore\dragon.dm" +#include "code\modules\mob\living\simple_animal\vore\fennec.dm" #include "code\modules\mob\living\simple_animal\vore\frog.dm" #include "code\modules\mob\living\simple_animal\vore\gaslamp.dm" #include "code\modules\mob\living\simple_animal\vore\horse.dm"