Commit d6359d2f authored by mercury233's avatar mercury233

add RACE_ILLUSION

parent f6a235bc
...@@ -42,7 +42,8 @@ ...@@ -42,7 +42,8 @@
RACE_DEVINE = 0x200000, RACE_DEVINE = 0x200000,
RACE_CREATORGOD = 0x400000, RACE_CREATORGOD = 0x400000,
RACE_WYRM = 0x800000, RACE_WYRM = 0x800000,
RACE_CYBERS = 0x1000000 RACE_CYBERS = 0x1000000,
RACE_ILLUSION = 0x2000000,
} }
[Flags] [Flags]
......
...@@ -372,6 +372,7 @@ namespace ImgGen ...@@ -372,6 +372,7 @@ namespace ImgGen
case Race.RACE_CREATORGOD: str += "创造神族"; break; case Race.RACE_CREATORGOD: str += "创造神族"; break;
case Race.RACE_WYRM: str += "幻龙族"; break; case Race.RACE_WYRM: str += "幻龙族"; break;
case Race.RACE_CYBERS: str += "电子界族"; break; case Race.RACE_CYBERS: str += "电子界族"; break;
case Race.RACE_ILLUSION: str += "幻想魔族"; break;
default: str += "???"; break; default: str += "???"; break;
} }
if (data.isType(Type.TYPE_FUSION)) str += "/融合"; if (data.isType(Type.TYPE_FUSION)) str += "/融合";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment