mirror of
https://github.com/KabKebab/GS13.git
synced 2026-07-09 15:05:38 +01:00
21 lines
437 B
Plaintext
21 lines
437 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
|