mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-30 08:39:12 +01:00
[MIRROR] Converts gas, ore, plants and reagent strings to defines (#9611)
Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
co-authored by
Heroman3003
Kashargul
parent
d5b62d4159
commit
fd5d9267ff
@@ -1,9 +1,9 @@
|
||||
/datum/alloy/plastitanium
|
||||
metaltag = MAT_PLASTITANIUM
|
||||
requires = list(
|
||||
"rutile" = 1,
|
||||
"platinum" = 1,
|
||||
"carbon" = 2,
|
||||
ORE_RUTILE = 1,
|
||||
ORE_PLATINUM = 1,
|
||||
ORE_CARBON = 2,
|
||||
)
|
||||
product_mod = 0.3
|
||||
product = /obj/item/stack/material/plastitanium
|
||||
@@ -11,8 +11,8 @@
|
||||
/datum/alloy/tiglass
|
||||
metaltag = MAT_TITANIUMGLASS
|
||||
requires = list(
|
||||
"rutile" = 1,
|
||||
"sand" = 2
|
||||
ORE_RUTILE = 1,
|
||||
ORE_SAND = 2
|
||||
)
|
||||
product_mod = 1
|
||||
product = /obj/item/stack/material/glass/titanium
|
||||
@@ -20,10 +20,10 @@
|
||||
/datum/alloy/plastiglass
|
||||
metaltag = MAT_PLASTITANIUMGLASS
|
||||
requires = list(
|
||||
"rutile" = 1,
|
||||
"sand" = 2,
|
||||
"platinum" = 1,
|
||||
"carbon" = 2,
|
||||
ORE_RUTILE = 1,
|
||||
ORE_SAND = 2,
|
||||
ORE_PLATINUM = 1,
|
||||
ORE_CARBON = 2,
|
||||
)
|
||||
product_mod = 1
|
||||
product = /obj/item/stack/material/glass/plastitanium
|
||||
product = /obj/item/stack/material/glass/plastitanium
|
||||
|
||||
Reference in New Issue
Block a user