123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- minetest.register_tool("moreores:pick_silver", {
- description = "Silver Pickaxe\n\nUse this pick to gently excavate things.",
- inventory_image = "moreores_tool_silverpick.png",
- tool_capabilities = tooldata["pick_silver"],
- sound = {breaks = "basictools_tool_breaks"},
- })
- minetest.register_tool("moreores:pick_mithril", {
- description = "Mithril Pickaxe",
- inventory_image = "moreores_tool_mithrilpick.png",
- tool_capabilities = tooldata["pick_mithril"],
- sound = {breaks = "basictools_tool_breaks"},
- })
- minetest.register_tool("moreores:shovel_silver", {
- description = "Silver Shovel",
- inventory_image = "moreores_tool_silvershovel.png",
- tool_capabilities = tooldata["shovel_silver"],
- sound = {breaks = "basictools_tool_breaks"},
- })
- minetest.register_tool("moreores:shovel_mithril", {
- description = "Mithril Shovel",
- inventory_image = "moreores_tool_mithrilshovel.png",
- tool_capabilities = tooldata["shovel_mithril"],
- sound = {breaks = "basictools_tool_breaks"},
- })
- minetest.register_tool("moreores:axe_silver", {
- description = "Silver Axe",
- inventory_image = "moreores_tool_silveraxe.png",
- tool_capabilities = tooldata["axe_silver"],
- sound = {breaks = "basictools_tool_breaks"},
- })
- minetest.register_tool("moreores:axe_mithril", {
- description = "Mithril Axe",
- inventory_image = "moreores_tool_mithrilaxe.png",
- tool_capabilities = tooldata["axe_mithril"],
- sound = {breaks = "basictools_tool_breaks"},
- })
- minetest.register_tool("moreores:sword_silver", {
- description = "Silver Sword",
- inventory_image = "moreores_tool_silversword.png",
- tool_capabilities = tooldata["sword_silver"],
- sound = {breaks = "basictools_tool_breaks"},
- })
- minetest.register_tool("moreores:sword_mithril", {
- description = "Mithril Sword",
- inventory_image = "moreores_tool_mithrilsword.png",
- tool_capabilities = tooldata["sword_mithril"],
- sound = {breaks = "basictools_tool_breaks"},
- })
- farming.register_hoe("moreores:hoe_silver", {
- description = "Silver Hoe",
- inventory_image = "moreores_tool_silverhoe.png",
- max_uses = 300,
- material = "moreores:silver_ingot"
- })
- farming.register_hoe("moreores:hoe_mithril", {
- description = "Mithril Hoe",
- inventory_image = "moreores_tool_mithrilhoe.png",
- max_uses = 600,
- material = "moreores:mithril_ingot"
- })
- minetest.register_craft({
- output = "moreores:pick_silver",
- recipe = {
- {"moreores:silver_ingot", "moreores:silver_ingot", "moreores:silver_ingot"},
- {"", "group:stick", ""},
- {"", "group:stick", ""},
- },
- })
- minetest.register_craft({
- output = "moreores:pick_mithril",
- recipe = {
- {"moreores:mithril_ingot", "moreores:mithril_ingot", "moreores:mithril_ingot"},
- {"", "group:stick", ""},
- {"", "group:stick", ""},
- },
- })
- minetest.register_craft({
- output = "moreores:axe_silver",
- recipe = {
- {"moreores:silver_ingot", "moreores:silver_ingot", ""},
- {"moreores:silver_ingot", "group:stick", ""},
- {"", "group:stick", ""},
- },
- })
- minetest.register_craft({
- output = "moreores:axe_silver",
- recipe = {
- {"moreores:silver_ingot", "moreores:silver_ingot", ""},
- {"group:stick", "moreores:silver_ingot", ""},
- {"group:stick", "", ""},
- },
- })
- minetest.register_craft({
- output = "moreores:axe_mithril",
- recipe = {
- {"moreores:mithril_ingot", "moreores:mithril_ingot", ""},
- {"moreores:mithril_ingot", "group:stick", ""},
- {"", "group:stick", ""},
- },
- })
- minetest.register_craft({
- output = "moreores:axe_mithril",
- recipe = {
- {"moreores:mithril_ingot", "moreores:mithril_ingot", ""},
- {"group:stick", "moreores:mithril_ingot", ""},
- {"group:stick", "", ""},
- },
- })
- minetest.register_craft({
- output = "moreores:shovel_silver",
- recipe = {
- {"", "moreores:silver_ingot", ""},
- {"", "group:stick", ""},
- {"", "group:stick", ""},
- },
- })
- minetest.register_craft({
- output = "moreores:shovel_mithril",
- recipe = {
- {"", "moreores:mithril_ingot", ""},
- {"", "group:stick", ""},
- {"", "group:stick", ""},
- },
- })
- minetest.register_craft({
- output = "moreores:sword_silver",
- recipe = {
- {"", "moreores:silver_ingot", ""},
- {"", "moreores:silver_ingot", ""},
- {"", "group:stick", ""},
- },
- })
- minetest.register_craft({
- output = "moreores:sword_mithril",
- recipe = {
- {"", "moreores:mithril_ingot", ""},
- {"", "moreores:mithril_ingot", ""},
- {"", "group:stick", ""},
- },
- })
|