some moire

This commit is contained in:
Kashargul
2024-12-06 21:54:05 +01:00
parent 80edcd2c3d
commit 429398bdd7
231 changed files with 2484 additions and 1945 deletions
+18 -18
View File
@@ -9,22 +9,22 @@
var/metaltag
/datum/alloy/durasteel
metaltag = "durasteel"
metaltag = MAT_DURASTEEL
requires = list(
"diamond" = 1,
"platinum" = 1,
"carbon" = 2,
"hematite" = 2
ORE_DIAMOND = 1,
ORE_PLATINUM = 1,
ORE_CARBON = 2,
ORE_HEMATITE = 2
)
product_mod = 0.3
product = /obj/item/stack/material/durasteel
/datum/alloy/plasteel
metaltag = "plasteel"
metaltag = MAT_PLASTEEL
requires = list(
"platinum" = 1,
"carbon" = 2,
"hematite" = 2
ORE_PLATINUM = 1,
ORE_CARBON = 2,
ORE_HEMATITE = 2
)
product_mod = 0.3
product = /obj/item/stack/material/plasteel
@@ -32,24 +32,24 @@
/datum/alloy/steel
metaltag = MAT_STEEL
requires = list(
"carbon" = 1,
"hematite" = 1
ORE_CARBON = 1,
ORE_HEMATITE = 1
)
product = /obj/item/stack/material/steel
/datum/alloy/borosilicate
metaltag = "borosilicate glass"
metaltag = MAT_PGLASS
requires = list(
"platinum" = 1,
"sand" = 2
ORE_PLATINUM = 1,
ORE_SAND = 2
)
product = /obj/item/stack/material/glass/phoronglass
/*
/datum/alloy/bronze
metaltag = "bronze"
metaltag = MAT_BRONZE
requires = list(
"copper" = 2,
"tin" = 1
ORE_COPPER = 2,
ORE_TIN = 1
)
product = /obj/item/stack/material/bronze
*/
*/