diff options
| author | Wuzzy <wuzzy2@mail.ru> | 2020-05-24 15:46:26 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-24 14:46:26 +0100 |
| commit | 6456aba73f0ef3f2fa7fd2b2a69cfdf8624afe23 (patch) | |
| tree | f2bada583c6f4d3032f28b2627bf052174f0a847 /games/minimal/mods/testformspec/dummy_items.lua | |
| parent | a9b74f4c3966ad38c2f9a97364d3fdda0e514c93 (diff) | |
| download | minetest-6456aba73f0ef3f2fa7fd2b2a69cfdf8624afe23.tar.xz | |
Replacement for Minimal Development Test (PR) (#9450)
Diffstat (limited to 'games/minimal/mods/testformspec/dummy_items.lua')
| -rw-r--r-- | games/minimal/mods/testformspec/dummy_items.lua | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/games/minimal/mods/testformspec/dummy_items.lua b/games/minimal/mods/testformspec/dummy_items.lua new file mode 100644 index 000000000..2037ae9cf --- /dev/null +++ b/games/minimal/mods/testformspec/dummy_items.lua @@ -0,0 +1,14 @@ +-- This code adds dummy items that are supposed to be used in formspecs +-- for testing item_image formspec elements. + +minetest.register_node("testformspec:node", { + description = "Formspec Test Node", + tiles = { "testformspec_node.png" }, + groups = { dig_immediate = 3, dummy = 1 }, +}) + +minetest.register_craftitem("testformspec:item", { + description = "Formspec Test Item", + inventory_image = "testformspec_item.png", + groups = { dummy = 1 }, +}) |
