We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 46ac1bb + c787734 commit 9ebdcf5Copy full SHA for 9ebdcf5
1 file changed
Program.cs
@@ -46,6 +46,7 @@ internal class Program
46
"job_abilities",
47
"job_traits",
48
"jobs",
49
+ "monster_skills",
50
"monstrosity",
51
"spells",
52
"weapon_skills",
@@ -448,20 +449,14 @@ private static void PostProcess()
448
449
// Monstrosity
450
else if (action.id >= 0x0700)
451
{
- action.id -= 0x0700;
452
+ // Monster skills start at 256
453
+ action.id -= 0x0600;
454
455
action.mp_cost = null;
456
action.recast_id = null;
457
action.type = null;
458
- // Remove names, as they are parsed separately
- action.en = null;
459
- action.ja = null;
460
-
461
- if (action.id < model.monster_abilities.Count)
462
- {
463
- model.monster_abilities[action.id].Merge(action);
464
- }
+ model.monster_skills.Add(action);
465
}
466
467
model.actions = null;
0 commit comments