mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-05-23 23:27:56 +01:00
1a5bdf4e98
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 |