diff options
| author | Alexander Pickering <alexandermpickering@gmail.com> | 2016-04-16 14:16:26 -0400 |
|---|---|---|
| committer | Alexander Pickering <alexandermpickering@gmail.com> | 2016-04-16 14:16:26 -0400 |
| commit | 69b734c634c0838e1eb4d468d5a6db67f8eb7bd0 (patch) | |
| tree | c8515ddbe104951a65313efe452ea0c83a7a09c8 /gamemode/craftablesystem/workbenches | |
| parent | 88c8acfa90a71e50104b9c64b953eae939767f20 (diff) | |
| download | gmstranded-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')
8 files changed, 642 insertions, 0 deletions
diff --git a/gamemode/craftablesystem/workbenches/copperworkbench.lua b/gamemode/craftablesystem/workbenches/copperworkbench.lua new file mode 100644 index 0000000..641f70a --- /dev/null +++ b/gamemode/craftablesystem/workbenches/copperworkbench.lua @@ -0,0 +1,124 @@ +/* Copper Workbench */ +local COMBI = {} + +COMBI.Name = "Copper Workbench" +COMBI.Description = "This Copper table has various fine specialized equipment used in crafting quality items." + +COMBI.Req = {} +COMBI.Req["Copper"] = 30 +COMBI.Req["Stone"] = 10 +COMBI.Req["Wood"] = 20 + +COMBI.Results = "gms_copperworkbench" +COMBI.Texture = "gms_icons/gms_copperworkbench.png" +COMBI.BuildSiteModel = "models/props_combine/breendesk.mdl" + +GMS.RegisterCombi( COMBI, "Structures" ) + +/* Copper Hatchet */ +local COMBI = {} + +COMBI.Name = "Copper Hatchet" +COMBI.Description = "This copper axe is ideal for chopping down trees." +COMBI.Entity = "gms_copperworkbench" + +COMBI.Req = {} +COMBI.Req["Copper"] = 15 +COMBI.Req["Wood"] = 10 + +COMBI.Texture = "gms_icons/gms_weapon.png" +COMBI.SwepClass = "gms_copperhatchet" + +GMS.RegisterCombi( COMBI, "gms_copperworkbench" ) + +/* Copper Hammer */ +local COMBI = {} + +COMBI.Name = "Wrench" +COMBI.Description = "This wrench is ideal for crafting weapons." +COMBI.Entity = "gms_copperworkbench" + +COMBI.Req = {} +COMBI.Req["Copper"] = 10 +COMBI.Req["Wood"] = 10 + +COMBI.SkillReq = {} +COMBI.SkillReq["Weapon_Crafting"] = 5 + +COMBI.Texture = "gms_icons/gms_weapon.png" +COMBI.SwepClass = "gms_wrench" + +GMS.RegisterCombi( COMBI, "gms_copperworkbench" ) + +/* Copper Pickaxe */ +local COMBI = {} + +COMBI.Name = "Copper Pickaxe" +COMBI.Description = "This copper pickaxe is used for effectively mining stone, copper ore and iron ore." +COMBI.Entity = "gms_copperworkbench" + +COMBI.Req = {} +COMBI.Req["Copper"] = 15 +COMBI.Req["Wood"] = 10 + +COMBI.Texture = "gms_icons/gms_weapon.png" +COMBI.SwepClass = "gms_copperpickaxe" + +GMS.RegisterCombi( COMBI, "gms_copperworkbench" ) + +/* Frying pan */ +local COMBI = {} + +COMBI.Name = "Frying Pan" +COMBI.Description = "This kitchen tool is used for more effective cooking." +COMBI.Entity = "gms_copperworkbench" + +COMBI.Req = {} +COMBI.Req["Copper"] = 20 +COMBI.Req["Wood"] = 5 + +COMBI.SkillReq = {} +COMBI.SkillReq["Weapon_Crafting"] = 5 + +COMBI.Texture = "gms_icons/gms_weapon.png" +COMBI.SwepClass = "gms_fryingpan" + +GMS.RegisterCombi( COMBI, "gms_copperworkbench" ) + +/* Shovel */ +local COMBI = {} + +COMBI.Name = "Shovel" +COMBI.Description = "This tool can dig up rocks, and decreases forage times." +COMBI.Entity = "gms_copperworkbench" + +COMBI.Req = {} +COMBI.Req["Copper"] = 15 +COMBI.Req["Wood"] = 15 + +COMBI.SkillReq = {} +COMBI.SkillReq["Weapon_Crafting"] = 8 + +COMBI.Texture = "gms_icons/gms_weapon.png" +COMBI.SwepClass = "gms_shovel" + +GMS.RegisterCombi( COMBI, "gms_copperworkbench" ) + +/* Crowbar */ +local COMBI = {} + +COMBI.Name = "Crowbar" +COMBI.Description = "This weapon is initially a tool, but pretty useless for it's original purpose on a stranded Island." +COMBI.Entity = "gms_copperworkbench" + +COMBI.Req = {} +COMBI.Req["Copper"] = 20 +COMBI.Req["Iron"] = 20 + +COMBI.SkillReq = {} +COMBI.SkillReq["Weapon_Crafting"] = 6 + +COMBI.Texture = "gms_icons/gms_weapon.png" +COMBI.SwepClass = "weapon_crowbar" + +GMS.RegisterCombi( COMBI, "gms_copperworkbench" ) 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" ) diff --git a/gamemode/craftablesystem/workbenches/ironworkbench.lua b/gamemode/craftablesystem/workbenches/ironworkbench.lua new file mode 100644 index 0000000..512e252 --- /dev/null +++ b/gamemode/craftablesystem/workbenches/ironworkbench.lua @@ -0,0 +1,106 @@ +/* Iron Workbench */ +local COMBI = {} + +COMBI.Name = "Iron Workbench" +COMBI.Description = "This iron table has various fine specialized equipment used in crafting advanced items." + +COMBI.Req = {} +COMBI.Req["Iron"] = 30 +COMBI.Req["Stone"] = 20 +COMBI.Req["Wood"] = 10 + +COMBI.Results = "gms_ironworkbench" +COMBI.Texture = "gms_icons/gms_ironworkbench.png" +COMBI.BuildSiteModel = "models/props_wasteland/controlroom_desk001b.mdl" + +GMS.RegisterCombi( COMBI, "Structures" ) + +/* Sickle */ +local COMBI = {} + +COMBI.Name = "Sickle" +COMBI.Description = "This tool effectivizes harvesting." +COMBI.Entity = "gms_ironworkbench" + +COMBI.Req = {} +COMBI.Req["Iron"] = 5 +COMBI.Req["Wood"] = 15 + +COMBI.SkillReq = {} +COMBI.SkillReq["Weapon_Crafting"] = 7 + +COMBI.Texture = "gms_icons/gms_weapon.png" +COMBI.SwepClass = "gms_sickle" + +GMS.RegisterCombi( COMBI, "gms_ironworkbench" ) + +/* Strainer */ +local COMBI = {} + +COMBI.Name = "Strainer" +COMBI.Description = "This tool can filter the earth for resources." +COMBI.Entity = "gms_ironworkbench" + +COMBI.Req = {} +COMBI.Req["Iron"] = 5 +COMBI.Req["Wood"] = 5 + +COMBI.SkillReq = {} +COMBI.SkillReq["Weapon_Crafting"] = 10 + +COMBI.Texture = "gms_icons/gms_weapon.png" +COMBI.SwepClass = "gms_strainer" + +GMS.RegisterCombi( COMBI, "gms_ironworkbench" ) + +/* Advanced Fishing rod */ +local COMBI = {} + +COMBI.Name = "Advanced Fishing rod" +COMBI.Description = "With this Fishing rod you can catch rare fish even faster. You might even catch something big." +COMBI.Entity = "gms_ironworkbench" + +COMBI.Req = {} +COMBI.Req["Iron"] = 25 +COMBI.Req["Wood"] = 30 +COMBI.Req["Rope"] = 2 + +COMBI.SkillReq = {} +COMBI.SkillReq["Weapon_Crafting"] = 15 +COMBI.SkillReq["Fishing"] = 5 + +COMBI.Texture = "gms_icons/gms_weapon.png" +COMBI.SwepClass = "gms_advancedfishingrod" + +GMS.RegisterCombi( COMBI, "gms_ironworkbench" ) + +/* Iron Pickaxe */ +local COMBI = {} + +COMBI.Name = "Iron Pickaxe" +COMBI.Description = "This iron pickaxe is used for effectively mining stone, copper ore, iron ore, and tech ore." +COMBI.Entity = "gms_ironworkbench" + +COMBI.Req = {} +COMBI.Req["Iron"] = 20 +COMBI.Req["Wood"] = 10 +COMBI.Texture = "gms_icons/gms_weapon.png" +COMBI.SwepClass = "gms_ironpickaxe" + +GMS.RegisterCombi( COMBI, "gms_ironworkbench" ) + +/* Iron Hatchet */ +local COMBI = {} + +COMBI.Name = "Iron Hatchet" +COMBI.Description = "This iron axe is ideal for chopping down trees." +COMBI.Entity = "gms_ironworkbench" + +COMBI.Req = {} +COMBI.Req["Iron"] = 20 +COMBI.Req["Wood"] = 10 + +COMBI.Texture = "gms_icons/gms_weapon.png" +COMBI.SwepClass = "gms_ironhatchet" + +GMS.RegisterCombi( COMBI, "gms_ironworkbench" ) 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" ) 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" ) diff --git a/gamemode/craftablesystem/workbenches/steelworkbench.lua b/gamemode/craftablesystem/workbenches/steelworkbench.lua new file mode 100644 index 0000000..b8f5117 --- /dev/null +++ b/gamemode/craftablesystem/workbenches/steelworkbench.lua @@ -0,0 +1,47 @@ +/* Steel Workbench */ +local COMBI = {} + +COMBI.Name = "Steel Workbench" +COMBI.Description = "This iron table has various fine specialized equipment used in crafting advanced items." + +COMBI.Req = {} +COMBI.Req["Steel"] = 30 +COMBI.Req["Stone"] = 20 + +COMBI.Results = "gms_steelworkbench" +COMBI.Texture = "gms_icons/gms_none.png" +COMBI.BuildSiteModel = "models/props/de_nuke/equipment1.mdl" + +GMS.RegisterCombi( COMBI, "Structures" ) + +local COMBI = {} + +COMBI.Name = "Steel Pickaxe" +COMBI.Description = "This steel 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_steelworkbench" + +COMBI.Req = {} +COMBI.Req["Steel"] = 40 +COMBI.Req["Mahogany"] = 10 + +COMBI.Texture = "gms_icons/gms_weapon.png" +COMBI.SwepClass = "gms_steelpickaxe" + +GMS.RegisterCombi( COMBI, "gms_steelworkbench" ) + +------------------------------------------------------------------------ + +local COMBI = {} + +COMBI.Name = "Steel Hatchet" +COMBI.Description = "This Steel axe is ideal for chopping down trees." +COMBI.Entity = "gms_steelworkbench" + +COMBI.Req = {} +COMBI.Req["Steel"] = 40 +COMBI.Req["Mahogany"] = 10 + +COMBI.Texture = "gms_icons/gms_weapon.png" +COMBI.SwepClass = "gms_steelhatchet" + +GMS.RegisterCombi( COMBI, "gms_steelworkbench" ) diff --git a/gamemode/craftablesystem/workbenches/stoneworkbench.lua b/gamemode/craftablesystem/workbenches/stoneworkbench.lua new file mode 100644 index 0000000..cd9ba20 --- /dev/null +++ b/gamemode/craftablesystem/workbenches/stoneworkbench.lua @@ -0,0 +1,83 @@ +/* Stone Workbench */ +local COMBI = {} + +COMBI.Name = "Stone Workbench" +COMBI.Description = "This stone table has various fine specialized equipment used in crafting basic items." + +COMBI.Req = {} +COMBI.Req["Wood"] = 15 +COMBI.Req["Stone"] = 25 + +COMBI.Results = "gms_stoneworkbench" +COMBI.Texture = "gms_icons/gms_stoneworkbench.png" +COMBI.BuildSiteModel = "models/props/de_piranesi/pi_merlon.mdl" + +GMS.RegisterCombi( COMBI, "Structures" ) + +/* Stone Hatchet */ +local COMBI = {} + +COMBI.Name = "Stone Hatchet" +COMBI.Description = "This small stone axe is ideal for chopping down trees." +COMBI.Entity = "gms_stoneworkbench" + +COMBI.Req = {} +COMBI.Req["Stone"] = 10 +COMBI.Req["Wood"] = 10 + +COMBI.Texture = "gms_icons/gms_weapon.png" +COMBI.SwepClass = "gms_stonehatchet" + +GMS.RegisterCombi( COMBI, "gms_stoneworkbench" ) + +/* Wooden Spoon */ +local COMBI = {} + +COMBI.Name = "Wooden Spoon" +COMBI.Description = "Allows you to salvage more seeds from consumed fruit." +COMBI.Entity = "gms_stoneworkbench" + +COMBI.Req = {} +COMBI.Req["Wood"] = 12 + +COMBI.SkillReq = {} +COMBI.SkillReq["Weapon_Crafting"] = 3 + +COMBI.Texture = "gms_icons/gms_weapon.png" +COMBI.SwepClass = "gms_woodenspoon" + +GMS.RegisterCombi( COMBI, "gms_stoneworkbench" ) + +/* Stone Pickaxe */ +local COMBI = {} + +COMBI.Name = "Stone Pickaxe" +COMBI.Description = "This stone pickaxe is used for effectively mining stone and copper ore." +COMBI.Entity = "gms_stoneworkbench" + +COMBI.Req = {} +COMBI.Req["Stone"] = 10 +COMBI.Req["Wood"] = 10 +COMBI.Texture = "gms_icons/gms_weapon.png" +COMBI.SwepClass = "gms_stonepickaxe" + +GMS.RegisterCombi( COMBI, "gms_stoneworkbench" ) + +/* Fishing rod */ +local COMBI = {} + +COMBI.Name = "Wooden Fishing Rod" +COMBI.Description = "This rod of wood can be used to fish from a lake." +COMBI.Entity = "gms_stoneworkbench" + +COMBI.Req = {} +COMBI.Req["Rope"] = 1 +COMBI.Req["Wood"] = 20 + +COMBI.SkillReq = {} +COMBI.SkillReq["Weapon_Crafting"] = 4 + +COMBI.Texture = "gms_icons/gms_weapon.png" +COMBI.SwepClass = "gms_woodenfishingrod" + +GMS.RegisterCombi( COMBI, "gms_stoneworkbench" ) diff --git a/gamemode/craftablesystem/workbenches/techworkbench.lua b/gamemode/craftablesystem/workbenches/techworkbench.lua new file mode 100644 index 0000000..96b07cb --- /dev/null +++ b/gamemode/craftablesystem/workbenches/techworkbench.lua @@ -0,0 +1,141 @@ +/* Tech Workbench */ +local COMBI = {} + +COMBI.Name = "Tech Workbench" +COMBI.Description = "This tech workbench will help you with all your electronic needs." + +COMBI.Req = {} +COMBI.Req["Tech"] = 30 +COMBI.Req["Stone"] = 20 + +COMBI.Results = "gms_techworkbench" +COMBI.Texture = "gms_icons/gms_techworkbench.png" +COMBI.BuildSiteModel = "models/props_lab/reciever_cart.mdl" + +GMS.RegisterCombi( COMBI, "Structures" ) + +local COMBI = {} + +COMBI.Name = "Batteries" +COMBI.Description = "These self-rechargeable batteries are used to craft stunstick, toolgun and flashlight.\nAlso the more batteries you have, the longer you can use your flashlight." + +COMBI.Req = {} +COMBI.Req["Copper"] = 3 +COMBI.Req["Iron"] = 3 + +COMBI.Results = {} +COMBI.Results["Batteries"] = 1 + +GMS.RegisterCombi( COMBI, "gms_techworkbench" ) + +------------------------------------------------------------------------ + +local COMBI = {} + +COMBI.Name = "Toolgun" +COMBI.Description = "Vital to long term survival, it allows you to easily build complex structures." +COMBI.Entity = "gms_techworkbench" + +COMBI.Req = {} +COMBI.Req["Iron"] = 30 +COMBI.Req["Wood"] = 20 +COMBI.Req["Glass"] = 5 +COMBI.Req["Batteries"] = 2 + +COMBI.SkillReq = {} +COMBI.SkillReq["Weapon_Crafting"] = 10 + +COMBI.Texture = "gms_icons/gms_weapon.png" +COMBI.SwepClass = "gmod_tool" + +GMS.RegisterCombi( COMBI, "gms_techworkbench" ) + +------------------------------------------------------------------------ + +local COMBI = {} + +COMBI.Name = "Flashlight" +COMBI.Description = "Grants ability to use flashlight." + +COMBI.Req = {} +COMBI.Req["Iron"] = 15 +COMBI.Req["Glass"] = 5 +COMBI.Req["Batteries"] = 3 + +COMBI.Results = {} +COMBI.Results["Flashlight"] = 1 + +GMS.RegisterCombi( COMBI, "gms_techworkbench" ) + +------------------------------------------------------------------------ + +local COMBI = {} + +COMBI.Name = "Stunstick" +COMBI.Description = "This highly advanced, effective melee weapon is useful for hunting down animals and fellow stranded alike." +COMBI.Entity = "gms_techworkbench" + +COMBI.Req = {} +COMBI.Req["Iron"] = 40 +COMBI.Req["Batteries"] = 4 + +COMBI.SkillReq = {} +COMBI.SkillReq["Weapon_Crafting"] = 11 +COMBI.SkillReq["Hunting"] = 5 + +COMBI.Texture = "gms_icons/gms_weapon.png" +COMBI.SwepClass = "weapon_stunstick" + +GMS.RegisterCombi( COMBI, "gms_techworkbench" ) + +------------------------------------------------------------------------ + +local COMBI = {} + +COMBI.Name = "Wrist Watch" +COMBI.Description = "See the time whereever you go." +COMBI.Entity = "gms_techworkbench" + +COMBI.Results = {} +COMBI.Results["Wrist_Watch"] = 1 + +COMBI.Req = {} +COMBI.Req["Iron"] = 5 +COMBI.Req["Glass"] = 5 +COMBI.Req["Batteries"] = 2 + +GMS.RegisterCombi( COMBI, "gms_techworkbench" ) + +------------------------------------------------------------------------ + +local COMBI = {} + +COMBI.Name = "Tech Pickaxe" +COMBI.Description = "This tech pickaxe is used for effectively mining stone, copper ore, iron ore, tech ore, and silver ore." +COMBI.Entity = "gms_techworkbench" + +COMBI.Req = {} +COMBI.Req["Tech"] = 25 +COMBI.Req["Cedar"] = 10 + +COMBI.Texture = "gms_icons/gms_weapon.png" +COMBI.SwepClass = "gms_techpickaxe" + +GMS.RegisterCombi( COMBI, "gms_techworkbench" ) + +------------------------------------------------------------------------ + +local COMBI = {} + +COMBI.Name = "Tech Hatchet" +COMBI.Description = "This tech axe is ideal for chopping down trees." +COMBI.Entity = "gms_techworkbench" + +COMBI.Req = {} +COMBI.Req["Tech"] = 25 +COMBI.Req["Cedar"] = 10 + +COMBI.Texture = "gms_icons/gms_weapon.png" +COMBI.SwepClass = "gms_techhatchet" + +GMS.RegisterCombi( COMBI, "gms_techworkbench" ) |
