Adds MREs and Tajaran field rations to the loadout (#21426)

MRE packs are added to the general section of the loadout, and Tajaran
field rations to the Tajaran section.

---------

Signed-off-by: Greenjoe12345 <33647525+Greenjoe12345@users.noreply.github.com>
Co-authored-by: Matt Atlas <mattiathebest2000@hotmail.it>
This commit is contained in:
Greenjoe12345
2025-11-03 19:27:15 +00:00
committed by GitHub
co-authored by Matt Atlas
parent e934c818c1
commit 9b53900a94
3 changed files with 98 additions and 0 deletions
@@ -497,3 +497,24 @@
description = "A pack of red candles."
cost = 1
path = /obj/item/storage/box/fancy/candle_box
/datum/gear/mre
display_name = "mre selection"
description = "A selection of different MREs."
cost = 2
path = /obj/item/storage/box/fancy/mre
/datum/gear/mre/New()
..()
var/list/mres = list()
mres["meat pizza"] = /obj/item/storage/box/fancy/mre
mres["margherita pizza"] = /obj/item/storage/box/fancy/mre/menu2
mres["vegetable pizza"] = /obj/item/storage/box/fancy/mre/menu3
mres["hamburger"] = /obj/item/storage/box/fancy/mre/menu4
mres["taco"] = /obj/item/storage/box/fancy/mre/menu5
mres["meatbread"] = /obj/item/storage/box/fancy/mre/menu6
mres["salad"] = /obj/item/storage/box/fancy/mre/menu7
mres["hot chili"] = /obj/item/storage/box/fancy/mre/menu8
mres["boiled rice"] = /obj/item/storage/box/fancy/mre/menu9
mres["protein"] = /obj/item/storage/box/fancy/mre/menu10
gear_tweaks += new /datum/gear_tweak/path(mres)