mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-06-03 13:20:05 +01:00
fd5d9267ff
Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
30 lines
602 B
Plaintext
30 lines
602 B
Plaintext
/datum/alloy/plastitanium
|
|
metaltag = MAT_PLASTITANIUM
|
|
requires = list(
|
|
ORE_RUTILE = 1,
|
|
ORE_PLATINUM = 1,
|
|
ORE_CARBON = 2,
|
|
)
|
|
product_mod = 0.3
|
|
product = /obj/item/stack/material/plastitanium
|
|
|
|
/datum/alloy/tiglass
|
|
metaltag = MAT_TITANIUMGLASS
|
|
requires = list(
|
|
ORE_RUTILE = 1,
|
|
ORE_SAND = 2
|
|
)
|
|
product_mod = 1
|
|
product = /obj/item/stack/material/glass/titanium
|
|
|
|
/datum/alloy/plastiglass
|
|
metaltag = MAT_PLASTITANIUMGLASS
|
|
requires = list(
|
|
ORE_RUTILE = 1,
|
|
ORE_SAND = 2,
|
|
ORE_PLATINUM = 1,
|
|
ORE_CARBON = 2,
|
|
)
|
|
product_mod = 1
|
|
product = /obj/item/stack/material/glass/plastitanium
|