switch set, automatize more of the content without UI change
This commit is contained in:
34
Assets/Set/Data/TraitsEnum.cs
Normal file
34
Assets/Set/Data/TraitsEnum.cs
Normal file
@@ -0,0 +1,34 @@
|
||||
using System;
|
||||
|
||||
namespace Set.Data
|
||||
{
|
||||
[Flags]
|
||||
public enum TraitsEnum : int
|
||||
{
|
||||
BATTLEACADEMIA = 1 << 0,
|
||||
CRYSTALGAMBIT = 1 << 1,
|
||||
LUCHADOR = 1 << 2,
|
||||
MIGHTYMECH = 1 << 3,
|
||||
MONSTERTRAINER = 1 << 4,
|
||||
SOULFIGHTER = 1 << 5,
|
||||
STARGUARDIAN = 1 << 6,
|
||||
SUPREMECELLS = 1 << 7,
|
||||
THECREW = 1 << 8,
|
||||
WRAITH = 1 << 9,
|
||||
MENTOR = 1 << 10,
|
||||
PRODIGY = 1 << 11,
|
||||
THECHAMP = 1 << 12,
|
||||
STANCEMASTER = 1 << 13,
|
||||
ROGUECAPTAIN = 1 << 14,
|
||||
BASTION = 1 << 15,
|
||||
DUELIST = 1 << 16,
|
||||
EDGELORD = 1 << 17,
|
||||
EXECUTIONER = 1 << 18,
|
||||
HEAVYWEIGHT = 1 << 19,
|
||||
JUGGERNAUT = 1 << 20,
|
||||
PROTECTOR = 1 << 21,
|
||||
SNIPER = 1 << 22,
|
||||
SORCERER = 1 << 23,
|
||||
STRATEGIST = 1 << 24
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user