summaryrefslogtreecommitdiff
path: root/gamemode/craftablesystem/misc/advtransmutator.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/misc/advtransmutator.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/misc/advtransmutator.lua')
-rw-r--r--gamemode/craftablesystem/misc/advtransmutator.lua74
1 files changed, 74 insertions, 0 deletions
diff --git a/gamemode/craftablesystem/misc/advtransmutator.lua b/gamemode/craftablesystem/misc/advtransmutator.lua
new file mode 100644
index 0000000..fea9e1e
--- /dev/null
+++ b/gamemode/craftablesystem/misc/advtransmutator.lua
@@ -0,0 +1,74 @@
+/* Advanced Transmutator */
+local COMBI = {}
+
+COMBI.Name = "Advanced Transmutator"
+COMBI.Description = "For transmutating wood."
+
+COMBI.Req = {}
+COMBI.Req["Gold"] = 35
+COMBI.Req["Maple"] = 30
+
+COMBI.Results = "gms_advancedtransmutator"
+COMBI.Texture = "gms_icons/gms_none.png"
+COMBI.BuildSiteModel = "models/props_wasteland/kitchen_fridge001a.mdl"
+
+GMS.RegisterCombi( COMBI, "Structures" )
+
+/*Teak*/
+local COMBI = {}
+
+COMBI.Name = "All Teak"
+COMBI.Description = "This type of wood can be used to make more advanced machinery."
+COMBI.Entity = "gms_advancedtransmutator"
+
+COMBI.Req = {}
+COMBI.Req["Maple"] = 1
+COMBI.Req["Gold"] = 1
+
+COMBI.Results = {}
+COMBI.Results["Teak"] = 2
+
+COMBI.AllSmelt = true
+COMBI.Max = 200
+
+GMS.RegisterCombi( COMBI, "gms_advancedtransmutator" )
+
+------------------------------------------------------------------------
+
+local COMBI = {}
+
+COMBI.Name = "All Mahogany"
+COMBI.Description = "This type of wood can be used to make more advanced machinery."
+COMBI.Entity = "gms_advancedtransmutator"
+
+COMBI.Req = {}
+COMBI.Req["Teak"] = 1
+COMBI.Req["Steel"] = 1
+
+COMBI.Results = {}
+COMBI.Results["Mahogany"] = 2
+
+COMBI.AllSmelt = true
+COMBI.Max = 200
+
+GMS.RegisterCombi( COMBI, "gms_advancedtransmutator" )
+
+------------------------------------------------------------------------
+
+local COMBI = {}
+
+COMBI.Name = "All Elm"
+COMBI.Description = "This type of wood can be used to make more advanced machinery."
+COMBI.Entity = "gms_advancedtransmutator"
+
+COMBI.Req = {}
+COMBI.Req["Mahogany"] = 1
+COMBI.Req["Platinum"] = 1
+
+COMBI.Results = {}
+COMBI.Results["Elm"] = 2
+
+COMBI.AllSmelt = true
+COMBI.Max = 200
+
+GMS.RegisterCombi( COMBI, "gms_advancedtransmutator" )