diff --git a/goblin.lua b/goblin.lua index 40401b5..f70dd8f 100644 --- a/goblin.lua +++ b/goblin.lua @@ -291,7 +291,7 @@ m.drops = drops['coal'] minetest.registered_entities["fun_caves:goblin_coal"] = m mobs.spawning_mobs["fun_caves:goblin_coal"] = true -mobs:register_spawn("fun_caves:goblin_coal", {'default:coalblock', "default:stone_with_coal"}, 100, 0, spawn_frequency, 3, -51) +--mobs:register_spawn("fun_caves:goblin_coal", {'default:coalblock', "default:stone_with_coal"}, 100, 0, spawn_frequency, 3, -51) mobs:register_spawn("fun_caves:goblin_coal", {"default:mossycobble"}, 100, 0, spawn_frequency, 3, -51) mobs:register_egg("fun_caves:goblin_coal", "Goblin Egg (coal)", "default_mossycobble.png", 1) @@ -307,7 +307,7 @@ m.drops = drops['copper'] minetest.registered_entities["fun_caves:goblin_copper"] = m mobs.spawning_mobs["fun_caves:goblin_copper"] = true -mobs:register_spawn("fun_caves:goblin_copper", {"default:stone_with_copper"}, 100, 0, spawn_frequency, 3, -51) +--mobs:register_spawn("fun_caves:goblin_copper", {"default:stone_with_copper"}, 100, 0, spawn_frequency, 3, -51) mobs:register_spawn("fun_caves:goblin_copper", {"default:mossycobble"}, 100, 0, 2 * spawn_frequency, 3, -51) mobs:register_egg("fun_caves:goblin_copper", "Goblin Egg (copper)", "default_mossycobble.png", 1) @@ -324,7 +324,7 @@ m.drops = drops['diamond'] minetest.registered_entities["fun_caves:goblin_diamond"] = m mobs.spawning_mobs["fun_caves:goblin_diamond"] = true -mobs:register_spawn("fun_caves:goblin_diamond", {"default:stone_with_diamond"}, 100, 0, spawn_frequency, 3, -51) +--mobs:register_spawn("fun_caves:goblin_diamond", {"default:stone_with_diamond"}, 100, 0, spawn_frequency, 3, -51) mobs:register_spawn("fun_caves:goblin_diamond", {"default:mossycobble"}, 100, 0, 2 * spawn_frequency, 3, -51) mobs:register_egg("fun_caves:goblin_diamond", "Goblin Egg (diamond)", "default_mossycobble.png", 1) @@ -341,7 +341,7 @@ m.drops = drops['gold'] minetest.registered_entities["fun_caves:goblin_gold"] = m mobs.spawning_mobs["fun_caves:goblin_gold"] = true -mobs:register_spawn("fun_caves:goblin_gold", {"default:stone_with_gold"}, 100, 0, spawn_frequency, 3, -51) +--mobs:register_spawn("fun_caves:goblin_gold", {"default:stone_with_gold"}, 100, 0, spawn_frequency, 3, -51) mobs:register_spawn("fun_caves:goblin_gold", {"default:mossycobble"}, 100, 0, 2 * spawn_frequency, 3, -51) mobs:register_egg("fun_caves:goblin_gold", "Goblin Egg (gold)", "default_mossycobble.png", 1) @@ -370,7 +370,7 @@ m.drops = drops['iron'] minetest.registered_entities["fun_caves:goblin_iron"] = m mobs.spawning_mobs["fun_caves:goblin_iron"] = true -mobs:register_spawn("fun_caves:goblin_iron", {"default:stone_with_iron"}, 100, 0, spawn_frequency, 3, -51) +--mobs:register_spawn("fun_caves:goblin_iron", {"default:stone_with_iron"}, 100, 0, spawn_frequency, 3, -51) mobs:register_spawn("fun_caves:goblin_iron", {"default:mossycobble"}, 100, 0, 2 * spawn_frequency, 3, -51) mobs:register_egg("fun_caves:goblin_iron", "Goblin Egg (iron)", "default_mossycobble.png", 1) @@ -387,7 +387,7 @@ m.drops = drops['king'] minetest.registered_entities["fun_caves:goblin_king"] = m mobs.spawning_mobs["fun_caves:goblin_king"] = true -mobs:register_spawn("fun_caves:goblin_king", {"default:stone_with_mese"}, 100, 0, spawn_frequency, 3, -51) +--mobs:register_spawn("fun_caves:goblin_king", {"default:stone_with_mese"}, 100, 0, spawn_frequency, 3, -51) mobs:register_spawn("fun_caves:goblin_king", {"default:mossycobble"}, 100, 0, 3 * spawn_frequency, 3, -51) mobs:register_egg("fun_caves:goblin_king", "Goblin Egg (king)", "default_mossycobble.png", 1) diff --git a/pyramid.lua b/pyramid.lua index b2c41d6..30d0904 100644 --- a/pyramid.lua +++ b/pyramid.lua @@ -1,7 +1,7 @@ local max_depth = 31000 -- pyramid stone -newnode = fun_caves.clone_node("default:sandstone") +newnode = fun_caves.clone_node("default:sandstone_block") newnode.description = "Pyramid Stone" newnode.tiles = {'fun_caves_pyramid_stone.png'} newnode.groups.pyramid = 1 diff --git a/textures/fun_caves_pyramid_stone.png b/textures/fun_caves_pyramid_stone.png index 16e3d13..b97c878 100644 Binary files a/textures/fun_caves_pyramid_stone.png and b/textures/fun_caves_pyramid_stone.png differ