combat/weapon_type.cs
// WeaponType.cs
public enum WeaponType
{
    Unarmed = 0,
    Glaive = 1,
    Spear = 2,
    Shield = 3
}