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