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
*/
*/
+3 -3
View File
@@ -3,7 +3,7 @@
requires = list(
"rutile" = 1,
"platinum" = 1,
"carbon" = 2,
REAGENT_ID_CARBON = 2,
)
product_mod = 0.3
product = /obj/item/stack/material/plastitanium
@@ -23,7 +23,7 @@
"rutile" = 1,
"sand" = 2,
"platinum" = 1,
"carbon" = 2,
REAGENT_ID_CARBON = 2,
)
product_mod = 1
product = /obj/item/stack/material/glass/plastitanium
product = /obj/item/stack/material/glass/plastitanium
+7 -7
View File
@@ -39,7 +39,7 @@
/ore/hematite
name = ORE_HEMATITE
display_name = "hematite"
display_name = ORE_HEMATITE
smelts_to = MAT_IRON
alloy = 1
result_amount = 5
@@ -62,7 +62,7 @@
/ore/glass
name = ORE_SAND
display_name = "sand"
display_name = ORE_SAND
smelts_to = MAT_GLASS
alloy = 1
compresses_to = "sandstone"
@@ -113,7 +113,7 @@
/ore/diamond
name = ORE_DIAMOND
display_name = "diamond"
display_name = ORE_DIAMOND
alloy = 1
compresses_to = MAT_DIAMOND
result_amount = 5
@@ -178,7 +178,7 @@
/*
/ore/copper
name = ORE_COPPER
display_name = "copper"
display_name = ORE_COPPER
smelts_to = MAT_COPPER
alloy = 1
result_amount = 5
@@ -189,7 +189,7 @@
/ore/tin
name = ORE_TIN
display_name = "tin"
display_name = ORE_TIN
smelts_to = MAT_TIN
alloy = 1
result_amount = 5
@@ -208,7 +208,7 @@
/ore/bauxite
name = ORE_BAUXITE
display_name = "bauxite"
display_name = ORE_BAUXITE
smelts_to = MAT_ALUMINIUM
result_amount = 5
spread_chance = 25
@@ -218,7 +218,7 @@
*/
/ore/rutile
name = ORE_RUTILE
display_name = "rutile"
display_name = ORE_RUTILE
smelts_to = MAT_TITANIUM
result_amount = 5
spread_chance = 12