Skip to content
Snippets Groups Projects
Commit 95ea7908 authored by jp's avatar jp
Browse files

Enchanted 3d_armor stuff : use original textures and get rid of custom ones

parent 5f7ce91e
No related branches found
No related tags found
No related merge requests found
Showing
with 8 additions and 6 deletions
......@@ -89,14 +89,15 @@ end
function enchanting.put(_, listname, _, stack, _)
local toolstack = stack:get_name()
local toolname = toolstack:match("[%w_]+:([%w_]+)")
local count = stack:get_count()
if listname == "mese" and toolstack ~= "default:mese_crystal" then
return 0
elseif listname == "tool" and not allowed(toolname) then
return 0
if listname == "mese" and toolstack == "default:mese_crystal" then
return count
elseif listname == "tool" and allowed(toolname) then
return 1
end
return 1
return 0
end
xdecor.register("enchantment_table", {
......@@ -218,7 +219,8 @@ for _, ench in pairs(tooldef[3]) do
minetest.register_tool(":"..mod..":enchanted_"..tool.."_"..material.."_"..enchant, {
description = string.format("Enchanted %s %s (%s)", cap(material), cap(tool), cap(enchant)),
inventory_image = original_tool.inventory_image.."^[colorize:blue:20",
inventory_image = original_tool.inventory_image,
texture = "3d_armor_"..tool.."_"..material,
wield_image = original_tool.wield_image,
groups = armorcaps,
wear = 0
......
textures/3d_armor_enchanted_boots_bronze_speed.png

261 B

textures/3d_armor_enchanted_boots_bronze_speed_preview.png

297 B

textures/3d_armor_enchanted_boots_bronze_strong.png

261 B

textures/3d_armor_enchanted_boots_bronze_strong_preview.png

297 B

textures/3d_armor_enchanted_boots_diamond_speed.png

228 B

textures/3d_armor_enchanted_boots_diamond_speed_preview.png

334 B

textures/3d_armor_enchanted_boots_diamond_strong.png

228 B

textures/3d_armor_enchanted_boots_diamond_strong_preview.png

334 B

textures/3d_armor_enchanted_boots_gold_speed.png

231 B

textures/3d_armor_enchanted_boots_gold_speed_preview.png

344 B

textures/3d_armor_enchanted_boots_gold_strong.png

231 B

textures/3d_armor_enchanted_boots_gold_strong_preview.png

344 B

textures/3d_armor_enchanted_boots_steel_speed.png

221 B

textures/3d_armor_enchanted_boots_steel_speed_preview.png

245 B

textures/3d_armor_enchanted_boots_steel_strong.png.png

234 B

textures/3d_armor_enchanted_boots_steel_strong_preview.png

245 B

textures/3d_armor_enchanted_chestplate_bronze_strong.png

446 B

textures/3d_armor_enchanted_chestplate_bronze_strong_preview.png

564 B

textures/3d_armor_enchanted_chestplate_diamond_strong.png

392 B

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment