mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-21 23:52:48 +00:00
* Begins work on the Industrial expansion, ft hidden Lore * Removed Painite, Quartz, and Void Opal from generation pending their eventual uses. Recipes modified to use them have been reverted of this use. Fix Fix. * Reset map to master. * Add copper to Robotics, R&D, Engineering, and EVA.
68 lines
1.8 KiB
Plaintext
68 lines
1.8 KiB
Plaintext
/*
|
|
* Here is where any supply packs
|
|
* related to materials live.
|
|
*/
|
|
|
|
|
|
/datum/supply_pack/materials
|
|
group = "Materials"
|
|
|
|
/datum/supply_pack/materials/metal50
|
|
name = "50 metal sheets"
|
|
contains = list(/obj/fiftyspawner/steel)
|
|
cost = 10
|
|
containertype = /obj/structure/closet/crate/grayson
|
|
containername = "Metal sheets crate"
|
|
|
|
/datum/supply_pack/materials/glass50
|
|
name = "50 glass sheets"
|
|
contains = list(/obj/fiftyspawner/glass)
|
|
cost = 10
|
|
containertype = /obj/structure/closet/crate/grayson
|
|
containername = "Glass sheets crate"
|
|
|
|
/datum/supply_pack/materials/wood50
|
|
name = "50 wooden planks"
|
|
contains = list(/obj/fiftyspawner/wood)
|
|
cost = 10
|
|
containertype = /obj/structure/closet/crate/grayson
|
|
containername = "Wooden planks crate"
|
|
|
|
/datum/supply_pack/materials/plastic50
|
|
name = "50 plastic sheets"
|
|
contains = list(/obj/fiftyspawner/plastic)
|
|
cost = 10
|
|
containertype = /obj/structure/closet/crate/grayson
|
|
containername = "Plastic sheets crate"
|
|
|
|
/datum/supply_pack/materials/copper50
|
|
name = "50 copper ingots"
|
|
contains = list(/obj/fiftyspawner/copper)
|
|
cost = 60
|
|
containertype = /obj/structure/closet/crate/grayson
|
|
containername = "Copper ingots crate"
|
|
|
|
/datum/supply_pack/materials/cardboard_sheets
|
|
contains = list(/obj/fiftyspawner/cardboard)
|
|
name = "50 cardboard sheets"
|
|
cost = 10
|
|
containertype = /obj/structure/closet/crate/grayson
|
|
containername = "Cardboard sheets crate"
|
|
|
|
/datum/supply_pack/materials/carpet
|
|
name = "Imported carpet"
|
|
containertype = /obj/structure/closet/crate/grayson
|
|
containername = "Imported carpet crate"
|
|
cost = 15
|
|
contains = list(
|
|
/obj/fiftyspawner/carpet,
|
|
/obj/fiftyspawner/tealcarpet
|
|
)
|
|
|
|
|
|
/datum/supply_pack/misc/linoleum
|
|
name = "Linoleum"
|
|
containertype = /obj/structure/closet/crate/grayson
|
|
containername = "Linoleum crate"
|
|
cost = 15
|
|
contains = list(/obj/fiftyspawner/linoleum) |