summaryrefslogtreecommitdiff
path: root/gamemode/craftablesystem/misc/grindingstone.lua
diff options
context:
space:
mode:
Diffstat (limited to 'gamemode/craftablesystem/misc/grindingstone.lua')
-rw-r--r--gamemode/craftablesystem/misc/grindingstone.lua14
1 files changed, 14 insertions, 0 deletions
diff --git a/gamemode/craftablesystem/misc/grindingstone.lua b/gamemode/craftablesystem/misc/grindingstone.lua
index d7da59e..1463d48 100644
--- a/gamemode/craftablesystem/misc/grindingstone.lua
+++ b/gamemode/craftablesystem/misc/grindingstone.lua
@@ -120,3 +120,17 @@ COMBI.AllSmelt = true
COMBI.Max = 25
GMS.RegisterCombi( COMBI, "gms_grindingstone" )
+
+local COMBI = {}
+
+COMBI.Name = "Dust x5"
+COMBI.Description = "A fine powder that floats through the wind"
+COMBI.Entity = "gms_grindingstone"
+
+COMBI.Req = {}
+COMBI.Req["Sand"] = 1
+
+COMBI.Results = {}
+COMBI.Results["Dust"] = 5
+
+GMS.RegisterCombi( COMBI, "gms_grindingstone" )