Gives the mime two new spells: Invisible Chair and Invisible Box. [READY]

This commit is contained in:
yogstation13-bot
2019-06-23 02:22:11 +01:00
parent 8f3a0de6b8
commit 5f002130bc
4 changed files with 144 additions and 3 deletions

View File

@@ -74,8 +74,28 @@
return 0
return ..()
//Mime spell boxes
/obj/item/storage/box/mime
name = "invisible box"
desc = "Unfortunately not large enough to trap the mime."
foldable = null
icon_state = "box"
item_state = null
alpha = 0
/obj/item/storage/box/mime/attack_hand(mob/user)
..()
if(user.mind.miming)
alpha = 255
/obj/item/storage/box/mime/Moved(oldLoc, dir)
if (iscarbon(oldLoc))
alpha = 0
..()
//Disk boxes
/obj/item/storage/box/disks
name = "diskette box"
illustration = "disk_kit"