//Physical Damage
AddTooltipItemOption(94, String(GetPhysicalDamage(Item.WeaponType, Item.SlotBitType, Item.CrystalType, Item.Enchanted, Item.PhysicalDamage)), true, true, false);
//Masical Damage
AddTooltipItemOption(98, String(GetMagicalDamage(Item.WeaponType, Item.SlotBitType, Item.CrystalType, Item.Enchanted, Item.MagicalDamage)), true, true, false);
//Attack Speed
AddTooltipItemOption(111, GetAttackSpeedString(Item.AttackSpeed), true, true, false);
//SoulShot Count
if (Item.SoulshotCount>0)
{
AddTooltipItemOption(404, "X " $ Item.SoulshotCount, true, true, false);
}
//SpiritShot Count
if (Item.SpiritShotCount>0)
{
AddTooltipItemOption(496, "X " $ Item.SpiritshotCount, true, true, false);
}