mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-25 12:01:06 +01:00
Add monster egg help
This commit is contained in:
parent
20bd869738
commit
bd076dcb69
2 changed files with 2 additions and 0 deletions
1
mods/ITEMS/mcl_monster_eggs/description.txt
Normal file
1
mods/ITEMS/mcl_monster_eggs/description.txt
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Adds “monster eggs”. These are blocks which disguise themselves as stone blocks and spawn a silverfish when broken.
|
|
@ -25,6 +25,7 @@ local register_block = function(subname, description, tiles, is_ground_content)
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
sounds = mcl_sounds.node_sound_stone_defaults(),
|
sounds = mcl_sounds.node_sound_stone_defaults(),
|
||||||
after_dig_node = spawn_silverfish,
|
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."),
|
||||||
_mcl_hardness = 0.75,
|
_mcl_hardness = 0.75,
|
||||||
_mcl_blast_resistance = 3.75,
|
_mcl_blast_resistance = 3.75,
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue