summaryrefslogtreecommitdiff
path: root/gamemode/craftablesystem/furnaces/steelfurnace.lua
diff options
context:
space:
mode:
Diffstat (limited to 'gamemode/craftablesystem/furnaces/steelfurnace.lua')
-rw-r--r--gamemode/craftablesystem/furnaces/steelfurnace.lua93
1 files changed, 93 insertions, 0 deletions
diff --git a/gamemode/craftablesystem/furnaces/steelfurnace.lua b/gamemode/craftablesystem/furnaces/steelfurnace.lua
new file mode 100644
index 0000000..2f2bfdd
--- /dev/null
+++ b/gamemode/craftablesystem/furnaces/steelfurnace.lua
@@ -0,0 +1,93 @@
+/* Steel Furnace */
+local COMBI = {}
+
+COMBI.Name = "Steel Furnace"
+COMBI.Description = "You can use the furnace to smelt resources into another, such as Platinum Ore into Platinum."
+
+COMBI.Req = {}
+COMBI.Req["Steel"] = 35
+COMBI.Req["Mahogany"] = 35
+
+COMBI.Results = "gms_steelfurnace"
+COMBI.Texture = "gms_icons/gms_none.png"
+COMBI.BuildSiteModel = "models/props_industrial/winch_deck.mdl"
+
+GMS.RegisterCombi( COMBI, "Structures" )
+
+/* 1 Platinum */
+local COMBI = {}
+
+COMBI.Name = "Platinum"
+COMBI.Description = "Platinum can be used to create more advanced buildings and tools."
+COMBI.Entity = "gms_steelfurnace"
+
+COMBI.Req = {}
+COMBI.Req["Platinum_Ore"] = 1
+
+COMBI.Results = {}
+COMBI.Results["Platinum"] = 1
+
+GMS.RegisterCombi( COMBI, "gms_steelfurnace" )
+
+/* 5 Platinum */
+local COMBI = {}
+
+COMBI.Name = "Platinum 5x"
+COMBI.Description = "Platinum can be used to create more advanced buildings and tools."
+COMBI.Entity = "gms_steelfurnace"
+
+COMBI.Req = {}
+COMBI.Req["Platinum_Ore"] = 5
+
+COMBI.Results = {}
+COMBI.Results["Platinum"] = 5
+
+GMS.RegisterCombi( COMBI, "gms_steelfurnace" )
+
+/* 10 Platinum */
+local COMBI = {}
+
+COMBI.Name = "Platinum 10x"
+COMBI.Description = "Platinum can be used to create more advanced buildings and tools."
+COMBI.Entity = "gms_steelfurnace"
+
+COMBI.Req = {}
+COMBI.Req["Platinum_Ore"] = 10
+
+COMBI.Results = {}
+COMBI.Results["Platinum"] = 10
+
+GMS.RegisterCombi( COMBI, "gms_steelfurnace" )
+
+/* 25 Platinum */
+local COMBI = {}
+
+COMBI.Name = "Platinum 25x"
+COMBI.Description = "Platinum can be used to create more advanced buildings and tools."
+COMBI.Entity = "gms_steelfurnace"
+
+COMBI.Req = {}
+COMBI.Req["Platinum_Ore"] = 25
+
+COMBI.Results = {}
+COMBI.Results["Platinum"] = 25
+
+GMS.RegisterCombi( COMBI, "gms_steelfurnace" )
+
+/* All Platinum */
+local COMBI = {}
+
+COMBI.Name = "Platinum"
+COMBI.Description = "Platinum can be used to create more advanced buildings and tools."
+COMBI.Entity = "gms_steelfurnace"
+
+COMBI.Req = {}
+COMBI.Req["Platinum_Ore"] = 1
+
+COMBI.Results = {}
+COMBI.Results["Platinum"] = 1
+
+COMBI.AllSmelt = true
+COMBI.Max = 50
+
+GMS.RegisterCombi( COMBI, "gms_steelfurnace" )