mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-02-04 13:20:15 +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 |