mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-30 16:47:13 +01:00
22 lines
830 B
Plaintext
22 lines
830 B
Plaintext
/obj/item/gun/magic/hook/contractor
|
|
name = "SCORPION hook"
|
|
desc = "A hardlight hook used to non-lethally pull targets much closer to the user."
|
|
icon = 'modular_skyrat/modules/contractor/icons/hook.dmi'
|
|
icon_state = "hook_weapon"
|
|
inhand_icon_state = "" //nah
|
|
ammo_type = /obj/item/ammo_casing/magic/hook/contractor
|
|
|
|
/obj/item/ammo_casing/magic/hook/contractor
|
|
projectile_type = /obj/projectile/hook/contractor
|
|
|
|
/obj/projectile/hook/contractor
|
|
icon = 'modular_skyrat/modules/contractor/icons/hook_projectile.dmi'
|
|
damage = 0
|
|
stamina = 25
|
|
chain_icon = 'modular_skyrat/modules/contractor/icons/hook_projectile.dmi'
|
|
|
|
/obj/item/gun/magic/hook/contractor/process_fire(atom/target, mob/living/user, message, params, zone_override, bonus_spread)
|
|
if(prob(1))
|
|
user.say("+GET OVER HERE!+", forced = "scorpion hook")
|
|
return ..()
|