Even More Modifiers  1.0.0.0
A mod for rolling various bonus stats on items
TestPool.cs
Go to the documentation of this file.
1 using Loot;
2 using Loot.Core;
4 
5 namespace LootTests.TestPools
6 {
7  public class TestPool : ModifierPool
8  {
9  public override float RollChance => 1f;
10 
11  public TestPool()
12  {
13  Modifiers = new Modifier[]
14  {
16  };
17  }
18 
19  public override bool CanRoll(ModifierContext ctx)
20  {
21  return base.CanRoll(ctx);
22  }
23  }
24 }
static EmptyModLoadShell Instance
Definition: Tests.cs:17
override bool CanRoll(ModifierContext ctx)
Definition: TestPool.cs:19