mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-22 04:30:44 +01:00
## About The Pull Request closes #93805 ## Why It's Good For The Game we actually have almost no emp logging at all lol, not even emp chem reaction, so you barely can track potential griefer? ## Changelog 🆑 admin: EMP logs are improved, additionally chemical EMP reactions are now logged. /🆑
17 lines
392 B
Plaintext
17 lines
392 B
Plaintext
/obj/projectile/ion
|
|
name = "ion bolt"
|
|
icon_state = "ion"
|
|
damage = 0
|
|
damage_type = BURN
|
|
armor_flag = ENERGY
|
|
impact_effect_type = /obj/effect/temp_visual/impact_effect/ion
|
|
var/emp_radius = 1
|
|
|
|
/obj/projectile/ion/on_hit(atom/target, blocked = 0, pierce_hit)
|
|
..()
|
|
empulse(target, emp_radius, emp_radius, emp_source = src)
|
|
return BULLET_ACT_HIT
|
|
|
|
/obj/projectile/ion/weak
|
|
emp_radius = 0
|