summaryrefslogtreecommitdiff
path: root/gamemode/craftablesystem/workbenches/platinumworkbench.lua
diff options
context:
space:
mode:
Diffstat (limited to 'gamemode/craftablesystem/workbenches/platinumworkbench.lua')
-rw-r--r--gamemode/craftablesystem/workbenches/platinumworkbench.lua22
1 files changed, 22 insertions, 0 deletions
diff --git a/gamemode/craftablesystem/workbenches/platinumworkbench.lua b/gamemode/craftablesystem/workbenches/platinumworkbench.lua
index fac5606..839b48b 100644
--- a/gamemode/craftablesystem/workbenches/platinumworkbench.lua
+++ b/gamemode/craftablesystem/workbenches/platinumworkbench.lua
@@ -45,3 +45,25 @@ COMBI.Texture = "gms_icons/gms_weapon.png"
COMBI.SwepClass = "gms_platinumhatchet"
GMS.RegisterCombi( COMBI, "gms_platinumworkbench" )
+
+local COMBI = {}
+
+
+COMBI.Name = "Pickaxe of Djarex"
+COMBI.Description = "A strange pickaxe that has a tendency to only mine a weird type of stone"
+COMBI.Entity = "gms_platinumworkbench"
+
+COMBI.Req = {}
+COMBI.Req["Platinum"] = 25
+COMBI.Req ["Steel"] = 25
+COMBI.Req ["Gold"] = 25
+COMBI.Req["Elm"] = 50
+COMBI.Req["Mahogany"] = 50
+
+COMBI.SkillReq = {}
+COMBI.SkillReq["Weapon_Crafting"] = 50
+
+COMBI.Texture = "gms_icons/gms_weapon.png"
+COMBI.SwepClass = "gms_pickaxeofdjarex"
+
+GMS.RegisterCombi( COMBI, "gms_platinumworkbench" )