projects
/
Questionable.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1627d43
)
Added new action Trample
author
Plogon Enjoyer
<plogon_enjoyer@no-reply.com>
Tue, 3 Sep 2024 15:34:31 +0000
(23:34 +0800)
committer
Plogon Enjoyer
<plogon_enjoyer@no-reply.com>
Tue, 3 Sep 2024 15:34:31 +0000
(23:34 +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 c7ebd5fa57afc509cbb2ce51068dafd1b7e6c8c9..68a7aeada306cfbc4c55ce4e2c5444c2bd530081 100644
(file)
--- a/
QuestPaths/quest-v1.json
+++ b/
QuestPaths/quest-v1.json
@@
-861,6
+861,7
@@
"Physick",
"Buffet (Sanuwa)",
"Buffet (Griffin)",
+ "Trample",
"Fumigate",
"Siphon Snout",
"Cannonfire",
diff --git
a/Questionable.Model/Questing/Converter/ActionConverter.cs
b/Questionable.Model/Questing/Converter/ActionConverter.cs
index 5c6bea0afeccdc4e2b60d4a7ce21e49b1efe1e24..737a818e0e022c932962f4138f81777162c58420 100644
(file)
--- a/
Questionable.Model/Questing/Converter/ActionConverter.cs
+++ b/
Questionable.Model/Questing/Converter/ActionConverter.cs
@@
-15,6
+15,7
@@
public sealed class ActionConverter() : EnumConverter<EAction>(Values)
{ EAction.Physick, "Physick" },
{ EAction.BuffetSanuwa, "Buffet (Sanuwa)" },
{ EAction.BuffetGriffin, "Buffet (Griffin)" },
+ { EAction.Trample, "Trample" },
{ EAction.Fumigate, "Fumigate" },
{ EAction.SiphonSnout, "Siphon Snout" },
{ EAction.Cannonfire, "Cannonfire" },
diff --git
a/Questionable.Model/Questing/EAction.cs
b/Questionable.Model/Questing/EAction.cs
index 5ca20daf6ad933e569e39096e3ed1a263f7afee1..eac75924ce312393e67ced8ce5130f4d90d98a31 100644
(file)
--- a/
Questionable.Model/Questing/EAction.cs
+++ b/
Questionable.Model/Questing/EAction.cs
@@
-14,6
+14,7
@@
public enum EAction
Physick = 190,
BuffetSanuwa = 4931,
BuffetGriffin = 4583,
+ Trample = 4585,
Fumigate = 5872,
SiphonSnout = 18187,
Cannonfire = 20121,
@@
-48,6
+49,7
@@
public static class EActionExtensions
return action
is EAction.BuffetSanuwa
or EAction.BuffetGriffin
+ or EAction.Trample
or EAction.Fumigate
or EAction.SiphonSnout
or EAction.Cannonfire