mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-20 12:29:23 +01:00
3f9b0d5658
- Added the following items to cargo: pig, Cleanbot, Farmbot, Medibot, autopsy scanner, package/gift wrapping paper, PDA, universal (tape) recorder, IV stand, camping set & sleeping bags, InUs Game-Helm, produce boxes, paper scanner, data drives. - Moved certain cargo items to other categories. - Modified the pricing of blood, hydroponics trays, certain drink canisters, and organ coolers. Made folders and SBS blood come in multiple per order. - Miscellaneous spellchecks and grammar fixes in cargo. - Capped pizza boxes available in the mining vending machine to 2. Certain tweaks, adjustments and additions for QOL and ordering the unfindable for people (i.e. autopsy scanner). Pizza vending thing was changed so that miners can no longer skirt supply shortages by simply unloading 500 pizzas into everyone's lap. Sorry.
75 lines
2.0 KiB
Plaintext
75 lines
2.0 KiB
Plaintext
/singleton/cargo_item/auto_chisel
|
|
category = "miscellaneous"
|
|
name = "auto-chisel"
|
|
supplier = "nanotrasen"
|
|
description = "With an integrated AI chip and hair-trigger precision, this baby makes sculpting almost automatic!"
|
|
price = 125
|
|
items = list(
|
|
/obj/item/autochisel
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/sculptingblock
|
|
category = "miscellaneous"
|
|
name = "sculpting block"
|
|
supplier = "nanotrasen"
|
|
description = "A finely chiselled sculpting block, it is ready to be your canvas."
|
|
price = 750
|
|
items = list(
|
|
/obj/structure/sculpting_block
|
|
)
|
|
access = 0
|
|
container_type = "box"
|
|
groupable = FALSE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/spaceac
|
|
category = "miscellaneous"
|
|
name = "space air conditioner"
|
|
supplier = "nanotrasen"
|
|
description = "Made by Space Amish using traditional space techniques, this A/C unit can heat or cool a room to your liking."
|
|
price = 150
|
|
items = list(
|
|
/obj/machinery/space_heater
|
|
)
|
|
access = 0
|
|
container_type = "box"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/camping_set
|
|
category = "miscellaneous"
|
|
name = "camping set"
|
|
supplier = "orion"
|
|
description = "A set of camping supplies for two. For your lovely getaway to paradise. Or hell, whichever is your fancy. Contains a tent, two sleeping bags, two folding chairs and a folding table."
|
|
price = 500
|
|
items = list(
|
|
/obj/item/tent,
|
|
/obj/item/sleeping_bag,
|
|
/obj/item/sleeping_bag,
|
|
/obj/item/material/stool/chair/folding/camping,
|
|
/obj/item/material/stool/chair/folding/camping,
|
|
/obj/item/material/folding_table,
|
|
)
|
|
access = 0
|
|
container_type = "box"
|
|
groupable = FALSE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/sleeping_bag
|
|
category = "miscellaneous"
|
|
name = "sleeping bag"
|
|
supplier = "orion"
|
|
description = "A sleeping bag, for sleeping in. Great for a night under the stars."
|
|
price = 12.50
|
|
items = list(
|
|
/obj/item/sleeping_bag,
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|