summaryrefslogtreecommitdiff
path: root/doc/lua_api.txt
diff options
context:
space:
mode:
authorParamat <paramat@users.noreply.github.com>2019-04-09 03:20:27 +0100
committerGitHub <noreply@github.com>2019-04-09 03:20:27 +0100
commit1e5f2e0f133af42764dcd9386ccd59f4bf948328 (patch)
treeb2cde04293ba0bf58423dcd430b1978ae206cef2 /doc/lua_api.txt
parent8306f7d2e201f7b7ff5d6d469abf31bff148286d (diff)
downloadminetest-1e5f2e0f133af42764dcd9386ccd59f4bf948328.tar.gz
minetest-1e5f2e0f133af42764dcd9386ccd59f4bf948328.tar.bz2
minetest-1e5f2e0f133af42764dcd9386ccd59f4bf948328.zip
Nodedef 'drop' documentation: Improve, add tool filtering (#8458)
Diffstat (limited to 'doc/lua_api.txt')
-rw-r--r--doc/lua_api.txt41
1 files changed, 34 insertions, 7 deletions
diff --git a/doc/lua_api.txt b/doc/lua_api.txt
index 6d38e14c1..538e2dee7 100644
--- a/doc/lua_api.txt
+++ b/doc/lua_api.txt
@@ -6155,17 +6155,44 @@ Used by `minetest.register_node`.
},
drop = "",
- -- Name of dropped node when dug. Default is the node itself.
- -- Alternatively:
+ -- Name of dropped item when dug.
+ -- Default dropped item is the node itself.
+ -- Using a table allows multiple items, drop chances and tool filtering:
drop = {
- -- Maximum number of items to drop
max_items = 1,
- -- Choose max_items randomly from this list
+ -- Maximum number of item lists to drop.
+ -- The entries in 'items' are processed in order. For each:
+ -- Tool filtering is applied, chance of drop is applied, if both are
+ -- successful the entire item list is dropped.
+ -- Entry processing continues until the number of dropped item lists
+ -- equals 'max_items'.
+ -- Therefore, entries should progress from low to high drop chance.
items = {
+ -- Entry examples.
{
- items = {"foo:bar", "baz:frob"}, -- Items to drop
- rarity = 1, -- Probability of dropping is 1 / rarity
- inherit_color = true, -- Inherit palette color from the node
+ -- 1 in 1000 chance of dropping a diamond.
+ -- Default rarity is '1'.
+ rarity = 1000,
+ items = {"default:diamond"},
+ },
+ {
+ -- Only drop if using a tool whose name is identical to one
+ -- of these.
+ tools = {"default:shovel_mese", "default:shovel_diamond"},
+ rarity = 5,
+ items = {"default:dirt"},
+ -- Whether all items in the dropped item list inherit the
+ -- hardware coloring palette color from the dug node.
+ -- Default is 'false'.
+ inherit_color = true,
+ },
+ {
+ -- Only drop if using a tool whose name contains
+ -- "default:shovel_".
+ tools = {"~default:shovel_"},
+ rarity = 2,
+ -- The item list dropped.
+ items = {"default:sand", "default:desert_sand"},
},
},
},