mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
Gives the mime two new spells: Invisible Chair and Invisible Box. [READY]
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user