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.
33 lines
763 B
33 lines
763 B
|
|
-- formerly getting cotton seeds only possible 1/8 chance harvesting default:junglegrass
|
|
minetest.register_craft({
|
|
output = "moreblocks:sweeper 4",
|
|
recipe = {
|
|
{"default:grass_1"},
|
|
{"default:stick"}
|
|
}
|
|
})
|
|
|
|
minetest.register_craft({
|
|
type = "shapeless",
|
|
output = "farming:seed_cotton",
|
|
recipe = {
|
|
"farming:cotton","farming:cotton","farming:cotton",
|
|
"farming:cotton","farming:cotton","farming:cotton",
|
|
"farming:cotton","farming:cotton",
|
|
}
|
|
})
|
|
|
|
|
|
|
|
-- 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 = {
|
|
{"default:grass_1"},
|
|
{"default:grass_1"},
|
|
{"default:grass_1"}
|
|
}
|
|
})
|
|
|
|
|