This commit is contained in:
Spades
2016-12-10 15:43:59 -05:00
parent cc0cfba27b
commit ccfed7f5a4
5 changed files with 7 additions and 7 deletions
@@ -87,7 +87,7 @@
pixel_x = -16
pixel_y = 0
capacity = 3
eat_chance = 75
pounce_chance = 75
/obj/item/projectile/neurotox
damage = 30
@@ -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
@@ -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()
@@ -36,7 +36,7 @@
faction = "mimic"
move_to_delay = 8
eat_chance = 90
pounce_chance = 90
/mob/living/simple_animal/hostile/vore/mimic/FindTarget()
. = ..()
@@ -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("<span class='danger'>\the [src] pounces on \the [target_mob]!</span>!")
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.
pounce_chance = 50 // Bigger mobs, bigger appetite.