mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-28 07:39:13 +01:00
New Funny Sec gun (#7503)
This commit is contained in:
@@ -26,4 +26,31 @@
|
||||
/obj/item/projectile/energy/plasmastun/slow/on_hit(var/atom/target)
|
||||
if(isliving(target))
|
||||
var/mob/living/L = target
|
||||
L.add_modifier(/datum/modifier/entangled, 10 SECONDS)
|
||||
L.add_modifier(/datum/modifier/entangled, 10 SECONDS)
|
||||
|
||||
|
||||
/obj/item/weapon/gun/energy/rednetgun
|
||||
name = "experimental capture gun"
|
||||
desc = "An experimental gun, in efforts to expand net gun technology. Utilizing eletronic interferance and a \
|
||||
heat aura it in theory stops the subject from fighting back."
|
||||
icon_state = "goldstunrevolver"
|
||||
item_state = null
|
||||
projectile_type = /obj/item/projectile/energy/rednet
|
||||
charge_cost = 1440 //so a taser has 15 shots at 480 and I want five but this feels goofy
|
||||
|
||||
|
||||
/obj/item/projectile/energy/rednet
|
||||
name = "expirmental energy net"
|
||||
icon_state = "toxin"
|
||||
damage = 0
|
||||
check_armour = "energy"
|
||||
hud_state = "pistol_tranq"
|
||||
fire_sound = 'sound/weapons/Taser.ogg'
|
||||
nodamage = 1
|
||||
modifier_type_to_apply = /datum/modifier/rednet
|
||||
modifier_duration = 0.5 MINUTE
|
||||
speed = 1.5
|
||||
|
||||
/datum/modifier/rednet
|
||||
mob_overlay_state = "red_electricity_constant"
|
||||
slowdown = 1
|
||||
Reference in New Issue
Block a user