Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions code/modules/research/designs/smelting_designs.dm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
///////SMELTABLE ALLOYS///////

/datum/design/plasteel_alloy
name = "Plasma + Iron alloy"
name = "Plasteel"
id = "plasteel"
build_type = SMELTER | PROTOLATHE
materials = list(/datum/material/iron = MINERAL_MATERIAL_AMOUNT, /datum/material/plasma = MINERAL_MATERIAL_AMOUNT)
Expand All @@ -12,7 +12,7 @@


/datum/design/plastitanium_alloy
name = "Plasma + Titanium alloy"
name = "Plastitanium"
id = "plastitanium"
build_type = SMELTER | PROTOLATHE
materials = list(/datum/material/titanium = MINERAL_MATERIAL_AMOUNT, /datum/material/plasma = MINERAL_MATERIAL_AMOUNT)
Expand All @@ -22,7 +22,7 @@
maxstack = 50

/datum/design/plaglass_alloy
name = "Plasma + Glass alloy"
name = "Plasma Glass"
id = "plasmaglass"
build_type = SMELTER | PROTOLATHE
materials = list(/datum/material/plasma = MINERAL_MATERIAL_AMOUNT * 0.5, /datum/material/glass = MINERAL_MATERIAL_AMOUNT)
Expand All @@ -32,7 +32,7 @@
maxstack = 50

/datum/design/plasmarglass_alloy
name = "Plasma + Metal + Glass alloy"
name = "Reinforced Plasma Glass"
id = "plasmareinforcedglass"
build_type = SMELTER | PROTOLATHE
materials = list(/datum/material/plasma = MINERAL_MATERIAL_AMOUNT * 0.5, /datum/material/iron = MINERAL_MATERIAL_AMOUNT * 0.5, /datum/material/glass = MINERAL_MATERIAL_AMOUNT)
Expand All @@ -42,7 +42,7 @@
maxstack = 50

/datum/design/titaniumglass_alloy
name = "Titanium + Glass alloy"
name = "Titanium Glass"
id = "titaniumglass"
build_type = SMELTER | PROTOLATHE
materials = list(/datum/material/titanium = MINERAL_MATERIAL_AMOUNT * 0.5, /datum/material/glass = MINERAL_MATERIAL_AMOUNT)
Expand All @@ -52,7 +52,7 @@
maxstack = 50

/datum/design/plastitaniumglass_alloy
name = "Plasma + Titanium + Glass alloy"
name = "Plastitanium Glass"
id = "plastitaniumglass"
build_type = SMELTER | PROTOLATHE
materials = list(/datum/material/plasma = MINERAL_MATERIAL_AMOUNT * 0.5, /datum/material/titanium = MINERAL_MATERIAL_AMOUNT * 0.5, /datum/material/glass = MINERAL_MATERIAL_AMOUNT)
Expand Down