mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
Refactors ore eating to facilitate the ethical consumption of refined materials, easily obtainable on station. Suggested by the kobolds. Also fixes the material name of Plastitanium glass throughout the codebase.
29 lines
583 B
Plaintext
29 lines
583 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_PLASTITANIUMGLASS
|
|
requires = list(
|
|
"rutile" = 1,
|
|
"sand" = 2,
|
|
"platinum" = 1,
|
|
"carbon" = 2,
|
|
)
|
|
product_mod = 1
|
|
product = /obj/item/stack/material/glass/plastitanium |