Crystal glow, texture changes

master
D00Med 2018-01-25 08:06:54 +10:00
parent df98c7aa9e
commit b02fcede99
8 changed files with 63 additions and 0 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 430 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 36 KiB

After

Width:  |  Height:  |  Size: 912 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 273 B

After

Width:  |  Height:  |  Size: 322 B

View File

@ -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,

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB