Add the rock

This commit is contained in:
Lizzy Fleckenstein 2022-01-27 19:59:44 +01:00
parent ae4cc373f1
commit 13a0953c65
Signed by untrusted user: LizzyFleckenstein03
GPG Key ID: 06927A5199D6C9B2
7 changed files with 8 additions and 8 deletions

View File

@ -59,7 +59,7 @@ if minetest.get_modpath("default") and mobs_mc.create_monster_egg_nodes then
end
minetest.register_node("mobs_mc:monster_egg_stone", {
description = "Stone Monster Egg",
tiles = {"default_stone.png"},
tiles = {"mcl_core_rock.png"},
groups = {oddly_breakable_by_hand = 2, spawns_silverfish = 1},
drop = "",
is_ground_content = true,

View File

@ -207,7 +207,7 @@ end
mesecon.register_button(
"stone",
S("Stone Button"),
"default_stone.png",
"mcl_core_rock.png",
"mcl_core:stone",
mcl_sounds.node_sound_stone_defaults(),
{material_stone=1,handy=1,pickaxey=1},

View File

@ -191,9 +191,9 @@ end
mesecon.register_pressure_plate(
"mesecons_pressureplates:pressure_plate_stone",
S("Stone Pressure Plate"),
{"default_stone.png"},
{"default_stone.png"},
"default_stone.png",
{"mcl_core_rock.png"},
{"mcl_core_rock.png"},
"mcl_core_rock.png",
nil,
{{"mcl_core:stone", "mcl_core:stone"}},
mcl_sounds.node_sound_stone_defaults(),

View File

@ -24,7 +24,7 @@ minetest.register_node("mcl_core:stone", {
description = S("Stone"),
_doc_items_longdesc = S("One of the most common blocks in the world, almost the entire underground consists of stone. It sometimes contains ores. Stone may be created when water meets lava."),
_doc_items_hidden = false,
tiles = {"default_stone.png"},
tiles = {"mcl_core_rock.png"},
is_ground_content = true,
stack_max = 69,
groups = {pickaxey=1, stone=1, building_block=1, material_stone=1},

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

File diff suppressed because one or more lines are too long

View File

@ -33,7 +33,7 @@ local function register_block(subname, description, tiles, is_ground_content)
end
-- Register all the monster egg blocks
register_block("stone", S("Infested Stone"), {"default_stone.png"}, true)
register_block("stone", S("Infested Stone"), {"mcl_core_rock.png"}, true)
register_block("cobble", S("Infested Cobblestone"), {"default_cobble.png"})
register_block("stonebrick", S("Infested Stone Bricks"), {"default_stone_brick.png"})
register_block("stonebrickcracked", S("Infested Cracked Stone Bricks"), {"mcl_core_stonebrick_cracked.png"})