mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-27 15:18:09 +01:00
[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:
co-authored by
Guti
Cameron Lennox
parent
fef241645b
commit
1128c0cd18
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user