diff --git a/mods/default/textures/gui_formbg.png b/mods/default/textures/gui_formbg.png index 85e0a30..db0dd8e 100644 Binary files a/mods/default/textures/gui_formbg.png and b/mods/default/textures/gui_formbg.png differ diff --git a/mods/hud_hunger/hud/textures/hud_armor_fg.png b/mods/hud_hunger/hud/textures/hud_armor_fg.png index 374f1a9..6de6c54 100644 Binary files a/mods/hud_hunger/hud/textures/hud_armor_fg.png and b/mods/hud_hunger/hud/textures/hud_armor_fg.png differ diff --git a/mods/hud_hunger/hud/textures/hud_hotbar.png b/mods/hud_hunger/hud/textures/hud_hotbar.png index c8c5dec..67c210a 100644 Binary files a/mods/hud_hunger/hud/textures/hud_hotbar.png and b/mods/hud_hunger/hud/textures/hud_hotbar.png differ diff --git a/mods/hud_hunger/hud/textures/hud_hotbar_selected.png b/mods/hud_hunger/hud/textures/hud_hotbar_selected.png index fb5d551..ce76772 100644 Binary files a/mods/hud_hunger/hud/textures/hud_hotbar_selected.png and b/mods/hud_hunger/hud/textures/hud_hotbar_selected.png differ diff --git a/mods/hyrule_mapgen/init.lua b/mods/hyrule_mapgen/init.lua index d1db257..bfd5216 100644 --- a/mods/hyrule_mapgen/init.lua +++ b/mods/hyrule_mapgen/init.lua @@ -149,6 +149,69 @@ minetest.register_lbm({ sound = false +minetest.register_abm({ + nodenames = {"hyrule_mapgen:crystal_1"}, + interval = 5, + chance = 1, + action = function(pos, node) + minetest.add_particle({ + pos = {x=pos.x, y=pos.y, z=pos.z}, + velocity = {x=0, y=0, z=0}, + acceleration = {x=0, y=0, z=0}, + expirationtime = 5, + size = 19, + collisiondetection = false, + collisionremoval = false, + vertical = true, + texture = "hyrule_mapgen_crystal_glow1.png", + animation = {type = "vertical_frames", aspect_w = 32, aspect_h = 32, length = 1.00}, + glow = 9 + }) + end +}) + +minetest.register_abm({ + nodenames = {"hyrule_mapgen:crystal_2"}, + interval = 5, + chance = 1, + action = function(pos, node) + minetest.add_particle({ + pos = {x=pos.x, y=pos.y, z=pos.z}, + velocity = {x=0, y=0, z=0}, + acceleration = {x=0, y=0, z=0}, + expirationtime = 5, + size = 19, + collisiondetection = false, + collisionremoval = false, + vertical = true, + texture = "hyrule_mapgen_crystal_glow2.png", + animation = {type = "vertical_frames", aspect_w = 32, aspect_h = 32, length = 1.00}, + glow = 9 + }) + end +}) + +minetest.register_abm({ + nodenames = {"hyrule_mapgen:crystal_3"}, + interval = 5, + chance = 1, + action = function(pos, node) + minetest.add_particle({ + pos = {x=pos.x, y=pos.y, z=pos.z}, + velocity = {x=0, y=0, z=0}, + acceleration = {x=0, y=0, z=0}, + expirationtime = 5, + size = 19, + collisiondetection = false, + collisionremoval = false, + vertical = true, + texture = "hyrule_mapgen_crystal_glow3.png", + animation = {type = "vertical_frames", aspect_w = 32, aspect_h = 32, length = 1.00}, + glow = 9 + }) + end +}) + minetest.register_abm({ nodenames = {"default:water_flowing"}, interval = 3.0, diff --git a/mods/hyrule_mapgen/textures/hyrule_mapgen_crystal_glow1.png b/mods/hyrule_mapgen/textures/hyrule_mapgen_crystal_glow1.png new file mode 100644 index 0000000..c327928 Binary files /dev/null and b/mods/hyrule_mapgen/textures/hyrule_mapgen_crystal_glow1.png differ diff --git a/mods/hyrule_mapgen/textures/hyrule_mapgen_crystal_glow2.png b/mods/hyrule_mapgen/textures/hyrule_mapgen_crystal_glow2.png new file mode 100644 index 0000000..48b462e Binary files /dev/null and b/mods/hyrule_mapgen/textures/hyrule_mapgen_crystal_glow2.png differ diff --git a/mods/hyrule_mapgen/textures/hyrule_mapgen_crystal_glow3.png b/mods/hyrule_mapgen/textures/hyrule_mapgen_crystal_glow3.png new file mode 100644 index 0000000..e9f17af Binary files /dev/null and b/mods/hyrule_mapgen/textures/hyrule_mapgen_crystal_glow3.png differ