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/ironworkbench.lua | |
| 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/ironworkbench.lua')
| -rw-r--r-- | gamemode/craftablesystem/workbenches/ironworkbench.lua | 106 |
1 files changed, 106 insertions, 0 deletions
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" ) |
