mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-10 18:02:57 +00:00
Merge pull request #14160 from keronshb/motivation
Adds a new traitor item, Motivation (Part 1)
This commit is contained in:
15
code/modules/projectiles/projectile/special/judgement_cut.dm
Normal file
15
code/modules/projectiles/projectile/special/judgement_cut.dm
Normal file
@@ -0,0 +1,15 @@
|
||||
/obj/item/projectile/judgement_cut
|
||||
name = "judgement cut"
|
||||
icon_state = "judgement_fire"
|
||||
hitsound = 'sound/weapons/judgementfire.ogg'
|
||||
damage = 10
|
||||
damage_type = BRUTE
|
||||
range = 30
|
||||
is_reflectable = FALSE
|
||||
sharpness = SHARP_EDGED
|
||||
impact_effect_type = /obj/effect/temp_visual/impact_effect/judgement_cut
|
||||
|
||||
/obj/item/projectile/judgement_cut/on_hit(atom/target, blocked = FALSE)
|
||||
. = ..()
|
||||
if(ishuman(target))
|
||||
new /obj/effect/temp_visual/impact_effect/judgement_cut(src)
|
||||
Reference in New Issue
Block a user