diff --git a/init.lua b/init.lua index 26944c2..af4fc7c 100644 --- a/init.lua +++ b/init.lua @@ -540,3 +540,30 @@ minetest.register_craft({ {'', 'jonez:marble_polished', ''}, }, }) + +minetest.register_node("jonez:censer", { + description = S("Censer"), + tiles = {"jonez_censer_top.png", "jonez_censer_top.png", "jonez_censer_front.png"}, + drawtype = "nodebox", + paramtype = "light", + node_box = { + type = "fixed", + fixed = { + {-0.5, -0.5, -0.5, 0.5, -0.375, 0.5}, -- NodeBox1 + {-0.4375, -0.375, -0.4375, 0.4375, -0.3125, 0.4375}, -- NodeBox2 + {-0.375, -0.3125, -0.375, 0.375, -0.25, 0.375}, -- NodeBox3 + {-0.3125, -0.3125, -0.3125, 0.3125, 0.25, 0.3125}, -- NodeBox4 + {-0.375, 0.25, -0.375, 0.375, 0.3125, 0.375}, -- NodeBox5 + {-0.4375, 0.3125, -0.4375, 0.4375, 0.375, -0.375}, -- NodeBox6 + {-0.5, 0.375, -0.5, 0.5, 0.5, -0.4375}, -- NodeBox7 + {-0.4375, 0.3125, 0.375, 0.4375, 0.375, 0.4375}, -- NodeBox8 + {-0.5, 0.375, 0.4375, 0.5, 0.5, 0.5}, -- NodeBox9 + {0.375, 0.3125, -0.4375, 0.4375, 0.375, 0.4375}, -- NodeBox10 + {0.4375, 0.375, -0.5, 0.5, 0.5, 0.5}, -- NodeBox11 + {-0.5, 0.375, -0.5, -0.4375, 0.5, 0.5}, -- NodeBox12 + {-0.4375, 0.3125, -0.4375, -0.3125, 0.375, 0.4375}, -- NodeBox13 + }, + }, + groups = {cracky=1}, +}) + diff --git a/locale/jonez.es.tr b/locale/jonez.es.tr index 0367511..a659070 100644 --- a/locale/jonez.es.tr +++ b/locale/jonez.es.tr @@ -63,3 +63,4 @@ Ancient Pompeiian Path=Camino antiguo pompeyano Ancient Pompeiian Altar=Altar antiguo pompeyano Carthaginian Pavement=Pavimiento cartaginés Carthaginian Wall=Pavimiento cartaginés +Censer=Incensiario diff --git a/textures/jonez_censer_front.png b/textures/jonez_censer_front.png new file mode 100644 index 0000000..e77a4fe Binary files /dev/null and b/textures/jonez_censer_front.png differ diff --git a/textures/jonez_censer_top.png b/textures/jonez_censer_top.png new file mode 100644 index 0000000..073e828 Binary files /dev/null and b/textures/jonez_censer_top.png differ