diff --git a/etc/Mods,WIP/junglelike_dryplants_recipes/init.lua b/etc/Mods,WIP/junglelike_dryplants_recipes/init.lua index e0e0f35..8057b4f 100644 --- a/etc/Mods,WIP/junglelike_dryplants_recipes/init.lua +++ b/etc/Mods,WIP/junglelike_dryplants_recipes/init.lua @@ -1,4 +1,70 @@ -minetest.override_item("dryplants:reedmace_sapling", { + +-- 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", { drop = { max_items = 1, items = { @@ -7,7 +73,6 @@ minetest.override_item("dryplants:reedmace_sapling", { } }, }) - -- formerly only possible using default:junglegrass minetest.register_craft({ output = "moreblocks:sweeper 4", @@ -38,4 +103,10 @@ minetest.register_craft({ {'', 'farming:string', ''} } }) --- end \ No newline at end of file +-- end + + + + + + diff --git a/etc/Mods,WIP/junglelike_minetestgame_recipes/init.lua b/etc/Mods,WIP/junglelike_minetestgame_recipes/init.lua index e33a8df..cc381f5 100644 --- a/etc/Mods,WIP/junglelike_minetestgame_recipes/init.lua +++ b/etc/Mods,WIP/junglelike_minetestgame_recipes/init.lua @@ -3,23 +3,18 @@ minetest.register_craft({ output = "moreblocks:sweeper 4", recipe = { - {"default:grass"}, - {"default:stick"}, + {"default:grass_1"}, + {"default:stick"} } }) minetest.register_craft({ - output = "farming:seed_cotton", type = "shapeless", + output = "farming:seed_cotton", recipe = { - {"farming:cotton"}, - {"farming:cotton"}, - {"farming:cotton"}, - {"farming:cotton"}, - {"farming:cotton"}, - {"farming:cotton"}, - {"farming:cotton"}, - {"farming:cotton"}, + "farming:cotton","farming:cotton","farming:cotton", + "farming:cotton","farming:cotton","farming:cotton", + "farming:cotton","farming:cotton", } }) @@ -30,9 +25,9 @@ minetest.register_craft({ minetest.register_craft({ output = "moreblocks:rope 3", recipe = { - {"default:grass"}, - {"default:grass"}, - {"default:grass"}, + {"default:grass_1"}, + {"default:grass_1"}, + {"default:grass_1"} } })