screenshot

Features

  • Provides an armor section in the player inventory.
  • Armor can be crafted and placed into the inventory slots.
  • Attached armor gives players additional strength.

Docs

Requirements

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, Steel or Mese
  • - = 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},
})