Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Chorden523 committed Oct 2, 2024
1 parent a436f24 commit 0a35296
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion modular_ss220/objects/code/weapons/ranged/revolvers.dm
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,12 @@
icon = 'modular_ss220/objects/icons/ammo.dmi'
item_state = "peashooter_bullet"
stamina = 5
damage_type = STAMINA
damage = 0

/obj/item/projectile/bullet/midbullet_r/peas_shooter/prehit(atom/target)
if(HAS_TRAIT(target, TRAIT_I_WANT_BRAINS))
damage |= 10
return ..()

/obj/item/projectile/bullet/midbullet_r/peas_shooter/on_hit(mob/H)
. = ..()
Expand Down

0 comments on commit 0a35296

Please sign in to comment.