mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-01-06 07:23:16 +00:00
Seems like an oversight - can make titanium (smelting rutile), titanium glass & plastitanium glass but not plastitanium.
29 lines
581 B
Plaintext
29 lines
581 B
Plaintext
/datum/alloy/plastitanium
|
|
metaltag = MAT_PLASTITANIUM
|
|
requires = list(
|
|
"rutile" = 1,
|
|
"platinum" = 1,
|
|
"carbon" = 2,
|
|
)
|
|
product_mod = 0.3
|
|
product = /obj/item/stack/material/plastitanium
|
|
|
|
/datum/alloy/tiglass
|
|
metaltag = MAT_TITANIUMGLASS
|
|
requires = list(
|
|
"rutile" = 1,
|
|
"sand" = 2
|
|
)
|
|
product_mod = 1
|
|
product = /obj/item/stack/material/glass/titanium
|
|
|
|
/datum/alloy/plastiglass
|
|
metaltag = MAT_PLASTANIUMGLASS
|
|
requires = list(
|
|
"rutile" = 1,
|
|
"sand" = 2,
|
|
"platinum" = 1,
|
|
"carbon" = 2,
|
|
)
|
|
product_mod = 1
|
|
product = /obj/item/stack/material/glass/plastitanium |