diff options
Diffstat (limited to 'gamemode/craftablesystem/workbenches/silverworkbench.lua')
| -rw-r--r-- | gamemode/craftablesystem/workbenches/silverworkbench.lua | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/gamemode/craftablesystem/workbenches/silverworkbench.lua b/gamemode/craftablesystem/workbenches/silverworkbench.lua new file mode 100644 index 0000000..c4ca937 --- /dev/null +++ b/gamemode/craftablesystem/workbenches/silverworkbench.lua @@ -0,0 +1,47 @@ +/* Silver Workbench */ +local COMBI = {} + +COMBI.Name = "Silver Workbench" +COMBI.Description = "This iron table has various fine specialized equipment used in crafting advanced items." + +COMBI.Req = {} +COMBI.Req["Silver"] = 30 +COMBI.Req["Stone"] = 20 + +COMBI.Results = "gms_silverworkbench" +COMBI.Texture = "gms_icons/gms_none.png" +COMBI.BuildSiteModel = "models/props/de_inferno/bench_concrete.mdl" + +GMS.RegisterCombi( COMBI, "Structures" ) + +local COMBI = {} + +COMBI.Name = "Silver Pickaxe" +COMBI.Description = "This silver pickaxe is used for effectively mining stone, copper ore, iron ore, tech ore, silver ore, and gold ore." +COMBI.Entity = "gms_silverworkbench" + +COMBI.Req = {} +COMBI.Req["Silver"] = 30 +COMBI.Req["Maple"] = 10 + +COMBI.Texture = "gms_icons/gms_weapon.png" +COMBI.SwepClass = "gms_silverpickaxe" + +GMS.RegisterCombi( COMBI, "gms_silverworkbench" ) + +------------------------------------------------------------------------ + +local COMBI = {} + +COMBI.Name = "Silver Hatchet" +COMBI.Description = "This silver axe is ideal for chopping down trees." +COMBI.Entity = "gms_silverworkbench" + +COMBI.Req = {} +COMBI.Req["Silver"] = 30 +COMBI.Req["Maple"] = 10 + +COMBI.Texture = "gms_icons/gms_weapon.png" +COMBI.SwepClass = "gms_silverhatchet" + +GMS.RegisterCombi( COMBI, "gms_silverworkbench" ) |
