diff --git a/code/modules/mob/living/simple_animal/hostile/vore/alien.dm b/code/modules/mob/living/simple_animal/hostile/vore/alien.dm index 7f210d4b60..e6f40a2cf1 100644 --- a/code/modules/mob/living/simple_animal/hostile/vore/alien.dm +++ b/code/modules/mob/living/simple_animal/hostile/vore/alien.dm @@ -87,7 +87,7 @@ pixel_x = -16 pixel_y = 0 capacity = 3 - eat_chance = 75 + pounce_chance = 75 /obj/item/projectile/neurotox damage = 30 diff --git a/code/modules/mob/living/simple_animal/hostile/vore/catgirl.dm b/code/modules/mob/living/simple_animal/hostile/vore/catgirl.dm index 6c9f9a66c4..cd7042c3cf 100644 --- a/code/modules/mob/living/simple_animal/hostile/vore/catgirl.dm +++ b/code/modules/mob/living/simple_animal/hostile/vore/catgirl.dm @@ -13,7 +13,7 @@ speak_emote = list("purrs","meows") emote_hear = list("meows","mews") emote_see = list("shakes her head","shivers") - eat_chance = 100 + pounce_chance = 100 attacktext = "swatted" /mob/living/simple_animal/hostile/vore/retaliate/catgirl/nude diff --git a/code/modules/mob/living/simple_animal/hostile/vore/frog.dm b/code/modules/mob/living/simple_animal/hostile/vore/frog.dm index 546b1f9a1e..05dcb46e40 100644 --- a/code/modules/mob/living/simple_animal/hostile/vore/frog.dm +++ b/code/modules/mob/living/simple_animal/hostile/vore/frog.dm @@ -8,7 +8,7 @@ harm_intent_damage = 5 melee_damage_lower = 10 melee_damage_upper = 25 - eat_chance = 90 + pounce_chance = 90 // Pepe is love, not hate. /mob/living/simple_animal/hostile/vore/frog/New() diff --git a/code/modules/mob/living/simple_animal/hostile/vore/mimic.dm b/code/modules/mob/living/simple_animal/hostile/vore/mimic.dm index 9e99f923a6..1dc079dd03 100644 --- a/code/modules/mob/living/simple_animal/hostile/vore/mimic.dm +++ b/code/modules/mob/living/simple_animal/hostile/vore/mimic.dm @@ -36,7 +36,7 @@ faction = "mimic" move_to_delay = 8 - eat_chance = 90 + pounce_chance = 90 /mob/living/simple_animal/hostile/vore/mimic/FindTarget() . = ..() diff --git a/code/modules/mob/living/simple_animal/hostile/vore/vore.dm b/code/modules/mob/living/simple_animal/hostile/vore/vore.dm index 24308411f5..3945018278 100644 --- a/code/modules/mob/living/simple_animal/hostile/vore/vore.dm +++ b/code/modules/mob/living/simple_animal/hostile/vore/vore.dm @@ -26,7 +26,7 @@ Don't use ranged mobs for vore mobs. var/min_size = 0.25 // Min: 0.25 var/picky = 1 // Won't eat undigestable prey by default var/fullness = 0 - var/eat_chance = 5 // Determines how likely a mob is to pounce on you per attack. 5% by default. + var/pounce_chance = 5 // Determines how likely a mob is to pounce on you per attack. 5% by default. swallowTime = 1 // Hungry little bastards. // By default, this is what most vore mobs are capable of. @@ -118,7 +118,7 @@ Don't use ranged mobs for vore mobs. // Is our target edible and standing up? if(target_mob.canmove && target_mob.size_multiplier >= min_size && target_mob.size_multiplier <= max_size && !(target_mob in prey_exclusions)) - if(prob(eat_chance)) + if(prob(pounce_chance)) target_mob.Weaken(5) target_mob.visible_message("\the [src] pounces on \the [target_mob]!!") animal_nom(target_mob) @@ -158,4 +158,4 @@ Don't use ranged mobs for vore mobs. pixel_y = -16 maxHealth = 200 health = 200 - eat_chance = 50 // Bigger mobs, bigger appetite. \ No newline at end of file + pounce_chance = 50 // Bigger mobs, bigger appetite. \ No newline at end of file