diff --git a/mods/ITEMS/mcl_monster_eggs/description.txt b/mods/ITEMS/mcl_monster_eggs/description.txt index 23ee58b02..ae7cab253 100644 --- a/mods/ITEMS/mcl_monster_eggs/description.txt +++ b/mods/ITEMS/mcl_monster_eggs/description.txt @@ -1 +1 @@ -Adds “monster eggs”. These are blocks which disguise themselves as stone blocks and spawn a silverfish when broken. +Adds infested blocks: Blocks which which disguise themselves as stone blocks and spawn a silverfish when broken. diff --git a/mods/ITEMS/mcl_monster_eggs/init.lua b/mods/ITEMS/mcl_monster_eggs/init.lua index 417c01309..ec322fdff 100644 --- a/mods/ITEMS/mcl_monster_eggs/init.lua +++ b/mods/ITEMS/mcl_monster_eggs/init.lua @@ -25,18 +25,18 @@ local register_block = function(subname, description, tiles, is_ground_content) is_ground_content = false, sounds = mcl_sounds.node_sound_stone_defaults(), after_dig_node = spawn_silverfish, - _doc_items_longdesc = S("A monster egg is a block from which a silverfish will pop out when it is broken. It looks identical to its “normal” counterpart."), + _doc_items_longdesc = S("An infested block is a block from which a silverfish will pop out when it is broken. It looks identical to its normal counterpart."), _mcl_hardness = 0.75, _mcl_blast_resistance = 3.75, }) end -- Register all the monster egg blocks -register_block("stone", S("Stone Monster Egg"), {"default_stone.png"}, true) -register_block("cobble", S("Cobblestone Monster Egg"), {"default_cobble.png"}) -register_block("stonebrick", S("Stone Bricks Monster Egg"), {"default_stone_brick.png"}) -register_block("stonebrickcracked", S("Cracked Stone Bricks Monster Egg"), {"mcl_core_stonebrick_cracked.png"}) -register_block("stonebrickmossy", S("Mossy Stone Bricks Monster Egg"), {"mcl_core_stonebrick_mossy.png"}) -register_block("stonebrickcarved", S("Chiseled Stone Bricks Monster Egg"), {"mcl_core_stonebrick_carved.png"}) +register_block("stone", S("Infested Stone"), {"default_stone.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"}) +register_block("stonebrickmossy", S("Infested Mossy Stone Bricks"), {"mcl_core_stonebrick_mossy.png"}) +register_block("stonebrickcarved", S("Infested Chiseled Stone Bricks"), {"mcl_core_stonebrick_carved.png"})