summaryrefslogtreecommitdiff
path: root/gamemode/craftablesystem/furnaces/steelfurnace.lua
diff options
context:
space:
mode:
authorAlexander Pickering <alexandermpickering@gmail.com>2016-04-16 14:16:26 -0400
committerAlexander Pickering <alexandermpickering@gmail.com>2016-04-16 14:16:26 -0400
commit69b734c634c0838e1eb4d468d5a6db67f8eb7bd0 (patch)
treec8515ddbe104951a65313efe452ea0c83a7a09c8 /gamemode/craftablesystem/furnaces/steelfurnace.lua
parent88c8acfa90a71e50104b9c64b953eae939767f20 (diff)
downloadgmstranded-69b734c634c0838e1eb4d468d5a6db67f8eb7bd0.tar.gz
gmstranded-69b734c634c0838e1eb4d468d5a6db67f8eb7bd0.tar.bz2
gmstranded-69b734c634c0838e1eb4d468d5a6db67f8eb7bd0.zip
Moved all of combinations.lua into their own files under craftablesystem/
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" )