diff --git a/nodes.lua b/nodes.lua index e79f191a3dd4dee09dea9a390bfcd03017e002f0..76f3717e314d268c0501700b50c58771ad78baff 100644 --- a/nodes.lua +++ b/nodes.lua @@ -457,6 +457,15 @@ minetest.register_entity("illuna:kingdom_entrance", { textures = {"illuna_kingdom_entrance.png"}, }) +minetest.register_entity("illuna:market", { + visual = "sprite", + visual_size = {x=2.5,y=2.5}, + collisionbox = {0}, + physical = false, + glow = 10, + textures = {"illuna_market.png"}, +}) + function illuna.node_sound_wool(table) table = table or {} table.footstep = table.footstep or diff --git a/textures/illuna_market.png b/textures/illuna_market.png new file mode 100644 index 0000000000000000000000000000000000000000..09e9508d0d1cf41c5f39dfdbf52b314f9d5641ea Binary files /dev/null and b/textures/illuna_market.png differ