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