mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-12 00:20:42 +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.
413 lines
9.8 KiB
Plaintext
413 lines
9.8 KiB
Plaintext
/singleton/cargo_item/crayonbox
|
|
category = "recreation"
|
|
name = "box of crayons"
|
|
supplier = "getmore"
|
|
description = "Nontoxic crayons! For drawing, writing, painting. Warranty void if consumed."
|
|
price = 30
|
|
items = list(
|
|
/obj/item/storage/box/fancy/crayons
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/painting_kit
|
|
category = "recreation"
|
|
name = "painting kit"
|
|
supplier = "virgo"
|
|
description = "A painter's kit containing an easel, a small canvas, and some paints. Additional canvases sold separately."
|
|
price = 350
|
|
items = list(
|
|
/obj/structure/easel,
|
|
/obj/item/canvas,
|
|
/obj/item/storage/box/fancy/crayons,
|
|
/obj/item/reagent_containers/glass/rag,
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/canvas_small
|
|
category = "recreation"
|
|
name = "small canvas"
|
|
supplier = "virgo"
|
|
description = "A painting canvas. Does not include the tools required to use it."
|
|
price = 50
|
|
items = list(
|
|
/obj/item/canvas
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/canvas_medium
|
|
category = "recreation"
|
|
name = "medium canvas"
|
|
supplier = "virgo"
|
|
description = "A painting canvas. Does not include the tools required to use it."
|
|
price = 80
|
|
items = list(
|
|
/obj/item/canvas/nineteen_nineteen
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/canvas_large
|
|
category = "recreation"
|
|
name = "large canvas"
|
|
supplier = "virgo"
|
|
description = "A painting canvas. Does not include the tools required to use it."
|
|
price = 100
|
|
items = list(
|
|
/obj/item/canvas/twentythree_twentythree
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/trumpet
|
|
category = "recreation"
|
|
name = "trumpet"
|
|
supplier = "virgo"
|
|
description = "A trumpet for those triumphant tooting sessions."
|
|
price = 300
|
|
items = list(
|
|
/obj/item/synthesized_instrument/trumpet
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/guitar
|
|
category = "recreation"
|
|
name = "guitar"
|
|
supplier = "virgo"
|
|
description = "An acoustic guitar for those balcony serenades."
|
|
price = 190
|
|
items = list(
|
|
/obj/item/synthesized_instrument/guitar
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/violin
|
|
category = "recreation"
|
|
name = "violin"
|
|
supplier = "virgo"
|
|
description = "A wooden musical instrument with four strings and a bow."
|
|
price = 250
|
|
items = list(
|
|
/obj/item/synthesized_instrument/violin
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/polyguitar
|
|
category = "recreation"
|
|
name = "polyguitar"
|
|
supplier = "virgo"
|
|
description = "An electric polyguitar. 100% digital audio."
|
|
price = 250
|
|
items = list(
|
|
/obj/item/synthesized_instrument/guitar/multi
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/piano
|
|
category = "recreation"
|
|
name = "piano"
|
|
supplier = "virgo"
|
|
description = "Like a regular piano, but always in tune! Even if the musician isn't."
|
|
price = 1200
|
|
items = list(
|
|
/obj/structure/synthesized_instrument/synthesizer/piano
|
|
)
|
|
access = 0
|
|
container_type = "box"
|
|
groupable = FALSE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/pianosoundsynthesizer
|
|
category = "recreation"
|
|
name = "synthesizer 3.0"
|
|
supplier = "virgo"
|
|
description = "An expensive sound synthesizer. Great for those orchestra-of-one performances."
|
|
price = 1900
|
|
items = list(
|
|
/obj/structure/synthesized_instrument/synthesizer
|
|
)
|
|
access = 0
|
|
container_type = "box"
|
|
groupable = FALSE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/jukebox
|
|
category = "recreation"
|
|
name = "juke box"
|
|
supplier = "nanotrasen"
|
|
description = "A common sight in any modern space bar, this jukebox has all the space classics."
|
|
price = 500
|
|
items = list(
|
|
/obj/structure/machinery/media/jukebox
|
|
)
|
|
access = 0
|
|
container_type = "box"
|
|
groupable = FALSE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/adhomian_phonograph
|
|
category = "recreation"
|
|
name = "adhomian phonograph"
|
|
supplier = "zharkov"
|
|
description = "An Adhomian record player."
|
|
price = 700
|
|
items = list(
|
|
/obj/structure/machinery/media/jukebox/phonograph
|
|
)
|
|
access = 0
|
|
container_type = "box"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/waterballoons
|
|
category = "recreation"
|
|
name = "water balloons (x10)"
|
|
supplier = "nanotrasen"
|
|
description = "Ten empty water balloons for water balloon fights."
|
|
price = 3.25
|
|
items = list(
|
|
/obj/item/toy/waterballoon
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 10
|
|
|
|
/singleton/cargo_item/balloons
|
|
category = "recreation"
|
|
name = "balloons (x10)"
|
|
supplier = "nanotrasen"
|
|
description = "Ten empty regular balloons. Can be filled using a tank of air or other gas. Warranty void if filled with hydrogen."
|
|
price = 2.50
|
|
items = list(
|
|
/obj/item/toy/balloon
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 10
|
|
|
|
/singleton/cargo_item/toysword
|
|
category = "recreation"
|
|
name = "toy sword"
|
|
supplier = "nanotrasen"
|
|
description = "A cheap, plastic replica of a blue energy sword. Realistic sounds and colors! Ages 8 and up."
|
|
price = 12
|
|
items = list(
|
|
/obj/item/toy/sword
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/replicakatana
|
|
category = "recreation"
|
|
name = "replica katana"
|
|
supplier = "nanotrasen"
|
|
description = "A cheap plastic katana. Useful for pretending you're a samurai or for tabletop roleplaying sessions."
|
|
price = 16
|
|
items = list(
|
|
/obj/item/toy/katana
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/foamdart
|
|
category = "recreation"
|
|
name = "foam darts (x5)"
|
|
supplier = "nanotrasen"
|
|
description = "It's some foam darts, for use in foam weaponry. Ages 8 and up."
|
|
price = 3.50
|
|
items = list(
|
|
/obj/item/toy/ammo/crossbow
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 5
|
|
|
|
/singleton/cargo_item/foamdartcrossbow
|
|
category = "recreation"
|
|
name = "foam dart crossbow"
|
|
supplier = "nanotrasen"
|
|
description = "A weapon favored by many overactive children. Ages 8 and up."
|
|
price = 20
|
|
items = list(
|
|
/obj/item/toy/crossbow
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/gravitationalsingularitytoy
|
|
category = "recreation"
|
|
name = "gravitational singularity toy"
|
|
supplier = "getmore"
|
|
description = "'Singulo' brand spinning toy. Certified mesmerizing since 2440."
|
|
price = 8
|
|
items = list(
|
|
/obj/item/toy/spinningtoy
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/randomplushies
|
|
category = "recreation"
|
|
name = "random plushies (x4)"
|
|
supplier = "nanotrasen"
|
|
description = "Four random surplus plushies from a local toy store's clearance sale. People grow old, apparently."
|
|
price = 45
|
|
items = list(
|
|
/obj/random/plushie
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 4
|
|
|
|
/singleton/cargo_item/therapydoll
|
|
category = "recreation"
|
|
name = "therapy doll"
|
|
supplier = "virgo"
|
|
description = "A toy for therapeutic and recreational purposes."
|
|
price = 22
|
|
items = list(
|
|
/obj/item/toy/plushie/therapy
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/snappop
|
|
category = "recreation"
|
|
name = "snap pop (x5)"
|
|
supplier = "nanotrasen"
|
|
description = "A number of snap pops."
|
|
price = 12
|
|
items = list(
|
|
/obj/item/toy/snappop
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 5
|
|
|
|
/singleton/cargo_item/redlasertagequipmentset
|
|
category = "recreation"
|
|
name = "red laser tag equipment set"
|
|
supplier = "nanotrasen"
|
|
description = "A two-player set of red-team laser tag equipment consisting of a helmet, armor, and a gun."
|
|
price = 150
|
|
items = list(
|
|
/obj/item/clothing/head/helmet/riot/laser_tag,
|
|
/obj/item/clothing/suit/armor/riot/laser_tag,
|
|
/obj/item/gun/energy/lasertag/red
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 2
|
|
|
|
/singleton/cargo_item/bluelasertagequipmentset
|
|
category = "recreation"
|
|
name = "blue laser tag equipment set"
|
|
supplier = "nanotrasen"
|
|
description = "A two-player set of blue-team laser blue equipment consisting of a helmet, armor, and a gun."
|
|
price = 150
|
|
items = list(
|
|
/obj/item/clothing/head/helmet/riot/laser_tag/blue,
|
|
/obj/item/clothing/suit/armor/riot/laser_tag/blue,
|
|
/obj/item/gun/energy/lasertag/blue
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 2
|
|
|
|
/singleton/cargo_item/lyodiicards
|
|
category = "recreation"
|
|
name = "lyodii fatesayer cards"
|
|
supplier = "orion"
|
|
description = "A lyodii Fatesayer card deck. Exported from Moroz, used to tell your fate."
|
|
price = 120 //It's a niche novelty thing made in relatively small export quantities
|
|
items = list(
|
|
/obj/item/storage/box/lyodii
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/game_helm
|
|
category = "recreation"
|
|
name = "InUs Game-Helm"
|
|
supplier = "orion"
|
|
description = "A popular portable gaming console with thousands of games available for play."
|
|
price = 150
|
|
items = list(
|
|
/obj/item/gamehelm
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/whiteboard
|
|
category = "recreation"
|
|
name = "whiteboard"
|
|
supplier = "orion"
|
|
description = "A standard whiteboard."
|
|
price = 100
|
|
items = list(
|
|
/obj/structure/whiteboard
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|
|
|
|
/singleton/cargo_item/whiteboard_portable
|
|
category = "recreation"
|
|
name = "portable whiteboard"
|
|
supplier = "orion"
|
|
description = "A portable whiteboard, smaller than the standard alternatives."
|
|
price = 75
|
|
items = list(
|
|
/obj/item/portable_whiteboard
|
|
)
|
|
access = 0
|
|
container_type = "crate"
|
|
groupable = TRUE
|
|
spawn_amount = 1
|