[MIRROR] What is wrong with me (#11060)

Co-authored-by: SatinIsle <98125273+SatinIsle@users.noreply.github.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2025-06-12 16:20:33 -07:00
committed by GitHub
parent 792e01185d
commit a12bfdbb51
4 changed files with 13 additions and 0 deletions

View File

@@ -138,6 +138,11 @@
/obj/screen/fullscreen/fear /obj/screen/fullscreen/fear
icon_state = "fear" icon_state = "fear"
/obj/screen/fullscreen/scrolls
icon_state = "scrolls"
show_when_dead = TRUE
plane = PLANE_PLAYER_HUD_ABOVE
/obj/screen/fullscreen/lighting_backdrop /obj/screen/fullscreen/lighting_backdrop
icon = 'icons/mob/screen_gen.dmi' icon = 'icons/mob/screen_gen.dmi'
icon_state = "flash" icon_state = "flash"

View File

@@ -325,6 +325,11 @@
spawned_obj.unacidable = !M.digestable spawned_obj.unacidable = !M.digestable
M.forceMove(possessed_voice) M.forceMove(possessed_voice)
if("elder_smite")
if(!target.ckey)
return
target.overlay_fullscreen("scrolls", /obj/screen/fullscreen/scrolls, 1)
addtimer(CALLBACK(target, TYPE_PROC_REF(/mob, clear_fullscreen), "scrolls"), 20 SECONDS)
////////MEDICAL////////////// ////////MEDICAL//////////////

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 MiB

After

Width:  |  Height:  |  Size: 4.0 MiB

View File

@@ -69,6 +69,9 @@ export const ControlSmites = (props) => {
<Button fluid onClick={() => act('item_tf')}> <Button fluid onClick={() => act('item_tf')}>
Object Transformation Object Transformation
</Button> </Button>
<Button fluid onClick={() => act('elder_smite')}>
Elder Smite
</Button>
</Section> </Section>
); );
}; };