mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-20 11:31:12 +01:00
Repathed /obj/item/projectile to /obj/projectile, same as TG and Bay, that's pretty much it.
29 lines
823 B
Plaintext
29 lines
823 B
Plaintext
/datum/technomancer/spell/beam
|
|
name = "Beam"
|
|
desc = "Fires a laser at your target. Cheap, reliable, and a bit boring."
|
|
spell_power_desc = "Increases damage dealt."
|
|
cost = 100
|
|
ability_icon_state = "tech_beam"
|
|
obj_path = /obj/item/spell/projectile/beam
|
|
category = OFFENSIVE_SPELLS
|
|
|
|
/obj/item/spell/projectile/beam
|
|
name = "beam"
|
|
icon_state = "beam"
|
|
desc = "Boring, but practical."
|
|
cast_methods = CAST_RANGED
|
|
aspect = ASPECT_LIGHT
|
|
spell_projectile = /obj/projectile/beam/techno
|
|
energy_cost_per_shot = 400
|
|
instability_per_shot = 3
|
|
cooldown = 10
|
|
fire_sound = 'sound/weapons/laserstrong.ogg'
|
|
|
|
/obj/projectile/beam/techno
|
|
damage = 35
|
|
armor_penetration = 25
|
|
|
|
muzzle_type = /obj/effect/projectile/muzzle/solar
|
|
tracer_type = /obj/effect/projectile/tracer/solar
|
|
impact_type = /obj/effect/projectile/impact/solar
|