forked from VoxeLibre/VoxeLibre
Add monster egg help
This commit is contained in:
parent
20bd869738
commit
bd076dcb69
|
@ -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 New Issue