projects
/
Questionable.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b082e8a
)
Action: Dismount
author
Stefan Belmont
<stefan@goatzone.net>
Sat, 28 Sep 2024 04:53:25 +0000
(
05:53
+0100)
committer
Stefan Belmont
<stefan@goatzone.net>
Sat, 28 Sep 2024 04:53:25 +0000
(
05:53
+0100)
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 0c0661f7487425c1e68db6a1c9376535d8e91deb..163d32079348a1244356c58433f0fa9233ac8828 100644
(file)
--- a/
QuestPaths/quest-v1.json
+++ b/
QuestPaths/quest-v1.json
@@
-919,7
+919,8
@@
"Yellow Gulal",
"Blue Gulal",
"Electric Flux",
- "Hop-step"
+ "Hop-step",
+ "Dismount"
]
}
},
diff --git
a/Questionable.Model/Questing/Converter/ActionConverter.cs
b/Questionable.Model/Questing/Converter/ActionConverter.cs
index 32a6654fa6df9c6a422c90544b850cb2e10b72ec..fba2b1698fde66b727fc850dd4216e66b95fca71 100644
(file)
--- a/
Questionable.Model/Questing/Converter/ActionConverter.cs
+++ b/
Questionable.Model/Questing/Converter/ActionConverter.cs
@@
-34,5
+34,6
@@
public sealed class ActionConverter() : EnumConverter<EAction>(Values)
{ EAction.BlueGulal, "Blue Gulal" },
{ EAction.ElectrixFlux, "Electric Flux" },
{ EAction.HopStep, "Hop-step" },
+ { EAction.Dismount, "Dismount" },
};
}
diff --git
a/Questionable.Model/Questing/EAction.cs
b/Questionable.Model/Questing/EAction.cs
index bcc676e40a783003323a0e8ac5ef12cb329bef6b..d331d80c06d000a9f8ff8e73a0241ef259b9fed0 100644
(file)
--- a/
Questionable.Model/Questing/EAction.cs
+++ b/
Questionable.Model/Questing/EAction.cs
@@
-14,7
+14,7
@@
public enum EAction
HeavyShot = 97,
Cure = 120,
Cure2 = 135,
- Eukrasia = 24290,
+ Eukrasia = 24290,
Diagnosis = 24284,
EukrasianDiagnosis = 24291,
Esuna = 7568,
@@
-35,6
+35,7
@@
public enum EAction
BlueGulal = 29384,
ElectrixFlux = 29718,
HopStep = 31116,
+ Dismount = 23,
CollectMiner = 240,
ScourMiner = 22182,
@@
-70,6
+71,7
@@
public static class EActionExtensions
or EAction.YellowGulal
or EAction.BlueGulal
or EAction.ElectrixFlux
- or EAction.HopStep;
+ or EAction.HopStep
+ or EAction.Dismount;
}
}