Skip to content

Commit

Permalink
[MIRROR] NT Lunchbox changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Juneauqt authored and SierraHelper committed Feb 2, 2025
1 parent 80b3ce0 commit 7b933cc
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
1 change: 1 addition & 0 deletions code/game/machinery/vending/dinnerware.dm
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
/obj/item/material/knife/kitchen/cleaver = 1
)
contraband = list(
/obj/item/storage/lunchbox/ntmisprint = 1,
/obj/item/material/knife/kitchen/cleaver/bronze = 1
)
rare_products = list(
Expand Down
9 changes: 8 additions & 1 deletion code/game/objects/items/weapons/storage/lunchbox.dm
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,17 @@
/obj/item/storage/lunchbox/nt
name = "\improper NanoTrasen brand lunchbox"
icon_state = "lunchbox_nanotrasen"
item_state = "toolbox_blue"
item_state = "toolbox_red"
desc = "A little lunchbox. This one is branded with the NanoTrasen logo!"


/obj/item/storage/lunchbox/ntmisprint
name = "\improper misprinted NanoTrasen brand lunchbox"
icon_state = "lunchbox_nanotrasenmisprint"
item_state = "toolbox_blue"
desc = "A little lunchbox. This one is branded with the NanoTrasen logo! Something looks off about it, though."


/obj/item/storage/lunchbox/dais
name = "\improper DAIS brand lunchbox"
icon_state = "lunchbox_dais"
Expand Down
2 changes: 1 addition & 1 deletion code/modules/client/preference_setup/loadout/lists/misc.dm
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@

/datum/gear/lunchbox/New()
..()
var/list/types = subtypesof(/obj/item/storage/lunchbox) - /obj/item/storage/lunchbox/caltrops
var/list/types = subtypesof(/obj/item/storage/lunchbox) - list(/obj/item/storage/lunchbox/caltrops, /obj/item/storage/lunchbox/ntmisprint)
var/list/options = list()
for (var/obj/item/storage/lunchbox/lunchbox as anything in types)
if (!initial(lunchbox.filled))
Expand Down
Binary file modified icons/obj/lunchboxes.dmi
Binary file not shown.

0 comments on commit 7b933cc

Please sign in to comment.