[MIRROR] Santabag is a bag and no longer turns invisible (#11686)

Co-authored-by: Will <7099514+Willburd@users.noreply.github.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2025-09-18 13:44:54 -07:00
committed by GitHub
parent 4251be735d
commit 2ab82dd935
2 changed files with 24 additions and 9 deletions

View File

@@ -101,15 +101,6 @@
return FALSE return FALSE
return ..() return ..()
/obj/item/storage/backpack/santabag
name = "\improper Santa's gift bag"
desc = "Space Santa uses this to deliver toys to all the nice children in space in Christmas! Wow, it's pretty big!"
icon_state = "giftbag0"
item_state_slots = list(slot_r_hand_str = "giftbag", slot_l_hand_str = "giftbag")
w_class = ITEMSIZE_LARGE
max_w_class = ITEMSIZE_NORMAL
max_storage_space = ITEMSIZE_COST_NORMAL * 100 // can store a ton of shit!
/obj/item/storage/backpack/cultpack /obj/item/storage/backpack/cultpack
name = "trophy rack" name = "trophy rack"
desc = "It's useful for both carrying extra gear and proudly declaring your insanity." desc = "It's useful for both carrying extra gear and proudly declaring your insanity."

View File

@@ -516,3 +516,27 @@
max_w_class = ITEMSIZE_NORMAL max_w_class = ITEMSIZE_NORMAL
w_class = ITEMSIZE_SMALL w_class = ITEMSIZE_SMALL
can_hold = list(/obj/item/forensics/swab,/obj/item/sample/print,/obj/item/sample/fibers,/obj/item/evidencebag) can_hold = list(/obj/item/forensics/swab,/obj/item/sample/print,/obj/item/sample/fibers,/obj/item/evidencebag)
// -----------------------------
// Santa bag
// -----------------------------
/obj/item/storage/bag/santabag
name = "\improper Santa's gift bag"
desc = "Space Santa uses this to deliver toys to all the nice children in space in Christmas! Wow, it's pretty big!"
icon = 'icons/obj/storage.dmi'
icon_state = "giftbag0"
item_state_slots = list(slot_r_hand_str = "giftbag", slot_l_hand_str = "giftbag")
w_class = ITEMSIZE_LARGE
max_w_class = ITEMSIZE_NORMAL
max_storage_space = ITEMSIZE_COST_NORMAL * 100 // can store a ton of shit!
can_hold = list() // any
cant_hold = list(/obj/item/disk/nuclear)
/obj/item/storage/bag/santabag/update_icon()
if(contents.len < 10)
icon_state = "giftbag0"
else if(contents.len < 25)
icon_state = "giftbag1"
else
icon_state = "giftbag2"