mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-26 01:33:12 +00:00
fix: makes dragnet non harmful tweak: pacifists can now use any disabler or stun setting on any energy gun code: removed all of the pacifism check code from code/modules/mob/living/living.dm code: gun objects no longer have a harmful variable, instead, ammo_casing objects now have a harmful variable, which is by default set to TRUE code: if a pacifist fires a gun, it checks whether or not the round chambered is lethal, instead of whether or not the gun itself is lethal.
27 lines
681 B
Plaintext
27 lines
681 B
Plaintext
/obj/item/ammo_casing/energy/electrode
|
|
projectile_type = /obj/item/projectile/energy/electrode
|
|
select_name = "stun"
|
|
fire_sound = 'sound/weapons/taser.ogg'
|
|
e_cost = 200
|
|
harmful = FALSE
|
|
|
|
/obj/item/ammo_casing/energy/electrode/spec
|
|
e_cost = 100
|
|
|
|
/obj/item/ammo_casing/energy/electrode/gun
|
|
fire_sound = 'sound/weapons/gunshot.ogg'
|
|
e_cost = 100
|
|
|
|
/obj/item/ammo_casing/energy/electrode/hos
|
|
e_cost = 200
|
|
|
|
/obj/item/ammo_casing/energy/electrode/old
|
|
e_cost = 1000
|
|
|
|
/obj/item/ammo_casing/energy/disabler
|
|
projectile_type = /obj/item/projectile/beam/disabler
|
|
select_name = "disable"
|
|
e_cost = 50
|
|
fire_sound = 'sound/weapons/taser2.ogg'
|
|
harmful = FALSE
|