[MIRROR] Mime care package (#12773)

Co-authored-by: Guti <32563288+TheCaramelion@users.noreply.github.com>
Co-authored-by: Cameron Lennox <killer65311@gmail.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2026-05-21 11:30:47 -04:00
committed by GitHub
co-authored by Guti Cameron Lennox
parent fef241645b
commit 1128c0cd18
30 changed files with 304 additions and 4 deletions
+25
View File
@@ -441,3 +441,28 @@
..()
to_chat(user, span_warning("[src] suddenly feels very warm!"))
empulse(src, 1, 1, 1, 1)
/obj/item/spellbook/oneuse/mime
name = "Guide to Mimery Vol 0"
desc = "The missing entry into the legendary saga. Unfortunately it doesn't teach you anything."
icon_state ="bookmime"
/obj/item/spellbook/oneuse/mime/mimery
name = "Guide to Dank Mimery"
desc = "Teaches three classic pantomime routines, allowing a practiced mime to conjure invisible objects into corporeal existence. One use only."
spell = /datum/spell/aoe_turf/conjure/forcewall/mime
spellname = ""
/obj/item/spellbook/oneuse/mime/mimery/onlearned(mob/user)
if(ishuman(user))
var/mob/living/carbon/human/human = user
var/datum/spell/chair = new /datum/spell/aoe_turf/conjure/invisible_chair
var/datum/spell/box = new /datum/spell/aoe_turf/conjure/invisible_box
human.add_spell(chair)
human.add_spell(box)
var/datum/action/innate/vow_of_silence/vow = locate() in human.actions
if(!vow && human.mind)
vow = new(human.mind)
vow.Grant(human)
to_chat(user, span_warning("The book disappears into thin air."))
qdel(src)