Files
S.P.L.U.R.T-Station-13/code/modules/projectiles/projectile/bullets/special.dm
Ghommie 02fbbd4f95 Ouch.
2020-01-12 16:54:08 +01:00

28 lines
566 B
Plaintext

// Honker
/obj/item/projectile/bullet/honker
damage = 0
knockdown = 60
movement_type = FLYING | UNSTOPPABLE
nodamage = TRUE
candink = FALSE
hitsound = 'sound/items/bikehorn.ogg'
icon = 'icons/obj/hydroponics/harvest.dmi'
icon_state = "banana"
range = 200
/obj/item/projectile/bullet/honker/Initialize()
. = ..()
SpinAnimation()
// Mime
/obj/item/projectile/bullet/mime
damage = 20
/obj/item/projectile/bullet/mime/on_hit(atom/target, blocked = FALSE)
. = ..()
if(iscarbon(target))
var/mob/living/carbon/M = target
M.silent = max(M.silent, 10)