projects
/
Questionable.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7941cf1
)
Added action Fiery Breath
author
Plogon Enjoyer
<plogon_enjoyer@no-reply.com>
Sat, 19 Oct 2024 16:51:34 +0000
(
00:51
+0800)
committer
Plogon Enjoyer
<plogon_enjoyer@no-reply.com>
Wed, 6 Nov 2024 14:11:00 +0000
(22:11 +0800)
QuestPaths/quest-v1.json
patch
|
blob
|
blame
|
history
Questionable.Model/Questing/Converter/ActionConverter.cs
patch
|
blob
|
blame
|
history
Questionable.Model/Questing/EAction.cs
patch
|
blob
|
blame
|
history
diff --git
a/QuestPaths/quest-v1.json
b/QuestPaths/quest-v1.json
index 5ef7ce77d26f7a8ae8d7f7d992ba070dc9038299..58c1d16a4c1705c56a0418a1ae58bc9b8730a7e5 100644
(file)
--- a/
QuestPaths/quest-v1.json
+++ b/
QuestPaths/quest-v1.json
@@
-946,6
+946,7
@@
"Physick",
"Aspected Benefic",
"Form Shift",
+ "Fiery Breath",
"Buffet (Sanuwa)",
"Buffet (Griffin)",
"Trample",
diff --git
a/Questionable.Model/Questing/Converter/ActionConverter.cs
b/Questionable.Model/Questing/Converter/ActionConverter.cs
index d3a9050069b7bb17b9e4983e275ae387b8764168..86a1800b5dbe58945dfd65b35978d18d238a545c 100644
(file)
--- a/
Questionable.Model/Questing/Converter/ActionConverter.cs
+++ b/
Questionable.Model/Questing/Converter/ActionConverter.cs
@@
-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" },
diff --git
a/Questionable.Model/Questing/EAction.cs
b/Questionable.Model/Questing/EAction.cs
index 5fd172585abea39972177d491e03a9b095dd2fb9..4f79879786a50892c9a95bd0e2c1434c619bb39d 100644
(file)
--- a/
Questionable.Model/Questing/EAction.cs
+++ b/
Questionable.Model/Questing/EAction.cs
@@
-21,6
+21,7
@@
public enum EAction
Physick = 190,
AspectedBenefic = 3595,
FormShift = 4262,
+ FieryBreath = 1764,
BuffetSanuwa = 4931,
BuffetGriffin = 4583,
Trample = 4585,
@@
-70,7
+71,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