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