diff --git a/games/devtest/mods/testitems/init.lua b/games/devtest/mods/testitems/init.lua index bde9cc6d9..54bbf600e 100644 --- a/games/devtest/mods/testitems/init.lua +++ b/games/devtest/mods/testitems/init.lua @@ -105,3 +105,9 @@ minetest.register_craftitem("testitems:telescope_stick", { return itemstack end, }) + +minetest.register_craftitem("testitems:translucent_item", { + description = S("Translucent item (translucent inventory & wield image)"), + inventory_image = "testitems_translucent.png", + wield_image = "testitems_translucent.png", +}) \ No newline at end of file diff --git a/games/devtest/mods/testitems/textures/testitems_translucent.png b/games/devtest/mods/testitems/textures/testitems_translucent.png new file mode 100644 index 000000000..71f8649a6 Binary files /dev/null and b/games/devtest/mods/testitems/textures/testitems_translucent.png differ