diff options
Diffstat (limited to 'gamemode/craftablesystem/misc/mythrilfactory.lua')
| -rw-r--r-- | gamemode/craftablesystem/misc/mythrilfactory.lua | 159 |
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" ) |
