Add silver, gold, diamond and uranium to requisitions. Currently the only way to get it is to have someone bring it back to the Sulaco from the colony and since researchers aren't allowed to leave the FOB it's not easily doable.
Benefits (How this will benefit the server and game as a whole):
Adding these materials to requisitions will allow research and possibly engineering to create things that wouldn't be usually attainable such as improved laser scalpels and plasma cutters.
Details (Description of how you think this would work, the benefits, etc):
It could just be added to either the engineering section of the requisition computer or maybe under science.
Implementation (Optional, if you have an idea how to implement it):
Copy the code from another item in the requisition computer. No idea if my code's right but it's an example of what I believe needs to be done to add this.
Code: Select all
\code\datums\supplypacks.dm
/datum/supply_packs/silver50
name = "50 silver ingots"
contains = list(/obj/item/stack/sheet/silver)
amount = 50
cost = 10
containertype = /obj/structure/closet/crate
containername = "Silver ingot crate"
group = "Engineering"
/datum/supply_packs/gold50
name = "50 gold ingots"
contains = list(/obj/item/stack/sheet/gold)
amount = 50
cost = 10
containertype = /obj/structure/closet/crate
containername = "Gold ingot crate"
group = "Engineering"
/datum/supply_packs/diamond50
name = "50 diamonds"
contains = list(/obj/item/stack/sheet/diamond)
amount = 50
cost = 10
containertype = /obj/structure/closet/crate
containername = "Diamond crate"
group = "Engineering"
/datum/supply_packs/uranium50
name = "50 uranium sheets"
contains = list(/obj/item/stack/sheet/uranium)
amount = 50
cost = 10
containertype = /obj/structure/closet/crate
containername = "Uranium sheet crate"
group = "Engineering"