mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-15 20:37:37 +00:00
* Splits projectiles into different files for readability * Update tgstation.dme * I love how the dme cleans itself up
21 lines
457 B
Plaintext
21 lines
457 B
Plaintext
/obj/item/projectile/ion
|
|
name = "ion bolt"
|
|
icon_state = "ion"
|
|
damage = 0
|
|
damage_type = BURN
|
|
nodamage = 1
|
|
flag = "energy"
|
|
impact_effect_type = /obj/effect/temp_visual/impact_effect/ion
|
|
|
|
/obj/item/projectile/ion/on_hit(atom/target, blocked = FALSE)
|
|
..()
|
|
empulse(target, 1, 1)
|
|
return TRUE
|
|
|
|
/obj/item/projectile/ion/weak
|
|
|
|
/obj/item/projectile/ion/weak/on_hit(atom/target, blocked = FALSE)
|
|
..()
|
|
empulse(target, 0, 0)
|
|
return TRUE
|