diff options
Diffstat (limited to 'gamemode/craftablesystem/workbenches/platinumworkbench.lua')
| -rw-r--r-- | gamemode/craftablesystem/workbenches/platinumworkbench.lua | 47 |
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" ) |
