Add juice boxes. (#31331)

* Add juice boxes.
- Include juice boxes in packed lunches quirk.
- Make juice names and drink names in drinks_reagents.dm more consistent.

* Appease linters with static typing?

* Add juice box box. It's a variety pack.

* Add trailing commas to positive quirks as requested.

* Add random juice box spawners.
- Spawn random and specified juice boxes on station maps.
- Spawn partial juice variety packs on station maps.

* Add juice box variety pack supply crate.

* Make juice box storage even fancier.

* Thanks, linters!

* Thanks, linters! part 2

* Give the pre-packaged juice boxes a brand name.

* Apply whitespace suggestion from review.

Co-authored-by: PollardTheDragon <144391971+PollardTheDragon@users.noreply.github.com>
Signed-off-by: Alan <alfalfascout@users.noreply.github.com>

---------

Signed-off-by: Alan <alfalfascout@users.noreply.github.com>
Co-authored-by: PollardTheDragon <144391971+PollardTheDragon@users.noreply.github.com>
This commit is contained in:
Alan
2025-12-30 05:32:56 +00:00
committed by GitHub
co-authored by PollardTheDragon
parent 8519c59c7e
commit 8f87fa0b98
16 changed files with 359 additions and 33 deletions
@@ -51,7 +51,7 @@
/obj/item/food/meatkebab,
/obj/item/food/salmonsteak, // If anyone microwaves their leftover fish in the workplace it should be on sight
/obj/item/food/shrimp_skewer,
/obj/item/food/omelette
/obj/item/food/omelette,
)
var/list/snack_options = list(
/obj/item/food/chips,
@@ -63,8 +63,7 @@
/obj/item/food/candy/chocolate_orange,
/obj/item/food/sliced/mothmallow,
/obj/item/food/sliced/apple_cake,
/obj/item/food/sliced/banarnarbread
/obj/item/food/sliced/banarnarbread,
)
var/list/drink_options = list(
/obj/item/reagent_containers/drinks/h_chocolate,
@@ -75,7 +74,19 @@
/obj/item/reagent_containers/drinks/cans/space_up,
/obj/item/reagent_containers/drinks/cans/iced_tea,
/obj/item/reagent_containers/drinks/cans/starkist,
/obj/item/reagent_containers/drinks/bottle/beer // Don't tell your boss
/obj/item/reagent_containers/drinks/bottle/beer, // Don't tell your boss
/obj/item/reagent_containers/drinks/carton/apple,
/obj/item/reagent_containers/drinks/carton/banana,
/obj/item/reagent_containers/drinks/carton/berry,
/obj/item/reagent_containers/drinks/carton/carrot,
/obj/item/reagent_containers/drinks/carton/grape,
/obj/item/reagent_containers/drinks/carton/lemonade,
/obj/item/reagent_containers/drinks/carton/orange,
/obj/item/reagent_containers/drinks/carton/pineapple,
/obj/item/reagent_containers/drinks/carton/plum,
/obj/item/reagent_containers/drinks/carton/tomato,
/obj/item/reagent_containers/drinks/carton/vegetable,
/obj/item/reagent_containers/drinks/carton/watermelon,
)
/obj/item/storage/box/papersack/prepped_meal/populate_contents()