From e4bcd4a0f9eda134a1a34a24e2ada95ac4258ef5 Mon Sep 17 00:00:00 2001 From: Alexander Pickering Date: Sat, 16 Apr 2016 14:41:55 -0400 Subject: Finsihed moveing things out of combinations2 --- .../workbenches/mythrilworkbench.lua | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 gamemode/craftablesystem/workbenches/mythrilworkbench.lua (limited to 'gamemode/craftablesystem/workbenches/mythrilworkbench.lua') diff --git a/gamemode/craftablesystem/workbenches/mythrilworkbench.lua b/gamemode/craftablesystem/workbenches/mythrilworkbench.lua new file mode 100644 index 0000000..91a5e3a --- /dev/null +++ b/gamemode/craftablesystem/workbenches/mythrilworkbench.lua @@ -0,0 +1,30 @@ +local COMBI = {} + +COMBI.Name = "Mithril WorkBench" +COMBI.Description = "A very basic industrial crafting station" + +COMBI.Req = {} +COMBI.Req["Pure_Mithril"] = 200 +COMBI.Req["Teak"] = 20 + +COMBI.Results = "gms_mithrilworkbench" +COMBI.Texture = "gms_icons/gms_weapon.png" +COMBI.BuildSiteModel = "models/props_wasteland/kitchen_counter001c.mdl" + +GMS.RegisterCombi( COMBI, "Structures" ) + +local COMBI = {} + +COMBI.Name = "Mithril Pickaxe" +COMBI.Description = "A strange pickaxe that has a tendency to only mine a weird type of stone" +COMBI.Entity = "gms_mithrilworkbench" + +COMBI.Req = {} +COMBI.Req["Pure_Mithril"] = 50 +COMBI.Req["Teak"] = 25 + + +COMBI.Texture = "gms_icons/gms_weapon.png" +COMBI.SwepClass = "gms_mithrilpickaxe" + +GMS.RegisterCombi( COMBI, "gms_mithrilworkbench" ) -- cgit v1.2.3-70-g09d2