forked from aly/qstbak
muffin v6.25
This commit is contained in:
parent
587c570a96
commit
01fde26518
5 changed files with 3750 additions and 2720 deletions
|
|
@ -1295,6 +1295,8 @@
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"description": "The action to use",
|
"description": "The action to use",
|
||||||
"enum": [
|
"enum": [
|
||||||
|
"Duty Action I",
|
||||||
|
"Duty Action II",
|
||||||
"Heavy Swing",
|
"Heavy Swing",
|
||||||
"Bootshine",
|
"Bootshine",
|
||||||
"Twin Snakes",
|
"Twin Snakes",
|
||||||
|
|
@ -1339,8 +1341,8 @@
|
||||||
"Wasshoi",
|
"Wasshoi",
|
||||||
"Shrouded Luminescence",
|
"Shrouded Luminescence",
|
||||||
"Big Sneeze",
|
"Big Sneeze",
|
||||||
"Duty Action I",
|
"Trickster's Treat",
|
||||||
"Duty Action II"
|
"Treater's Trick"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load diff
|
|
@ -190,6 +190,14 @@ public sealed class ActionConverter : EnumConverter<EAction>
|
||||||
{
|
{
|
||||||
EAction.BigSneeze,
|
EAction.BigSneeze,
|
||||||
"Big Sneeze"
|
"Big Sneeze"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
EAction.TrickstersTreat,
|
||||||
|
"Trickster's Treat"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
EAction.TreatersTrick,
|
||||||
|
"Treater's Trick"
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -59,6 +59,8 @@ public enum EAction
|
||||||
Wasshoi = 11499,
|
Wasshoi = 11499,
|
||||||
ShroudedLuminescence = 39505,
|
ShroudedLuminescence = 39505,
|
||||||
BigSneeze = 1765,
|
BigSneeze = 1765,
|
||||||
|
TrickstersTreat = 44517,
|
||||||
|
TreatersTrick = 44518,
|
||||||
Prospect = 227,
|
Prospect = 227,
|
||||||
CollectMiner = 240,
|
CollectMiner = 240,
|
||||||
LuckOfTheMountaineer = 4081,
|
LuckOfTheMountaineer = 4081,
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,8 @@ public static class EActionExtensions
|
||||||
case EAction.HopStep:
|
case EAction.HopStep:
|
||||||
case EAction.BosomBrook:
|
case EAction.BosomBrook:
|
||||||
case EAction.ShroudedLuminescence:
|
case EAction.ShroudedLuminescence:
|
||||||
|
case EAction.TrickstersTreat:
|
||||||
|
case EAction.TreatersTrick:
|
||||||
return true;
|
return true;
|
||||||
default:
|
default:
|
||||||
return false;
|
return false;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue