Even More Modifiers  1.0.0.0
A mod for rolling various bonus stats on items
RollingUtils.cs
Go to the documentation of this file.
1 using Loot.Api.Strategy;
3 
4 namespace Loot.Api.Ext
5 {
9  public static class RollingUtils
10  {
11  public static class Properties
12  {
14  {
15  MaxRollableLines = 2,
16  ExtraLuck = 0,
17  CanUpgradeRarity = context => false
18  };
19  }
20 
21  public static class Strategies
22  {
23  public static DefaultRollingStrategy Default => new DefaultRollingStrategy();
24  public static SealingRollingStrategy Sealing => new SealingRollingStrategy();
25  }
26  }
27 }
Defines a set of rolling utilities
Definition: RollingUtils.cs:9
Defines properties that will be used when an item is being rolled in a IRollingStrategy<T> These can ...
A normal rolling strategy, follows normal behavior