Add Cure II as action

pull/36/head
Liza 2024-08-29 16:29:21 +02:00
parent 4113d52325
commit 34e1f62ea9
Signed by: liza
GPG Key ID: 7199F8D727D55F67
3 changed files with 3 additions and 0 deletions

View File

@ -856,6 +856,7 @@
"Heavy Swing", "Heavy Swing",
"Heavy Shot", "Heavy Shot",
"Cure", "Cure",
"Cure II",
"Esuna", "Esuna",
"Physick", "Physick",
"Buffet (Sanuwa)", "Buffet (Sanuwa)",

View File

@ -10,6 +10,7 @@ public sealed class ActionConverter() : EnumConverter<EAction>(Values)
{ EAction.HeavySwing, "Heavy Swing" }, { EAction.HeavySwing, "Heavy Swing" },
{ EAction.HeavyShot, "Heavy Shot" }, { EAction.HeavyShot, "Heavy Shot" },
{ EAction.Cure, "Cure" }, { EAction.Cure, "Cure" },
{ EAction.Cure2, "Cure II" },
{ EAction.Esuna, "Esuna" }, { EAction.Esuna, "Esuna" },
{ EAction.Physick, "Physick" }, { EAction.Physick, "Physick" },
{ EAction.BuffetSanuwa, "Buffet (Sanuwa)" }, { EAction.BuffetSanuwa, "Buffet (Sanuwa)" },

View File

@ -9,6 +9,7 @@ public enum EAction
HeavySwing = 31, HeavySwing = 31,
HeavyShot = 97, HeavyShot = 97,
Cure = 120, Cure = 120,
Cure2 = 135,
Esuna = 7568, Esuna = 7568,
Physick = 190, Physick = 190,
BuffetSanuwa = 4931, BuffetSanuwa = 4931,