summaryrefslogtreecommitdiff
path: root/gamemode/craftablesystem/workbenches/goldworkbench.lua
diff options
context:
space:
mode:
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" )