mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-12 03:02:54 +00:00
Exploration Robot Rework (#7350)
Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com> Co-authored-by: BlackMajor <henrydyer6@hotmail.com>
This commit is contained in:
@@ -1,24 +1,29 @@
|
||||
/obj/item/weapon/gun/energy/taser/disabler/slow
|
||||
name = "plasma snare device"
|
||||
desc = "A modified disabler adjusted to impulse a target with a restrictive slowdown."
|
||||
icon_state = "disabler"
|
||||
projectile_type = /obj/item/projectile/energy/plasmastun/slow
|
||||
charge_cost = 480
|
||||
self_recharge = 1
|
||||
recharge_time = 3
|
||||
|
||||
/obj/item/projectile/energy/plasmastun/slow
|
||||
name = "plasma pulse"
|
||||
icon_state = "plasma_stun"
|
||||
fire_sound = 'sound/weapons/weaponsounds_laserstrong.ogg'
|
||||
armor_penetration = 10
|
||||
range = 9
|
||||
damage = 0
|
||||
agony = 0
|
||||
vacuum_traversal = 1
|
||||
hud_state = "plasma_rifle_blast"
|
||||
|
||||
/obj/item/projectile/energy/plasmastun/slow/on_hit(var/atom/target)
|
||||
if(isliving(target))
|
||||
var/mob/living/L = target
|
||||
/obj/item/weapon/gun/energy/medigun/mounted
|
||||
name = "mounted directed restoration system"
|
||||
self_recharge = 1
|
||||
use_external_power = 1
|
||||
|
||||
/obj/item/weapon/gun/energy/taser/disabler/slow
|
||||
name = "plasma snare device"
|
||||
desc = "A modified disabler adjusted to impulse a target with a restrictive slowdown."
|
||||
icon_state = "disabler"
|
||||
projectile_type = /obj/item/projectile/energy/plasmastun/slow
|
||||
charge_cost = 480
|
||||
self_recharge = 1
|
||||
recharge_time = 3
|
||||
|
||||
/obj/item/projectile/energy/plasmastun/slow
|
||||
name = "plasma pulse"
|
||||
icon_state = "plasma_stun"
|
||||
fire_sound = 'sound/weapons/weaponsounds_laserstrong.ogg'
|
||||
armor_penetration = 10
|
||||
range = 9
|
||||
damage = 0
|
||||
agony = 0
|
||||
vacuum_traversal = 1
|
||||
hud_state = "plasma_rifle_blast"
|
||||
|
||||
/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)
|
||||
Reference in New Issue
Block a user