Docs
Requirements
- Minetest >=0.4.3
- Inventory Plus >=1.0.0
Installation
Download and uncompress the
latest version, and move the the
minetest-armor-master folder into your
minetest/mods folder.
Crafting Guide
The material used below are:
M=Wood,SteelorMese-=empty
Helmet
MMM M-M M-M
Chestplate
MMM -M- -M-
Boots
M-M M-M M-M
Shield
MMM MMM -M-
Modding Guide
To turn your craftitem into
armor simply add one of the following to the groups in the node definition.
armor_helmet=X armor_chest=X armor_boots=X armor_shield=X
Where X is from 1 to 4, where 1 is the highest grade armor (mese). EG:
minetest.register_tool("your_mod:your_armor", {
description = "Your Armor",
groups = {armor_helmet=2},
})
