mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2025-01-11 18:40:25 +01:00
Updated plantlife
- Updated plantlife_modpack in order to start on clean bases for the new mapgen system
This commit is contained in:
parent
930e3ad666
commit
fedc2c9433
0
mods/mobs/textures/mobs_dungeon_master_blood.png
Normal file → Executable file
0
mods/mobs/textures/mobs_dungeon_master_blood.png
Normal file → Executable file
Before Width: | Height: | Size: 932 B After Width: | Height: | Size: 932 B |
@ -55,11 +55,17 @@ minetest.register_node("ferns:tree_fern_leaves", {
|
||||
walkable = false,
|
||||
groups = {snappy=3,flammable=2,attached_node=1},
|
||||
drop = {
|
||||
max_items = 1,
|
||||
max_items = 2,
|
||||
items = {
|
||||
{
|
||||
-- occasionally, drop a second sapling instead of leaves
|
||||
-- (extra saplings can also be obtained by replanting and
|
||||
-- reharvesting leaves)
|
||||
items = {"ferns:sapling_tree_fern"},
|
||||
rarity = 10,
|
||||
},
|
||||
{
|
||||
items = {"ferns:sapling_tree_fern"},
|
||||
rarity = 20,
|
||||
},
|
||||
{
|
||||
items = {"ferns:tree_fern_leaves"},
|
||||
@ -80,11 +86,17 @@ minetest.register_node("ferns:tree_fern_leaves_02", {
|
||||
walkable = false,
|
||||
groups = {snappy=3,flammable=2,attached_node=1,not_in_creative_inventory=1},
|
||||
drop = {
|
||||
max_items = 1,
|
||||
max_items = 2,
|
||||
items = {
|
||||
{
|
||||
-- occasionally, drop a second sapling instead of leaves
|
||||
-- (extra saplings can also be obtained by replanting and
|
||||
-- reharvesting leaves)
|
||||
items = {"ferns:sapling_tree_fern"},
|
||||
rarity = 10,
|
||||
},
|
||||
{
|
||||
items = {"ferns:sapling_tree_fern"},
|
||||
rarity = 20,
|
||||
},
|
||||
{
|
||||
items = {"ferns:tree_fern_leaves"},
|
||||
|
Loading…
Reference in New Issue
Block a user