mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-10 18:02:57 +00:00
244 lines
7.3 KiB
Plaintext
244 lines
7.3 KiB
Plaintext
/obj/item/projectile/beam
|
|
name = "laser"
|
|
icon_state = "laser"
|
|
pass_flags = PASSTABLE | PASSGLASS | PASSGRILLE
|
|
damage = 20
|
|
light_range = 2
|
|
damage_type = BURN
|
|
hitsound = 'sound/weapons/sear.ogg'
|
|
hitsound_wall = 'sound/weapons/effects/searwall.ogg'
|
|
flag = "laser"
|
|
eyeblur = 2
|
|
impact_effect_type = /obj/effect/temp_visual/impact_effect/red_laser
|
|
light_color = LIGHT_COLOR_RED
|
|
ricochets_max = 50 //Honk!
|
|
ricochet_chance = 80
|
|
is_reflectable = TRUE
|
|
wound_bonus = -20
|
|
bare_wound_bonus = 10
|
|
|
|
/obj/item/projectile/beam/laser
|
|
tracer_type = /obj/effect/projectile/tracer/laser
|
|
muzzle_type = /obj/effect/projectile/muzzle/laser
|
|
impact_type = /obj/effect/projectile/impact/laser
|
|
wound_bonus = -30
|
|
bare_wound_bonus = 40
|
|
|
|
//overclocked laser, does a bit more damage but has much higher wound power (-0 vs -20)
|
|
/obj/item/projectile/beam/laser/hellfire
|
|
name = "hellfire laser"
|
|
wound_bonus = 0
|
|
damage = 25
|
|
|
|
/obj/item/projectile/beam/laser/hellfire/Initialize()
|
|
. = ..()
|
|
transform *= 2
|
|
|
|
/obj/item/projectile/beam/laser/heavylaser
|
|
name = "heavy laser"
|
|
icon_state = "heavylaser"
|
|
damage = 40
|
|
tracer_type = /obj/effect/projectile/tracer/heavy_laser
|
|
muzzle_type = /obj/effect/projectile/muzzle/heavy_laser
|
|
impact_type = /obj/effect/projectile/impact/heavy_laser
|
|
|
|
/obj/item/projectile/beam/laser/on_hit(atom/target, blocked = FALSE)
|
|
. = ..()
|
|
if(iscarbon(target))
|
|
var/mob/living/carbon/M = target
|
|
M.IgniteMob()
|
|
else if(isturf(target))
|
|
impact_effect_type = /obj/effect/temp_visual/impact_effect/red_laser/wall
|
|
|
|
/obj/item/projectile/beam/weak
|
|
damage = 15
|
|
|
|
/obj/item/projectile/beam/weak/penetrator
|
|
armour_penetration = 50
|
|
|
|
/obj/item/projectile/beam/practice
|
|
name = "practice laser"
|
|
damage = 0
|
|
nodamage = 1
|
|
|
|
/obj/item/projectile/beam/scatter
|
|
name = "laser pellet"
|
|
icon_state = "scatterlaser"
|
|
damage = 12.5
|
|
|
|
/obj/item/projectile/beam/xray
|
|
name = "\improper X-ray beam"
|
|
icon_state = "xray"
|
|
damage = 20
|
|
irradiate = 75
|
|
range = 15
|
|
pass_flags = PASSTABLE | PASSGLASS | PASSGRILLE | PASSCLOSEDTURF
|
|
|
|
impact_effect_type = /obj/effect/temp_visual/impact_effect/green_laser
|
|
light_color = LIGHT_COLOR_GREEN
|
|
tracer_type = /obj/effect/projectile/tracer/xray
|
|
muzzle_type = /obj/effect/projectile/muzzle/xray
|
|
impact_type = /obj/effect/projectile/impact/xray
|
|
|
|
/obj/item/projectile/beam/disabler
|
|
name = "disabler beam"
|
|
icon_state = "omnilaser"
|
|
damage = 28 // Citadel change for balance from 36
|
|
damage_type = STAMINA
|
|
flag = "energy"
|
|
hitsound = 'sound/weapons/tap.ogg'
|
|
eyeblur = 0
|
|
pixels_per_second = TILES_TO_PIXELS(16.667)
|
|
impact_effect_type = /obj/effect/temp_visual/impact_effect/blue_laser
|
|
light_color = LIGHT_COLOR_BLUE
|
|
tracer_type = /obj/effect/projectile/tracer/disabler
|
|
muzzle_type = /obj/effect/projectile/muzzle/disabler
|
|
impact_type = /obj/effect/projectile/impact/disabler
|
|
|
|
/obj/item/projectile/beam/pulse
|
|
name = "pulse"
|
|
icon_state = "u_laser"
|
|
damage = 50
|
|
impact_effect_type = /obj/effect/temp_visual/impact_effect/blue_laser
|
|
light_color = LIGHT_COLOR_BLUE
|
|
tracer_type = /obj/effect/projectile/tracer/pulse
|
|
muzzle_type = /obj/effect/projectile/muzzle/pulse
|
|
impact_type = /obj/effect/projectile/impact/pulse
|
|
wound_bonus = 10
|
|
|
|
/obj/item/projectile/beam/pulse/on_hit(atom/target, blocked = FALSE)
|
|
. = ..()
|
|
if (!QDELETED(target) && (isturf(target) || istype(target, /obj/structure/)))
|
|
target.ex_act(EXPLODE_HEAVY)
|
|
|
|
/obj/item/projectile/beam/pulse/shotgun
|
|
damage = 40
|
|
|
|
/obj/item/projectile/beam/pulse/heavy
|
|
name = "heavy pulse laser"
|
|
icon_state = "pulse1_bl"
|
|
var/life = 20
|
|
|
|
/obj/item/projectile/beam/pulse/heavy/on_hit(atom/target, blocked = FALSE)
|
|
life -= 10
|
|
if(life > 0)
|
|
. = BULLET_ACT_FORCE_PIERCE
|
|
return ..()
|
|
|
|
/obj/item/projectile/beam/emitter
|
|
name = "emitter beam"
|
|
icon_state = "emitter"
|
|
damage = 30
|
|
impact_effect_type = /obj/effect/temp_visual/impact_effect/green_laser
|
|
light_color = LIGHT_COLOR_GREEN
|
|
wound_bonus = -40
|
|
bare_wound_bonus = 70
|
|
|
|
/obj/item/projectile/beam/emitter/singularity_pull()
|
|
return
|
|
|
|
/obj/item/projectile/beam/emitter/hitscan
|
|
hitscan = TRUE
|
|
muzzle_type = /obj/effect/projectile/muzzle/laser/emitter
|
|
tracer_type = /obj/effect/projectile/tracer/laser/emitter
|
|
impact_type = /obj/effect/projectile/impact/laser/emitter
|
|
impact_effect_type = null
|
|
|
|
/obj/item/projectile/beam/lasertag
|
|
name = "laser tag beam"
|
|
icon_state = "omnilaser"
|
|
hitsound = null
|
|
damage = 0
|
|
damage_type = STAMINA
|
|
flag = "laser"
|
|
var/suit_types = list(/obj/item/clothing/suit/redtag, /obj/item/clothing/suit/bluetag)
|
|
impact_effect_type = /obj/effect/temp_visual/impact_effect/blue_laser
|
|
light_color = LIGHT_COLOR_BLUE
|
|
|
|
/obj/item/projectile/beam/lasertag/on_hit(atom/target, blocked = FALSE)
|
|
. = ..()
|
|
if(ishuman(target))
|
|
var/mob/living/carbon/human/M = target
|
|
if(istype(M.wear_suit))
|
|
if(M.wear_suit.type in suit_types)
|
|
M.adjustStaminaLoss(34)
|
|
|
|
/obj/item/projectile/beam/lasertag/mag //the projectile, compatible with regular laser tag armor
|
|
icon_state = "magjectile-toy"
|
|
name = "lasertag magbolt"
|
|
movement_type = FLYING | UNSTOPPABLE //for penetration memes
|
|
range = 5 //so it isn't super annoying
|
|
light_range = 2
|
|
light_color = LIGHT_COLOR_YELLOW
|
|
eyeblur = 0
|
|
|
|
/obj/item/projectile/beam/lasertag/redtag
|
|
icon_state = "laser"
|
|
suit_types = list(/obj/item/clothing/suit/bluetag)
|
|
impact_effect_type = /obj/effect/temp_visual/impact_effect/red_laser
|
|
light_color = LIGHT_COLOR_RED
|
|
tracer_type = /obj/effect/projectile/tracer/laser
|
|
muzzle_type = /obj/effect/projectile/muzzle/laser
|
|
impact_type = /obj/effect/projectile/impact/laser
|
|
|
|
/obj/item/projectile/beam/lasertag/redtag/hitscan
|
|
hitscan = TRUE
|
|
|
|
/obj/item/projectile/beam/lasertag/redtag/hitscan/holy
|
|
name = "lasrifle beam"
|
|
damage = 0.1
|
|
damage_type = BURN
|
|
|
|
/obj/item/projectile/beam/lasertag/bluetag
|
|
icon_state = "bluelaser"
|
|
suit_types = list(/obj/item/clothing/suit/redtag)
|
|
tracer_type = /obj/effect/projectile/tracer/laser/blue
|
|
muzzle_type = /obj/effect/projectile/muzzle/laser/blue
|
|
impact_type = /obj/effect/projectile/impact/laser/blue
|
|
|
|
/obj/item/projectile/beam/lasertag/bluetag/hitscan
|
|
hitscan = TRUE
|
|
|
|
/obj/item/projectile/beam/instakill
|
|
name = "instagib laser"
|
|
icon_state = "purple_laser"
|
|
damage = 200
|
|
damage_type = BURN
|
|
impact_effect_type = /obj/effect/temp_visual/impact_effect/purple_laser
|
|
light_color = LIGHT_COLOR_PURPLE
|
|
|
|
/obj/item/projectile/beam/instakill/blue
|
|
icon_state = "blue_laser"
|
|
impact_effect_type = /obj/effect/temp_visual/impact_effect/blue_laser
|
|
light_color = LIGHT_COLOR_BLUE
|
|
|
|
/obj/item/projectile/beam/instakill/red
|
|
icon_state = "red_laser"
|
|
impact_effect_type = /obj/effect/temp_visual/impact_effect/red_laser
|
|
light_color = LIGHT_COLOR_RED
|
|
|
|
/obj/item/projectile/beam/instakill/on_hit(atom/target)
|
|
. = ..()
|
|
if(iscarbon(target))
|
|
var/mob/living/carbon/M = target
|
|
M.visible_message("<span class='danger'>[M] explodes into a shower of gibs!</span>")
|
|
M.gib()
|
|
|
|
//a shrink ray that shrinks stuff, which grows back after a short while.
|
|
/obj/item/projectile/beam/shrink
|
|
name = "shrink ray"
|
|
icon_state = "blue_laser"
|
|
hitsound = 'sound/weapons/shrink_hit.ogg'
|
|
damage = 0
|
|
damage_type = STAMINA
|
|
flag = "energy"
|
|
impact_effect_type = /obj/effect/temp_visual/impact_effect/shrink
|
|
light_color = LIGHT_COLOR_BLUE
|
|
var/shrink_time = 90
|
|
|
|
/obj/item/projectile/beam/shrink/on_hit(atom/target, blocked = FALSE)
|
|
. = ..()
|
|
if(isopenturf(target) || istype(target, /turf/closed/indestructible))//shrunk floors wouldnt do anything except look weird, i-walls shouldnt be bypassable
|
|
return
|
|
target.AddComponent(/datum/component/shrink, shrink_time)
|