Skip to content

Commit bae1cd3

Browse files
authored
docs: added remaining wip documentation (#122)
1 parent 9be7946 commit bae1cd3

60 files changed

Lines changed: 7257 additions & 155 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/.nav.yml

Lines changed: 37 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,44 @@ nav:
1111
- app/library.md
1212
- Auto Battle:
1313
- Configuration:
14-
- battle/config.md
15-
- battle/card-priority.md
16-
- battle/materials.md
17-
- battle/skill-maker.md
18-
- battle/support.md
14+
- battle-setup/config.md
15+
- battle-setup/card-priority.md
16+
- battle-setup/materials.md
17+
- battle-setup/skill-maker.md
18+
- battle-setup/support.md
1919
- How to get started:
20-
- battle/launcher.md
20+
- battle-setup/launcher.md
21+
- In-battle:
22+
- in-battle/auto-battle.md
23+
- Card Selection:
24+
- in-battle/card-selection/face-card-priority.md
25+
- in-battle/card-selection/brave-chains.md
26+
- in-battle/card-selection/shuffle-cards.md
27+
- Skill System:
28+
- in-battle/skill-system/skill-execution.md
29+
- in-battle/skill-system/auto-target.md
30+
- Tracking:
31+
- in-battle/tracking/stage-tracking.md
32+
- in-battle/tracking/servant-tracking.md
33+
- in-battle/tracking/materials-tracking.md
34+
- in-battle/tracking/ce-drops.md
35+
- Resources:
36+
- in-battle/resources/energy-refill.md
37+
- in-battle/resources/teapots.md
38+
- Script Control:
39+
- in-battle/script-control/party-selection.md
40+
- in-battle/script-control/withdraw.md
41+
- in-battle/script-control/auto-battle-exit-reasons.md
42+
- in-battle/script-control/screen-detection.md
43+
- Support screen:
44+
- support-screen/class-picker.md
45+
- support-screen/refresh.md
46+
- support-screen/selection-modes.md
47+
- Preferred Support:
48+
- support-screen/preferred-servant.md
49+
- support-screen/preferred-ce.md
50+
- support-screen/preferred-friend.md
51+
- support-screen/grand-servant.md
2152
- scripts/auto-level-servant.md
2253
- scripts/auto-level-ce.md
2354
- scripts/auto-ce-exp-bomb.md
-1.63 KB
Loading
-3.54 KB
Loading
38.8 KB
Loading
-6.52 KB
Loading

docs/battle-setup/card-priority.md

Lines changed: 263 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,263 @@
1+
---
2+
title: Command Card Priority
3+
description: Configure command card selection priority in FGA Preview. Set up Buster, Arts, Quick chain preferences and NP card priorities for automated battles.
4+
tags:
5+
- battle
6+
- cards
7+
- NP
8+
- configuration
9+
---
10+
11+
# Command Card Priority
12+
13+
Configure how FGA selects and prioritizes command cards during battle.
14+
15+
## Overview
16+
17+
The Command Card screen lets you control how the app chooses which attack cards to click during battle. You can set up priorities for different card types, servant order, and chain strategies for each wave of a quest.
18+
19+
## How to Access
20+
21+
1. Open a **Battle Config** from the main app
22+
2. Tap on **Command Card** to open the priority settings
23+
24+
---
25+
26+
## Main Settings
27+
28+
### Use Servant Priority
29+
30+
When enabled, cards are first grouped by servant before applying card priorities.
31+
32+
- **Off**: Cards are selected purely by card type priority (Buster, Arts, Quick)
33+
- **On**: Cards from preferred servants are chosen first, then sorted by card type within each servant's cards
34+
35+
**Example**: If Servant 1 is your highest priority and has a Quick card, it will be selected before Servant 2's Buster card, even if Buster is normally prioritized higher.
36+
37+
### Use Critical Star Priority
38+
39+
When enabled, cards with high critical hit chances are prioritized.
40+
41+
- **Off**: Critical chance is ignored
42+
- **On**: Cards with higher critical percentages are preferred within the same priority level
43+
44+
---
45+
46+
## Wave Configuration
47+
48+
Each quest can have up to 3 waves, and you can set different priorities for each wave. This is useful because your strategy might change as you progress through a quest.
49+
50+
### Adding and Removing Waves
51+
52+
- **Add Wave**: Tap the floating action button (+) to add a new wave configuration (maximum 3)
53+
- **Remove Wave**: Tap the delete icon on a wave card to remove it
54+
55+
---
56+
57+
## Card Priority
58+
59+
The card priority list determines which card types are selected first. Cards at the top have the highest priority.
60+
61+
### Card Types
62+
63+
| Abbreviation | Meaning |
64+
|--------------|---------|
65+
| **B** | Buster card |
66+
| **A** | Arts card |
67+
| **Q** | Quick card |
68+
69+
### Card Affinities
70+
71+
| Prefix | Meaning |
72+
|--------|---------|
73+
| **W** | Weak (class advantage - more damage) |
74+
| _(none)_ | Normal (neutral damage) |
75+
| **R** | Resist (class disadvantage - less damage) |
76+
77+
### Critical Modifier
78+
79+
| Suffix | Meaning |
80+
|--------|---------|
81+
| **C** | Critical (high critical chance) |
82+
| _(none)_ | Non-critical |
83+
84+
### Examples
85+
86+
| Code | Full Name |
87+
|------|-----------|
88+
| **WBC** | Weak Buster Critical |
89+
| **WB** | Weak Buster |
90+
| **BC** | Buster Critical |
91+
| **B** | Buster |
92+
| **WAC** | Weak Arts Critical |
93+
| **RA** | Resist Arts |
94+
95+
### Default Priority
96+
97+
The default card priority order is:
98+
99+
```text
100+
WBC, WAC, WQC, WB, WA, WQ, BC, AC, QC, B, A, Q, RB, RA, RQ
101+
```
102+
103+
This means:
104+
105+
1. Weak cards with critical chance are picked first (best damage)
106+
2. Then weak cards without critical
107+
3. Then normal cards with critical
108+
4. Then normal cards
109+
5. Finally resist cards (lowest priority)
110+
111+
### Reordering Cards
112+
113+
1. Tap **Edit** on the Card Priority section
114+
2. Drag cards up or down using the handle icon
115+
3. Higher position = higher priority
116+
117+
---
118+
119+
## Servant Priority
120+
121+
When "Use Servant Priority" is enabled, you can configure which servant's cards are selected first.
122+
123+
### Team Slots
124+
125+
Servants are identified by their team position (1-6):
126+
127+
| Position | Description |
128+
|----------|-------------|
129+
| **1** | First servant (leftmost in party) |
130+
| **2** | Second servant |
131+
| **3** | Third servant |
132+
| **4** | Fourth servant (first backup) |
133+
| **5** | Fifth servant (second backup) |
134+
| **6** | Sixth servant (third backup) |
135+
136+
### How It Works
137+
138+
```text
139+
Example: Servant Priority = [3, 1, 2]
140+
Card Priority = [B, A, Q]
141+
142+
Step 1: Group cards by servant
143+
Servant 3: Arts, Quick
144+
Servant 1: Buster, Arts
145+
Servant 2: Quick, Buster
146+
147+
Step 2: For each servant (in priority order), sort their cards
148+
Servant 3: Arts, Quick (Arts > Quick by card priority)
149+
Servant 1: Buster, Arts (Buster > Arts)
150+
Servant 2: Buster, Quick (Buster > Quick)
151+
152+
Step 3: Final order
153+
[Servant 3 Arts] → [Servant 3 Quick] → [Servant 1 Buster] → ...
154+
```
155+
156+
### Reordering Servants
157+
158+
1. Tap **Edit** on the Servant Priority section
159+
2. Drag servants up or down using the handle icon
160+
3. Servants at the top have their cards selected first
161+
162+
---
163+
164+
## Brave Chains
165+
166+
Brave Chains occur when you select three cards from the same servant, giving bonus damage.
167+
168+
### Options
169+
170+
| Option | Behavior |
171+
|--------|----------|
172+
| **None** | No special handling for brave chains |
173+
| **With NP** | Try to form brave chains with NP cards |
174+
| **With NP Mighty** | Try to form mighty chains (3 different card types) with NP |
175+
| **Avoid** | Actively avoid brave chains by spreading cards across servants |
176+
177+
### When to Use Each
178+
179+
- **None**: Default, let card priority decide naturally
180+
- **With NP**: When your main damage dealer is using their NP and you want to maximize their damage
181+
- **With NP Mighty**: When you want varied card types for the mighty chain bonus
182+
- **Avoid**: When you want to spread damage or generate stars/NP for multiple servants
183+
184+
---
185+
186+
## Rearrange Cards
187+
188+
When enabled, cards are rearranged to optimize damage within the selected cards.
189+
190+
### How Rearrange Cards Works
191+
192+
In FGO, the 3rd card in a chain gets bonus damage. When rearrange is enabled:
193+
194+
1. The app selects the top 3 cards by priority
195+
2. It moves the 2nd highest priority card to the 3rd position
196+
3. This gives the bonus damage to a better card
197+
198+
**Example**:
199+
200+
- Without rearrange: Card A → Card B → Card C (in priority order)
201+
- With rearrange: Card A → Card C → Card B (Card B gets 3rd position bonus)
202+
203+
---
204+
205+
## Per-Wave Strategy Example
206+
207+
Here's an example of how you might configure different waves:
208+
209+
### Wave 1 (Farming weak enemies)
210+
211+
- **Card Priority**: Quick-focused for NP generation
212+
- **Brave Chain**: None
213+
- **Rearrange**: Off
214+
215+
### Wave 2 (Medium enemies)
216+
217+
- **Card Priority**: Arts-focused to charge NP
218+
- **Brave Chain**: Avoid (spread damage)
219+
- **Rearrange**: On
220+
221+
### Wave 3 (Boss wave)
222+
223+
- **Card Priority**: Buster-focused for maximum damage
224+
- **Brave Chain**: With NP (maximize main DPS output)
225+
- **Rearrange**: On
226+
227+
---
228+
229+
## Tips for Effective Configuration
230+
231+
1. **Match priorities to your team**: If your main damage dealer uses Buster cards, prioritize Buster
232+
2. **Consider class advantage**: The "Weak" prefix cards deal more damage against enemies weak to your servants
233+
3. **Use servant priority for focused damage**: Set your main DPS servant as highest priority
234+
4. **Enable critical stars for inconsistent teams**: If your critical star generation varies, enable this to capitalize on lucky draws
235+
5. **Set up multiple waves**: Different priorities for different phases of a quest can significantly improve clear times
236+
237+
---
238+
239+
## Troubleshooting
240+
241+
### Cards aren't being selected in my expected order
242+
243+
- Check if "Use Servant Priority" is affecting the selection
244+
- Verify the card priority list order
245+
- Remember that critical stars can affect selection when enabled
246+
247+
### Brave chains aren't forming
248+
249+
- Ensure "Brave Chain" is set to "With NP" or "With NP Mighty"
250+
- The servant needs to have 3 cards available on screen
251+
- NPs must be ready for NP-based brave chains
252+
253+
### The app is picking resist cards
254+
255+
- Move resist cards lower in the priority list
256+
- Or remove them entirely if you never want them selected
257+
258+
---
259+
260+
## Related Documentation
261+
262+
- [Auto Battle](../in-battle/auto-battle.md) - Overall battle automation
263+
- [Skill Maker](skill-maker.md) - Configure skill execution during battle

0 commit comments

Comments
 (0)