mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-07-15 02:03:48 +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:
committed by
GitHub
parent
fef241645b
commit
1128c0cd18
@@ -110,6 +110,11 @@
|
||||
desc = "It's a backpack made by Honk! Co."
|
||||
icon_state = "backpack_clown"
|
||||
|
||||
/obj/item/storage/backpack/mime
|
||||
name = "Parcel Parceaux"
|
||||
desc = "A silent backpack made for those silent workers. Silence Co."
|
||||
icon_state = "backpack_mime"
|
||||
|
||||
/obj/item/storage/backpack/white
|
||||
name = "white backpack"
|
||||
icon_state = "backpack_white"
|
||||
|
||||
@@ -644,3 +644,20 @@
|
||||
desc = "A box full of weapon power cells. For all your portable energy storage needs."
|
||||
icon_state = "secbox"
|
||||
starts_with = list(/obj/item/cell/device/weapon = 7)
|
||||
|
||||
/obj/item/storage/box/mime
|
||||
name = "invisible box"
|
||||
desc = "Unfortunately not large enough to trap the mime."
|
||||
foldable = null
|
||||
icon_state = "box"
|
||||
alpha = 0
|
||||
|
||||
/obj/item/storage/box/mime/attack_hand(mob/user)
|
||||
..()
|
||||
if(HAS_MIND_TRAIT(user, TRAIT_MIMING))
|
||||
alpha = 255
|
||||
|
||||
/obj/item/storage/box/mime/Moved(atom/old_loc, direction, forced, movetime)
|
||||
if(iscarbon(old_loc))
|
||||
alpha = 0
|
||||
return ..()
|
||||
|
||||
@@ -519,3 +519,10 @@
|
||||
|
||||
/obj/structure/bed/chair/sofa/corner/orange
|
||||
sofa_material = MAT_CLOTH_ORANGE
|
||||
|
||||
/obj/structure/bed/chair/mime
|
||||
name = "invisible chair"
|
||||
desc = "The mime needs to sit down and shut up."
|
||||
anchored = FALSE
|
||||
icon_state = null
|
||||
alpha = 0
|
||||
|
||||
Reference in New Issue
Block a user