summaryrefslogtreecommitdiff
path: root/gamemode/craftablesystem/gunlabs/smggunlab.lua
diff options
context:
space:
mode:
authorAlexander Pickering <alexandermpickering@gmail.com>2016-04-16 14:16:26 -0400
committerAlexander Pickering <alexandermpickering@gmail.com>2016-04-16 14:16:26 -0400
commit69b734c634c0838e1eb4d468d5a6db67f8eb7bd0 (patch)
treec8515ddbe104951a65313efe452ea0c83a7a09c8 /gamemode/craftablesystem/gunlabs/smggunlab.lua
parent88c8acfa90a71e50104b9c64b953eae939767f20 (diff)
downloadgmstranded-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/gunlabs/smggunlab.lua')
-rw-r--r--gamemode/craftablesystem/gunlabs/smggunlab.lua37
1 files changed, 37 insertions, 0 deletions
diff --git a/gamemode/craftablesystem/gunlabs/smggunlab.lua b/gamemode/craftablesystem/gunlabs/smggunlab.lua
new file mode 100644
index 0000000..2540b19
--- /dev/null
+++ b/gamemode/craftablesystem/gunlabs/smggunlab.lua
@@ -0,0 +1,37 @@
+/* SMG Gun Lab */
+local COMBI = {}
+
+COMBI.Name = "SMG Gun Lab"
+COMBI.Description = "For making Assault weapons."
+
+COMBI.Req = {}
+COMBI.Req["Silver"] = 200
+COMBI.Req["Maple"] = 200
+
+COMBI.Results = "gms_smggunlab"
+COMBI.Texture = "gms_icons/gms_none.png"
+COMBI.BuildSiteModel = "models/props_wasteland/controlroom_storagecloset001a.mdl"
+
+GMS.RegisterCombi( COMBI, "Structures" )
+
+/*HL2 Smg */
+local COMBI = {}
+
+COMBI.Name = "HL2 Machine Gun"
+COMBI.Description = "Just a simple Machine Gun."
+COMBI.Entity = "gms_smggunlab"
+
+COMBI.Req = {}
+COMBI.Req["Copper Gunslide"] = 1
+COMBI.Req["Copper Gungrip"] = 1
+COMBI.Req["Copper Gunbarrel"] = 1
+COMBI.Req["Copper Gunmagazine"] = 1
+
+COMBI.SkillReq = {}
+COMBI.SkillReq["Weapon_Crafting"] = 15
+COMBI.SkillReq["Hunting"] = 15
+
+COMBI.Texture = "gms_icons/weapon_smg1.png"
+COMBI.SwepClass = "weapon_smg1"
+
+GMS.RegisterCombi( COMBI, "gms_smggunlab" )