Compare commits

...

1 Commits
master ... temp

Author SHA1 Message Date
Plogon Enjoyer
46b462dfb3 Added action Fiery Breath 2024-11-04 21:08:20 +08:00
3 changed files with 6 additions and 3 deletions

View File

@ -6,8 +6,7 @@
"type": "object",
"properties": {
"$schema": {
"type": "string",
"const": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json"
"type": "string"
},
"Author": {
"description": "Author of the quest sequence",
@ -932,6 +931,7 @@
"Physick",
"Aspected Benefic",
"Form Shift",
"Fiery Breath",
"Buffet (Sanuwa)",
"Buffet (Griffin)",
"Trample",

View File

@ -22,6 +22,7 @@ public sealed class ActionConverter() : EnumConverter<EAction>(Values)
{ EAction.Physick, "Physick" },
{ EAction.AspectedBenefic, "Aspected Benefic" },
{ EAction.FormShift, "Form Shift" },
{ EAction.FieryBreath, "Fiery Breath" },
{ EAction.BuffetSanuwa, "Buffet (Sanuwa)" },
{ EAction.BuffetGriffin, "Buffet (Griffin)" },
{ EAction.Trample, "Trample" },

View File

@ -21,6 +21,7 @@ public enum EAction
Physick = 190,
AspectedBenefic = 3595,
FormShift = 4262,
FieryBreath = 1764,
BuffetSanuwa = 4931,
BuffetGriffin = 4583,
Trample = 4585,
@ -69,7 +70,8 @@ public static class EActionExtensions
public static bool RequiresMount(this EAction action)
{
return action
is EAction.BuffetSanuwa
is EAction.FieryBreath
or EAction.BuffetSanuwa
or EAction.BuffetGriffin
or EAction.Trample
or EAction.Fumigate