Exemplo n.º 1
0
    public override void Apply(CombatEntity caster, CombatEntity target)
    {
        float damage = (caster.GetStat(StatType.Strength) * strengthScaling) + (caster.GetStat(StatType.Magic) * magicScaling);

        target.DoDamage((int)damage, attributeType);
    }