🌱
The Insurgent's Forge
  • Home
  • Getting Started
    • Setup
    • Resources
  • Overview
    • Configuration
      • Formulas
      • Functions
      • Classes
      • Helpers
      • Assemblies
      • Middlewares
      • Dependencies
      • Options
      • Errors
    • Improvements & Additions
    • Structures & Parameters
    • Formula Workflow
      • Combo
      • Counter
      • Area of Effect
      • Reserve Party Member
      • Reflect
      • Mist
      • Trap
      • Chain Benefit
      • Summon
      • Spawn
      • Gambit
    • Limitations
      • Animations
      • Status Effects & Augments
    • Notes
      • Flags
      • Loops
      • Function in a Function
    • Helpers
      • Add Augment
      • Add Status Effect
      • Apply Knockback
      • Get Active Party Member
      • Get Action Status Effects
      • Get Augment Duration
      • Get Battle Unit Keep
      • Get Battle Unit Keep By Focus
      • Get Battle Unit Work
      • Get Character Max Hp
      • Get Character Max Mp
      • Get Character Type
      • Get Elemental Affinities Match
      • Get Equipment Status Effects
      • Get Forced Poach Rarity
      • Get Forced Steal Rarity
      • Get Formula Proc Keep
      • Get Knockback Range
      • Get Location Mist Strength
      • Get Model Evade Types
      • Get One Hit Kill State
      • Get Random Number
      • Get Reflect Target
      • Get Remedy Status Effects
      • Get Status Effect Duration
      • Get Status Effect Tick Duration
      • Get Status Effects Match
      • Get Terrain Type
      • Get Weather
      • Is Interactable
      • Modify Content
      • Modify Gil
      • Modify Hp
      • Modify Mist Charges
      • Modify Mp
      • Modify Sky Pirates Den Stats
      • Refresh Stats
      • Remove Augment
      • Remove Status Effect
      • Set Level
      • Shift Elements
      • Show Combat Log
      • Show Number Text
      • Teleport Location
  • Support & Updates
    • Changelogs
      • Version 1.0.3
      • Version 1.0.2
      • Version 1.0.1
      • Version 1.0.0
    • Known Issues
    • FAQ
Powered by GitBook
On this page
  1. Overview
  2. Formula Workflow

Reflect

PreviousReserve Party MemberNextMist

Last updated 5 months ago

Example

Vaan, Balthier and Ashe are in the active party and in a battle with Wolf A and Wolf B. Wolf A is the nearest one to Ashe while Wolf B is the nearest one to Vaan. All except Balthier have the status effect Reflect. Vaan casts Cura on Ashe.

Order
Middleware
Caster
Target
1

On Cast

Vaan

Ashe

2

On Cast

Vaan

Wolf A

3

On Cast

Vaan

Vaan

4

On Cast

Vaan

Wolf B

5

On Cast

Vaan

Balthier

6

On Hit

Vaan

Wolf A

7

On Hit

Vaan

Wolf B

8

On Hit

Vaan

Balthier

First, the initial target will be checked, followed by those within the area of effect range. If any target has the status effect Reflect, the action will be redirected towards the nearest opposing target instead. The order of subsequent targets is based on when they spawned.

An action will only be reflected once, which is why Wolf A and Wolf B also having the status effect Reflect has no effect.

If is used, the order will instead be as follows:

Order
Middleware
Caster
Target
1

On Cast

Vaan

Ashe

2

On Cast

Vaan

Vaan

3

On Cast

Vaan

Balthier

4

On Cast

Vaan

Wolf A

5

On Hit

Vaan

Wolf A

6

On Cast

Vaan

Wolf B

7

On Hit

Vaan

Wolf B

8

On Hit

Vaan

Balthier

Smart Reflect