Server.VendorGenerator.IsArmor C# (CSharp) Méthode

IsArmor() private static méthode

private static IsArmor ( int itemID ) : bool
itemID int
Résultat bool
		private static bool IsArmor( int itemID )
		{
			if ( itemID >= 0x13BB && itemID <= 0x13E2 )
				return true;

			if ( itemID >= 0x13E5 && itemID <= 0x13F2 )
				return true;

			if ( itemID >= 0x1408 && itemID <= 0x141A )
				return true;

			if ( itemID >= 0x144E && itemID <= 0x1457 )
				return true;

			return false;
		}