My question is the best way to edit this:
Register(new PoisonImpl("Lesser", 0, 4, 26, 2.500, 3.5, 3.0, 10, 2));
Register(new PoisonImpl("Regular", 1, 5, 26, 3.125, 3.5, 3.0, 10, 2));
Register(new PoisonImpl("Greater", 2, 6, 26, 6.250, 3.5, 3.0, 10, 2));
Register(new PoisonImpl("Deadly", 3, 7, 26, 12.500, 3.5, 4.0, 10, 2));
Register(new PoisonImpl("Lethal", 4, 9, 26, 25.000, 3.5, 5.0, 10, 2));
private readonly TimeSpan m_Delay;
private readonly TimeSpan m_Interval;
The delay is 3.5 with an interval of 3.0. Would number would I change to make LESSER poison tick once every 5 seconds.
Poison lesser in T2A was every 5 seconds
Poison regular in T2A was every 4 seconds
Greater and Deadly were both every 3 seconds.
Register(new PoisonImpl("Lesser", 0, 4, 26, 2.500, 3.5, 3.0, 10, 2));
Register(new PoisonImpl("Regular", 1, 5, 26, 3.125, 3.5, 3.0, 10, 2));
Register(new PoisonImpl("Greater", 2, 6, 26, 6.250, 3.5, 3.0, 10, 2));
Register(new PoisonImpl("Deadly", 3, 7, 26, 12.500, 3.5, 4.0, 10, 2));
Register(new PoisonImpl("Lethal", 4, 9, 26, 25.000, 3.5, 5.0, 10, 2));
private readonly TimeSpan m_Delay;
private readonly TimeSpan m_Interval;
The delay is 3.5 with an interval of 3.0. Would number would I change to make LESSER poison tick once every 5 seconds.
Poison lesser in T2A was every 5 seconds
Poison regular in T2A was every 4 seconds
Greater and Deadly were both every 3 seconds.