Add attack data to enemy attacks (might need to rework a little bit for primary/secondary attacks)
4 lines
171 B
C#
4 lines
171 B
C#
namespace Zennysoft.Ma.Adapter;
|
|
|
|
public record AttackData(int BaseDamage, ElementType ElementType, bool IgnoreDefense = false, bool IgnoreElementalResistance = false);
|