mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
Added sprites for stationary drilling gear. Added skeleton ores for coal, adamantine, mythril. Updated some icons. Expanded mining rig functionality. Changed adamantine and mythril to osmium and metallic hydrogen. Added ore distribution map generation to master controller. Added upgrading to stationary drills, tweaked other stuff. Rewriting the ore processor and how ores handle information. Also rewrote the ore stacker.
27 lines
627 B
Plaintext
27 lines
627 B
Plaintext
//Alloys that contain subsets of each other's ingredients must be ordered in the desired sequence
|
|
//eg. steel comes after plasteel because plasteel's ingredients contain the ingredients for steel and
|
|
//it would be impossible to produce.
|
|
|
|
/datum/alloy
|
|
var/list/requires
|
|
var/product_mod = 1
|
|
var/product
|
|
var/metaltag
|
|
|
|
/datum/alloy/plasteel
|
|
metaltag = "plasteel"
|
|
requires = list(
|
|
"platinum" = 1,
|
|
"coal" = 2,
|
|
"hematite" = 2
|
|
)
|
|
product_mod = 0.3
|
|
product = /obj/item/stack/sheet/plasteel
|
|
|
|
/datum/alloy/steel
|
|
metaltag = "steel"
|
|
requires = list(
|
|
"coal" = 1,
|
|
"hematite" = 1
|
|
)
|
|
product = /obj/item/stack/sheet/metal |