diff --git a/nodes.lua b/nodes.lua index 1bdae54512371119490c87906296587506b8b5fe..9b13952f8123ddcae565a943c8f51948d84d799c 100644 --- a/nodes.lua +++ b/nodes.lua @@ -393,6 +393,38 @@ minetest.register_entity("illuna:rulehint", { textures = {"illuna_rulehint.png"}, }) +minetest.register_entity("illuna:travelcenter_ne", { + visual = "sprite", + visual_size = {x=3,y=3}, + collisionbox = {0}, + physical = false, + textures = {"illuna_travelcenter_ne.png"}, +}) + +minetest.register_entity("illuna:travelcenter_nw", { + visual = "sprite", + visual_size = {x=3,y=3}, + collisionbox = {0}, + physical = false, + textures = {"illuna_travelcenter_nw.png"}, +}) + +minetest.register_entity("illuna:travelcenter_se", { + visual = "sprite", + visual_size = {x=3,y=3}, + collisionbox = {0}, + physical = false, + textures = {"illuna_travelcenter_se.png"}, +}) + +minetest.register_entity("illuna:travelcenter_sw", { + visual = "sprite", + visual_size = {x=3,y=3}, + collisionbox = {0}, + physical = false, + textures = {"illuna_travelcenter_sw.png"}, +}) + function illuna.node_sound_wool(table) table = table or {} table.footstep = table.footstep or diff --git a/textures/illuna_travelcenter_ne.png b/textures/illuna_travelcenter_ne.png new file mode 100644 index 0000000000000000000000000000000000000000..639d4c7ccbbc0d72e9c4c5073a1972142c6803a3 Binary files /dev/null and b/textures/illuna_travelcenter_ne.png differ diff --git a/textures/illuna_travelcenter_nw.png b/textures/illuna_travelcenter_nw.png new file mode 100644 index 0000000000000000000000000000000000000000..2708edb11ca1c3831ff16299b2cd100cde488f7c Binary files /dev/null and b/textures/illuna_travelcenter_nw.png differ diff --git a/textures/illuna_travelcenter_se.png b/textures/illuna_travelcenter_se.png new file mode 100644 index 0000000000000000000000000000000000000000..c686e6c6361635feaec9eac21cfff6f142cb592f Binary files /dev/null and b/textures/illuna_travelcenter_se.png differ diff --git a/textures/illuna_travelcenter_sw.png b/textures/illuna_travelcenter_sw.png new file mode 100644 index 0000000000000000000000000000000000000000..d1ca10035ce9f6521ad16473033daecbdac9cb20 Binary files /dev/null and b/textures/illuna_travelcenter_sw.png differ