mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-01-08 08:23:49 +00:00
61 lines
1.6 KiB
Plaintext
61 lines
1.6 KiB
Plaintext
/*
|
|
* Here is where any supply packs
|
|
* related to materials live.
|
|
*/
|
|
|
|
|
|
/datum/supply_packs/materials
|
|
group = "Materials"
|
|
|
|
/datum/supply_packs/materials/metal50
|
|
name = "50 metal sheets"
|
|
contains = list(/obj/item/stack/material/steel/fifty)
|
|
cost = 10
|
|
containertype = /obj/structure/closet/crate
|
|
containername = "Metal sheets crate"
|
|
|
|
/datum/supply_packs/materials/glass50
|
|
name = "50 glass sheets"
|
|
contains = list(/obj/item/stack/material/glass/fifty)
|
|
cost = 10
|
|
containertype = /obj/structure/closet/crate
|
|
containername = "Glass sheets crate"
|
|
|
|
/datum/supply_packs/materials/wood50
|
|
name = "50 wooden planks"
|
|
contains = list(/obj/item/stack/material/wood/fifty)
|
|
cost = 10
|
|
containertype = /obj/structure/closet/crate
|
|
containername = "Wooden planks crate"
|
|
|
|
/datum/supply_packs/materials/plastic50
|
|
name = "50 plastic sheets"
|
|
contains = list(/obj/item/stack/material/plastic/fifty)
|
|
cost = 10
|
|
containertype = /obj/structure/closet/crate
|
|
containername = "Plastic sheets crate"
|
|
|
|
/datum/supply_packs/materials/cardboard_sheets
|
|
contains = list(/obj/item/stack/material/cardboard/fifty)
|
|
name = "50 cardboard sheets"
|
|
cost = 10
|
|
containertype = /obj/structure/closet/crate
|
|
containername = "Cardboard sheets crate"
|
|
|
|
/datum/supply_packs/materials/carpet
|
|
name = "Imported carpet"
|
|
containertype = /obj/structure/closet/crate
|
|
containername = "Imported carpet crate"
|
|
cost = 15
|
|
contains = list(
|
|
/obj/item/stack/tile/carpet/fifty,
|
|
/obj/item/stack/tile/carpet/blue/fifty
|
|
)
|
|
|
|
|
|
/datum/supply_packs/misc/linoleum
|
|
name = "Linoleum"
|
|
containertype = /obj/structure/closet/crate
|
|
containername = "Linoleum crate"
|
|
cost = 15
|
|
contains = list(/obj/item/stack/tile/linoleum/fifty) |