mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-24 17:12:00 +00:00
- caps stun effect values for pulsing - sets max utiliser battery charge to 300 (30 sec) - changes energy consumption for utiliser pulse effects to "effect max charge level" * "effect range" ^ 2 - changes energy consumption for utiliser touch effects to 100 (10 sec worth of consumption) Signed-off-by: Cael Aislinn <cael_aislinn@yahoo.com.au>
15 lines
268 B
Plaintext
15 lines
268 B
Plaintext
|
|
/datum/artifact_effect/emp
|
|
effecttype = "emp"
|
|
effect_type = 3
|
|
|
|
/datum/artifact_effect/emp/New()
|
|
..()
|
|
effect = EFFECT_PULSE
|
|
|
|
/datum/artifact_effect/emp/DoEffectPulse()
|
|
if(holder)
|
|
var/turf/T = get_turf(holder)
|
|
empulse(T, effectrange/2, effectrange)
|
|
return 1
|