[MIRROR] modifies how punchdamage is handled (#11198)

Co-authored-by: Zammy <49600480+zeskorion@users.noreply.github.com>
Co-authored-by: Selis <12716288+ItsSelis@users.noreply.github.com>
Co-authored-by: Cameron Lennox <killer65311@gmail.com>
Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2025-07-20 06:19:46 +02:00
committed by GitHub
co-authored by Zammy Selis Cameron Lennox Kashargul
parent f3d777e4a6
commit 2832b36fce
7 changed files with 75 additions and 11 deletions
@@ -2,7 +2,7 @@
damage = 3
/datum/unarmed_attack/punch/chimera/get_unarmed_damage(var/mob/living/carbon/human/user)
return damage + user.get_feralness() / 5
return damage + user.species.unarmed_bonus + (user.get_feralness() / 5)
/datum/unarmed_attack/punch/chimera/apply_effects(var/mob/living/carbon/human/user,var/mob/living/carbon/human/target,var/armour,var/attack_damage,var/zone)
..()