You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
113 lines
2.4 KiB
113 lines
2.4 KiB
8 years ago
|
|
||
|
-- removed for balancing:
|
||
|
-- minetest.override_item("dryplants:reedmace_sapling", {
|
||
|
-- drop = {
|
||
|
-- max_items = 1,
|
||
|
-- items = {
|
||
|
-- {items = {'farming:seed_cotton'}, rarity = 8},
|
||
|
-- {items = {'dryplants:reedmace_sapling'}},
|
||
|
-- }
|
||
|
-- },
|
||
|
-- })
|
||
|
|
||
|
minetest.override_item("dryplants:reedmace_spikes", {
|
||
|
drop = {
|
||
|
max_items = 1,
|
||
|
items = {
|
||
|
{items = {'farming:seed_cotton'}, rarity = 8},
|
||
|
{items = {'dryplants:reedmace_sapling'}},
|
||
|
}
|
||
|
},
|
||
|
})
|
||
|
minetest.override_item("dryplants:reedmace_top", {
|
||
|
drop = {
|
||
|
max_items = 1,
|
||
|
items = {
|
||
|
{items = {'farming:seed_cotton'}, rarity = 8},
|
||
|
{items = {'dryplants:reedmace_sapling'}},
|
||
|
}
|
||
|
},
|
||
|
})
|
||
|
minetest.override_item("dryplants:reedmace_height_2", {
|
||
|
drop = {
|
||
|
max_items = 1,
|
||
|
items = {
|
||
|
{items = {'farming:seed_cotton'}, rarity = 8},
|
||
|
{items = {'dryplants:reedmace_sapling'}},
|
||
|
}
|
||
|
},
|
||
|
})
|
||
|
minetest.override_item("dryplants:reedmace_height_3", {
|
||
|
drop = {
|
||
|
max_items = 1,
|
||
|
items = {
|
||
|
{items = {'farming:seed_cotton'}, rarity = 8},
|
||
|
{items = {'dryplants:reedmace_sapling'}},
|
||
|
}
|
||
|
},
|
||
|
})
|
||
|
minetest.override_item("dryplants:reedmace_height_3_spikes", {
|
||
|
drop = {
|
||
|
max_items = 1,
|
||
|
items = {
|
||
|
{items = {'farming:seed_cotton'}, rarity = 8},
|
||
|
{items = {'dryplants:reedmace_sapling'}},
|
||
|
}
|
||
|
},
|
||
|
})
|
||
|
minetest.override_item("dryplants:reedmace", {
|
||
|
drop = {
|
||
|
max_items = 1,
|
||
|
items = {
|
||
|
{items = {'farming:seed_cotton'}, rarity = 8},
|
||
|
{items = {'dryplants:reedmace_sapling'}},
|
||
|
}
|
||
|
},
|
||
|
})
|
||
|
minetest.override_item("dryplants:reedmace_bottom", {
|
||
8 years ago
|
drop = {
|
||
|
max_items = 1,
|
||
|
items = {
|
||
|
{items = {'farming:seed_cotton'}, rarity = 8},
|
||
|
{items = {'dryplants:reedmace_sapling'}},
|
||
|
}
|
||
|
},
|
||
|
})
|
||
|
-- formerly only possible using default:junglegrass
|
||
|
minetest.register_craft({
|
||
|
output = "moreblocks:sweeper 4",
|
||
|
recipe = {
|
||
|
{"dryplants:reedmace_sapling"},
|
||
|
{"default:stick"},
|
||
|
}
|
||
|
})
|
||
|
|
||
|
-- formerly only possible using default:junglegrass
|
||
|
-- reedmace_height_2, reedmace_sapling, reedmace_height_3_spikes, etc all become reedmace_sapling when mined
|
||
|
minetest.register_craft({
|
||
|
output = "moreblocks:rope 3",
|
||
|
recipe = {
|
||
|
{"dryplants:reedmace_sapling"},
|
||
|
{"dryplants:reedmace_sapling"},
|
||
|
{"dryplants:reedmace_sapling"},
|
||
|
}
|
||
|
})
|
||
|
|
||
|
-- formerly only possible using group:vines
|
||
|
-- if minetest.get_modpath("vines") ~= nil then
|
||
|
minetest.register_craft({
|
||
|
output = 'vines:rope_block',
|
||
|
recipe = {
|
||
|
{'', 'default:wood', ''},
|
||
|
{'', 'farming:string', ''},
|
||
|
{'', 'farming:string', ''}
|
||
|
}
|
||
|
})
|
||
8 years ago
|
-- end
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|