summaryrefslogtreecommitdiff
path: root/gamemode/craftablesystem/misc/mythrilfactory.lua
diff options
context:
space:
mode:
authorAlexander Pickering <alexandermpickering@gmail.com>2016-04-16 14:41:55 -0400
committerAlexander Pickering <alexandermpickering@gmail.com>2016-04-16 14:41:55 -0400
commite4bcd4a0f9eda134a1a34a24e2ada95ac4258ef5 (patch)
tree5ba027feadfd98c85c669ae13beee1e12cf6fe5c /gamemode/craftablesystem/misc/mythrilfactory.lua
parenta869b6161784a0f75da867a7b3328edb822f1e16 (diff)
downloadgmstranded-e4bcd4a0f9eda134a1a34a24e2ada95ac4258ef5.tar.gz
gmstranded-e4bcd4a0f9eda134a1a34a24e2ada95ac4258ef5.tar.bz2
gmstranded-e4bcd4a0f9eda134a1a34a24e2ada95ac4258ef5.zip
Finsihed moveing things out of combinations2
Diffstat (limited to 'gamemode/craftablesystem/misc/mythrilfactory.lua')
-rw-r--r--gamemode/craftablesystem/misc/mythrilfactory.lua159
1 files changed, 159 insertions, 0 deletions
diff --git a/gamemode/craftablesystem/misc/mythrilfactory.lua b/gamemode/craftablesystem/misc/mythrilfactory.lua
new file mode 100644
index 0000000..708e27d
--- /dev/null
+++ b/gamemode/craftablesystem/misc/mythrilfactory.lua
@@ -0,0 +1,159 @@
+/*Mithril Factory*/
+local COMBI = {}
+
+COMBI.Name = "Mithril Factory"
+COMBI.Description = "A advanced factor for faster smelting"
+
+COMBI.Req = {}
+COMBI.Req["Pure_Mithril"] = 400
+COMBI.Req["Teak"] = 50
+
+COMBI.Results = "gms_mithrilfactory"
+COMBI.Texture = "gms_icons/gms_weapon.png"
+COMBI.BuildSiteModel = "models/props_wasteland/laundry_washer001a.mdl"
+
+GMS.RegisterCombi( COMBI, "Structures" )
+
+/* Allsmelt Copper */
+local COMBI = {}
+
+COMBI.Name = "All Copper"
+COMBI.Description = "Copper can be used to create more advanced buildings and tools."
+COMBI.Entity = "gms_mithrilfactory"
+
+COMBI.Req = {}
+COMBI.Req["Copper_Ore"] = 1
+
+COMBI.Results = {}
+COMBI.Results["Copper"] = 1
+
+COMBI.AllSmelt = true
+COMBI.Max = 50
+
+GMS.RegisterCombi( COMBI, "gms_mithrilfactory" )
+
+/* Allsmelt Iron */
+local COMBI = {}
+
+COMBI.Name = "All Iron"
+COMBI.Description = "Iron can be used to create more advanced buildings and tools."
+COMBI.Entity = "gms_mithrilfactory"
+
+COMBI.Req = {}
+COMBI.Req["Iron_Ore"] = 1
+
+COMBI.Results = {}
+COMBI.Results["Iron"] = 1
+
+COMBI.AllSmelt = true
+COMBI.Max = 50
+
+GMS.RegisterCombi( COMBI, "gms_mithrilfactory" )
+
+/* Allsmelt Tech */
+local COMBI = {}
+
+COMBI.Name = " All Tech "
+COMBI.Description = "Tech can be used to create more advanced buildings and tools."
+COMBI.Entity = "gms_mithrilfactory"
+
+COMBI.Req = {}
+COMBI.Req["Tech_Ore"] = 1
+
+COMBI.Results = {}
+COMBI.Results["Tech"] = 1
+
+COMBI.AllSmelt = true
+COMBI.Max = 50
+
+GMS.RegisterCombi( COMBI, "gms_mithrilfactory" )
+
+/* All Silver */
+local COMBI = {}
+
+COMBI.Name = "All Silver"
+COMBI.Description = "Silver can be used to create more advanced buildings and tools."
+COMBI.Entity = "gms_mithrilfactory"
+
+COMBI.Req = {}
+COMBI.Req["Silver_Ore"] = 1
+
+COMBI.Results = {}
+COMBI.Results["Silver"] = 1
+
+COMBI.AllSmelt = true
+COMBI.Max = 50
+
+GMS.RegisterCombi ( COMBI, "gms_mithrilfactory" )
+
+/* All Gold */
+local COMBI = {}
+
+COMBI.Name = "All Gold"
+COMBI.Description = "Gold can be used to create more advanced buildings and tools."
+COMBI.Entity = "gms_mithrilfactory"
+
+COMBI.Req = {}
+COMBI.Req["Gold_Ore"] = 1
+
+COMBI.Results = {}
+COMBI.Results["Gold"] = 1
+
+COMBI.AllSmelt = true
+COMBI.Max = 50
+
+GMS.RegisterCombi( COMBI, "gms_mithrilfactory" )
+
+/* All Steel */
+local COMBI = {}
+
+COMBI.Name = "All Steel"
+COMBI.Description = "Steel can be used to create more advanced buildings and tools."
+COMBI.Entity = "gms_mithrilfactory"
+
+COMBI.Req = {}
+COMBI.Req["Steel_Ore"] = 1
+
+COMBI.Results = {}
+COMBI.Results["Steel"] = 1
+
+COMBI.AllSmelt = true
+COMBI.Max = 50
+
+GMS.RegisterCombi( COMBI, "gms_mithrilfactory" )
+
+/* All Platinum */
+local COMBI = {}
+
+COMBI.Name = "All Platinum"
+COMBI.Description = "Platinum can be used to create more advanced buildings and tools."
+COMBI.Entity = "gms_mithrilfactory"
+
+COMBI.Req = {}
+COMBI.Req["Platinum_Ore"] = 1
+
+COMBI.Results = {}
+COMBI.Results["Platinum"] = 1
+
+COMBI.AllSmelt = true
+COMBI.Max = 50
+
+GMS.RegisterCombi( COMBI, "gms_mithrilfactory" )
+
+/* All Pure Mithrill */
+local COMBI = {}
+
+COMBI.Name = "Pure_Mithril"
+COMBI.Description = "Pure Mithril can be used to start of you industrial needs"
+COMBI.Entity = "gms_mithrilfactory"
+
+COMBI.Req = {}
+COMBI.Req["Mithril_Ore"] = 2
+
+COMBI.Results = {}
+COMBI.Results["Pure_Mithril"] = 1
+
+COMBI.AllSmelt = true
+COMBI.Max = 50
+
+GMS.RegisterCombi( COMBI, "gms_mithrilfactory" )