1
0
Fork 0
forked from aly/qstbak

muffin v6.25

This commit is contained in:
alydev 2025-10-18 17:22:18 +10:00
parent 587c570a96
commit 01fde26518
5 changed files with 3750 additions and 2720 deletions

View file

@ -1295,6 +1295,8 @@
"type": "string",
"description": "The action to use",
"enum": [
"Duty Action I",
"Duty Action II",
"Heavy Swing",
"Bootshine",
"Twin Snakes",
@ -1339,8 +1341,8 @@
"Wasshoi",
"Shrouded Luminescence",
"Big Sneeze",
"Duty Action I",
"Duty Action II"
"Trickster's Treat",
"Treater's Trick"
]
}
},

File diff suppressed because it is too large Load diff

View file

@ -190,6 +190,14 @@ public sealed class ActionConverter : EnumConverter<EAction>
{
EAction.BigSneeze,
"Big Sneeze"
},
{
EAction.TrickstersTreat,
"Trickster's Treat"
},
{
EAction.TreatersTrick,
"Treater's Trick"
}
};

View file

@ -59,6 +59,8 @@ public enum EAction
Wasshoi = 11499,
ShroudedLuminescence = 39505,
BigSneeze = 1765,
TrickstersTreat = 44517,
TreatersTrick = 44518,
Prospect = 227,
CollectMiner = 240,
LuckOfTheMountaineer = 4081,

View file

@ -26,6 +26,8 @@ public static class EActionExtensions
case EAction.HopStep:
case EAction.BosomBrook:
case EAction.ShroudedLuminescence:
case EAction.TrickstersTreat:
case EAction.TreatersTrick:
return true;
default:
return false;