diff options
Diffstat (limited to 'gamemode/craftablesystem/playermade/welder.lua')
| -rw-r--r-- | gamemode/craftablesystem/playermade/welder.lua | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gamemode/craftablesystem/playermade/welder.lua b/gamemode/craftablesystem/playermade/welder.lua new file mode 100644 index 0000000..cedcb97 --- /dev/null +++ b/gamemode/craftablesystem/playermade/welder.lua @@ -0,0 +1,15 @@ +/* Welder */ +local COMBI = {} + +COMBI.Name = "Welder" +COMBI.Description = "Allows you to use Weld Tool. You still need the Tool Gun though." + +COMBI.Req = {} +COMBI.Req[ "Wood" ] = 10 +COMBI.Req[ "Stone" ] = 10 +COMBI.Req[ "Water_Bottles" ] = 1 + +COMBI.Results = {} +COMBI.Results[ "Welder" ] = 1 + +GMS.RegisterCombi( COMBI, "Combinations" ) |
