mirror of
https://github.com/minetest-mods/3d_armor.git
synced 2025-06-28 06:20:33 +02:00
Add crystal armor and fire protection by TenPlus1
This commit is contained in:
@ -15,6 +15,8 @@ Shields -- Crafting Guide
|
||||
[shields:shield_bronze] X = [default:bronze_ingot]
|
||||
[shields:shield_diamond] X = [default:diamond]
|
||||
[shields:shield_gold] X = [default:gold_ingot]
|
||||
[shields:shield_mithril] X = [moreores:mithril_ingot]
|
||||
[shields:shield_crystal] X = [ethereal:crystal_ingot]
|
||||
|
||||
Enhanced Shields
|
||||
----------------
|
||||
|
@ -100,6 +100,15 @@ if ARMOR_MATERIALS.mithril then
|
||||
})
|
||||
end
|
||||
|
||||
if ARMOR_MATERIALS.crystal then
|
||||
minetest.register_tool("shields:shield_crystal", {
|
||||
description = "Crystal Shield",
|
||||
inventory_image = "shields_inv_shield_crystal.png",
|
||||
groups = {armor_shield=15, armor_heal=12, armor_use=50, armor_fire=1},
|
||||
wear = 0,
|
||||
})
|
||||
end
|
||||
|
||||
for k, v in pairs(ARMOR_MATERIALS) do
|
||||
minetest.register_craft({
|
||||
output = "shields:shield_"..k,
|
||||
|
BIN
shields/textures/shields_inv_shield_crystal.png
Normal file
BIN
shields/textures/shields_inv_shield_crystal.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 662 B |
BIN
shields/textures/shields_shield_crystal.png
Normal file
BIN
shields/textures/shields_shield_crystal.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 622 B |
BIN
shields/textures/shields_shield_crystal_preview.png
Normal file
BIN
shields/textures/shields_shield_crystal_preview.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.7 KiB |
Reference in New Issue
Block a user