Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions code/modules/cargo/items/engineering.dm
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
/singleton/cargo_item/aluminiumsheets
category = "engineering"
name = "aluminium sheets"
supplier = "hephaestus"
description = "50 sheets of aluminium."
price = 75
items = list(
/obj/item/stack/material/aluminium/full
)
access = 0
container_type = "crate"
groupable = TRUE
spawn_amount = 1

/singleton/cargo_item/glasssheets
category = "engineering"
name = "glass sheets"
Expand All @@ -11,6 +25,20 @@
container_type = "crate"
groupable = TRUE

/singleton/cargo_item/leadsheets
category = "engineering"
name = "lead sheets"
supplier = "hephaestus"
description = "50 sheets of lead."
price = 105
items = list(
/obj/item/stack/material/lead/full
)
access = 0
container_type = "crate"
groupable = TRUE
spawn_amount = 1

/singleton/cargo_item/plasteelsheets
category = "engineering"
name = "plasteel sheets"
Expand Down
4 changes: 4 additions & 0 deletions html/changelogs/hellfirejag-aluminiumandleadcargo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
author: Hellfirejag
delete-after: True
changes:
- rscadd: "Added aluminium and lead to the materials that can be ordered via Operations."
Loading