mirror of
https://github.com/lisacvuk/minetest-toolranks.git
synced 2024-11-14 14:00:21 +01:00
indented with spaces
indented with spaces
This commit is contained in:
parent
3def30b634
commit
b3bfb67947
119
init.lua
119
init.lua
|
@ -100,123 +100,122 @@ end
|
|||
minetest.override_item("default:pick_diamond", {
|
||||
original_description = "Diamond Pickaxe",
|
||||
description = toolranks.create_description("Diamond Pickaxe", 0, 1),
|
||||
after_use = toolranks.new_afteruse,
|
||||
})
|
||||
after_use = toolranks.new_afteruse})
|
||||
|
||||
minetest.override_item("default:axe_diamond", {
|
||||
original_description = "Diamond Axe",
|
||||
description = toolranks.create_description("Diamond Axe", 0, 1),
|
||||
after_use = toolranks.new_afteruse,
|
||||
})
|
||||
after_use = toolranks.new_afteruse})
|
||||
|
||||
minetest.override_item("default:shovel_diamond", {
|
||||
original_description = "Diamond Shovel",
|
||||
description = toolranks.create_description("Diamond Shovel", 0, 1),
|
||||
after_use = toolranks.new_afteruse,
|
||||
})
|
||||
after_use = toolranks.new_afteruse})
|
||||
|
||||
minetest.override_item("default:pick_wood", {
|
||||
original_description = "Wooden Pickaxe",
|
||||
description = toolranks.create_description("Wooden Pickaxe", 0, 1),
|
||||
after_use = toolranks.new_afteruse,
|
||||
})
|
||||
after_use = toolranks.new_afteruse})
|
||||
|
||||
minetest.override_item("default:axe_wood", {
|
||||
original_description = "Wooden Axe",
|
||||
description = toolranks.create_description("Wooden Axe", 0, 1),
|
||||
after_use = toolranks.new_afteruse,
|
||||
})
|
||||
after_use = toolranks.new_afteruse})
|
||||
|
||||
minetest.override_item("default:shovel_wood", {
|
||||
original_description = "Wooden Shovel",
|
||||
description = toolranks.create_description("Wooden Shovel", 0, 1),
|
||||
after_use = toolranks.new_afteruse,
|
||||
})
|
||||
after_use = toolranks.new_afteruse})
|
||||
|
||||
minetest.override_item("default:pick_steel", {
|
||||
original_description = "Steel Pickaxe",
|
||||
description = toolranks.create_description("Steel Pickaxe", 0, 1),
|
||||
after_use = toolranks.new_afteruse,
|
||||
})
|
||||
after_use = toolranks.new_afteruse})
|
||||
|
||||
minetest.override_item("default:axe_steel", {
|
||||
original_description = "Steel Axe",
|
||||
description = toolranks.create_description("Steel Axe", 0, 1),
|
||||
after_use = toolranks.new_afteruse,
|
||||
})
|
||||
after_use = toolranks.new_afteruse})
|
||||
|
||||
minetest.override_item("default:shovel_steel", {
|
||||
original_description = "Steel Shovel",
|
||||
description = toolranks.create_description("Steel Shovel", 0, 1),
|
||||
after_use = toolranks.new_afteruse,
|
||||
})
|
||||
after_use = toolranks.new_afteruse})
|
||||
|
||||
minetest.override_item("default:pick_stone", {
|
||||
original_description = "Stone Pickaxe",
|
||||
description = toolranks.create_description("Stone Pickaxe", 0, 1),
|
||||
after_use = toolranks.new_afteruse,
|
||||
})
|
||||
after_use = toolranks.new_afteruse})
|
||||
|
||||
minetest.override_item("default:axe_stone", {
|
||||
original_description = "Stone Axe",
|
||||
description = toolranks.create_description("Stone Axe", 0, 1),
|
||||
after_use = toolranks.new_afteruse,
|
||||
})
|
||||
after_use = toolranks.new_afteruse})
|
||||
|
||||
minetest.override_item("default:shovel_stone", {
|
||||
original_description = "Stone Shovel",
|
||||
description = toolranks.create_description("Stone Shovel", 0, 1),
|
||||
after_use = toolranks.new_afteruse,
|
||||
})
|
||||
after_use = toolranks.new_afteruse})
|
||||
|
||||
minetest.override_item("default:pick_bronze", {
|
||||
original_description = "Bronze Pickaxe",
|
||||
description = toolranks.create_description("Bronze Pickaxe", 0, 1),
|
||||
after_use = toolranks.new_afteruse,
|
||||
})
|
||||
after_use = toolranks.new_afteruse})
|
||||
|
||||
minetest.override_item("default:axe_bronze", {
|
||||
original_description = "Bronze Axe",
|
||||
description = toolranks.create_description("Bronze Axe", 0, 1),
|
||||
after_use = toolranks.new_afteruse,
|
||||
})
|
||||
after_use = toolranks.new_afteruse})
|
||||
|
||||
minetest.override_item("default:shovel_bronze", {
|
||||
original_description = "Bronze Shovel",
|
||||
description = toolranks.create_description("Bronze Shovel", 0, 1),
|
||||
after_use = toolranks.new_afteruse,
|
||||
})
|
||||
after_use = toolranks.new_afteruse})
|
||||
|
||||
minetest.override_item("default:pick_mese", {
|
||||
original_description = "Mese Pickaxe",
|
||||
description = toolranks.create_description("Mese Pickaxe", 0, 1),
|
||||
after_use = toolranks.new_afteruse,
|
||||
})
|
||||
after_use = toolranks.new_afteruse})
|
||||
|
||||
minetest.override_item("default:axe_mese", {
|
||||
original_description = "Mese Axe",
|
||||
description = toolranks.create_description("Mese Axe", 0, 1),
|
||||
after_use = toolranks.new_afteruse,
|
||||
})
|
||||
after_use = toolranks.new_afteruse})
|
||||
|
||||
minetest.override_item("default:shovel_mese", {
|
||||
original_description = "Mese Shovel",
|
||||
description = toolranks.create_description("Mese Shovel", 0, 1),
|
||||
after_use = toolranks.new_afteruse,
|
||||
})
|
||||
after_use = toolranks.new_afteruse})
|
||||
|
||||
if minetest.get_modpath("moreores") then
|
||||
|
||||
minetest.override_item("moreores:pick_mithril", {
|
||||
original_description = "Mithril Pickaxe",
|
||||
description = toolranks.create_description("Mithril Pickaxe", 0, 1),
|
||||
after_use = toolranks.new_afteruse})
|
||||
minetest.override_item("moreores:pick_mithril", {
|
||||
original_description = "Mithril Pickaxe",
|
||||
description = toolranks.create_description("Mithril Pickaxe", 0, 1),
|
||||
after_use = toolranks.new_afteruse})
|
||||
|
||||
minetest.override_item("moreores:axe_mithril", {
|
||||
original_description = "Mithril Axe",
|
||||
description = toolranks.create_description("Mithril Axe", 0, 1),
|
||||
after_use = toolranks.new_afteruse})
|
||||
minetest.override_item("moreores:axe_mithril", {
|
||||
original_description = "Mithril Axe",
|
||||
description = toolranks.create_description("Mithril Axe", 0, 1),
|
||||
after_use = toolranks.new_afteruse})
|
||||
|
||||
minetest.override_item("moreores:shovel_mithril", {
|
||||
original_description = "Mithril Shovel",
|
||||
description = toolranks.create_description("Mithril Shovel", 0, 1),
|
||||
after_use = toolranks.new_afteruse})
|
||||
minetest.override_item("moreores:shovel_mithril", {
|
||||
original_description = "Mithril Shovel",
|
||||
description = toolranks.create_description("Mithril Shovel", 0, 1),
|
||||
after_use = toolranks.new_afteruse})
|
||||
|
||||
minetest.override_item("moreores:pick_silver", {
|
||||
original_description = "Silver Pickaxe",
|
||||
description = toolranks.create_description("Silver Pickaxe", 0, 1),
|
||||
after_use = toolranks.new_afteruse})
|
||||
minetest.override_item("moreores:pick_silver", {
|
||||
original_description = "Silver Pickaxe",
|
||||
description = toolranks.create_description("Silver Pickaxe", 0, 1),
|
||||
after_use = toolranks.new_afteruse})
|
||||
|
||||
minetest.override_item("moreores:axe_silver", {
|
||||
original_description = "Silver Axe",
|
||||
description = toolranks.create_description("Silver Axe", 0, 1),
|
||||
after_use = toolranks.new_afteruse})
|
||||
minetest.override_item("moreores:axe_silver", {
|
||||
original_description = "Silver Axe",
|
||||
description = toolranks.create_description("Silver Axe", 0, 1),
|
||||
after_use = toolranks.new_afteruse})
|
||||
|
||||
minetest.override_item("moreores:shovel_silver", {
|
||||
original_description = "Silver Shovel",
|
||||
description = toolranks.create_description("Silver Shovel", 0, 1),
|
||||
after_use = toolranks.new_afteruse})
|
||||
minetest.override_item("moreores:shovel_silver", {
|
||||
original_description = "Silver Shovel",
|
||||
description = toolranks.create_description("Silver Shovel", 0, 1),
|
||||
after_use = toolranks.new_afteruse})
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue
Block a user