Even More Modifiers  1.0.0.0
A mod for rolling various bonus stats on items
TestApplyMod.cs
Go to the documentation of this file.
1 using Loot.Core;
2 using Terraria;
3 
4 namespace LootTests.TestModifiers
5 {
6  public class TestApplyMod : Modifier
7  {
8  public override void Apply(Item item)
9  {
10  item.damage = 9001;
11  }
12  }
13 }
override void Apply(Item item)
Definition: TestApplyMod.cs:8