diff --git a/mods/default/nodes.lua b/mods/default/nodes.lua index 6b11fbe..07b7ed3 100644 --- a/mods/default/nodes.lua +++ b/mods/default/nodes.lua @@ -1155,15 +1155,9 @@ minetest.register_node( description = S("Dead Torch"), drawtype = "nodebox", tiles = { - { - name = "default_torch_ends.png", - }, - { - name = "default_torch_ends.png", - }, - { - name = "default_torch_base.png", - }, + "default_torch_ends.png", + "default_torch_ends.png", + "default_torch_base.png", }, inventory_image = "default_torch_dead_inventory.png", wield_image = "default_torch_dead_inventory.png", @@ -1201,7 +1195,7 @@ minetest.register_node( }, overlay_tiles = { { - name = "default_torch_ends_overlay.png", + name = "default_torch_weak_ends_overlay.png", animation = { type = "vertical_frames", aspect_w = 16, @@ -1210,7 +1204,7 @@ minetest.register_node( }, }, { - name = "default_torch_ends_overlay.png", + name = "default_torch_weak_ends_overlay.png", animation = { type = "vertical_frames", aspect_w = 16, @@ -1219,7 +1213,7 @@ minetest.register_node( }, }, { - name = "default_torch_overlay.png", + name = "default_torch_weak_overlay.png", animation = { type = "vertical_frames", aspect_w = 16, @@ -1228,8 +1222,8 @@ minetest.register_node( }, }, }, - inventory_image = "default_torch_inventory.png", - wield_image = "default_torch_inventory.png", + inventory_image = "default_torch_weak_inventory.png", + wield_image = "default_torch_weak_inventory.png", paramtype = "light", paramtype2 = "wallmounted", sunlight_propagates = true, diff --git a/mods/default/textures/default_torch_weak_ends_overlay.png b/mods/default/textures/default_torch_weak_ends_overlay.png new file mode 100644 index 0000000..a7dd850 Binary files /dev/null and b/mods/default/textures/default_torch_weak_ends_overlay.png differ diff --git a/mods/default/textures/default_torch_weak_ends_overlay.xcf b/mods/default/textures/default_torch_weak_ends_overlay.xcf new file mode 100644 index 0000000..2fb831a Binary files /dev/null and b/mods/default/textures/default_torch_weak_ends_overlay.xcf differ diff --git a/mods/default/textures/default_torch_weak_inventory.png b/mods/default/textures/default_torch_weak_inventory.png new file mode 100644 index 0000000..cc49da7 Binary files /dev/null and b/mods/default/textures/default_torch_weak_inventory.png differ diff --git a/mods/default/textures/default_torch_weak_inventory.xcf b/mods/default/textures/default_torch_weak_inventory.xcf new file mode 100644 index 0000000..cae3941 Binary files /dev/null and b/mods/default/textures/default_torch_weak_inventory.xcf differ diff --git a/mods/default/textures/default_torch_weak_overlay.png b/mods/default/textures/default_torch_weak_overlay.png new file mode 100644 index 0000000..5f6089a Binary files /dev/null and b/mods/default/textures/default_torch_weak_overlay.png differ diff --git a/mods/default/textures/default_torch_weak_overlay.xcf b/mods/default/textures/default_torch_weak_overlay.xcf new file mode 100644 index 0000000..a4b2f4a Binary files /dev/null and b/mods/default/textures/default_torch_weak_overlay.xcf differ