Example #1
0
    public IStats AdditiveStats()
    {
        var stats = new StatAddends();

        modifiers.Where(x => x.ModifierType == StatMathOperator.Additive)
        .ForEach(m => stats.WithRaw(m.StatType, m.Amount));
        return(stats);
    }