diff options
Diffstat (limited to 'gamemode/craftablesystem/workbenches/mythrilworkbench.lua')
| -rw-r--r-- | gamemode/craftablesystem/workbenches/mythrilworkbench.lua | 30 |
1 files changed, 30 insertions, 0 deletions
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" ) |
