TermiteNasute
¶
Assumptions¶
While not required, this action assumes that this enemy is not alone in the enemy party. Typically, they will be paired with a TermiteSoldier, but it isn't strictly required. It mostly makes the condition grant move more logical.
HardMode changes¶
HardMode being true does the following changes:
- In the projectiles throw move, the amount of hits changes to be always 2 instead of being random between 2 and 3
- In the projectiles throw move, the speed of each Projectile call changes to 31.0 from 37.5
Move selection¶
3 moves are possible:
- A single target projectiles throw that may hit multiple times
- A single target slash attack
- Grants 1 of 3 beneficial condition to themselves or the first enemy party member other than themselves
The decision of which move to use is based on the following odds:
Move | Odds |
---|---|
1 | 2/5 |
2 | 2/5 |
3 | 1/5 |
However, move 3 may cause a reroll of the move selection by issuing a continue directive to the enemy action loop which restarts the entire action. The conditions in which this happens is complex and it depends who will receive the condition as well as which condition is selected to be inflicted.
The receiver is determined by doing the following:
- If this enemy is the last
enemydata
remaining, the receiver is this enemy - Otherwise, the reciever has 6/10 chance to be this enemy and 4/10 chance to be the first enemy party member who isn't this enemy
Whoever the receiver is, the condition to inflict to them is determined randomly with the following odds:
Condition | Odds |
---|---|
GradualHP | 2/4 |
AttackUp | 1/4 |
DefenseUp | 1/4 |
After selecting both the receive and the condition, the receiver must not have the condition already for the move to be used. If they have it already, a continue directive is issued to the enemy action loop which rerolls the entire move selection process.
Pre move logic¶
The following logic always happen before using a move:
locktri
is set to false (this doesn't do anything for this enemy)
Move 1 - Projectiles throw¶
A single target projectiles throw that may hit multiple times.
nonphyscal
set to true¶
This move always sets nonphyscal
to true which affects the effects of the FrostBite
, SpikeBod
and PoisonTouch
medal if equipped on the target.
Projectile calls¶
# | Conditions | damage | property | attacker | playertarget | obj | speed | height | extraargs | destroyparticle | audioonhit | audiomoving | spin | nosound |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | Always happen from 2 to 3 times (always 2 time if hardmode is true) | 2 | Poison | This enemy | playertargetID after GetSingleTarget (target is the same for each calls) |
A new sprite object rooted using the projectilepsrites[10] sprite (a honey projectile) positioned at this enemy + (-1.85, 1.65, -0.1) with scale of 0.75x and a color of pure magenta |
37.5 (31.0 instead if hardmode is true) | 0.0 | null | PoisonEffect |
PingDown |
null | Vector3.zero | false |
Logic sequence¶
- GetSingleTarget called
- Camera moves to look near the midpoint between thsi enemy and
playertargetentity
- animstate set to 102
- Yield for 0.5 seconds
Slash
sound plays- animstate set to 103
- Yield for 0.3 seconds
Charge7
sound plays- Yield for 0.45 seconds
- The amount of hits is determined which is random between 2 and 3 (always 2 if hardmode is true). A new SpriteRenderer array with this amount to hold the projectiles
- For each hit to do:
PingShot
sound plays- animstate set to 105 (104 instead if this is the last hit)
- The projectile element is set to a new sprite object rooted using the
projectilepsrites[10]
sprite (a honey projectile) positioned at this enemy + (-1.85, 1.65, -0.1) with scale of 0.75x - HitPart particles plays at the projectile element
- Projectile 1 call happens
- Yield for a frame
- The projectile element material color is set to pure magenta
- Yield for 0.75 seconds
- If this is the last hit, animstate is set to 13 (
BattleIdle
)
- Yield all frames until all projectiles element is null (all Projectile 1 calls completed)
Move 2 - Slash attack¶
A single target slash attack.
DoDamage calls¶
# | Conditions | attacker | target | damageammount | property | overrides | block |
---|---|---|---|---|---|---|---|
1 | Always happen | This enemy | playertargetID after GetSingleTarget |
4 | Flip1 | null | commandsuccess |
1: This property gets overriden to null in CalculateBaseDamage as the target is a player party member so it does nothing.
Logic sequence¶
- GetSingleTarget called
- Camera moves to look near
playerdata[playertargetID]
- MoveTowards
playertargetentity
position + (1.5, 0.0, -0.1) with a 2.0 multiplier, 1 (Walk
) as walkstate and 100 as stopstate - Yield all frames until
forcemove
is done Spin9
sound plays- Yield for a random interval between 0.45 and 0.65 seconds
- animstate set to 101
Slash2
sound plays- DoDamage 1 call happens
- Yield for 0.5 seconds
Move 3 - Grants a benefical condition to themselves or another enemy party member¶
Grants 1 of 3 beneficial condition to themselves or the first enemy party member other than themselves.
NOTE: If the GradualHP condition is selected, it will be inflicted on this enemy multiple times (once for each enemy party member that exists including this enemy) which is unexpected as it was presumably supposed to inflict the condition once on each enemy party member.
See the move selection process to see how the receiver and the condition to inflict is determined.
Logic sequence¶
- The receiver and the condition to inflict on them is determined as mentioned in the move selection section
ItemHold
sound plays- animstate set to 4 (
ItemGet
) - A new sprite object is created rooted at this enemy position + (-0.75, 3.0, -0.1). The sprite to use is an item sprite and which one is used depends on the condition to inflict:
- Yield for a second
- animstate set to the local startstate
- The item sprite is destroyed
- The logic of the condition to inflict happens:
- GradualHP:
Heal2
sound plays- For each
enemydata
elements SetCondition is called to inflict the condition for 2 main turns on this enemy (NOT eachenemydata
) followed by theMagicUp
particles played at this enemy position (NOT eachenemydata
position). Effectively, if there are multiple enemy party members, this enemy will get the condition for an amount of main turn equal to 2 * the amount of enemy party members
- AttackUp: StatusEffect is called to inflict the condition on the receiver for 2 main turns with effect
- DefenseUp: StatusEffect is called to inflict the condition on the receiver for 2 main turns with effect
- GradualHP:
- Yield for 0.5 seconds