mirror of
https://github.com/FaceDeer/dfcaverns.git
synced 2025-01-12 19:20:27 +01:00
add ability to split bubblesponge stems occasionally
This commit is contained in:
parent
f12ef0b00d
commit
2b1f88f6c1
@ -107,6 +107,19 @@ minetest.register_node("bubblesponge:stem", {
|
|||||||
sounds = df_trees.node_sound_tree_soft_fungus_defaults(),
|
sounds = df_trees.node_sound_tree_soft_fungus_defaults(),
|
||||||
tiles = {"bubblesponge_bubblesponge.png"},
|
tiles = {"bubblesponge_bubblesponge.png"},
|
||||||
use_texture_alpha = "clip",
|
use_texture_alpha = "clip",
|
||||||
|
drop = {
|
||||||
|
max_items = 2,
|
||||||
|
items = {
|
||||||
|
{
|
||||||
|
rarity = 10, -- occasionally split the stem to allow farming
|
||||||
|
items = {"bubblesponge:stem"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
rarity = 1,
|
||||||
|
items = {"bubblesponge:stem"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
drawtype = "normal",
|
drawtype = "normal",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
|
@ -358,7 +358,7 @@ collectible_lore.register_lorebook({
|
|||||||
id = "rose bubblesponge",
|
id = "rose bubblesponge",
|
||||||
title = S("Bubblesponge"),
|
title = S("Bubblesponge"),
|
||||||
inv_img = "lorebooks_science.png",
|
inv_img = "lorebooks_science.png",
|
||||||
text = S([[Today, I had the privilege of discovering the fascinating and unusual Bubblesponges in the Sunless Sea. These large yellow sponges are unlike anything I have ever seen before, growing in large bodies of water deep underground.
|
text = S([[Today, I had the privilege of discovering the fascinating and unusual Bubblesponges in the Sunless Sea. These large yellow sponges are unlike anything I have ever seen before, only growing in large bodies of water deep underground.
|
||||||
|
|
||||||
What makes these sponges truly remarkable is their ability to absorb and store such large amounts of oxygen from the surrounding water. A diver can actually bite down on one of these sponges and take a lungful of air. This is an incredibly useful property, as it enables divers to explore the Sunless Sea without having to constantly resurface for air.
|
What makes these sponges truly remarkable is their ability to absorb and store such large amounts of oxygen from the surrounding water. A diver can actually bite down on one of these sponges and take a lungful of air. This is an incredibly useful property, as it enables divers to explore the Sunless Sea without having to constantly resurface for air.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user