mirror of
https://github.com/Sandstorm-Station/Sandstorm-Station-13.git
synced 2026-08-22 04:38:21 +01:00
* enjoy * Update shuttles.dm sowwy Co-authored-by: Maksxpl <18237380+maksxpl@users.noreply.github.com>
12 lines
353 B
Plaintext
12 lines
353 B
Plaintext
/datum/status_effect/crusher_mark/harm
|
|
id = "crusher_mark_harm"
|
|
duration = 100
|
|
|
|
/datum/status_effect/crusher_mark/harm/on_apply()
|
|
. = ..()
|
|
marked_underlay = mutable_appearance('icons/effects/effects.dmi', "shield2")
|
|
marked_underlay.pixel_x = -owner.pixel_x
|
|
marked_underlay.pixel_y = -owner.pixel_y
|
|
owner.underlays += marked_underlay
|
|
return TRUE
|