summaryrefslogtreecommitdiff
path: root/gamemode/craftablesystem/workbenches/goldworkbench.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/workbenches/goldworkbench.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/workbenches/goldworkbench.lua')
-rw-r--r--gamemode/craftablesystem/workbenches/goldworkbench.lua47
1 files changed, 47 insertions, 0 deletions
diff --git a/gamemode/craftablesystem/workbenches/goldworkbench.lua b/gamemode/craftablesystem/workbenches/goldworkbench.lua
new file mode 100644
index 0000000..a3d8590
--- /dev/null
+++ b/gamemode/craftablesystem/workbenches/goldworkbench.lua
@@ -0,0 +1,47 @@
+/* Gold Workbench */
+local COMBI = {}
+
+COMBI.Name = "Gold Workbench"
+COMBI.Description = "This iron table has various fine specialized equipment used in crafting advanced items."
+
+COMBI.Req = {}
+COMBI.Req["Gold"] = 30
+COMBI.Req["Stone"] = 20
+
+COMBI.Results = "gms_goldworkbench"
+COMBI.Texture = "gms_icons/gms_none.png"
+COMBI.BuildSiteModel = "models/props/cs_office/file_cabinet1.mdl"
+
+GMS.RegisterCombi( COMBI, "Structures" )
+
+local COMBI = {}
+
+COMBI.Name = "Gold Pickaxe"
+COMBI.Description = "This gold pickaxe is used for effectively mining stone, copper ore, iron ore, tech ore, silver ore, gold ore, and steel ore."
+COMBI.Entity = "gms_goldworkbench"
+
+COMBI.Req = {}
+COMBI.Req["Gold"] = 35
+COMBI.Req["Teak"] = 10
+
+COMBI.Texture = "gms_icons/gms_weapon.png"
+COMBI.SwepClass = "gms_goldpickaxe"
+
+GMS.RegisterCombi( COMBI, "gms_goldworkbench" )
+
+------------------------------------------------------------------------
+
+local COMBI = {}
+
+COMBI.Name = "Gold Hatchet"
+COMBI.Description = "This gold axe is ideal for chopping down trees."
+COMBI.Entity = "gms_goldworkbench"
+
+COMBI.Req = {}
+COMBI.Req["Gold"] = 35
+COMBI.Req["Teak"] = 10
+
+COMBI.Texture = "gms_icons/gms_weapon.png"
+COMBI.SwepClass = "gms_goldhatchet"
+
+GMS.RegisterCombi( COMBI, "gms_goldworkbench" )