Skip to content

Commit d6359d2

Browse files
committed
add RACE_ILLUSION
1 parent f6a235b commit d6359d2

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Data.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ public enum Race : int
4242
RACE_DEVINE = 0x200000,
4343
RACE_CREATORGOD = 0x400000,
4444
RACE_WYRM = 0x800000,
45-
RACE_CYBERS = 0x1000000
45+
RACE_CYBERS = 0x1000000,
46+
RACE_ILLUSION = 0x2000000,
4647
}
4748

4849
[Flags]

ImageManager.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -372,6 +372,7 @@ private void DrawMonsterType(Graphics graphics, Data data)
372372
case Race.RACE_CREATORGOD: str += "创造神族"; break;
373373
case Race.RACE_WYRM: str += "幻龙族"; break;
374374
case Race.RACE_CYBERS: str += "电子界族"; break;
375+
case Race.RACE_ILLUSION: str += "幻想魔族"; break;
375376
default: str += "???"; break;
376377
}
377378
if (data.isType(Type.TYPE_FUSION)) str += "/融合";

0 commit comments

Comments
 (0)