mirror of
https://github.com/kwsch/pkNX.git
synced 2026-05-06 04:45:40 -05:00
10 lines
133 B
C#
10 lines
133 B
C#
namespace pkNX.Structures;
|
|
|
|
public enum TypeEffectiveness : byte
|
|
{
|
|
Immune = 0,
|
|
NotVery = 2,
|
|
Normal = 4,
|
|
Super = 8,
|
|
}
|