mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-27 15:01:04 +01:00
# Summary This PR adds visual fill levels for fuel, extinguisher, water, cooking oil and lube tanks. The cooking oil tank now is also persistent and was added to the cargo order manifest. Sprites by @alsoandanswer ## Preview <img width="404" height="472" alt="image" src="https://github.com/user-attachments/assets/4ff4a0dd-e790-4a63-bc1a-6e198199ee7c" />
103 lines
2.6 KiB
Plaintext
103 lines
2.6 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/watertank
|
|
category = "miscellaneous"
|
|
name = "water tank"
|
|
supplier = "orion"
|
|
description = "A tank filled with water."
|
|
price = 350
|
|
items = list(
|
|
/obj/structure/reagent_dispensers/watertank
|
|
)
|
|
access = 0
|
|
container_type = "box"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/cookingoil
|
|
category = "miscellaneous"
|
|
name = "cooking oil tank"
|
|
supplier = "orion"
|
|
description = "A tank filled with cooking oil."
|
|
price = 450
|
|
items = list(
|
|
/obj/structure/reagent_dispensers/cookingoil
|
|
)
|
|
access = 0
|
|
container_type = "box"
|
|
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/structure/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
|