mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-11 16:07:36 +01:00
4ecb0bc21c
Repaths obj/machinery to obj/structure/machinery. **Note for reviewers:** the only meaningful changed code exists within **code/game/objects/structures.dm** and **code/game/objects/structures/_machinery.dm**, largely concerning damage procs. With the exception of moving airlock defines to their own file, ALL OTHER CHANGES ARE STRICTLY PATH CHANGES. Objects, _categorically_, are largely divided between those you can hold in your hand/inventory and those you can't. Machinery objects are already subtypes of Structures behaviorally, this PR just makes their pathing reflect that, and allows for future work (tool actions, more health/destruction functionality) to be developed without unnecessary code duplication. I have tested this PR by loading up the Horizon and dismantling various machines and structures with tools, shooting guns of various types throughout the ship, and detonating a bunch of explosions throughout the ship.
837 lines
20 KiB
Plaintext
837 lines
20 KiB
Plaintext
/singleton/cargo_item/autakhlimbs
|
|
category = "operations"
|
|
name = "autakh limbs"
|
|
supplier = "hephaestus"
|
|
description = "A box with various autakh limbs."
|
|
price = 1000
|
|
items = list(
|
|
/obj/item/organ/external/hand/right/autakh/tool,
|
|
/obj/item/organ/external/hand/right/autakh/tool/mining,
|
|
/obj/item/organ/external/hand/right/autakh/medical
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 2
|
|
|
|
/singleton/cargo_item/cargotraintrolley
|
|
category = "operations"
|
|
name = "cargo train trolley"
|
|
supplier = "orion"
|
|
description = "A cargo trolley for carrying cargo, NOT people."
|
|
price = 800
|
|
items = list(
|
|
/obj/vehicle/train/cargo/trolley
|
|
)
|
|
access = ACCESS_CARGO
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/cargotraintug
|
|
category = "operations"
|
|
name = "cargo train tug"
|
|
supplier = "orion"
|
|
description = "A ridable electric car designed for pulling cargo trolleys."
|
|
price = 350
|
|
items = list(
|
|
/obj/vehicle/train/cargo/engine
|
|
)
|
|
access = ACCESS_CARGO
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/coathanger
|
|
category = "operations"
|
|
name = "Coat Hanger"
|
|
supplier = "nanotrasen"
|
|
description = "To hang your coat."
|
|
price = 12
|
|
items = list(
|
|
/obj/structure/coatrack
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/eftposscanner
|
|
category = "operations"
|
|
name = "EFTPOS scanner"
|
|
supplier = "orion"
|
|
description = "Swipe your ID card to make purchases electronically."
|
|
price = 35
|
|
items = list(
|
|
/obj/item/eftpos
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/emptyspraybottle
|
|
category = "operations"
|
|
name = "empty spray bottle"
|
|
supplier = "blam"
|
|
description = "A empty spray bottle."
|
|
price = 5
|
|
items = list(
|
|
/obj/item/reagent_containers/spray
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/faxmachine
|
|
category = "operations"
|
|
name = "fax machine"
|
|
supplier = "nanotrasen"
|
|
description = "Needed office equipment for any space based corporation to function."
|
|
price = 300
|
|
items = list(
|
|
/obj/structure/machinery/photocopier/faxmachine
|
|
)
|
|
access = 0
|
|
container_type = "box"
|
|
groupable = FALSE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/flare
|
|
category = "operations"
|
|
name = "flare"
|
|
supplier = "hephaestus"
|
|
description = "Good for illuminating dark areas or burning someones face off."
|
|
price = 8
|
|
items = list(
|
|
/obj/item/flashlight/flare
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/formalwearcrate
|
|
category = "operations"
|
|
name = "formal wear crate"
|
|
supplier = "nanotrasen"
|
|
description = "Formalwear for the best occasions."
|
|
price = 350
|
|
items = list(
|
|
/obj/item/clothing/head/bowler,
|
|
/obj/item/clothing/head/that,
|
|
/obj/item/clothing/under/suit_jacket,
|
|
/obj/item/clothing/under/suit_jacket/really_black,
|
|
/obj/item/clothing/under/suit_jacket/red,
|
|
/obj/item/clothing/under/suit_jacket/navy,
|
|
/obj/item/clothing/under/suit_jacket/burgundy,
|
|
/obj/item/clothing/shoes/sneakers/black,
|
|
/obj/item/clothing/shoes/laceup,
|
|
/obj/item/clothing/shoes/laceup/grey,
|
|
/obj/item/clothing/suit/wcoat
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = FALSE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/giftwrappingpaper
|
|
category = "operations"
|
|
name = "gift wrapping paper"
|
|
supplier = "orion"
|
|
description = "You can use this to wrap items in."
|
|
price = 8
|
|
items = list(
|
|
/obj/item/stack/wrapping_paper
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/janitorialresupplyset
|
|
category = "operations"
|
|
name = "janitorial resupply set"
|
|
supplier = "blam"
|
|
description = "A set of items to restock the janitors closet."
|
|
price = 2000
|
|
items = list(
|
|
/obj/structure/cart/storage/janitorialcart,
|
|
/obj/structure/mopbucket,
|
|
/obj/item/mop,
|
|
/obj/item/storage/bag/trash,
|
|
/obj/item/reagent_containers/spray/cleaner,
|
|
/obj/item/reagent_containers/glass/rag,
|
|
/obj/item/clothing/suit/caution,
|
|
/obj/item/clothing/suit/caution,
|
|
/obj/item/clothing/suit/caution,
|
|
/obj/item/grenade/chem_grenade/cleaner,
|
|
/obj/item/grenade/chem_grenade/cleaner,
|
|
/obj/item/grenade/chem_grenade/cleaner,
|
|
/obj/item/soap/nanotrasen
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = FALSE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/loadbearingequipment
|
|
category = "operations"
|
|
name = "load bearing equipment"
|
|
supplier = "orion"
|
|
description = "Used to hold things when you don't have enough hands."
|
|
price = 83
|
|
items = list(
|
|
/obj/item/clothing/accessory/storage
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/packagewrapper
|
|
category = "operations"
|
|
name = "package wrapper"
|
|
supplier = "orion"
|
|
description = "A roll of paper used to enclose an object for delivery."
|
|
price = 8
|
|
items = list(
|
|
/obj/item/stack/packageWrap
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/pda
|
|
category = "operations"
|
|
name = "PDA"
|
|
supplier = "nanotrasen"
|
|
description = "The latest in portable microcomputer solutions from Thinktronic Systems, LTD."
|
|
price = 90
|
|
items = list(
|
|
/obj/item/modular_computer/handheld/pda
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/photoalbum
|
|
category = "operations"
|
|
name = "Photo album"
|
|
supplier = "nanotrasen"
|
|
description = "A place to store fond memories you made in space."
|
|
price = 45
|
|
items = list(
|
|
/obj/item/storage/photo_album
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/photocopier
|
|
category = "operations"
|
|
name = "photo copier"
|
|
supplier = "nanotrasen"
|
|
description = "When you're too lazy to write a copy yourself."
|
|
price = 300
|
|
items = list(
|
|
/obj/structure/machinery/photocopier
|
|
)
|
|
access = 0
|
|
container_type = "box"
|
|
groupable = FALSE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/poster19
|
|
category = "operations"
|
|
name = "random poster"
|
|
supplier = "orion"
|
|
description = "The poster comes with its own automatic adhesive mechanism, for easy pinning to any vertical surface."
|
|
price = 3.50
|
|
items = list(
|
|
/obj/item/contraband/poster
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/shoulderholster
|
|
category = "operations"
|
|
name = "shoulder holster"
|
|
supplier = "zavodskoi"
|
|
description = "A handgun holster."
|
|
price = 15
|
|
items = list(
|
|
/obj/item/clothing/accessory/holster
|
|
)
|
|
access = ACCESS_SECURITY
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/space_bike
|
|
category = "operations"
|
|
name = "space-bike"
|
|
supplier = "zharkov"
|
|
description = "Space wheelies! Woo!"
|
|
price = 800
|
|
items = list(
|
|
/obj/vehicle/bike
|
|
)
|
|
access = 0
|
|
container_type = "box"
|
|
groupable = FALSE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/webbing
|
|
category = "operations"
|
|
name = "webbing"
|
|
supplier = "nanotrasen"
|
|
description = "Sturdy mess of synthcotton belts and buckles, ready to share your burden."
|
|
price = 43
|
|
items = list(
|
|
/obj/item/clothing/accessory/storage/webbing
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/blackpaint
|
|
category = "operations"
|
|
name = "black paint"
|
|
supplier = "hephaestus"
|
|
description = "Black paint, the color of space."
|
|
price = 10
|
|
items = list(
|
|
/obj/item/reagent_containers/glass/paint/black
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/bluepaint
|
|
category = "operations"
|
|
name = "blue paint"
|
|
supplier = "hephaestus"
|
|
description = "Blue paint, for when you're on a mission from god."
|
|
price = 10
|
|
items = list(
|
|
/obj/item/reagent_containers/glass/paint/blue
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/whitepaint
|
|
category = "operations"
|
|
name = "white paint"
|
|
supplier = "nanotrasen"
|
|
description = "White paint, perfect for sterile boring lab environments."
|
|
price = 10
|
|
items = list(
|
|
/obj/item/reagent_containers/glass/paint/white
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/yellowpaint
|
|
category = "operations"
|
|
name = "yellow paint"
|
|
supplier = "orion"
|
|
description = "Yellow paint, for when you need to make eyes sore."
|
|
price = 10
|
|
items = list(
|
|
/obj/item/reagent_containers/glass/paint/yellow
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/purplepaint
|
|
category = "operations"
|
|
name = "purple paint"
|
|
supplier = "orion"
|
|
description = "Purple paint, it makes you feel like royalty."
|
|
price = 10
|
|
items = list(
|
|
/obj/item/reagent_containers/glass/paint/purple
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/redpaint
|
|
category = "operations"
|
|
name = "red paint"
|
|
supplier = "orion"
|
|
description = "Red paint, its not blood we promise."
|
|
price = 10
|
|
items = list(
|
|
/obj/item/reagent_containers/glass/paint/red
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/greenpaint
|
|
category = "operations"
|
|
name = "green paint"
|
|
supplier = "orion"
|
|
description = "Green paint, a aesthetic replacement for grass."
|
|
price = 10
|
|
items = list(
|
|
/obj/item/reagent_containers/glass/paint/green
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/battlemonstersresupplycanister
|
|
category = "operations"
|
|
name = "battlemonsters resupply canister"
|
|
supplier = "nanotrasen"
|
|
description = "A vending machine restock cart."
|
|
price = 2250
|
|
items = list(
|
|
/obj/item/vending_refill/battlemonsters
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/boozeresupplycanister
|
|
category = "operations"
|
|
name = "booze resupply canister"
|
|
supplier = "orion"
|
|
description = "A vending machine restock cart."
|
|
price = 4500
|
|
items = list(
|
|
/obj/item/vending_refill/booze
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/zorasodaresupplycanister
|
|
category = "operations"
|
|
name = "zora soda resupply canister"
|
|
supplier = "zora"
|
|
description = "A vending machine restock cart."
|
|
price = 1255
|
|
items = list(
|
|
/obj/item/vending_refill/zora
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/toolsresupplycanister
|
|
category = "operations"
|
|
name = "tools resupply canister"
|
|
supplier = "hephaestus"
|
|
description = "A vending machine restock cart."
|
|
price = 2450
|
|
items = list(
|
|
/obj/item/vending_refill/tools
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/smokesresupplycanister
|
|
category = "operations"
|
|
name = "smokes resupply canister"
|
|
supplier = "getmore"
|
|
description = "A vending machine restock cart."
|
|
price = 2250
|
|
items = list(
|
|
/obj/item/vending_refill/smokes
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/snacksresupplycanister
|
|
category = "operations"
|
|
name = "snacks resupply canister"
|
|
supplier = "getmore"
|
|
description = "A vending machine restock cart."
|
|
price = 1255
|
|
items = list(
|
|
/obj/item/vending_refill/snack
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/robotoolsresupplycanister
|
|
category = "operations"
|
|
name = "robo-tools resupply canister"
|
|
supplier = "blam"
|
|
description = "A vending machine restock cart."
|
|
price = 2500
|
|
items = list(
|
|
/obj/item/vending_refill/robo
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/securityresupplycanister
|
|
category = "operations"
|
|
name = "security resupply canister"
|
|
supplier = "blam"
|
|
description = "A vending machine restock cart."
|
|
price = 4500
|
|
items = list(
|
|
/obj/item/vending_refill/robust
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/medsresupplycanister
|
|
category = "operations"
|
|
name = "meds resupply canister"
|
|
supplier = "zeng_hu"
|
|
description = "A vending machine restock cart."
|
|
price = 5500
|
|
items = list(
|
|
/obj/item/vending_refill/meds
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/hydroresupplycanister
|
|
category = "operations"
|
|
name = "hydro resupply canister"
|
|
supplier = "nanotrasen"
|
|
description = "A vending machine restock cart."
|
|
price = 2500
|
|
items = list(
|
|
/obj/item/vending_refill/hydro
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/coffeeresupplycanister
|
|
category = "operations"
|
|
name = "coffee resupply canister"
|
|
supplier = "getmore"
|
|
description = "A vending machine restock cart."
|
|
price = 1350
|
|
items = list(
|
|
/obj/item/vending_refill/coffee
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/colaresupplycanister
|
|
category = "operations"
|
|
name = "cola resupply canister"
|
|
supplier = "idris"
|
|
description = "A vending machine restock cart."
|
|
price = 1250
|
|
items = list(
|
|
/obj/item/vending_refill/cola
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/cutleryresupplycanister
|
|
category = "operations"
|
|
name = "cutlery resupply canister"
|
|
supplier = "nanotrasen"
|
|
description = "A vending machine restock cart."
|
|
price = 850
|
|
items = list(
|
|
/obj/item/vending_refill/cutlery
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/cigarette_restock
|
|
category = "operations"
|
|
name = "commissary cigarette restock"
|
|
supplier = "getmore"
|
|
description = "A box full of stock for the commissary."
|
|
price = 240
|
|
items = list(
|
|
/obj/item/storage/box/fancy/commissary_restock
|
|
)
|
|
access = ACCESS_CARGO
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/rollable_restock
|
|
category = "operations"
|
|
name = "commissary tobacco leaves restock"
|
|
supplier = "getmore"
|
|
description = "A box full of stock for the commissary."
|
|
price = 100
|
|
items = list(
|
|
/obj/item/storage/box/fancy/commissary_restock/rollable
|
|
)
|
|
access = ACCESS_CARGO
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/chewable_restock
|
|
category = "operations"
|
|
name = "commissary chewing tobacco restock"
|
|
supplier = "getmore"
|
|
description = "A box full of stock for the commissary."
|
|
price = 240
|
|
items = list(
|
|
/obj/item/storage/box/fancy/commissary_restock/chewable
|
|
)
|
|
access = ACCESS_CARGO
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/smoking_accessory_restock
|
|
category = "operations"
|
|
name = "commissary smoking accessories restock"
|
|
supplier = "getmore"
|
|
description = "A box full of stock for the commissary."
|
|
price = 140
|
|
items = list(
|
|
/obj/item/storage/box/fancy/commissary_restock/smoking_accessory
|
|
)
|
|
access = ACCESS_CARGO
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/electric_cig_restock
|
|
category = "operations"
|
|
name = "commissary electronic cigarette restock"
|
|
supplier = "getmore"
|
|
description = "A box full of stock for the commissary."
|
|
price = 80
|
|
items = list(
|
|
/obj/item/storage/box/fancy/commissary_restock/electronic_cig
|
|
)
|
|
access = ACCESS_CARGO
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/snack_restock
|
|
category = "operations"
|
|
name = "commissary snack restock"
|
|
supplier = "getmore"
|
|
description = "A box full of stock for the commissary."
|
|
price = 100
|
|
items = list(
|
|
/obj/item/storage/box/fancy/commissary_restock/food
|
|
)
|
|
access = ACCESS_CARGO
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/xeno_restock
|
|
category = "operations"
|
|
name = "commissary xeno snack restock"
|
|
supplier = "getmore"
|
|
description = "A box full of stock for the commissary."
|
|
price = 60
|
|
items = list(
|
|
/obj/item/storage/box/fancy/commissary_restock/food/xeno
|
|
)
|
|
access = ACCESS_CARGO
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/candy_restock
|
|
category = "operations"
|
|
name = "commissary candy restock"
|
|
supplier = "getmore"
|
|
description = "A box full of stock for the commissary."
|
|
price = 65
|
|
items = list(
|
|
/obj/item/storage/box/fancy/commissary_restock/food/candy
|
|
)
|
|
access = ACCESS_CARGO
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/microwave_restock
|
|
category = "operations"
|
|
name = "commissary microwave meal restock"
|
|
supplier = "getmore"
|
|
description = "A box full of stock for the commissary."
|
|
price = 220
|
|
items = list(
|
|
/obj/item/storage/box/fancy/commissary_restock/food/microwave
|
|
)
|
|
access = ACCESS_CARGO
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/drink_restock
|
|
category = "operations"
|
|
name = "commissary drink restock"
|
|
supplier = "getmore"
|
|
description = "A box full of stock for the commissary."
|
|
price = 150
|
|
items = list(
|
|
/obj/item/storage/box/fancy/commissary_restock/drink
|
|
)
|
|
access = ACCESS_CARGO
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/cheap_booze_restock
|
|
category = "operations"
|
|
name = "commissary beer restock"
|
|
supplier = "getmore"
|
|
description = "A box full of stock for the commissary."
|
|
price = 100
|
|
items = list(
|
|
/obj/item/storage/box/fancy/commissary_restock/drink/booze_cheap
|
|
)
|
|
access = ACCESS_CARGO
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/toys_restock
|
|
category = "operations"
|
|
name = "commissary toy restock"
|
|
supplier = "getmore"
|
|
description = "A box full of stock for the commissary."
|
|
price = 110
|
|
items = list(
|
|
/obj/item/storage/box/fancy/commissary_restock/toy
|
|
)
|
|
access = ACCESS_CARGO
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/dice_cards_restock
|
|
category = "operations"
|
|
name = "commissary dice and card restock"
|
|
supplier = "getmore"
|
|
description = "A box full of stock for the commissary."
|
|
price = 120
|
|
items = list(
|
|
/obj/item/storage/box/fancy/commissary_restock/toy/cards_dice
|
|
)
|
|
access = ACCESS_CARGO
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/toy_mech_restock
|
|
category = "operations"
|
|
name = "commissary toy mech restock"
|
|
supplier = "getmore"
|
|
description = "A box full of stock for the commissary."
|
|
price = 200
|
|
items = list(
|
|
/obj/item/storage/box/fancy/commissary_restock/toy/mech
|
|
)
|
|
access = ACCESS_CARGO
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/comic_restock
|
|
category = "operations"
|
|
name = "commissary comic restock"
|
|
supplier = "getmore"
|
|
description = "A box full of stock for the commissary."
|
|
price = 25
|
|
items = list(
|
|
/obj/item/storage/box/fancy/commissary_restock/toy/comic
|
|
)
|
|
access = ACCESS_CARGO
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/nka_comic_restock
|
|
category = "operations"
|
|
name = "commissary az'marian comic series restock"
|
|
supplier = "getmore"
|
|
description = "A box full of stock for the commissary."
|
|
price = 50
|
|
items = list(
|
|
/obj/item/storage/box/fancy/commissary_restock/toy/comic/nka
|
|
)
|
|
access = ACCESS_CARGO
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/music_restock
|
|
category = "operations"
|
|
name = "commissary music restock"
|
|
supplier = "getmore"
|
|
description = "A box full of stock for the commissary."
|
|
price = 50
|
|
items = list(
|
|
/obj/item/storage/box/fancy/commissary_restock/music
|
|
)
|
|
access = ACCESS_CARGO
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/tea_restock
|
|
category = "operations"
|
|
name = "commissary tea restock"
|
|
supplier = "getmore"
|
|
description = "A box full of stock for the commissary."
|
|
// Bulk commissary orders are at a discount, so cheaper per tin of tea than regularly ordering tea
|
|
price = 75
|
|
items = list(
|
|
/obj/item/storage/box/fancy/commissary_restock/tea
|
|
)
|
|
access = ACCESS_CARGO
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|