using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace TrueCraft.API { /// /// Enumerates the materials armor can be crafted from. /// public enum ArmorMaterial { /// /// The armor is made of leather. /// Leather, /// /// The armor is made of chain (fire). /// Chain, /// /// The armor is made of iron ingots. /// Iron, /// /// The armor is made of gold ingots. /// Gold, /// /// The armor is made of diamonds. /// Diamond } }