11109 lines
444 KiB
C
11109 lines
444 KiB
C
#include "global.h"
|
|
#include "battle.h"
|
|
#include "battle_anim.h"
|
|
#include "battle_arena.h"
|
|
#include "battle_pyramid.h"
|
|
#include "battle_util.h"
|
|
#include "battle_controllers.h"
|
|
#include "battle_interface.h"
|
|
#include "battle_setup.h"
|
|
#include "battle_z_move.h"
|
|
#include "party_menu.h"
|
|
#include "pokemon.h"
|
|
#include "international_string_util.h"
|
|
#include "item.h"
|
|
#include "util.h"
|
|
#include "battle_scripts.h"
|
|
#include "random.h"
|
|
#include "text.h"
|
|
#include "safari_zone.h"
|
|
#include "sound.h"
|
|
#include "sprite.h"
|
|
#include "string_util.h"
|
|
#include "task.h"
|
|
#include "test_runner.h"
|
|
#include "trig.h"
|
|
#include "window.h"
|
|
#include "battle_message.h"
|
|
#include "battle_ai_main.h"
|
|
#include "battle_ai_util.h"
|
|
#include "event_data.h"
|
|
#include "link.h"
|
|
#include "malloc.h"
|
|
#include "berry.h"
|
|
#include "pokedex.h"
|
|
#include "mail.h"
|
|
#include "field_weather.h"
|
|
#include "constants/abilities.h"
|
|
#include "constants/battle_anim.h"
|
|
#include "constants/battle_move_effects.h"
|
|
#include "constants/battle_script_commands.h"
|
|
#include "constants/battle_string_ids.h"
|
|
#include "constants/hold_effects.h"
|
|
#include "constants/items.h"
|
|
#include "constants/moves.h"
|
|
#include "constants/songs.h"
|
|
#include "constants/species.h"
|
|
#include "constants/trainers.h"
|
|
#include "constants/weather.h"
|
|
#include "constants/pokemon.h"
|
|
|
|
/*
|
|
NOTE: The data and functions in this file up until (but not including) sSoundMovesTable
|
|
are actually part of battle_main.c. They needed to be moved to this file in order to
|
|
match the ROM; this is also why sSoundMovesTable's declaration is in the middle of
|
|
functions instead of at the top of the file with the other declarations.
|
|
*/
|
|
|
|
static bool32 TryRemoveScreens(u32 battler);
|
|
static bool32 IsUnnerveAbilityOnOpposingSide(u32 battler);
|
|
static u32 GetFlingPowerFromItemId(u32 itemId);
|
|
static void SetRandomMultiHitCounter();
|
|
static u32 GetBattlerItemHoldEffectParam(u32 battler, u32 item);
|
|
static uq4_12_t GetSupremeOverlordModifier(u32 battler);
|
|
static bool32 CanBeInfinitelyConfused(u32 battler);
|
|
|
|
extern const u8 *const gBattleScriptsForMoveEffects[];
|
|
extern const u8 *const gBattlescriptsForRunningByItem[];
|
|
extern const u8 *const gBattlescriptsForUsingItem[];
|
|
extern const u8 *const gBattlescriptsForSafariActions[];
|
|
|
|
static const u8 sPkblToEscapeFactor[][3] = {
|
|
{
|
|
[B_MSG_MON_CURIOUS] = 0,
|
|
[B_MSG_MON_ENTHRALLED] = 0,
|
|
[B_MSG_MON_IGNORED] = 0
|
|
},{
|
|
[B_MSG_MON_CURIOUS] = 3,
|
|
[B_MSG_MON_ENTHRALLED] = 5,
|
|
[B_MSG_MON_IGNORED] = 0
|
|
},{
|
|
[B_MSG_MON_CURIOUS] = 2,
|
|
[B_MSG_MON_ENTHRALLED] = 3,
|
|
[B_MSG_MON_IGNORED] = 0
|
|
},{
|
|
[B_MSG_MON_CURIOUS] = 1,
|
|
[B_MSG_MON_ENTHRALLED] = 2,
|
|
[B_MSG_MON_IGNORED] = 0
|
|
},{
|
|
[B_MSG_MON_CURIOUS] = 1,
|
|
[B_MSG_MON_ENTHRALLED] = 1,
|
|
[B_MSG_MON_IGNORED] = 0
|
|
}
|
|
};
|
|
static const u8 sGoNearCounterToCatchFactor[] = {4, 3, 2, 1};
|
|
static const u8 sGoNearCounterToEscapeFactor[] = {4, 4, 4, 4};
|
|
|
|
static u8 CalcBeatUpPower(void)
|
|
{
|
|
u8 basePower;
|
|
u16 species;
|
|
struct Pokemon *party = GetBattlerParty(gBattlerAttacker);
|
|
|
|
// Party slot is incremented by the battle script for Beat Up after this damage calculation
|
|
species = GetMonData(&party[gBattleStruct->beatUpSlot], MON_DATA_SPECIES);
|
|
basePower = (gSpeciesInfo[species].baseAttack / 10) + 5;
|
|
|
|
return basePower;
|
|
}
|
|
|
|
bool32 IsAffectedByFollowMe(u32 battlerAtk, u32 defSide, u32 move)
|
|
{
|
|
u32 ability = GetBattlerAbility(battlerAtk);
|
|
|
|
if (gSideTimers[defSide].followmeTimer == 0
|
|
|| gBattleMons[gSideTimers[defSide].followmeTarget].hp == 0
|
|
|| gBattleMoves[move].effect == EFFECT_SNIPE_SHOT
|
|
|| gBattleMoves[move].effect == EFFECT_SKY_DROP
|
|
|| ability == ABILITY_PROPELLER_TAIL || ability == ABILITY_STALWART)
|
|
return FALSE;
|
|
|
|
if (gSideTimers[defSide].followmePowder && !IsAffectedByPowder(battlerAtk, ability, GetBattlerHoldEffect(battlerAtk, TRUE)))
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
// Functions
|
|
void HandleAction_UseMove(void)
|
|
{
|
|
u32 battler, i, side, moveType, var = 4;
|
|
u16 moveTarget;
|
|
|
|
gBattlerAttacker = gBattlerByTurnOrder[gCurrentTurnActionNumber];
|
|
if (gBattleStruct->absentBattlerFlags & gBitTable[gBattlerAttacker] || !IsBattlerAlive(gBattlerAttacker))
|
|
{
|
|
gCurrentActionFuncId = B_ACTION_FINISHED;
|
|
return;
|
|
}
|
|
|
|
gIsCriticalHit = FALSE;
|
|
gBattleStruct->atkCancellerTracker = 0;
|
|
gMoveResultFlags = 0;
|
|
gMultiHitCounter = 0;
|
|
gBattleScripting.savedDmg = 0;
|
|
gBattleCommunication[MISS_TYPE] = 0;
|
|
gBattleScripting.savedMoveEffect = 0;
|
|
gCurrMovePos = gChosenMovePos = *(gBattleStruct->chosenMovePositions + gBattlerAttacker);
|
|
|
|
// choose move
|
|
if (gProtectStructs[gBattlerAttacker].noValidMoves)
|
|
{
|
|
gProtectStructs[gBattlerAttacker].noValidMoves = FALSE;
|
|
gCurrentMove = gChosenMove = MOVE_STRUGGLE;
|
|
gHitMarker |= HITMARKER_NO_PPDEDUCT;
|
|
*(gBattleStruct->moveTarget + gBattlerAttacker) = GetMoveTarget(MOVE_STRUGGLE, NO_TARGET_OVERRIDE);
|
|
}
|
|
else if (gBattleMons[gBattlerAttacker].status2 & STATUS2_MULTIPLETURNS || gBattleMons[gBattlerAttacker].status2 & STATUS2_RECHARGE)
|
|
{
|
|
gCurrentMove = gChosenMove = gLockedMoves[gBattlerAttacker];
|
|
}
|
|
// encore forces you to use the same move
|
|
else if (!gBattleStruct->zmove.active && gDisableStructs[gBattlerAttacker].encoredMove != MOVE_NONE
|
|
&& gDisableStructs[gBattlerAttacker].encoredMove == gBattleMons[gBattlerAttacker].moves[gDisableStructs[gBattlerAttacker].encoredMovePos])
|
|
{
|
|
gCurrentMove = gChosenMove = gDisableStructs[gBattlerAttacker].encoredMove;
|
|
gCurrMovePos = gChosenMovePos = gDisableStructs[gBattlerAttacker].encoredMovePos;
|
|
*(gBattleStruct->moveTarget + gBattlerAttacker) = GetMoveTarget(gCurrentMove, NO_TARGET_OVERRIDE);
|
|
}
|
|
// check if the encored move wasn't overwritten
|
|
else if (!gBattleStruct->zmove.active && gDisableStructs[gBattlerAttacker].encoredMove != MOVE_NONE
|
|
&& gDisableStructs[gBattlerAttacker].encoredMove != gBattleMons[gBattlerAttacker].moves[gDisableStructs[gBattlerAttacker].encoredMovePos])
|
|
{
|
|
gCurrMovePos = gChosenMovePos = gDisableStructs[gBattlerAttacker].encoredMovePos;
|
|
gCurrentMove = gChosenMove = gBattleMons[gBattlerAttacker].moves[gCurrMovePos];
|
|
gDisableStructs[gBattlerAttacker].encoredMove = MOVE_NONE;
|
|
gDisableStructs[gBattlerAttacker].encoredMovePos = 0;
|
|
gDisableStructs[gBattlerAttacker].encoreTimer = 0;
|
|
*(gBattleStruct->moveTarget + gBattlerAttacker) = GetMoveTarget(gCurrentMove, NO_TARGET_OVERRIDE);
|
|
}
|
|
else if (gBattleMons[gBattlerAttacker].moves[gCurrMovePos] != gChosenMoveByBattler[gBattlerAttacker])
|
|
{
|
|
gCurrentMove = gChosenMove = gBattleMons[gBattlerAttacker].moves[gCurrMovePos];
|
|
*(gBattleStruct->moveTarget + gBattlerAttacker) = GetMoveTarget(gCurrentMove, NO_TARGET_OVERRIDE);
|
|
}
|
|
else
|
|
{
|
|
gCurrentMove = gChosenMove = gBattleMons[gBattlerAttacker].moves[gCurrMovePos];
|
|
}
|
|
|
|
// check z move used
|
|
if (gBattleStruct->zmove.toBeUsed[gBattlerAttacker] != MOVE_NONE && !IS_MOVE_STATUS(gCurrentMove))
|
|
{
|
|
gCurrentMove = gBattleStruct->zmove.toBeUsed[gBattlerAttacker];
|
|
}
|
|
|
|
if (gBattleMons[gBattlerAttacker].hp != 0)
|
|
{
|
|
if (GetBattlerSide(gBattlerAttacker) == B_SIDE_PLAYER)
|
|
gBattleResults.lastUsedMovePlayer = gCurrentMove;
|
|
else
|
|
gBattleResults.lastUsedMoveOpponent = gCurrentMove;
|
|
}
|
|
|
|
// Set dynamic move type.
|
|
SetTypeBeforeUsingMove(gChosenMove, gBattlerAttacker);
|
|
GET_MOVE_TYPE(gChosenMove, moveType);
|
|
|
|
// check max move used
|
|
if (gBattleStruct->dynamax.usingMaxMove[gBattlerAttacker])
|
|
{
|
|
gCurrentMove = gChosenMove = GetMaxMove(gBattlerAttacker, gCurrentMove);
|
|
gBattleStruct->dynamax.activeCategory = gBattleStruct->dynamax.categories[gBattlerAttacker];
|
|
}
|
|
|
|
moveTarget = GetBattlerMoveTargetType(gBattlerAttacker, gCurrentMove);
|
|
|
|
// choose target
|
|
side = BATTLE_OPPOSITE(GetBattlerSide(gBattlerAttacker));
|
|
if (IsAffectedByFollowMe(gBattlerAttacker, side, gCurrentMove)
|
|
&& moveTarget == MOVE_TARGET_SELECTED
|
|
&& GetBattlerSide(gBattlerAttacker) != GetBattlerSide(gSideTimers[side].followmeTarget))
|
|
{
|
|
gBattleStruct->moveTarget[gBattlerAttacker] = gBattlerTarget = gSideTimers[side].followmeTarget; // follow me moxie fix
|
|
}
|
|
else if ((gBattleTypeFlags & BATTLE_TYPE_DOUBLE)
|
|
&& gSideTimers[side].followmeTimer == 0
|
|
&& (gBattleMoves[gCurrentMove].power != 0 || (moveTarget != MOVE_TARGET_USER && moveTarget != MOVE_TARGET_ALL_BATTLERS))
|
|
&& ((GetBattlerAbility(*(gBattleStruct->moveTarget + gBattlerAttacker)) != ABILITY_LIGHTNING_ROD && moveType == TYPE_ELECTRIC)
|
|
|| (GetBattlerAbility(*(gBattleStruct->moveTarget + gBattlerAttacker)) != ABILITY_STORM_DRAIN && moveType == TYPE_WATER)))
|
|
{
|
|
side = GetBattlerSide(gBattlerAttacker);
|
|
for (battler = 0; battler < gBattlersCount; battler++)
|
|
{
|
|
if (side != GetBattlerSide(battler)
|
|
&& *(gBattleStruct->moveTarget + gBattlerAttacker) != battler
|
|
&& ((GetBattlerAbility(battler) == ABILITY_LIGHTNING_ROD && moveType == TYPE_ELECTRIC)
|
|
|| (GetBattlerAbility(battler) == ABILITY_STORM_DRAIN && moveType == TYPE_WATER))
|
|
&& GetBattlerTurnOrderNum(battler) < var
|
|
&& gBattleMoves[gCurrentMove].effect != EFFECT_SNIPE_SHOT
|
|
&& gBattleMoves[gCurrentMove].effect != EFFECT_PLEDGE
|
|
&& (GetBattlerAbility(gBattlerAttacker) != ABILITY_PROPELLER_TAIL
|
|
|| GetBattlerAbility(gBattlerAttacker) != ABILITY_STALWART))
|
|
{
|
|
var = GetBattlerTurnOrderNum(battler);
|
|
}
|
|
}
|
|
if (var == 4)
|
|
{
|
|
if (moveTarget & MOVE_TARGET_RANDOM)
|
|
{
|
|
if (GetBattlerSide(gBattlerAttacker) == B_SIDE_PLAYER)
|
|
{
|
|
if (Random() & 1)
|
|
gBattlerTarget = GetBattlerAtPosition(B_POSITION_OPPONENT_LEFT);
|
|
else
|
|
gBattlerTarget = GetBattlerAtPosition(B_POSITION_OPPONENT_RIGHT);
|
|
}
|
|
else
|
|
{
|
|
if (Random() & 1)
|
|
gBattlerTarget = GetBattlerAtPosition(B_POSITION_PLAYER_LEFT);
|
|
else
|
|
gBattlerTarget = GetBattlerAtPosition(B_POSITION_PLAYER_RIGHT);
|
|
}
|
|
}
|
|
else if (moveTarget & MOVE_TARGET_FOES_AND_ALLY)
|
|
{
|
|
for (gBattlerTarget = 0; gBattlerTarget < gBattlersCount; gBattlerTarget++)
|
|
{
|
|
if (gBattlerTarget == gBattlerAttacker)
|
|
continue;
|
|
if (IsBattlerAlive(gBattlerTarget))
|
|
break;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
gBattlerTarget = *(gBattleStruct->moveTarget + gBattlerAttacker);
|
|
}
|
|
|
|
if (!IsBattlerAlive(gBattlerTarget))
|
|
{
|
|
if (GetBattlerSide(gBattlerAttacker) != GetBattlerSide(gBattlerTarget))
|
|
{
|
|
gBattlerTarget = GetBattlerAtPosition(BATTLE_PARTNER(GetBattlerPosition(gBattlerTarget)));
|
|
}
|
|
else
|
|
{
|
|
gBattlerTarget = GetBattlerAtPosition(BATTLE_OPPOSITE(GetBattlerPosition(gBattlerAttacker)));
|
|
if (!IsBattlerAlive(gBattlerTarget))
|
|
gBattlerTarget = GetBattlerAtPosition(BATTLE_PARTNER(GetBattlerPosition(gBattlerTarget)));
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
u16 battlerAbility;
|
|
battler = gBattlerByTurnOrder[var];
|
|
battlerAbility = GetBattlerAbility(battler);
|
|
|
|
RecordAbilityBattle(battler, gBattleMons[battler].ability);
|
|
if (battlerAbility == ABILITY_LIGHTNING_ROD && gCurrentMove != MOVE_TEATIME)
|
|
gSpecialStatuses[battler].lightningRodRedirected = TRUE;
|
|
else if (battlerAbility == ABILITY_STORM_DRAIN)
|
|
gSpecialStatuses[battler].stormDrainRedirected = TRUE;
|
|
gBattlerTarget = battler;
|
|
}
|
|
}
|
|
else if (gBattleTypeFlags & BATTLE_TYPE_DOUBLE
|
|
&& moveTarget & MOVE_TARGET_RANDOM)
|
|
{
|
|
if (GetBattlerSide(gBattlerAttacker) == B_SIDE_PLAYER)
|
|
{
|
|
if (Random() & 1)
|
|
gBattlerTarget = GetBattlerAtPosition(B_POSITION_OPPONENT_LEFT);
|
|
else
|
|
gBattlerTarget = GetBattlerAtPosition(B_POSITION_OPPONENT_RIGHT);
|
|
}
|
|
else
|
|
{
|
|
if (Random() & 1)
|
|
gBattlerTarget = GetBattlerAtPosition(B_POSITION_PLAYER_LEFT);
|
|
else
|
|
gBattlerTarget = GetBattlerAtPosition(B_POSITION_PLAYER_RIGHT);
|
|
}
|
|
|
|
if (gAbsentBattlerFlags & gBitTable[gBattlerTarget]
|
|
&& GetBattlerSide(gBattlerAttacker) != GetBattlerSide(gBattlerTarget))
|
|
{
|
|
gBattlerTarget = GetBattlerAtPosition(BATTLE_PARTNER(GetBattlerPosition(gBattlerTarget)));
|
|
}
|
|
}
|
|
else if (moveTarget == MOVE_TARGET_ALLY)
|
|
{
|
|
if (IsBattlerAlive(BATTLE_PARTNER(gBattlerAttacker)))
|
|
gBattlerTarget = BATTLE_PARTNER(gBattlerAttacker);
|
|
else
|
|
gBattlerTarget = gBattlerAttacker;
|
|
}
|
|
else if (gBattleTypeFlags & BATTLE_TYPE_DOUBLE
|
|
&& moveTarget == MOVE_TARGET_FOES_AND_ALLY)
|
|
{
|
|
for (gBattlerTarget = 0; gBattlerTarget < gBattlersCount; gBattlerTarget++)
|
|
{
|
|
if (gBattlerTarget == gBattlerAttacker)
|
|
continue;
|
|
if (IsBattlerAlive(gBattlerTarget))
|
|
break;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
gBattlerTarget = *(gBattleStruct->moveTarget + gBattlerAttacker);
|
|
if (!IsBattlerAlive(gBattlerTarget))
|
|
{
|
|
if (GetBattlerSide(gBattlerAttacker) != GetBattlerSide(gBattlerTarget))
|
|
{
|
|
gBattlerTarget = GetBattlerAtPosition(BATTLE_PARTNER(GetBattlerPosition(gBattlerTarget)));
|
|
}
|
|
else
|
|
{
|
|
gBattlerTarget = GetBattlerAtPosition(BATTLE_OPPOSITE(GetBattlerPosition(gBattlerAttacker)));
|
|
if (!IsBattlerAlive(gBattlerTarget))
|
|
gBattlerTarget = GetBattlerAtPosition(BATTLE_PARTNER(GetBattlerPosition(gBattlerTarget)));
|
|
}
|
|
}
|
|
}
|
|
|
|
if (gBattleTypeFlags & BATTLE_TYPE_PALACE && gProtectStructs[gBattlerAttacker].palaceUnableToUseMove)
|
|
{
|
|
// Battle Palace, select battle script for failure to use move
|
|
if (gBattleMons[gBattlerAttacker].hp == 0)
|
|
{
|
|
gCurrentActionFuncId = B_ACTION_FINISHED;
|
|
return;
|
|
}
|
|
else if (gPalaceSelectionBattleScripts[gBattlerAttacker] != NULL)
|
|
{
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_INCAPABLE_OF_POWER;
|
|
gBattlescriptCurrInstr = gPalaceSelectionBattleScripts[gBattlerAttacker];
|
|
gPalaceSelectionBattleScripts[gBattlerAttacker] = NULL;
|
|
}
|
|
else
|
|
{
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_INCAPABLE_OF_POWER;
|
|
gBattlescriptCurrInstr = BattleScript_MoveUsedLoafingAround;
|
|
}
|
|
}
|
|
// Edge case: moves targeting the ally fail after a successful Ally Switch.
|
|
else if (moveTarget == MOVE_TARGET_ALLY && gProtectStructs[BATTLE_PARTNER(gBattlerAttacker)].usedAllySwitch)
|
|
{
|
|
gBattlescriptCurrInstr = BattleScript_FailedFromAtkCanceler;
|
|
}
|
|
else
|
|
{
|
|
gBattlescriptCurrInstr = gBattleScriptsForMoveEffects[gBattleMoves[gCurrentMove].effect];
|
|
}
|
|
|
|
if (gBattleTypeFlags & BATTLE_TYPE_ARENA)
|
|
BattleArena_AddMindPoints(gBattlerAttacker);
|
|
|
|
for (i = 0; i < MAX_BATTLERS_COUNT; i++)
|
|
{
|
|
gBattleStruct->hpBefore[i] = gBattleMons[i].hp;
|
|
gSpecialStatuses[i].emergencyExited = FALSE;
|
|
}
|
|
|
|
gCurrentActionFuncId = B_ACTION_EXEC_SCRIPT;
|
|
}
|
|
|
|
void HandleAction_Switch(void)
|
|
{
|
|
gBattlerAttacker = gBattlerByTurnOrder[gCurrentTurnActionNumber];
|
|
gBattle_BG0_X = 0;
|
|
gBattle_BG0_Y = 0;
|
|
gActionSelectionCursor[gBattlerAttacker] = 0;
|
|
gMoveSelectionCursor[gBattlerAttacker] = 0;
|
|
|
|
PREPARE_MON_NICK_BUFFER(gBattleTextBuff1, gBattlerAttacker, *(gBattleStruct->battlerPartyIndexes + gBattlerAttacker))
|
|
|
|
gBattleScripting.battler = gBattlerAttacker;
|
|
gBattlescriptCurrInstr = BattleScript_ActionSwitch;
|
|
gCurrentActionFuncId = B_ACTION_EXEC_SCRIPT;
|
|
|
|
if (gBattleResults.playerSwitchesCounter < 255)
|
|
gBattleResults.playerSwitchesCounter++;
|
|
|
|
TryBattleFormChange(gBattlerAttacker, FORM_CHANGE_BATTLE_SWITCH);
|
|
}
|
|
|
|
void HandleAction_UseItem(void)
|
|
{
|
|
gBattlerAttacker = gBattlerByTurnOrder[gCurrentTurnActionNumber];
|
|
gBattle_BG0_X = 0;
|
|
gBattle_BG0_Y = 0;
|
|
ClearVariousBattlerFlags(gBattlerAttacker);
|
|
|
|
gLastUsedItem = gBattleResources->bufferB[gBattlerAttacker][1] | (gBattleResources->bufferB[gBattlerAttacker][2] << 8);
|
|
gBattlescriptCurrInstr = gBattlescriptsForUsingItem[ItemId_GetBattleUsage(gLastUsedItem) - 1];
|
|
gCurrentActionFuncId = B_ACTION_EXEC_SCRIPT;
|
|
}
|
|
|
|
bool32 TryRunFromBattle(u32 battler)
|
|
{
|
|
bool32 effect = FALSE;
|
|
u8 holdEffect;
|
|
u8 pyramidMultiplier;
|
|
u8 speedVar;
|
|
|
|
if (gBattleMons[battler].item == ITEM_ENIGMA_BERRY_E_READER)
|
|
holdEffect = gEnigmaBerries[battler].holdEffect;
|
|
else
|
|
holdEffect = ItemId_GetHoldEffect(gBattleMons[battler].item);
|
|
|
|
gPotentialItemEffectBattler = battler;
|
|
|
|
if (holdEffect == HOLD_EFFECT_CAN_ALWAYS_RUN)
|
|
{
|
|
gLastUsedItem = gBattleMons[battler].item;
|
|
gProtectStructs[battler].fleeType = FLEE_ITEM;
|
|
effect++;
|
|
}
|
|
else if (B_GHOSTS_ESCAPE >= GEN_6 && IS_BATTLER_OF_TYPE(battler, TYPE_GHOST))
|
|
{
|
|
effect++;
|
|
}
|
|
else if (GetBattlerAbility(battler) == ABILITY_RUN_AWAY)
|
|
{
|
|
if (InBattlePyramid())
|
|
{
|
|
gBattleStruct->runTries++;
|
|
pyramidMultiplier = GetPyramidRunMultiplier();
|
|
speedVar = (gBattleMons[battler].speed * pyramidMultiplier) / (gBattleMons[BATTLE_OPPOSITE(battler)].speed) + (gBattleStruct->runTries * 30);
|
|
if (speedVar > (Random() & 0xFF))
|
|
{
|
|
gLastUsedAbility = ABILITY_RUN_AWAY;
|
|
gProtectStructs[battler].fleeType = FLEE_ABILITY;
|
|
effect++;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
gLastUsedAbility = ABILITY_RUN_AWAY;
|
|
gProtectStructs[battler].fleeType = FLEE_ABILITY;
|
|
effect++;
|
|
}
|
|
}
|
|
else if (gBattleTypeFlags & (BATTLE_TYPE_FRONTIER | BATTLE_TYPE_TRAINER_HILL) && gBattleTypeFlags & BATTLE_TYPE_TRAINER)
|
|
{
|
|
effect++;
|
|
}
|
|
else
|
|
{
|
|
u8 runningFromBattler = BATTLE_OPPOSITE(battler);
|
|
if (!IsBattlerAlive(runningFromBattler))
|
|
runningFromBattler |= BIT_FLANK;
|
|
|
|
if (InBattlePyramid())
|
|
{
|
|
pyramidMultiplier = GetPyramidRunMultiplier();
|
|
speedVar = (gBattleMons[battler].speed * pyramidMultiplier) / (gBattleMons[runningFromBattler].speed) + (gBattleStruct->runTries * 30);
|
|
if (speedVar > (Random() & 0xFF))
|
|
effect++;
|
|
}
|
|
else if (gBattleMons[battler].speed < gBattleMons[runningFromBattler].speed)
|
|
{
|
|
speedVar = (gBattleMons[battler].speed * 128) / (gBattleMons[runningFromBattler].speed) + (gBattleStruct->runTries * 30);
|
|
if (speedVar > (Random() & 0xFF))
|
|
effect++;
|
|
}
|
|
else // same speed or faster
|
|
{
|
|
effect++;
|
|
}
|
|
|
|
gBattleStruct->runTries++;
|
|
}
|
|
|
|
if (effect != 0)
|
|
{
|
|
gCurrentTurnActionNumber = gBattlersCount;
|
|
gBattleOutcome = B_OUTCOME_RAN;
|
|
}
|
|
|
|
return effect;
|
|
}
|
|
|
|
void HandleAction_Run(void)
|
|
{
|
|
s32 i;
|
|
|
|
gBattlerAttacker = gBattlerByTurnOrder[gCurrentTurnActionNumber];
|
|
if (gBattleTypeFlags & (BATTLE_TYPE_LINK | BATTLE_TYPE_RECORDED_LINK))
|
|
{
|
|
gCurrentTurnActionNumber = gBattlersCount;
|
|
|
|
for (i = 0; i < gBattlersCount; i++)
|
|
{
|
|
if (GetBattlerSide(i) == B_SIDE_PLAYER)
|
|
{
|
|
if (gChosenActionByBattler[i] == B_ACTION_RUN)
|
|
gBattleOutcome |= B_OUTCOME_LOST;
|
|
}
|
|
else
|
|
{
|
|
if (gChosenActionByBattler[i] == B_ACTION_RUN)
|
|
gBattleOutcome |= B_OUTCOME_WON;
|
|
}
|
|
}
|
|
|
|
gBattleOutcome |= B_OUTCOME_LINK_BATTLE_RAN;
|
|
gSaveBlock2Ptr->frontier.disableRecordBattle = TRUE;
|
|
}
|
|
else
|
|
{
|
|
if (GetBattlerSide(gBattlerAttacker) == B_SIDE_PLAYER)
|
|
{
|
|
if (!TryRunFromBattle(gBattlerAttacker)) // failed to run away
|
|
{
|
|
ClearVariousBattlerFlags(gBattlerAttacker);
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_CANT_ESCAPE_2;
|
|
gBattlescriptCurrInstr = BattleScript_PrintFailedToRunString;
|
|
gCurrentActionFuncId = B_ACTION_EXEC_SCRIPT;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (!CanBattlerEscape(gBattlerAttacker))
|
|
{
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_ATTACKER_CANT_ESCAPE;
|
|
gBattlescriptCurrInstr = BattleScript_PrintFailedToRunString;
|
|
gCurrentActionFuncId = B_ACTION_EXEC_SCRIPT;
|
|
}
|
|
else
|
|
{
|
|
gCurrentTurnActionNumber = gBattlersCount;
|
|
gBattleOutcome = B_OUTCOME_MON_FLED;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void HandleAction_WatchesCarefully(void)
|
|
{
|
|
gBattlerAttacker = gBattlerByTurnOrder[gCurrentTurnActionNumber];
|
|
gBattle_BG0_X = 0;
|
|
gBattle_BG0_Y = 0;
|
|
gBattlescriptCurrInstr = gBattlescriptsForSafariActions[0];
|
|
gCurrentActionFuncId = B_ACTION_EXEC_SCRIPT;
|
|
}
|
|
|
|
void HandleAction_SafariZoneBallThrow(void)
|
|
{
|
|
gBattlerAttacker = gBattlerByTurnOrder[gCurrentTurnActionNumber];
|
|
gBattle_BG0_X = 0;
|
|
gBattle_BG0_Y = 0;
|
|
gNumSafariBalls--;
|
|
gLastUsedItem = ITEM_SAFARI_BALL;
|
|
gBattlescriptCurrInstr = BattleScript_SafariBallThrow;
|
|
gCurrentActionFuncId = B_ACTION_EXEC_SCRIPT;
|
|
}
|
|
|
|
void HandleAction_ThrowBall(void)
|
|
{
|
|
gBattlerAttacker = gBattlerByTurnOrder[gCurrentTurnActionNumber];
|
|
gBattle_BG0_X = 0;
|
|
gBattle_BG0_Y = 0;
|
|
gLastUsedItem = gBallToDisplay;
|
|
RemoveBagItem(gLastUsedItem, 1);
|
|
gBattlescriptCurrInstr = BattleScript_BallThrow;
|
|
gCurrentActionFuncId = B_ACTION_EXEC_SCRIPT;
|
|
}
|
|
|
|
void HandleAction_ThrowPokeblock(void)
|
|
{
|
|
gBattlerAttacker = gBattlerByTurnOrder[gCurrentTurnActionNumber];
|
|
gBattle_BG0_X = 0;
|
|
gBattle_BG0_Y = 0;
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = gBattleResources->bufferB[gBattlerAttacker][1] - 1;
|
|
gLastUsedItem = gBattleResources->bufferB[gBattlerAttacker][2];
|
|
|
|
if (gBattleResults.pokeblockThrows < 255)
|
|
gBattleResults.pokeblockThrows++;
|
|
if (gBattleStruct->safariPkblThrowCounter < 3)
|
|
gBattleStruct->safariPkblThrowCounter++;
|
|
if (gBattleStruct->safariEscapeFactor > 1)
|
|
{
|
|
// BUG: safariEscapeFactor can become 0 below. This causes the pokeblock throw glitch.
|
|
#ifdef BUGFIX
|
|
if (gBattleStruct->safariEscapeFactor <= sPkblToEscapeFactor[gBattleStruct->safariPkblThrowCounter][gBattleCommunication[MULTISTRING_CHOOSER]])
|
|
#else
|
|
if (gBattleStruct->safariEscapeFactor < sPkblToEscapeFactor[gBattleStruct->safariPkblThrowCounter][gBattleCommunication[MULTISTRING_CHOOSER]])
|
|
#endif
|
|
gBattleStruct->safariEscapeFactor = 1;
|
|
else
|
|
gBattleStruct->safariEscapeFactor -= sPkblToEscapeFactor[gBattleStruct->safariPkblThrowCounter][gBattleCommunication[MULTISTRING_CHOOSER]];
|
|
}
|
|
|
|
gBattlescriptCurrInstr = gBattlescriptsForSafariActions[2];
|
|
gCurrentActionFuncId = B_ACTION_EXEC_SCRIPT;
|
|
}
|
|
|
|
void HandleAction_GoNear(void)
|
|
{
|
|
gBattlerAttacker = gBattlerByTurnOrder[gCurrentTurnActionNumber];
|
|
gBattle_BG0_X = 0;
|
|
gBattle_BG0_Y = 0;
|
|
|
|
gBattleStruct->safariCatchFactor += sGoNearCounterToCatchFactor[gBattleStruct->safariGoNearCounter];
|
|
if (gBattleStruct->safariCatchFactor > 20)
|
|
gBattleStruct->safariCatchFactor = 20;
|
|
|
|
gBattleStruct->safariEscapeFactor += sGoNearCounterToEscapeFactor[gBattleStruct->safariGoNearCounter];
|
|
if (gBattleStruct->safariEscapeFactor > 20)
|
|
gBattleStruct->safariEscapeFactor = 20;
|
|
|
|
if (gBattleStruct->safariGoNearCounter < 3)
|
|
{
|
|
gBattleStruct->safariGoNearCounter++;
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_CREPT_CLOSER;
|
|
}
|
|
else
|
|
{
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_CANT_GET_CLOSER;
|
|
}
|
|
gBattlescriptCurrInstr = gBattlescriptsForSafariActions[1];
|
|
gCurrentActionFuncId = B_ACTION_EXEC_SCRIPT;
|
|
}
|
|
|
|
void HandleAction_SafariZoneRun(void)
|
|
{
|
|
gBattlerAttacker = gBattlerByTurnOrder[gCurrentTurnActionNumber];
|
|
PlaySE(SE_FLEE);
|
|
gCurrentTurnActionNumber = gBattlersCount;
|
|
gBattleOutcome = B_OUTCOME_RAN;
|
|
}
|
|
|
|
void HandleAction_WallyBallThrow(void)
|
|
{
|
|
gBattlerAttacker = gBattlerByTurnOrder[gCurrentTurnActionNumber];
|
|
gBattle_BG0_X = 0;
|
|
gBattle_BG0_Y = 0;
|
|
|
|
PREPARE_MON_NICK_BUFFER(gBattleTextBuff1, gBattlerAttacker, gBattlerPartyIndexes[gBattlerAttacker])
|
|
|
|
gBattlescriptCurrInstr = gBattlescriptsForSafariActions[3];
|
|
gCurrentActionFuncId = B_ACTION_EXEC_SCRIPT;
|
|
gActionsByTurnOrder[1] = B_ACTION_FINISHED;
|
|
}
|
|
|
|
void HandleAction_TryFinish(void)
|
|
{
|
|
if (!HandleFaintedMonActions())
|
|
{
|
|
gBattleStruct->faintedActionsState = 0;
|
|
gCurrentActionFuncId = B_ACTION_FINISHED;
|
|
}
|
|
}
|
|
|
|
void HandleAction_NothingIsFainted(void)
|
|
{
|
|
gCurrentTurnActionNumber++;
|
|
gCurrentActionFuncId = gActionsByTurnOrder[gCurrentTurnActionNumber];
|
|
gHitMarker &= ~(HITMARKER_DESTINYBOND | HITMARKER_IGNORE_SUBSTITUTE | HITMARKER_ATTACKSTRING_PRINTED
|
|
| HITMARKER_NO_PPDEDUCT | HITMARKER_STATUS_ABILITY_EFFECT | HITMARKER_PASSIVE_DAMAGE
|
|
| HITMARKER_OBEYS | HITMARKER_WAKE_UP_CLEAR | HITMARKER_SYNCHRONISE_EFFECT
|
|
| HITMARKER_CHARGING | HITMARKER_NEVER_SET);
|
|
}
|
|
|
|
void HandleAction_ActionFinished(void)
|
|
{
|
|
u32 i, j;
|
|
bool32 afterYouActive = gSpecialStatuses[gBattlerByTurnOrder[gCurrentTurnActionNumber + 1]].afterYou;
|
|
*(gBattleStruct->monToSwitchIntoId + gBattlerByTurnOrder[gCurrentTurnActionNumber]) = gSelectedMonPartyId = PARTY_SIZE;
|
|
gCurrentTurnActionNumber++;
|
|
gCurrentActionFuncId = gActionsByTurnOrder[gCurrentTurnActionNumber];
|
|
SpecialStatusesClear();
|
|
gHitMarker &= ~(HITMARKER_DESTINYBOND | HITMARKER_IGNORE_SUBSTITUTE | HITMARKER_ATTACKSTRING_PRINTED
|
|
| HITMARKER_NO_PPDEDUCT | HITMARKER_STATUS_ABILITY_EFFECT | HITMARKER_PASSIVE_DAMAGE
|
|
| HITMARKER_OBEYS | HITMARKER_WAKE_UP_CLEAR | HITMARKER_SYNCHRONISE_EFFECT
|
|
| HITMARKER_CHARGING | HITMARKER_NEVER_SET | HITMARKER_IGNORE_DISGUISE);
|
|
|
|
gCurrentMove = 0;
|
|
gBattleMoveDamage = 0;
|
|
gMoveResultFlags = 0;
|
|
gBattleScripting.animTurn = 0;
|
|
gBattleScripting.animTargetsHit = 0;
|
|
gLastLandedMoves[gBattlerAttacker] = 0;
|
|
gLastHitByType[gBattlerAttacker] = 0;
|
|
gBattleStruct->dynamicMoveType = 0;
|
|
gBattleScripting.moveendState = 0;
|
|
gBattleCommunication[3] = 0;
|
|
gBattleCommunication[4] = 0;
|
|
gBattleScripting.multihitMoveEffect = 0;
|
|
gBattleResources->battleScriptsStack->size = 0;
|
|
gBattleStruct->dynamax.usingMaxMove[gBattlerAttacker] = 0;
|
|
|
|
if (B_RECALC_TURN_AFTER_ACTIONS >= GEN_8 && !afterYouActive && !gBattleStruct->pledgeMove)
|
|
{
|
|
// i starts at `gCurrentTurnActionNumber` because we don't want to recalculate turn order for mon that have already
|
|
// taken action. It's been previously increased, which we want in order to not recalculate the turn of the mon that just finished its action
|
|
for (i = gCurrentTurnActionNumber; i < gBattlersCount - 1; i++)
|
|
{
|
|
for (j = i + 1; j < gBattlersCount; j++)
|
|
{
|
|
u32 battler1 = gBattlerByTurnOrder[i];
|
|
u32 battler2 = gBattlerByTurnOrder[j];
|
|
|
|
if (gProtectStructs[battler1].quash || gProtectStructs[battler2].quash
|
|
|| gProtectStructs[battler1].shellTrap || gProtectStructs[battler2].shellTrap)
|
|
continue;
|
|
|
|
// We recalculate order only for action of the same priority. If any action other than switch/move has been taken, they should
|
|
// have been executed before. The only recalculation needed is for moves/switch. Mega evolution is handled in src/battle_main.c/TryChangeOrder
|
|
if((gActionsByTurnOrder[i] == B_ACTION_USE_MOVE && gActionsByTurnOrder[j] == B_ACTION_USE_MOVE))
|
|
{
|
|
if (GetWhichBattlerFaster(battler1, battler2, FALSE) == -1)
|
|
SwapTurnOrder(i, j);
|
|
}
|
|
else if ((gActionsByTurnOrder[i] == B_ACTION_SWITCH && gActionsByTurnOrder[j] == B_ACTION_SWITCH))
|
|
{
|
|
if (GetWhichBattlerFaster(battler1, battler2, TRUE) == -1) // If the actions chosen are switching, we recalc order but ignoring the moves
|
|
SwapTurnOrder(i, j);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
static const u8 sHoldEffectToType[][2] =
|
|
{
|
|
{HOLD_EFFECT_BUG_POWER, TYPE_BUG},
|
|
{HOLD_EFFECT_STEEL_POWER, TYPE_STEEL},
|
|
{HOLD_EFFECT_GROUND_POWER, TYPE_GROUND},
|
|
{HOLD_EFFECT_ROCK_POWER, TYPE_ROCK},
|
|
{HOLD_EFFECT_GRASS_POWER, TYPE_GRASS},
|
|
{HOLD_EFFECT_DARK_POWER, TYPE_DARK},
|
|
{HOLD_EFFECT_FIGHTING_POWER, TYPE_FIGHTING},
|
|
{HOLD_EFFECT_ELECTRIC_POWER, TYPE_ELECTRIC},
|
|
{HOLD_EFFECT_WATER_POWER, TYPE_WATER},
|
|
{HOLD_EFFECT_FLYING_POWER, TYPE_FLYING},
|
|
{HOLD_EFFECT_POISON_POWER, TYPE_POISON},
|
|
{HOLD_EFFECT_ICE_POWER, TYPE_ICE},
|
|
{HOLD_EFFECT_GHOST_POWER, TYPE_GHOST},
|
|
{HOLD_EFFECT_PSYCHIC_POWER, TYPE_PSYCHIC},
|
|
{HOLD_EFFECT_FIRE_POWER, TYPE_FIRE},
|
|
{HOLD_EFFECT_DRAGON_POWER, TYPE_DRAGON},
|
|
{HOLD_EFFECT_NORMAL_POWER, TYPE_NORMAL},
|
|
{HOLD_EFFECT_FAIRY_POWER, TYPE_FAIRY},
|
|
};
|
|
|
|
// percent in UQ_4_12 format
|
|
static const uq4_12_t sPercentToModifier[] =
|
|
{
|
|
UQ_4_12(0.00), // 0
|
|
UQ_4_12(0.01), // 1
|
|
UQ_4_12(0.02), // 2
|
|
UQ_4_12(0.03), // 3
|
|
UQ_4_12(0.04), // 4
|
|
UQ_4_12(0.05), // 5
|
|
UQ_4_12(0.06), // 6
|
|
UQ_4_12(0.07), // 7
|
|
UQ_4_12(0.08), // 8
|
|
UQ_4_12(0.09), // 9
|
|
UQ_4_12(0.10), // 10
|
|
UQ_4_12(0.11), // 11
|
|
UQ_4_12(0.12), // 12
|
|
UQ_4_12(0.13), // 13
|
|
UQ_4_12(0.14), // 14
|
|
UQ_4_12(0.15), // 15
|
|
UQ_4_12(0.16), // 16
|
|
UQ_4_12(0.17), // 17
|
|
UQ_4_12(0.18), // 18
|
|
UQ_4_12(0.19), // 19
|
|
UQ_4_12(0.20), // 20
|
|
UQ_4_12(0.21), // 21
|
|
UQ_4_12(0.22), // 22
|
|
UQ_4_12(0.23), // 23
|
|
UQ_4_12(0.24), // 24
|
|
UQ_4_12(0.25), // 25
|
|
UQ_4_12(0.26), // 26
|
|
UQ_4_12(0.27), // 27
|
|
UQ_4_12(0.28), // 28
|
|
UQ_4_12(0.29), // 29
|
|
UQ_4_12(0.30), // 30
|
|
UQ_4_12(0.31), // 31
|
|
UQ_4_12(0.32), // 32
|
|
UQ_4_12(0.33), // 33
|
|
UQ_4_12(0.34), // 34
|
|
UQ_4_12(0.35), // 35
|
|
UQ_4_12(0.36), // 36
|
|
UQ_4_12(0.37), // 37
|
|
UQ_4_12(0.38), // 38
|
|
UQ_4_12(0.39), // 39
|
|
UQ_4_12(0.40), // 40
|
|
UQ_4_12(0.41), // 41
|
|
UQ_4_12(0.42), // 42
|
|
UQ_4_12(0.43), // 43
|
|
UQ_4_12(0.44), // 44
|
|
UQ_4_12(0.45), // 45
|
|
UQ_4_12(0.46), // 46
|
|
UQ_4_12(0.47), // 47
|
|
UQ_4_12(0.48), // 48
|
|
UQ_4_12(0.49), // 49
|
|
UQ_4_12(0.50), // 50
|
|
UQ_4_12(0.51), // 51
|
|
UQ_4_12(0.52), // 52
|
|
UQ_4_12(0.53), // 53
|
|
UQ_4_12(0.54), // 54
|
|
UQ_4_12(0.55), // 55
|
|
UQ_4_12(0.56), // 56
|
|
UQ_4_12(0.57), // 57
|
|
UQ_4_12(0.58), // 58
|
|
UQ_4_12(0.59), // 59
|
|
UQ_4_12(0.60), // 60
|
|
UQ_4_12(0.61), // 61
|
|
UQ_4_12(0.62), // 62
|
|
UQ_4_12(0.63), // 63
|
|
UQ_4_12(0.64), // 64
|
|
UQ_4_12(0.65), // 65
|
|
UQ_4_12(0.66), // 66
|
|
UQ_4_12(0.67), // 67
|
|
UQ_4_12(0.68), // 68
|
|
UQ_4_12(0.69), // 69
|
|
UQ_4_12(0.70), // 70
|
|
UQ_4_12(0.71), // 71
|
|
UQ_4_12(0.72), // 72
|
|
UQ_4_12(0.73), // 73
|
|
UQ_4_12(0.74), // 74
|
|
UQ_4_12(0.75), // 75
|
|
UQ_4_12(0.76), // 76
|
|
UQ_4_12(0.77), // 77
|
|
UQ_4_12(0.78), // 78
|
|
UQ_4_12(0.79), // 79
|
|
UQ_4_12(0.80), // 80
|
|
UQ_4_12(0.81), // 81
|
|
UQ_4_12(0.82), // 82
|
|
UQ_4_12(0.83), // 83
|
|
UQ_4_12(0.84), // 84
|
|
UQ_4_12(0.85), // 85
|
|
UQ_4_12(0.86), // 86
|
|
UQ_4_12(0.87), // 87
|
|
UQ_4_12(0.88), // 88
|
|
UQ_4_12(0.89), // 89
|
|
UQ_4_12(0.90), // 90
|
|
UQ_4_12(0.91), // 91
|
|
UQ_4_12(0.92), // 92
|
|
UQ_4_12(0.93), // 93
|
|
UQ_4_12(0.94), // 94
|
|
UQ_4_12(0.95), // 95
|
|
UQ_4_12(0.96), // 96
|
|
UQ_4_12(0.97), // 97
|
|
UQ_4_12(0.98), // 98
|
|
UQ_4_12(0.99), // 99
|
|
UQ_4_12(1.00), // 100
|
|
};
|
|
|
|
#define X UQ_4_12
|
|
#define ______ X(1.0) // Regular effectiveness.
|
|
|
|
static const uq4_12_t sTypeEffectivenessTable[NUMBER_OF_MON_TYPES][NUMBER_OF_MON_TYPES] =
|
|
{// Defender -->
|
|
// Attacker Normal Fighting Flying Poison Ground Rock Bug Ghost Steel Mystery Fire Water Grass Electric Psychic Ice Dragon Dark Fairy
|
|
[TYPE_NORMAL] = {______, ______, ______, ______, ______, X(0.5), ______, X(0.0), X(0.5), ______, ______, ______, ______, ______, ______, ______, ______, ______, ______},
|
|
[TYPE_FIGHTING] = {X(2.0), ______, X(0.5), X(0.5), ______, X(2.0), X(0.5), X(0.0), X(2.0), ______, ______, ______, ______, ______, X(0.5), X(2.0), ______, X(2.0), X(0.5)},
|
|
[TYPE_FLYING] = {______, X(2.0), ______, ______, ______, X(0.5), X(2.0), ______, X(0.5), ______, ______, ______, X(2.0), X(0.5), ______, ______, ______, ______, ______},
|
|
[TYPE_POISON] = {______, ______, ______, X(0.5), X(0.5), X(0.5), ______, X(0.5), X(0.0), ______, ______, ______, X(2.0), ______, ______, ______, ______, ______, X(2.0)},
|
|
[TYPE_GROUND] = {______, ______, X(0.0), X(2.0), ______, X(2.0), X(0.5), ______, X(2.0), ______, X(2.0), ______, X(0.5), X(2.0), ______, ______, ______, ______, ______},
|
|
[TYPE_ROCK] = {______, X(0.5), X(2.0), ______, X(0.5), ______, X(2.0), ______, X(0.5), ______, X(2.0), ______, ______, ______, ______, X(2.0), ______, ______, ______},
|
|
[TYPE_BUG] = {______, X(0.5), X(0.5), X(0.5), ______, ______, ______, X(0.5), X(0.5), ______, X(0.5), ______, X(2.0), ______, X(2.0), ______, ______, X(2.0), X(0.5)},
|
|
#if B_STEEL_RESISTANCES >= GEN_6
|
|
[TYPE_GHOST] = {X(0.0), ______, ______, ______, ______, ______, ______, X(2.0), ______, ______, ______, ______, ______, ______, X(2.0), ______, ______, X(0.5), ______},
|
|
#else
|
|
[TYPE_GHOST] = {X(0.0), ______, ______, ______, ______, ______, ______, X(2.0), X(0.5), ______, ______, ______, ______, ______, X(2.0), ______, ______, X(0.5), ______},
|
|
#endif
|
|
[TYPE_STEEL] = {______, ______, ______, ______, ______, X(2.0), ______, ______, X(0.5), ______, X(0.5), X(0.5), ______, X(0.5), ______, X(2.0), ______, ______, X(2.0)},
|
|
[TYPE_MYSTERY] = {______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______},
|
|
[TYPE_FIRE] = {______, ______, ______, ______, ______, X(0.5), X(2.0), ______, X(2.0), ______, X(0.5), X(0.5), X(2.0), ______, ______, X(2.0), X(0.5), ______, ______},
|
|
[TYPE_WATER] = {______, ______, ______, ______, X(2.0), X(2.0), ______, ______, ______, ______, X(2.0), X(0.5), X(0.5), ______, ______, ______, X(0.5), ______, ______},
|
|
[TYPE_GRASS] = {______, ______, X(0.5), X(0.5), X(2.0), X(2.0), X(0.5), ______, X(0.5), ______, X(0.5), X(2.0), X(0.5), ______, ______, ______, X(0.5), ______, ______},
|
|
[TYPE_ELECTRIC] = {______, ______, X(2.0), ______, X(0.0), ______, ______, ______, ______, ______, ______, X(2.0), X(0.5), X(0.5), ______, ______, X(0.5), ______, ______},
|
|
[TYPE_PSYCHIC] = {______, X(2.0), ______, X(2.0), ______, ______, ______, ______, X(0.5), ______, ______, ______, ______, ______, X(0.5), ______, ______, X(0.0), ______},
|
|
[TYPE_ICE] = {______, ______, X(2.0), ______, X(2.0), ______, ______, ______, X(0.5), ______, X(0.5), X(0.5), X(2.0), ______, ______, X(0.5), X(2.0), ______, ______},
|
|
[TYPE_DRAGON] = {______, ______, ______, ______, ______, ______, ______, ______, X(0.5), ______, ______, ______, ______, ______, ______, ______, X(2.0), ______, X(0.0)},
|
|
#if B_STEEL_RESISTANCES >= GEN_6
|
|
[TYPE_DARK] = {______, X(0.5), ______, ______, ______, ______, ______, X(2.0), ______, ______, ______, ______, ______, ______, X(2.0), ______, ______, X(0.5), X(0.5)},
|
|
#else
|
|
[TYPE_DARK] = {______, X(0.5), ______, ______, ______, ______, ______, X(2.0), X(0.5), ______, ______, ______, ______, ______, X(2.0), ______, ______, X(0.5), X(0.5)},
|
|
#endif
|
|
[TYPE_FAIRY] = {______, X(2.0), ______, X(0.5), ______, ______, ______, ______, X(0.5), ______, X(0.5), ______, ______, ______, ______, ______, X(2.0), X(2.0), ______},
|
|
};
|
|
|
|
#undef ______
|
|
#undef X
|
|
|
|
// code
|
|
u8 GetBattlerForBattleScript(u8 caseId)
|
|
{
|
|
u8 ret = 0;
|
|
switch (caseId)
|
|
{
|
|
case BS_TARGET:
|
|
ret = gBattlerTarget;
|
|
break;
|
|
case BS_ATTACKER:
|
|
ret = gBattlerAttacker;
|
|
break;
|
|
case BS_ATTACKER_PARTNER:
|
|
ret = BATTLE_PARTNER(gBattlerAttacker);
|
|
break;
|
|
case BS_EFFECT_BATTLER:
|
|
ret = gEffectBattler;
|
|
break;
|
|
case BS_BATTLER_0:
|
|
ret = 0;
|
|
break;
|
|
case BS_SCRIPTING:
|
|
ret = gBattleScripting.battler;
|
|
break;
|
|
case BS_FAINTED:
|
|
ret = gBattlerFainted;
|
|
break;
|
|
case BS_FAINTED_LINK_MULTIPLE_1:
|
|
ret = gBattlerFainted;
|
|
break;
|
|
case BS_ATTACKER_WITH_PARTNER:
|
|
case BS_FAINTED_LINK_MULTIPLE_2:
|
|
case BS_ATTACKER_SIDE:
|
|
case BS_TARGET_SIDE:
|
|
case BS_PLAYER1:
|
|
ret = GetBattlerAtPosition(B_POSITION_PLAYER_LEFT);
|
|
break;
|
|
case BS_OPPONENT1:
|
|
ret = GetBattlerAtPosition(B_POSITION_OPPONENT_LEFT);
|
|
break;
|
|
case BS_PLAYER2:
|
|
ret = GetBattlerAtPosition(B_POSITION_PLAYER_RIGHT);
|
|
break;
|
|
case BS_OPPONENT2:
|
|
ret = GetBattlerAtPosition(B_POSITION_OPPONENT_RIGHT);
|
|
break;
|
|
case BS_ABILITY_BATTLER:
|
|
ret = gBattlerAbility;
|
|
break;
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
static void UNUSED MarkAllBattlersForControllerExec(void)
|
|
{
|
|
int i;
|
|
|
|
if (gBattleTypeFlags & BATTLE_TYPE_LINK)
|
|
{
|
|
for (i = 0; i < gBattlersCount; i++)
|
|
gBattleControllerExecFlags |= gBitTable[i] << (32 - MAX_BATTLERS_COUNT);
|
|
}
|
|
else
|
|
{
|
|
for (i = 0; i < gBattlersCount; i++)
|
|
gBattleControllerExecFlags |= gBitTable[i];
|
|
}
|
|
}
|
|
|
|
bool32 IsBattlerMarkedForControllerExec(u32 battler)
|
|
{
|
|
if (gBattleTypeFlags & BATTLE_TYPE_LINK)
|
|
return (gBattleControllerExecFlags & (gBitTable[battler] << 0x1C)) != 0;
|
|
else
|
|
return (gBattleControllerExecFlags & (gBitTable[battler])) != 0;
|
|
}
|
|
|
|
void MarkBattlerForControllerExec(u32 battler)
|
|
{
|
|
if (gBattleTypeFlags & BATTLE_TYPE_LINK)
|
|
gBattleControllerExecFlags |= gBitTable[battler] << (32 - MAX_BATTLERS_COUNT);
|
|
else
|
|
gBattleControllerExecFlags |= gBitTable[battler];
|
|
}
|
|
|
|
void MarkBattlerReceivedLinkData(u32 battler)
|
|
{
|
|
s32 i;
|
|
|
|
for (i = 0; i < GetLinkPlayerCount(); i++)
|
|
gBattleControllerExecFlags |= gBitTable[battler] << (i << 2);
|
|
|
|
gBattleControllerExecFlags &= ~((1 << 28) << battler);
|
|
}
|
|
|
|
const u8* CancelMultiTurnMoves(u32 battler)
|
|
{
|
|
const u8 *result = NULL;
|
|
gBattleMons[battler].status2 &= ~(STATUS2_MULTIPLETURNS);
|
|
gBattleMons[battler].status2 &= ~(STATUS2_LOCK_CONFUSE);
|
|
gBattleMons[battler].status2 &= ~(STATUS2_UPROAR);
|
|
gBattleMons[battler].status2 &= ~(STATUS2_BIDE);
|
|
|
|
// Clear battler's semi-invulnerable bits if they are not held by Sky Drop.
|
|
if (!(gStatuses3[battler] & STATUS3_SKY_DROPPED))
|
|
gStatuses3[battler] &= ~(STATUS3_SEMI_INVULNERABLE);
|
|
|
|
// Check to see if this Pokemon was in the middle of using Sky Drop. If so, release the target.
|
|
if (gBattleStruct->skyDropTargets[battler] != 0xFF && !(gStatuses3[battler] & STATUS3_SKY_DROPPED))
|
|
{
|
|
// Get the target's battler id
|
|
u8 otherSkyDropper = gBattleStruct->skyDropTargets[battler];
|
|
|
|
// Clears sky_dropped and on_air statuses
|
|
gStatuses3[otherSkyDropper] &= ~(STATUS3_SKY_DROPPED | STATUS3_ON_AIR);
|
|
|
|
// Makes both attacker and target's sprites visible
|
|
gSprites[gBattlerSpriteIds[battler]].invisible = FALSE;
|
|
gSprites[gBattlerSpriteIds[otherSkyDropper]].invisible = FALSE;
|
|
|
|
// If target was sky dropped in the middle of Outrage/Thrash/Petal Dance,
|
|
// confuse them upon release and display "confused by fatigue" message & animation.
|
|
// Don't do this if this CancelMultiTurnMoves is caused by falling asleep via Yawn.
|
|
if (gBattleMons[otherSkyDropper].status2 & STATUS2_LOCK_CONFUSE && gBattleStruct->turnEffectsTracker != 24)
|
|
{
|
|
gBattleMons[otherSkyDropper].status2 &= ~(STATUS2_LOCK_CONFUSE);
|
|
|
|
// If the target can be confused, confuse them.
|
|
// Don't use CanBeConfused, can cause issues in edge cases.
|
|
if (!(GetBattlerAbility(otherSkyDropper) == ABILITY_OWN_TEMPO
|
|
|| gBattleMons[otherSkyDropper].status2 & STATUS2_CONFUSION
|
|
|| IsBattlerTerrainAffected(otherSkyDropper, STATUS_FIELD_MISTY_TERRAIN)))
|
|
{
|
|
// Set confused status
|
|
gBattleMons[otherSkyDropper].status2 |= STATUS2_CONFUSION_TURN(((Random()) % 4) + 2);
|
|
|
|
// If this CancelMultiTurnMoves is occuring due to attackcanceller
|
|
if (gBattlescriptCurrInstr[0] == 0x0)
|
|
{
|
|
gBattleStruct->skyDropTargets[battler] = 0xFE;
|
|
}
|
|
// If this CancelMultiTurnMoves is occuring due to VARIOUS_GRAVITY_ON_AIRBORNE_MONS
|
|
// Reapplying STATUS3_SKY_DROPPED allows for avoiding unecessary messages when Gravity is applied to the target.
|
|
else if (gBattlescriptCurrInstr[0] == 0x76 && gBattlescriptCurrInstr[2] == 76)
|
|
{
|
|
gBattleStruct->skyDropTargets[battler] = 0xFE;
|
|
gStatuses3[otherSkyDropper] |= STATUS3_SKY_DROPPED;
|
|
}
|
|
// If this CancelMultiTurnMoves is occuring due to cancelmultiturnmoves script
|
|
else if (gBattlescriptCurrInstr[0] == 0x76 && gBattlescriptCurrInstr[2] == 0)
|
|
{
|
|
gBattlerAttacker = otherSkyDropper;
|
|
result = BattleScript_ThrashConfuses;
|
|
}
|
|
// If this CancelMultiTurnMoves is occuring due to receiving Sleep/Freeze status
|
|
else if (gBattleScripting.moveEffect <= PRIMARY_STATUS_MOVE_EFFECT)
|
|
{
|
|
gBattlerAttacker = otherSkyDropper;
|
|
BattleScriptPush(gBattlescriptCurrInstr + 1);
|
|
result = BattleScript_ThrashConfuses;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Clear skyDropTargets data, unless this CancelMultiTurnMoves is caused by Yawn, attackcanceler, or VARIOUS_GRAVITY_ON_AIRBORNE_MONS
|
|
if (!(gBattleMons[otherSkyDropper].status2 & STATUS2_LOCK_CONFUSE) && gBattleStruct->skyDropTargets[battler] < 4)
|
|
{
|
|
gBattleStruct->skyDropTargets[battler] = 0xFF;
|
|
gBattleStruct->skyDropTargets[otherSkyDropper] = 0xFF;
|
|
}
|
|
}
|
|
|
|
gDisableStructs[battler].rolloutTimer = 0;
|
|
gDisableStructs[battler].furyCutterCounter = 0;
|
|
|
|
return result;
|
|
}
|
|
|
|
bool32 WasUnableToUseMove(u32 battler)
|
|
{
|
|
if (gProtectStructs[battler].prlzImmobility
|
|
|| gProtectStructs[battler].usedImprisonedMove
|
|
|| gProtectStructs[battler].loveImmobility
|
|
|| gProtectStructs[battler].usedDisabledMove
|
|
|| gProtectStructs[battler].usedTauntedMove
|
|
|| gProtectStructs[battler].usedGravityPreventedMove
|
|
|| gProtectStructs[battler].usedHealBlockedMove
|
|
|| gProtectStructs[battler].flag2Unknown
|
|
|| gProtectStructs[battler].flinchImmobility
|
|
|| gProtectStructs[battler].confusionSelfDmg
|
|
|| gProtectStructs[battler].powderSelfDmg
|
|
|| gProtectStructs[battler].usedThroatChopPreventedMove)
|
|
return TRUE;
|
|
else
|
|
return FALSE;
|
|
}
|
|
|
|
void PrepareStringBattle(u16 stringId, u32 battler)
|
|
{
|
|
u32 targetSide = GetBattlerSide(gBattlerTarget);
|
|
u16 battlerAbility = GetBattlerAbility(battler);
|
|
u16 targetAbility = GetBattlerAbility(gBattlerTarget);
|
|
// Support for Contrary ability.
|
|
// If a move attempted to raise stat - print "won't increase".
|
|
// If a move attempted to lower stat - print "won't decrease".
|
|
if (stringId == STRINGID_STATSWONTDECREASE && !(gBattleScripting.statChanger & STAT_BUFF_NEGATIVE))
|
|
stringId = STRINGID_STATSWONTINCREASE;
|
|
else if (stringId == STRINGID_STATSWONTINCREASE && gBattleScripting.statChanger & STAT_BUFF_NEGATIVE)
|
|
stringId = STRINGID_STATSWONTDECREASE;
|
|
|
|
else if (stringId == STRINGID_STATSWONTDECREASE2 && battlerAbility == ABILITY_CONTRARY)
|
|
stringId = STRINGID_STATSWONTINCREASE2;
|
|
else if (stringId == STRINGID_STATSWONTINCREASE2 && battlerAbility == ABILITY_CONTRARY)
|
|
stringId = STRINGID_STATSWONTDECREASE2;
|
|
|
|
// Check Defiant and Competitive stat raise whenever a stat is lowered.
|
|
else if ((stringId == STRINGID_DEFENDERSSTATFELL || stringId == STRINGID_PKMNCUTSATTACKWITH)
|
|
&& ((targetAbility == ABILITY_DEFIANT && CompareStat(gBattlerTarget, STAT_ATK, MAX_STAT_STAGE, CMP_LESS_THAN))
|
|
|| (targetAbility == ABILITY_COMPETITIVE && CompareStat(gBattlerTarget, STAT_SPATK, MAX_STAT_STAGE, CMP_LESS_THAN)))
|
|
&& gSpecialStatuses[gBattlerTarget].changedStatsBattlerId != BATTLE_PARTNER(gBattlerTarget)
|
|
&& ((gSpecialStatuses[gBattlerTarget].changedStatsBattlerId != gBattlerTarget) || gBattleScripting.stickyWebStatDrop == 1)
|
|
&& !(gBattleScripting.stickyWebStatDrop == 1 && gSideTimers[targetSide].stickyWebBattlerSide == targetSide)) // Sticky Web must have been set by the foe
|
|
{
|
|
gBattleScripting.stickyWebStatDrop = 0;
|
|
gBattlerAbility = gBattlerTarget;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_AbilityRaisesDefenderStat;
|
|
if (targetAbility == ABILITY_DEFIANT)
|
|
SET_STATCHANGER(STAT_ATK, 2, FALSE);
|
|
else
|
|
SET_STATCHANGER(STAT_SPATK, 2, FALSE);
|
|
}
|
|
#if B_UPDATED_INTIMIDATE >= GEN_8
|
|
else if (stringId == STRINGID_PKMNCUTSATTACKWITH && targetAbility == ABILITY_RATTLED
|
|
&& CompareStat(gBattlerTarget, STAT_SPEED, MAX_STAT_STAGE, CMP_LESS_THAN))
|
|
{
|
|
gBattlerAbility = gBattlerTarget;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_AbilityRaisesDefenderStat;
|
|
SET_STATCHANGER(STAT_SPEED, 1, FALSE);
|
|
}
|
|
#endif
|
|
|
|
// Signal for the trainer slide-in system.
|
|
if ((stringId == STRINGID_ITDOESNTAFFECT || stringId == STRINGID_PKMNWASNTAFFECTED || stringId == STRINGID_PKMNUNAFFECTED)
|
|
&& GetBattlerSide(gBattlerTarget) == B_SIDE_OPPONENT
|
|
&& gBattleStruct->trainerSlidePlayerMonUnaffectedMsgState != 2)
|
|
gBattleStruct->trainerSlidePlayerMonUnaffectedMsgState = 1;
|
|
|
|
BtlController_EmitPrintString(battler, BUFFER_A, stringId);
|
|
MarkBattlerForControllerExec(battler);
|
|
}
|
|
|
|
void ResetSentPokesToOpponentValue(void)
|
|
{
|
|
s32 i;
|
|
u32 bits = 0;
|
|
|
|
gSentPokesToOpponent[0] = 0;
|
|
gSentPokesToOpponent[1] = 0;
|
|
|
|
for (i = 0; i < gBattlersCount; i += 2)
|
|
bits |= gBitTable[gBattlerPartyIndexes[i]];
|
|
|
|
for (i = 1; i < gBattlersCount; i += 2)
|
|
gSentPokesToOpponent[(i & BIT_FLANK) >> 1] = bits;
|
|
}
|
|
|
|
void OpponentSwitchInResetSentPokesToOpponentValue(u32 battler)
|
|
{
|
|
s32 i = 0;
|
|
u32 bits = 0;
|
|
|
|
if (GetBattlerSide(battler) == B_SIDE_OPPONENT)
|
|
{
|
|
u8 flank = ((battler & BIT_FLANK) >> 1);
|
|
gSentPokesToOpponent[flank] = 0;
|
|
|
|
for (i = 0; i < gBattlersCount; i += 2)
|
|
{
|
|
if (!(gAbsentBattlerFlags & gBitTable[i]))
|
|
bits |= gBitTable[gBattlerPartyIndexes[i]];
|
|
}
|
|
gSentPokesToOpponent[flank] = bits;
|
|
}
|
|
}
|
|
|
|
void UpdateSentPokesToOpponentValue(u32 battler)
|
|
{
|
|
if (GetBattlerSide(battler) == B_SIDE_OPPONENT)
|
|
{
|
|
OpponentSwitchInResetSentPokesToOpponentValue(battler);
|
|
}
|
|
else
|
|
{
|
|
s32 i;
|
|
for (i = 1; i < gBattlersCount; i++)
|
|
gSentPokesToOpponent[(i & BIT_FLANK) >> 1] |= gBitTable[gBattlerPartyIndexes[battler]];
|
|
}
|
|
}
|
|
|
|
void BattleScriptPush(const u8 *bsPtr)
|
|
{
|
|
gBattleResources->battleScriptsStack->ptr[gBattleResources->battleScriptsStack->size++] = bsPtr;
|
|
}
|
|
|
|
void BattleScriptPushCursor(void)
|
|
{
|
|
gBattleResources->battleScriptsStack->ptr[gBattleResources->battleScriptsStack->size++] = gBattlescriptCurrInstr;
|
|
}
|
|
|
|
void BattleScriptPop(void)
|
|
{
|
|
if (gBattleResources->battleScriptsStack->size != 0)
|
|
gBattlescriptCurrInstr = gBattleResources->battleScriptsStack->ptr[--gBattleResources->battleScriptsStack->size];
|
|
}
|
|
|
|
static bool32 IsGravityPreventingMove(u32 move)
|
|
{
|
|
if (!(gFieldStatuses & STATUS_FIELD_GRAVITY))
|
|
return FALSE;
|
|
|
|
return gBattleMoves[move].gravityBanned;
|
|
}
|
|
|
|
bool32 IsHealBlockPreventingMove(u32 battler, u32 move)
|
|
{
|
|
if (!(gStatuses3[battler] & STATUS3_HEAL_BLOCK))
|
|
return FALSE;
|
|
|
|
return gBattleMoves[move].healingMove;
|
|
}
|
|
|
|
static bool32 IsBelchPreventingMove(u32 battler, u32 move)
|
|
{
|
|
if (gBattleMoves[move].effect != EFFECT_BELCH)
|
|
return FALSE;
|
|
|
|
return !(gBattleStruct->ateBerry[battler & BIT_SIDE] & gBitTable[gBattlerPartyIndexes[battler]]);
|
|
}
|
|
|
|
// Dynamax bypasses all selection prevention except Taunt and Assault Vest.
|
|
#define DYNAMAX_BYPASS_CHECK !gBattleStruct->dynamax.playerSelect && !IsDynamaxed(gBattlerAttacker)
|
|
|
|
u32 TrySetCantSelectMoveBattleScript(u32 battler)
|
|
{
|
|
u32 limitations = 0;
|
|
u8 moveId = gBattleResources->bufferB[battler][2] & ~(RET_MEGA_EVOLUTION | RET_ULTRA_BURST | RET_DYNAMAX);
|
|
u32 move = gBattleMons[battler].moves[moveId];
|
|
u32 holdEffect = GetBattlerHoldEffect(battler, TRUE);
|
|
u16 *choicedMove = &gBattleStruct->choicedMove[battler];
|
|
|
|
if (DYNAMAX_BYPASS_CHECK && gBattleStruct->zmove.toBeUsed[gBattlerAttacker] == MOVE_NONE && gDisableStructs[battler].disabledMove == move && move != MOVE_NONE)
|
|
{
|
|
gBattleScripting.battler = battler;
|
|
gCurrentMove = move;
|
|
if (gBattleTypeFlags & BATTLE_TYPE_PALACE)
|
|
{
|
|
gPalaceSelectionBattleScripts[battler] = BattleScript_SelectingDisabledMoveInPalace;
|
|
gProtectStructs[battler].palaceUnableToUseMove = TRUE;
|
|
}
|
|
else
|
|
{
|
|
gSelectionBattleScripts[battler] = BattleScript_SelectingDisabledMove;
|
|
limitations++;
|
|
}
|
|
}
|
|
|
|
if (DYNAMAX_BYPASS_CHECK && gBattleStruct->zmove.toBeUsed[gBattlerAttacker] == MOVE_NONE && move == gLastMoves[battler] && move != MOVE_STRUGGLE && (gBattleMons[battler].status2 & STATUS2_TORMENT))
|
|
{
|
|
CancelMultiTurnMoves(battler);
|
|
if (gBattleTypeFlags & BATTLE_TYPE_PALACE)
|
|
{
|
|
gPalaceSelectionBattleScripts[battler] = BattleScript_SelectingTormentedMoveInPalace;
|
|
gProtectStructs[battler].palaceUnableToUseMove = TRUE;
|
|
}
|
|
else
|
|
{
|
|
gSelectionBattleScripts[battler] = BattleScript_SelectingTormentedMove;
|
|
limitations++;
|
|
}
|
|
}
|
|
|
|
if (gBattleStruct->zmove.toBeUsed[gBattlerAttacker] == MOVE_NONE && gDisableStructs[battler].tauntTimer != 0 && IS_MOVE_STATUS(move))
|
|
{
|
|
if (IsDynamaxed(gBattlerAttacker))
|
|
gCurrentMove = MOVE_MAX_GUARD;
|
|
else
|
|
gCurrentMove = move;
|
|
if (gBattleTypeFlags & BATTLE_TYPE_PALACE)
|
|
{
|
|
gPalaceSelectionBattleScripts[battler] = BattleScript_SelectingNotAllowedMoveTauntInPalace;
|
|
gProtectStructs[battler].palaceUnableToUseMove = TRUE;
|
|
}
|
|
else
|
|
{
|
|
gSelectionBattleScripts[battler] = BattleScript_SelectingNotAllowedMoveTaunt;
|
|
limitations++;
|
|
}
|
|
}
|
|
|
|
if (DYNAMAX_BYPASS_CHECK && gBattleStruct->zmove.toBeUsed[gBattlerAttacker] == MOVE_NONE && gDisableStructs[battler].throatChopTimer != 0 && gBattleMoves[move].soundMove)
|
|
{
|
|
gCurrentMove = move;
|
|
if (gBattleTypeFlags & BATTLE_TYPE_PALACE)
|
|
{
|
|
gPalaceSelectionBattleScripts[battler] = BattleScript_SelectingNotAllowedMoveThroatChopInPalace;
|
|
gProtectStructs[battler].palaceUnableToUseMove = TRUE;
|
|
}
|
|
else
|
|
{
|
|
gSelectionBattleScripts[battler] = BattleScript_SelectingNotAllowedMoveThroatChop;
|
|
limitations++;
|
|
}
|
|
}
|
|
|
|
if (DYNAMAX_BYPASS_CHECK && gBattleStruct->zmove.toBeUsed[gBattlerAttacker] == MOVE_NONE && GetImprisonedMovesCount(battler, move))
|
|
{
|
|
gCurrentMove = move;
|
|
if (gBattleTypeFlags & BATTLE_TYPE_PALACE)
|
|
{
|
|
gPalaceSelectionBattleScripts[battler] = BattleScript_SelectingImprisonedMoveInPalace;
|
|
gProtectStructs[battler].palaceUnableToUseMove = TRUE;
|
|
}
|
|
else
|
|
{
|
|
gSelectionBattleScripts[battler] = BattleScript_SelectingImprisonedMove;
|
|
limitations++;
|
|
}
|
|
}
|
|
|
|
if (DYNAMAX_BYPASS_CHECK && gBattleStruct->zmove.toBeUsed[gBattlerAttacker] == MOVE_NONE && IsGravityPreventingMove(move))
|
|
{
|
|
gCurrentMove = move;
|
|
if (gBattleTypeFlags & BATTLE_TYPE_PALACE)
|
|
{
|
|
gPalaceSelectionBattleScripts[battler] = BattleScript_SelectingNotAllowedMoveGravityInPalace;
|
|
gProtectStructs[battler].palaceUnableToUseMove = TRUE;
|
|
}
|
|
else
|
|
{
|
|
gSelectionBattleScripts[battler] = BattleScript_SelectingNotAllowedMoveGravity;
|
|
limitations++;
|
|
}
|
|
}
|
|
|
|
if (DYNAMAX_BYPASS_CHECK && gBattleStruct->zmove.toBeUsed[gBattlerAttacker] == MOVE_NONE && IsHealBlockPreventingMove(battler, move))
|
|
{
|
|
gCurrentMove = move;
|
|
if (gBattleTypeFlags & BATTLE_TYPE_PALACE)
|
|
{
|
|
gPalaceSelectionBattleScripts[battler] = BattleScript_SelectingNotAllowedMoveHealBlockInPalace;
|
|
gProtectStructs[battler].palaceUnableToUseMove = TRUE;
|
|
}
|
|
else
|
|
{
|
|
gSelectionBattleScripts[battler] = BattleScript_SelectingNotAllowedMoveHealBlock;
|
|
limitations++;
|
|
}
|
|
}
|
|
|
|
if (DYNAMAX_BYPASS_CHECK && gBattleStruct->zmove.toBeUsed[gBattlerAttacker] == MOVE_NONE && IsBelchPreventingMove(battler, move))
|
|
{
|
|
gCurrentMove = move;
|
|
if (gBattleTypeFlags & BATTLE_TYPE_PALACE)
|
|
{
|
|
gPalaceSelectionBattleScripts[battler] = BattleScript_SelectingNotAllowedBelchInPalace;
|
|
gProtectStructs[battler].palaceUnableToUseMove = TRUE;
|
|
}
|
|
else
|
|
{
|
|
gSelectionBattleScripts[battler] = BattleScript_SelectingNotAllowedBelch;
|
|
limitations++;
|
|
}
|
|
}
|
|
|
|
if (DYNAMAX_BYPASS_CHECK && gBattleMoves[move].effect == EFFECT_STUFF_CHEEKS && ItemId_GetPocket(gBattleMons[battler].item) != POCKET_BERRIES)
|
|
{
|
|
gCurrentMove = move;
|
|
if (gBattleTypeFlags & BATTLE_TYPE_PALACE)
|
|
{
|
|
gPalaceSelectionBattleScripts[battler] = BattleScript_SelectingNotAllowedStuffCheeksInPalace;
|
|
gProtectStructs[battler].palaceUnableToUseMove = TRUE;
|
|
}
|
|
else
|
|
{
|
|
gSelectionBattleScripts[battler] = BattleScript_SelectingNotAllowedStuffCheeks;
|
|
limitations++;
|
|
}
|
|
}
|
|
|
|
if (gBattleMoves[move].cantUseTwice && move == gLastResultingMoves[battler])
|
|
{
|
|
gCurrentMove = move;
|
|
PREPARE_MOVE_BUFFER(gBattleTextBuff1, gCurrentMove);
|
|
if (gBattleTypeFlags & BATTLE_TYPE_PALACE)
|
|
{
|
|
gPalaceSelectionBattleScripts[battler] = BattleScript_SelectingNotAllowedCurrentMoveInPalace;
|
|
gProtectStructs[battler].palaceUnableToUseMove = TRUE;
|
|
}
|
|
else
|
|
{
|
|
gSelectionBattleScripts[battler] = BattleScript_SelectingNotAllowedCurrentMove;
|
|
limitations++;
|
|
}
|
|
}
|
|
|
|
gPotentialItemEffectBattler = battler;
|
|
if (DYNAMAX_BYPASS_CHECK && HOLD_EFFECT_CHOICE(holdEffect) && *choicedMove != MOVE_NONE && *choicedMove != MOVE_UNAVAILABLE && *choicedMove != move)
|
|
{
|
|
gCurrentMove = *choicedMove;
|
|
gLastUsedItem = gBattleMons[battler].item;
|
|
if (gBattleTypeFlags & BATTLE_TYPE_PALACE)
|
|
{
|
|
gPalaceSelectionBattleScripts[battler] = BattleScript_SelectingNotAllowedMoveChoiceItemInPalace;
|
|
gProtectStructs[battler].palaceUnableToUseMove = TRUE;
|
|
}
|
|
else
|
|
{
|
|
gSelectionBattleScripts[battler] = BattleScript_SelectingNotAllowedMoveChoiceItem;
|
|
limitations++;
|
|
}
|
|
}
|
|
else if (holdEffect == HOLD_EFFECT_ASSAULT_VEST && IS_MOVE_STATUS(move) && gBattleMoves[move].effect != EFFECT_ME_FIRST)
|
|
{
|
|
if (IsDynamaxed(gBattlerAttacker))
|
|
gCurrentMove = MOVE_MAX_GUARD;
|
|
else
|
|
gCurrentMove = move;
|
|
gLastUsedItem = gBattleMons[battler].item;
|
|
if (gBattleTypeFlags & BATTLE_TYPE_PALACE)
|
|
{
|
|
gPalaceSelectionBattleScripts[battler] = BattleScript_SelectingNotAllowedMoveAssaultVestInPalace;
|
|
gProtectStructs[battler].palaceUnableToUseMove = TRUE;
|
|
}
|
|
else
|
|
{
|
|
gSelectionBattleScripts[battler] = BattleScript_SelectingNotAllowedMoveAssaultVest;
|
|
limitations++;
|
|
}
|
|
}
|
|
if (DYNAMAX_BYPASS_CHECK && (GetBattlerAbility(battler) == ABILITY_GORILLA_TACTICS) && *choicedMove != MOVE_NONE
|
|
&& *choicedMove != MOVE_UNAVAILABLE && *choicedMove != move)
|
|
{
|
|
gCurrentMove = *choicedMove;
|
|
gLastUsedItem = gBattleMons[battler].item;
|
|
if (gBattleTypeFlags & BATTLE_TYPE_PALACE)
|
|
{
|
|
gPalaceSelectionBattleScripts[battler] = BattleScript_SelectingNotAllowedMoveGorillaTacticsInPalace;
|
|
gProtectStructs[battler].palaceUnableToUseMove = TRUE;
|
|
}
|
|
else
|
|
{
|
|
gSelectionBattleScripts[battler] = BattleScript_SelectingNotAllowedMoveGorillaTactics;
|
|
limitations++;
|
|
}
|
|
}
|
|
|
|
if (gBattleMons[battler].pp[moveId] == 0)
|
|
{
|
|
if (gBattleTypeFlags & BATTLE_TYPE_PALACE)
|
|
{
|
|
gProtectStructs[battler].palaceUnableToUseMove = TRUE;
|
|
}
|
|
else
|
|
{
|
|
gSelectionBattleScripts[battler] = BattleScript_SelectingMoveWithNoPP;
|
|
limitations++;
|
|
}
|
|
}
|
|
|
|
if (gBattleMoves[move].effect == EFFECT_PLACEHOLDER)
|
|
{
|
|
if (gBattleTypeFlags & BATTLE_TYPE_PALACE)
|
|
{
|
|
gPalaceSelectionBattleScripts[battler] = BattleScript_SelectingNotAllowedPlaceholderInPalace;
|
|
gProtectStructs[battler].palaceUnableToUseMove = TRUE;
|
|
}
|
|
else
|
|
{
|
|
gSelectionBattleScripts[battler] = BattleScript_SelectingNotAllowedPlaceholder;
|
|
limitations++;
|
|
}
|
|
}
|
|
|
|
return limitations;
|
|
}
|
|
|
|
u8 CheckMoveLimitations(u32 battler, u8 unusableMoves, u16 check)
|
|
{
|
|
u32 move, moveEffect;
|
|
u32 holdEffect = GetBattlerHoldEffect(battler, TRUE);
|
|
u16 *choicedMove = &gBattleStruct->choicedMove[battler];
|
|
s32 i;
|
|
|
|
gPotentialItemEffectBattler = battler;
|
|
|
|
for (i = 0; i < MAX_MON_MOVES; i++)
|
|
{
|
|
move = gBattleMons[battler].moves[i];
|
|
moveEffect = gBattleMoves[move].effect;
|
|
// No move
|
|
if (check & MOVE_LIMITATION_ZEROMOVE && move == MOVE_NONE)
|
|
unusableMoves |= gBitTable[i];
|
|
// No PP
|
|
else if (check & MOVE_LIMITATION_PP && gBattleMons[battler].pp[i] == 0)
|
|
unusableMoves |= gBitTable[i];
|
|
// Placeholder
|
|
else if (check & MOVE_LIMITATION_PLACEHOLDER && moveEffect == EFFECT_PLACEHOLDER)
|
|
unusableMoves |= gBitTable[i];
|
|
// Disable
|
|
else if (check & MOVE_LIMITATION_DISABLED && move == gDisableStructs[battler].disabledMove)
|
|
unusableMoves |= gBitTable[i];
|
|
// Torment
|
|
else if (check & MOVE_LIMITATION_TORMENTED && move == gLastMoves[battler] && gBattleMons[battler].status2 & STATUS2_TORMENT)
|
|
unusableMoves |= gBitTable[i];
|
|
// Taunt
|
|
else if (check & MOVE_LIMITATION_TAUNT && gDisableStructs[battler].tauntTimer && IS_MOVE_STATUS(move))
|
|
unusableMoves |= gBitTable[i];
|
|
// Imprison
|
|
else if (check & MOVE_LIMITATION_IMPRISON && GetImprisonedMovesCount(battler, move))
|
|
unusableMoves |= gBitTable[i];
|
|
// Encore
|
|
else if (check & MOVE_LIMITATION_ENCORE && gDisableStructs[battler].encoreTimer && gDisableStructs[battler].encoredMove != move)
|
|
unusableMoves |= gBitTable[i];
|
|
// Choice Items
|
|
else if (check & MOVE_LIMITATION_CHOICE_ITEM && HOLD_EFFECT_CHOICE(holdEffect) && *choicedMove != MOVE_NONE && *choicedMove != MOVE_UNAVAILABLE && *choicedMove != move)
|
|
unusableMoves |= gBitTable[i];
|
|
// Assault Vest
|
|
else if (check & MOVE_LIMITATION_ASSAULT_VEST && holdEffect == HOLD_EFFECT_ASSAULT_VEST && IS_MOVE_STATUS(move) && gBattleMoves[move].effect != EFFECT_ME_FIRST)
|
|
unusableMoves |= gBitTable[i];
|
|
// Gravity
|
|
else if (check & MOVE_LIMITATION_GRAVITY && IsGravityPreventingMove(move))
|
|
unusableMoves |= gBitTable[i];
|
|
// Heal Block
|
|
else if (check & MOVE_LIMITATION_HEAL_BLOCK && IsHealBlockPreventingMove(battler, move))
|
|
unusableMoves |= gBitTable[i];
|
|
// Belch
|
|
else if (check & MOVE_LIMITATION_BELCH && IsBelchPreventingMove(battler, move))
|
|
unusableMoves |= gBitTable[i];
|
|
// Throat Chop
|
|
else if (check & MOVE_LIMITATION_THROAT_CHOP && gDisableStructs[battler].throatChopTimer && gBattleMoves[move].soundMove)
|
|
unusableMoves |= gBitTable[i];
|
|
// Stuff Cheeks
|
|
else if (check & MOVE_LIMITATION_STUFF_CHEEKS && moveEffect == EFFECT_STUFF_CHEEKS && ItemId_GetPocket(gBattleMons[battler].item) != POCKET_BERRIES)
|
|
unusableMoves |= gBitTable[i];
|
|
// Gorilla Tactics
|
|
else if (check & MOVE_LIMITATION_CHOICE_ITEM && GetBattlerAbility(battler) == ABILITY_GORILLA_TACTICS && *choicedMove != MOVE_NONE && *choicedMove != MOVE_UNAVAILABLE && *choicedMove != move)
|
|
unusableMoves |= gBitTable[i];
|
|
// Can't Use Twice flag
|
|
else if (check & MOVE_LIMITATION_CANT_USE_TWICE && gBattleMoves[move].cantUseTwice && move == gLastResultingMoves[battler])
|
|
unusableMoves |= gBitTable[i];
|
|
}
|
|
return unusableMoves;
|
|
}
|
|
|
|
#define ALL_MOVES_MASK ((1 << MAX_MON_MOVES) - 1)
|
|
bool32 AreAllMovesUnusable(u32 battler)
|
|
{
|
|
u8 unusable = CheckMoveLimitations(battler, 0, MOVE_LIMITATIONS_ALL);
|
|
|
|
if (unusable == ALL_MOVES_MASK) // All moves are unusable.
|
|
{
|
|
gProtectStructs[battler].noValidMoves = TRUE;
|
|
gSelectionBattleScripts[battler] = BattleScript_NoMovesLeft;
|
|
}
|
|
else
|
|
{
|
|
gProtectStructs[battler].noValidMoves = FALSE;
|
|
}
|
|
|
|
return (unusable == ALL_MOVES_MASK);
|
|
}
|
|
|
|
u8 GetImprisonedMovesCount(u32 battler, u16 move)
|
|
{
|
|
s32 i;
|
|
u8 imprisonedMoves = 0;
|
|
u32 battlerSide = GetBattlerSide(battler);
|
|
|
|
for (i = 0; i < gBattlersCount; i++)
|
|
{
|
|
if (battlerSide != GetBattlerSide(i) && gStatuses3[i] & STATUS3_IMPRISONED_OTHERS)
|
|
{
|
|
s32 j;
|
|
for (j = 0; j < MAX_MON_MOVES; j++)
|
|
{
|
|
if (move == gBattleMons[i].moves[j])
|
|
break;
|
|
}
|
|
if (j < MAX_MON_MOVES)
|
|
imprisonedMoves++;
|
|
}
|
|
}
|
|
|
|
return imprisonedMoves;
|
|
}
|
|
|
|
u32 GetBattlerAffectionHearts(u32 battler)
|
|
{
|
|
u8 side = GetBattlerSide(battler);
|
|
struct Pokemon *party = GetSideParty(side);
|
|
u16 species = GetMonData(&party[gBattlerPartyIndexes[battler]], MON_DATA_SPECIES);
|
|
|
|
if (side != B_SIDE_PLAYER)
|
|
return AFFECTION_NO_HEARTS;
|
|
else if (gSpeciesInfo[species].isMegaEvolution
|
|
|| (gBattleTypeFlags & (BATTLE_TYPE_EREADER_TRAINER
|
|
| BATTLE_TYPE_FRONTIER
|
|
| BATTLE_TYPE_LINK
|
|
| BATTLE_TYPE_RECORDED_LINK
|
|
| BATTLE_TYPE_SECRET_BASE)))
|
|
return AFFECTION_NO_HEARTS;
|
|
|
|
return GetMonAffectionHearts(&party[gBattlerPartyIndexes[battler]]);
|
|
}
|
|
|
|
static void TryToRevertMimicryAndFlags(void)
|
|
{
|
|
u32 i;
|
|
|
|
for (i = 0; i < gBattlersCount; i++)
|
|
{
|
|
gDisableStructs[i].terrainAbilityDone = FALSE;
|
|
if (GetBattlerAbility(i) == ABILITY_MIMICRY)
|
|
RESTORE_BATTLER_TYPE(i);
|
|
}
|
|
}
|
|
|
|
enum
|
|
{
|
|
ENDTURN_ORDER,
|
|
ENDTURN_REFLECT,
|
|
ENDTURN_LIGHT_SCREEN,
|
|
ENDTURN_AURORA_VEIL,
|
|
ENDTURN_MIST,
|
|
ENDTURN_LUCKY_CHANT,
|
|
ENDTURN_SAFEGUARD,
|
|
ENDTURN_TAILWIND,
|
|
ENDTURN_WISH,
|
|
ENDTURN_RAIN,
|
|
ENDTURN_SANDSTORM,
|
|
ENDTURN_SUN,
|
|
ENDTURN_HAIL,
|
|
ENDTURN_SNOW,
|
|
ENDTURN_DAMAGE_NON_TYPES,
|
|
ENDTURN_GRAVITY,
|
|
ENDTURN_WATER_SPORT,
|
|
ENDTURN_MUD_SPORT,
|
|
ENDTURN_TRICK_ROOM,
|
|
ENDTURN_WONDER_ROOM,
|
|
ENDTURN_MAGIC_ROOM,
|
|
ENDTURN_ELECTRIC_TERRAIN,
|
|
ENDTURN_MISTY_TERRAIN,
|
|
ENDTURN_GRASSY_TERRAIN,
|
|
ENDTURN_PSYCHIC_TERRAIN,
|
|
ENDTURN_ION_DELUGE,
|
|
ENDTURN_FAIRY_LOCK,
|
|
ENDTURN_RETALIATE,
|
|
ENDTURN_WEATHER_FORM,
|
|
ENDTURN_STATUS_HEAL,
|
|
ENDTURN_RAINBOW,
|
|
ENDTURN_SEA_OF_FIRE,
|
|
ENDTURN_SWAMP,
|
|
ENDTURN_FIELD_COUNT,
|
|
};
|
|
|
|
static bool32 EndTurnTerrain(u32 terrainFlag, u32 stringTableId)
|
|
{
|
|
if (gFieldStatuses & terrainFlag)
|
|
{
|
|
if (terrainFlag & STATUS_FIELD_GRASSY_TERRAIN)
|
|
BattleScriptExecute(BattleScript_GrassyTerrainHeals);
|
|
if (!(gFieldStatuses & STATUS_FIELD_TERRAIN_PERMANENT) && --gFieldTimers.terrainTimer == 0)
|
|
{
|
|
gFieldStatuses &= ~terrainFlag;
|
|
TryToRevertMimicryAndFlags();
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = stringTableId;
|
|
BattleScriptExecute(BattleScript_TerrainEnds);
|
|
return TRUE;
|
|
}
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
u8 DoFieldEndTurnEffects(void)
|
|
{
|
|
u8 effect = 0;
|
|
|
|
for (gBattlerAttacker = 0; gBattlerAttacker < gBattlersCount && gAbsentBattlerFlags & gBitTable[gBattlerAttacker]; gBattlerAttacker++)
|
|
{
|
|
}
|
|
for (gBattlerTarget = 0; gBattlerTarget < gBattlersCount && gAbsentBattlerFlags & gBitTable[gBattlerTarget]; gBattlerTarget++)
|
|
{
|
|
}
|
|
|
|
do
|
|
{
|
|
s32 i;
|
|
u8 side;
|
|
|
|
switch (gBattleStruct->turnCountersTracker)
|
|
{
|
|
case ENDTURN_ORDER:
|
|
for (i = 0; i < gBattlersCount; i++)
|
|
{
|
|
gBattlerByTurnOrder[i] = i;
|
|
}
|
|
for (i = 0; i < gBattlersCount - 1; i++)
|
|
{
|
|
s32 j;
|
|
for (j = i + 1; j < gBattlersCount; j++)
|
|
{
|
|
if (!gProtectStructs[i].quash
|
|
&& !gProtectStructs[j].quash
|
|
&& GetWhichBattlerFaster(gBattlerByTurnOrder[i], gBattlerByTurnOrder[j], FALSE) == -1)
|
|
SwapTurnOrder(i, j);
|
|
}
|
|
}
|
|
|
|
gBattleStruct->turnCountersTracker++;
|
|
gBattleStruct->turnSideTracker = 0;
|
|
// fall through
|
|
case ENDTURN_REFLECT:
|
|
while (gBattleStruct->turnSideTracker < 2)
|
|
{
|
|
side = gBattleStruct->turnSideTracker;
|
|
gBattlerAttacker = gSideTimers[side].reflectBattlerId;
|
|
if (gSideStatuses[side] & SIDE_STATUS_REFLECT)
|
|
{
|
|
if (--gSideTimers[side].reflectTimer == 0)
|
|
{
|
|
gSideStatuses[side] &= ~SIDE_STATUS_REFLECT;
|
|
BattleScriptExecute(BattleScript_SideStatusWoreOff);
|
|
PREPARE_MOVE_BUFFER(gBattleTextBuff1, MOVE_REFLECT);
|
|
effect++;
|
|
}
|
|
}
|
|
gBattleStruct->turnSideTracker++;
|
|
if (effect != 0)
|
|
break;
|
|
}
|
|
if (effect == 0)
|
|
{
|
|
gBattleStruct->turnCountersTracker++;
|
|
gBattleStruct->turnSideTracker = 0;
|
|
}
|
|
break;
|
|
case ENDTURN_LIGHT_SCREEN:
|
|
while (gBattleStruct->turnSideTracker < 2)
|
|
{
|
|
side = gBattleStruct->turnSideTracker;
|
|
gBattlerAttacker = gSideTimers[side].lightscreenBattlerId;
|
|
if (gSideStatuses[side] & SIDE_STATUS_LIGHTSCREEN)
|
|
{
|
|
if (--gSideTimers[side].lightscreenTimer == 0)
|
|
{
|
|
gSideStatuses[side] &= ~SIDE_STATUS_LIGHTSCREEN;
|
|
BattleScriptExecute(BattleScript_SideStatusWoreOff);
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = side;
|
|
PREPARE_MOVE_BUFFER(gBattleTextBuff1, MOVE_LIGHT_SCREEN);
|
|
effect++;
|
|
}
|
|
}
|
|
gBattleStruct->turnSideTracker++;
|
|
if (effect != 0)
|
|
break;
|
|
}
|
|
if (effect == 0)
|
|
{
|
|
gBattleStruct->turnCountersTracker++;
|
|
gBattleStruct->turnSideTracker = 0;
|
|
}
|
|
break;
|
|
case ENDTURN_AURORA_VEIL:
|
|
while (gBattleStruct->turnSideTracker < 2)
|
|
{
|
|
side = gBattleStruct->turnSideTracker;
|
|
gBattlerAttacker = gSideTimers[side].auroraVeilBattlerId;
|
|
if (gSideStatuses[side] & SIDE_STATUS_AURORA_VEIL)
|
|
{
|
|
if (--gSideTimers[side].auroraVeilTimer == 0)
|
|
{
|
|
gSideStatuses[side] &= ~SIDE_STATUS_AURORA_VEIL;
|
|
BattleScriptExecute(BattleScript_SideStatusWoreOff);
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = side;
|
|
PREPARE_MOVE_BUFFER(gBattleTextBuff1, MOVE_AURORA_VEIL);
|
|
effect++;
|
|
}
|
|
}
|
|
gBattleStruct->turnSideTracker++;
|
|
if (effect != 0)
|
|
break;
|
|
}
|
|
if (!effect)
|
|
{
|
|
gBattleStruct->turnCountersTracker++;
|
|
gBattleStruct->turnSideTracker = 0;
|
|
}
|
|
break;
|
|
case ENDTURN_MIST:
|
|
while (gBattleStruct->turnSideTracker < 2)
|
|
{
|
|
side = gBattleStruct->turnSideTracker;
|
|
gBattlerAttacker = gSideTimers[side].mistBattlerId;
|
|
if (gSideTimers[side].mistTimer != 0 && --gSideTimers[side].mistTimer == 0)
|
|
{
|
|
gSideStatuses[side] &= ~SIDE_STATUS_MIST;
|
|
BattleScriptExecute(BattleScript_SideStatusWoreOff);
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = side;
|
|
PREPARE_MOVE_BUFFER(gBattleTextBuff1, MOVE_MIST);
|
|
effect++;
|
|
}
|
|
gBattleStruct->turnSideTracker++;
|
|
if (effect != 0)
|
|
break;
|
|
}
|
|
if (effect == 0)
|
|
{
|
|
gBattleStruct->turnCountersTracker++;
|
|
gBattleStruct->turnSideTracker = 0;
|
|
}
|
|
break;
|
|
case ENDTURN_SAFEGUARD:
|
|
while (gBattleStruct->turnSideTracker < 2)
|
|
{
|
|
side = gBattleStruct->turnSideTracker;
|
|
gBattlerAttacker = gSideTimers[side].safeguardBattlerId;
|
|
if (gSideStatuses[side] & SIDE_STATUS_SAFEGUARD)
|
|
{
|
|
if (--gSideTimers[side].safeguardTimer == 0)
|
|
{
|
|
gSideStatuses[side] &= ~SIDE_STATUS_SAFEGUARD;
|
|
BattleScriptExecute(BattleScript_SafeguardEnds);
|
|
effect++;
|
|
}
|
|
}
|
|
gBattleStruct->turnSideTracker++;
|
|
if (effect != 0)
|
|
break;
|
|
}
|
|
if (effect == 0)
|
|
{
|
|
gBattleStruct->turnCountersTracker++;
|
|
gBattleStruct->turnSideTracker = 0;
|
|
}
|
|
break;
|
|
case ENDTURN_LUCKY_CHANT:
|
|
while (gBattleStruct->turnSideTracker < 2)
|
|
{
|
|
side = gBattleStruct->turnSideTracker;
|
|
gBattlerAttacker = gSideTimers[side].luckyChantBattlerId;
|
|
if (gSideStatuses[side] & SIDE_STATUS_LUCKY_CHANT)
|
|
{
|
|
if (--gSideTimers[side].luckyChantTimer == 0)
|
|
{
|
|
gSideStatuses[side] &= ~SIDE_STATUS_LUCKY_CHANT;
|
|
BattleScriptExecute(BattleScript_LuckyChantEnds);
|
|
effect++;
|
|
}
|
|
}
|
|
gBattleStruct->turnSideTracker++;
|
|
if (effect != 0)
|
|
break;
|
|
}
|
|
if (!effect)
|
|
{
|
|
gBattleStruct->turnCountersTracker++;
|
|
gBattleStruct->turnSideTracker = 0;
|
|
}
|
|
break;
|
|
case ENDTURN_TAILWIND:
|
|
while (gBattleStruct->turnSideTracker < 2)
|
|
{
|
|
side = gBattleStruct->turnSideTracker;
|
|
gBattlerAttacker = gSideTimers[side].tailwindBattlerId;
|
|
if (gSideStatuses[side] & SIDE_STATUS_TAILWIND)
|
|
{
|
|
if (--gSideTimers[side].tailwindTimer == 0)
|
|
{
|
|
gSideStatuses[side] &= ~SIDE_STATUS_TAILWIND;
|
|
BattleScriptExecute(BattleScript_TailwindEnds);
|
|
effect++;
|
|
}
|
|
}
|
|
gBattleStruct->turnSideTracker++;
|
|
if (effect != 0)
|
|
break;
|
|
}
|
|
if (!effect)
|
|
{
|
|
gBattleStruct->turnCountersTracker++;
|
|
gBattleStruct->turnSideTracker = 0;
|
|
}
|
|
break;
|
|
case ENDTURN_WISH:
|
|
while (gBattleStruct->turnSideTracker < gBattlersCount)
|
|
{
|
|
u32 battler = gBattlerByTurnOrder[gBattleStruct->turnSideTracker];
|
|
if (gWishFutureKnock.wishCounter[battler] != 0
|
|
&& --gWishFutureKnock.wishCounter[battler] == 0
|
|
&& gBattleMons[battler].hp != 0)
|
|
{
|
|
gBattlerTarget = battler;
|
|
BattleScriptExecute(BattleScript_WishComesTrue);
|
|
effect++;
|
|
}
|
|
gBattleStruct->turnSideTracker++;
|
|
if (effect != 0)
|
|
break;
|
|
}
|
|
if (effect == 0)
|
|
{
|
|
gBattleStruct->turnCountersTracker++;
|
|
gBattleStruct->turnSideTracker = 0;
|
|
}
|
|
break;
|
|
case ENDTURN_RAIN:
|
|
if (gBattleWeather & B_WEATHER_RAIN)
|
|
{
|
|
if (!(gBattleWeather & B_WEATHER_RAIN_PERMANENT)
|
|
&& !(gBattleWeather & B_WEATHER_RAIN_PRIMAL))
|
|
{
|
|
if (--gWishFutureKnock.weatherDuration == 0)
|
|
{
|
|
gBattleWeather &= ~B_WEATHER_RAIN_TEMPORARY;
|
|
gBattleWeather &= ~B_WEATHER_RAIN_DOWNPOUR;
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_RAIN_STOPPED;
|
|
}
|
|
else if (gBattleWeather & B_WEATHER_RAIN_DOWNPOUR)
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_DOWNPOUR_CONTINUES;
|
|
else
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_RAIN_CONTINUES;
|
|
}
|
|
else if (gBattleWeather & B_WEATHER_RAIN_DOWNPOUR)
|
|
{
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_DOWNPOUR_CONTINUES;
|
|
}
|
|
else
|
|
{
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_RAIN_CONTINUES;
|
|
}
|
|
|
|
BattleScriptExecute(BattleScript_RainContinuesOrEnds);
|
|
effect++;
|
|
}
|
|
gBattleStruct->turnCountersTracker++;
|
|
break;
|
|
case ENDTURN_SANDSTORM:
|
|
if (gBattleWeather & B_WEATHER_SANDSTORM)
|
|
{
|
|
if (!(gBattleWeather & B_WEATHER_SANDSTORM_PERMANENT) && --gWishFutureKnock.weatherDuration == 0)
|
|
{
|
|
gBattleWeather &= ~B_WEATHER_SANDSTORM_TEMPORARY;
|
|
gBattlescriptCurrInstr = BattleScript_SandStormHailSnowEnds;
|
|
}
|
|
else
|
|
{
|
|
gBattlescriptCurrInstr = BattleScript_DamagingWeatherContinues;
|
|
}
|
|
|
|
gBattleScripting.animArg1 = B_ANIM_SANDSTORM_CONTINUES;
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_SANDSTORM;
|
|
BattleScriptExecute(gBattlescriptCurrInstr);
|
|
effect++;
|
|
}
|
|
gBattleStruct->turnCountersTracker++;
|
|
break;
|
|
case ENDTURN_SUN:
|
|
if (gBattleWeather & B_WEATHER_SUN)
|
|
{
|
|
if (!(gBattleWeather & B_WEATHER_SUN_PERMANENT)
|
|
&& !(gBattleWeather & B_WEATHER_SUN_PRIMAL)
|
|
&& --gWishFutureKnock.weatherDuration == 0)
|
|
{
|
|
gBattleWeather &= ~B_WEATHER_SUN_TEMPORARY;
|
|
for (i = 0; i < gBattlersCount; i++)
|
|
gDisableStructs[i].weatherAbilityDone = FALSE;
|
|
gBattlescriptCurrInstr = BattleScript_SunlightFaded;
|
|
}
|
|
else
|
|
{
|
|
gBattlescriptCurrInstr = BattleScript_SunlightContinues;
|
|
}
|
|
|
|
BattleScriptExecute(gBattlescriptCurrInstr);
|
|
effect++;
|
|
}
|
|
gBattleStruct->turnCountersTracker++;
|
|
break;
|
|
case ENDTURN_HAIL:
|
|
if (gBattleWeather & B_WEATHER_HAIL)
|
|
{
|
|
if (!(gBattleWeather & B_WEATHER_HAIL_PERMANENT) && --gWishFutureKnock.weatherDuration == 0)
|
|
{
|
|
gBattleWeather &= ~B_WEATHER_HAIL_TEMPORARY;
|
|
gBattlescriptCurrInstr = BattleScript_SandStormHailSnowEnds;
|
|
}
|
|
else
|
|
{
|
|
gBattlescriptCurrInstr = BattleScript_DamagingWeatherContinues;
|
|
}
|
|
|
|
gBattleScripting.animArg1 = B_ANIM_HAIL_CONTINUES;
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_HAIL;
|
|
BattleScriptExecute(gBattlescriptCurrInstr);
|
|
effect++;
|
|
}
|
|
gBattleStruct->turnCountersTracker++;
|
|
break;
|
|
case ENDTURN_SNOW:
|
|
if (gBattleWeather & B_WEATHER_SNOW)
|
|
{
|
|
if (!(gBattleWeather & B_WEATHER_SNOW_PERMANENT) && --gWishFutureKnock.weatherDuration == 0)
|
|
{
|
|
gBattleWeather &= ~B_WEATHER_SNOW_TEMPORARY;
|
|
gBattlescriptCurrInstr = BattleScript_SandStormHailSnowEnds;
|
|
}
|
|
else
|
|
{
|
|
gBattlescriptCurrInstr = BattleScript_DamagingWeatherContinues;
|
|
}
|
|
|
|
gBattleScripting.animArg1 = B_ANIM_SNOW_CONTINUES;
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_SNOW;
|
|
BattleScriptExecute(gBattlescriptCurrInstr);
|
|
effect++;
|
|
}
|
|
gBattleStruct->turnCountersTracker++;
|
|
break;
|
|
case ENDTURN_DAMAGE_NON_TYPES:
|
|
while (gBattleStruct->turnSideTracker < 2)
|
|
{
|
|
side = gBattleStruct->turnSideTracker;
|
|
if (gSideStatuses[side] & SIDE_STATUS_DAMAGE_NON_TYPES)
|
|
{
|
|
if (--gSideTimers[side].damageNonTypesTimer == 0)
|
|
{
|
|
// There is no in-game message when this side status ends.
|
|
gSideStatuses[side] &= ~SIDE_STATUS_DAMAGE_NON_TYPES;
|
|
effect++;
|
|
}
|
|
else
|
|
{
|
|
ChooseDamageNonTypesString(gSideTimers[side].damageNonTypesType);
|
|
BattleScriptExecute(BattleScript_DamageNonTypesContinues);
|
|
}
|
|
}
|
|
gBattleStruct->turnSideTracker++;
|
|
if (effect != 0)
|
|
break;
|
|
}
|
|
if (!effect)
|
|
{
|
|
gBattleStruct->turnCountersTracker++;
|
|
gBattleStruct->turnSideTracker = 0;
|
|
}
|
|
break;
|
|
case ENDTURN_TRICK_ROOM:
|
|
if (gFieldStatuses & STATUS_FIELD_TRICK_ROOM && --gFieldTimers.trickRoomTimer == 0)
|
|
{
|
|
gFieldStatuses &= ~STATUS_FIELD_TRICK_ROOM;
|
|
BattleScriptExecute(BattleScript_TrickRoomEnds);
|
|
effect++;
|
|
}
|
|
gBattleStruct->turnCountersTracker++;
|
|
break;
|
|
case ENDTURN_WONDER_ROOM:
|
|
if (gFieldStatuses & STATUS_FIELD_WONDER_ROOM && --gFieldTimers.wonderRoomTimer == 0)
|
|
{
|
|
gFieldStatuses &= ~STATUS_FIELD_WONDER_ROOM;
|
|
BattleScriptExecute(BattleScript_WonderRoomEnds);
|
|
effect++;
|
|
}
|
|
gBattleStruct->turnCountersTracker++;
|
|
break;
|
|
case ENDTURN_MAGIC_ROOM:
|
|
if (gFieldStatuses & STATUS_FIELD_MAGIC_ROOM && --gFieldTimers.magicRoomTimer == 0)
|
|
{
|
|
gFieldStatuses &= ~STATUS_FIELD_MAGIC_ROOM;
|
|
BattleScriptExecute(BattleScript_MagicRoomEnds);
|
|
effect++;
|
|
}
|
|
gBattleStruct->turnCountersTracker++;
|
|
break;
|
|
case ENDTURN_ELECTRIC_TERRAIN:
|
|
effect = EndTurnTerrain(STATUS_FIELD_ELECTRIC_TERRAIN, B_MSG_TERRAIN_END_ELECTRIC);
|
|
gBattleStruct->turnCountersTracker++;
|
|
break;
|
|
case ENDTURN_MISTY_TERRAIN:
|
|
effect = EndTurnTerrain(STATUS_FIELD_MISTY_TERRAIN, B_MSG_TERRAIN_END_MISTY);
|
|
gBattleStruct->turnCountersTracker++;
|
|
break;
|
|
case ENDTURN_GRASSY_TERRAIN:
|
|
effect = EndTurnTerrain(STATUS_FIELD_GRASSY_TERRAIN, B_MSG_TERRAIN_END_GRASSY);
|
|
gBattleStruct->turnCountersTracker++;
|
|
break;
|
|
case ENDTURN_PSYCHIC_TERRAIN:
|
|
effect = EndTurnTerrain(STATUS_FIELD_PSYCHIC_TERRAIN, B_MSG_TERRAIN_END_PSYCHIC);
|
|
gBattleStruct->turnCountersTracker++;
|
|
break;
|
|
case ENDTURN_WATER_SPORT:
|
|
if (gFieldStatuses & STATUS_FIELD_WATERSPORT && --gFieldTimers.waterSportTimer == 0)
|
|
{
|
|
gFieldStatuses &= ~STATUS_FIELD_WATERSPORT;
|
|
BattleScriptExecute(BattleScript_WaterSportEnds);
|
|
effect++;
|
|
}
|
|
gBattleStruct->turnCountersTracker++;
|
|
break;
|
|
case ENDTURN_MUD_SPORT:
|
|
if (gFieldStatuses & STATUS_FIELD_MUDSPORT && --gFieldTimers.mudSportTimer == 0)
|
|
{
|
|
gFieldStatuses &= ~STATUS_FIELD_MUDSPORT;
|
|
BattleScriptExecute(BattleScript_MudSportEnds);
|
|
effect++;
|
|
}
|
|
gBattleStruct->turnCountersTracker++;
|
|
break;
|
|
case ENDTURN_GRAVITY:
|
|
if (gFieldStatuses & STATUS_FIELD_GRAVITY && --gFieldTimers.gravityTimer == 0)
|
|
{
|
|
gFieldStatuses &= ~STATUS_FIELD_GRAVITY;
|
|
BattleScriptExecute(BattleScript_GravityEnds);
|
|
effect++;
|
|
}
|
|
gBattleStruct->turnCountersTracker++;
|
|
break;
|
|
case ENDTURN_ION_DELUGE:
|
|
gFieldStatuses &= ~STATUS_FIELD_ION_DELUGE;
|
|
gBattleStruct->turnCountersTracker++;
|
|
break;
|
|
case ENDTURN_FAIRY_LOCK:
|
|
if (gFieldStatuses & STATUS_FIELD_FAIRY_LOCK && --gFieldTimers.fairyLockTimer == 0)
|
|
{
|
|
gFieldStatuses &= ~STATUS_FIELD_FAIRY_LOCK;
|
|
}
|
|
gBattleStruct->turnCountersTracker++;
|
|
break;
|
|
case ENDTURN_RETALIATE:
|
|
if (gSideTimers[B_SIDE_PLAYER].retaliateTimer > 0)
|
|
gSideTimers[B_SIDE_PLAYER].retaliateTimer--;
|
|
if (gSideTimers[B_SIDE_OPPONENT].retaliateTimer > 0)
|
|
gSideTimers[B_SIDE_OPPONENT].retaliateTimer--;
|
|
gBattleStruct->turnCountersTracker++;
|
|
break;
|
|
case ENDTURN_WEATHER_FORM:
|
|
for (i = 0; i < gBattlersCount; i++)
|
|
{
|
|
if (AbilityBattleEffects(ABILITYEFFECT_ON_WEATHER, i, 0, 0, 0))
|
|
{
|
|
effect++;
|
|
break;
|
|
}
|
|
}
|
|
if (effect == 0)
|
|
gBattleStruct->turnCountersTracker++;
|
|
break;
|
|
case ENDTURN_STATUS_HEAL:
|
|
for (gBattlerAttacker = 0; gBattlerAttacker < gBattlersCount; gBattlerAttacker++)
|
|
{
|
|
if (B_AFFECTION_MECHANICS == TRUE
|
|
&& GetBattlerSide(gBattlerAttacker) == B_SIDE_PLAYER
|
|
&& GetBattlerAffectionHearts(gBattlerAttacker) >= AFFECTION_FOUR_HEARTS
|
|
&& (Random() % 100 < 20))
|
|
{
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = 1;
|
|
BattleScriptExecute(BattleScript_AffectionBasedStatusHeal);
|
|
break;
|
|
}
|
|
}
|
|
gBattleStruct->turnCountersTracker++;
|
|
break;
|
|
case ENDTURN_RAINBOW:
|
|
while (gBattleStruct->turnSideTracker < 2)
|
|
{
|
|
side = gBattleStruct->turnSideTracker;
|
|
if (gSideStatuses[side] & SIDE_STATUS_RAINBOW)
|
|
{
|
|
for (gBattlerAttacker = 0; gBattlerAttacker < gBattlersCount; gBattlerAttacker++)
|
|
{
|
|
if (GetBattlerSide(gBattlerAttacker) == side)
|
|
break;
|
|
}
|
|
|
|
if (gSideTimers[side].rainbowTimer > 0 && --gSideTimers[side].rainbowTimer == 0)
|
|
{
|
|
gSideStatuses[side] &= ~SIDE_STATUS_RAINBOW;
|
|
BattleScriptExecute(BattleScript_TheRainbowDisappeared);
|
|
effect++;
|
|
}
|
|
}
|
|
gBattleStruct->turnSideTracker++;
|
|
if (effect != 0)
|
|
break;
|
|
}
|
|
if (!effect)
|
|
{
|
|
gBattleStruct->turnCountersTracker++;
|
|
gBattleStruct->turnSideTracker = 0;
|
|
}
|
|
break;
|
|
case ENDTURN_SEA_OF_FIRE:
|
|
while (gBattleStruct->turnSideTracker < 2)
|
|
{
|
|
side = gBattleStruct->turnSideTracker;
|
|
|
|
if (gSideStatuses[side] & SIDE_STATUS_SEA_OF_FIRE)
|
|
{
|
|
for (gBattlerAttacker = 0; gBattlerAttacker < gBattlersCount; gBattlerAttacker++)
|
|
{
|
|
if (GetBattlerSide(gBattlerAttacker) == side)
|
|
break;
|
|
}
|
|
|
|
if (gSideTimers[side].seaOfFireTimer > 0 && --gSideTimers[side].seaOfFireTimer == 0)
|
|
{
|
|
gSideStatuses[side] &= ~SIDE_STATUS_SEA_OF_FIRE;
|
|
BattleScriptExecute(BattleScript_TheSeaOfFireDisappeared);
|
|
effect++;
|
|
}
|
|
}
|
|
gBattleStruct->turnSideTracker++;
|
|
if (effect != 0)
|
|
break;
|
|
}
|
|
if (!effect)
|
|
{
|
|
gBattleStruct->turnCountersTracker++;
|
|
gBattleStruct->turnSideTracker = 0;
|
|
}
|
|
break;
|
|
case ENDTURN_SWAMP:
|
|
while (gBattleStruct->turnSideTracker < 2)
|
|
{
|
|
side = gBattleStruct->turnSideTracker;
|
|
|
|
if (gSideStatuses[side] & SIDE_STATUS_SWAMP)
|
|
{
|
|
for (gBattlerAttacker = 0; gBattlerAttacker < gBattlersCount; gBattlerAttacker++)
|
|
{
|
|
if (GetBattlerSide(gBattlerAttacker) == side)
|
|
break;
|
|
}
|
|
|
|
if (gSideTimers[side].swampTimer > 0 && --gSideTimers[side].swampTimer == 0)
|
|
{
|
|
gSideStatuses[side] &= ~SIDE_STATUS_SWAMP;
|
|
BattleScriptExecute(BattleScript_TheSwampDisappeared);
|
|
effect++;
|
|
}
|
|
}
|
|
gBattleStruct->turnSideTracker++;
|
|
if (effect != 0)
|
|
break;
|
|
}
|
|
if (!effect)
|
|
{
|
|
gBattleStruct->turnCountersTracker++;
|
|
gBattleStruct->turnSideTracker = 0;
|
|
}
|
|
break;
|
|
case ENDTURN_FIELD_COUNT:
|
|
effect++;
|
|
break;
|
|
}
|
|
} while (effect == 0);
|
|
|
|
return (gBattleMainFunc != BattleTurnPassed);
|
|
}
|
|
|
|
enum
|
|
{
|
|
ENDTURN_INGRAIN,
|
|
ENDTURN_AQUA_RING,
|
|
ENDTURN_ABILITIES,
|
|
ENDTURN_ITEMS1,
|
|
ENDTURN_LEECH_SEED,
|
|
ENDTURN_POISON,
|
|
ENDTURN_BAD_POISON,
|
|
ENDTURN_BURN,
|
|
ENDTURN_FROSTBITE,
|
|
ENDTURN_NIGHTMARES,
|
|
ENDTURN_CURSE,
|
|
ENDTURN_WRAP,
|
|
ENDTURN_OCTOLOCK,
|
|
ENDTURN_UPROAR,
|
|
ENDTURN_THRASH,
|
|
ENDTURN_FLINCH,
|
|
ENDTURN_DISABLE,
|
|
ENDTURN_ENCORE,
|
|
ENDTURN_MAGNET_RISE,
|
|
ENDTURN_TELEKINESIS,
|
|
ENDTURN_HEALBLOCK,
|
|
ENDTURN_EMBARGO,
|
|
ENDTURN_LOCK_ON,
|
|
ENDTURN_CHARGE,
|
|
ENDTURN_LASER_FOCUS,
|
|
ENDTURN_TAUNT,
|
|
ENDTURN_YAWN,
|
|
ENDTURN_ITEMS2,
|
|
ENDTURN_ORBS,
|
|
ENDTURN_ROOST,
|
|
ENDTURN_ELECTRIFY,
|
|
ENDTURN_POWDER,
|
|
ENDTURN_THROAT_CHOP,
|
|
ENDTURN_SLOW_START,
|
|
ENDTURN_CUD_CHEW,
|
|
ENDTURN_TORMENT, // supposedly this goes after Taunt, before Encore, but Encore is first right now?
|
|
ENDTURN_SALT_CURE,
|
|
ENDTURN_SYRUP_BOMB,
|
|
ENDTURN_DYNAMAX,
|
|
ENDTURN_SEA_OF_FIRE_DAMAGE,
|
|
ENDTURN_BATTLER_COUNT
|
|
};
|
|
|
|
// Ingrain, Leech Seed, Strength Sap and Aqua Ring
|
|
s32 GetDrainedBigRootHp(u32 battler, s32 hp)
|
|
{
|
|
if (GetBattlerHoldEffect(battler, TRUE) == HOLD_EFFECT_BIG_ROOT)
|
|
hp = (hp * 1300) / 1000;
|
|
if (hp == 0)
|
|
hp = 1;
|
|
|
|
return hp * -1;
|
|
}
|
|
|
|
#define MAGIC_GUARD_CHECK \
|
|
if (ability == ABILITY_MAGIC_GUARD) \
|
|
{\
|
|
RecordAbilityBattle(battler, ability);\
|
|
gBattleStruct->turnEffectsTracker++;\
|
|
break;\
|
|
}
|
|
|
|
|
|
u8 DoBattlerEndTurnEffects(void)
|
|
{
|
|
u32 battler, ability, i, effect = 0;
|
|
|
|
gHitMarker |= (HITMARKER_GRUDGE | HITMARKER_IGNORE_BIDE);
|
|
while (gBattleStruct->turnEffectsBattlerId < gBattlersCount && gBattleStruct->turnEffectsTracker <= ENDTURN_BATTLER_COUNT)
|
|
{
|
|
battler = gBattlerAttacker = gBattlerByTurnOrder[gBattleStruct->turnEffectsBattlerId];
|
|
if (gAbsentBattlerFlags & gBitTable[battler])
|
|
{
|
|
gBattleStruct->turnEffectsBattlerId++;
|
|
continue;
|
|
}
|
|
|
|
ability = GetBattlerAbility(battler);
|
|
switch (gBattleStruct->turnEffectsTracker)
|
|
{
|
|
case ENDTURN_INGRAIN: // ingrain
|
|
if ((gStatuses3[battler] & STATUS3_ROOTED)
|
|
&& !BATTLER_MAX_HP(battler)
|
|
&& !(gStatuses3[battler] & STATUS3_HEAL_BLOCK)
|
|
&& gBattleMons[battler].hp != 0)
|
|
{
|
|
gBattleMoveDamage = GetDrainedBigRootHp(battler, GetNonDynamaxMaxHP(battler) / 16);
|
|
BattleScriptExecute(BattleScript_IngrainTurnHeal);
|
|
effect++;
|
|
}
|
|
gBattleStruct->turnEffectsTracker++;
|
|
break;
|
|
case ENDTURN_AQUA_RING: // aqua ring
|
|
if ((gStatuses3[battler] & STATUS3_AQUA_RING)
|
|
&& !BATTLER_MAX_HP(battler)
|
|
&& !(gStatuses3[battler] & STATUS3_HEAL_BLOCK)
|
|
&& gBattleMons[battler].hp != 0)
|
|
{
|
|
gBattleMoveDamage = GetDrainedBigRootHp(battler, GetNonDynamaxMaxHP(battler) / 16);
|
|
BattleScriptExecute(BattleScript_AquaRingHeal);
|
|
effect++;
|
|
}
|
|
gBattleStruct->turnEffectsTracker++;
|
|
break;
|
|
case ENDTURN_ABILITIES: // end turn abilities
|
|
if (AbilityBattleEffects(ABILITYEFFECT_ENDTURN, battler, 0, 0, 0))
|
|
effect++;
|
|
gBattleStruct->turnEffectsTracker++;
|
|
break;
|
|
case ENDTURN_ITEMS1: // item effects
|
|
if (ItemBattleEffects(ITEMEFFECT_NORMAL, battler, FALSE))
|
|
effect++;
|
|
gBattleStruct->turnEffectsTracker++;
|
|
break;
|
|
case ENDTURN_ITEMS2: // item effects again
|
|
if (ItemBattleEffects(ITEMEFFECT_NORMAL, battler, TRUE))
|
|
effect++;
|
|
gBattleStruct->turnEffectsTracker++;
|
|
break;
|
|
case ENDTURN_ORBS:
|
|
if (IsBattlerAlive(battler) && ItemBattleEffects(ITEMEFFECT_ORBS, battler, FALSE))
|
|
effect++;
|
|
gBattleStruct->turnEffectsTracker++;
|
|
break;
|
|
case ENDTURN_LEECH_SEED: // leech seed
|
|
if ((gStatuses3[battler] & STATUS3_LEECHSEED)
|
|
&& gBattleMons[gStatuses3[battler] & STATUS3_LEECHSEED_BATTLER].hp != 0
|
|
&& gBattleMons[battler].hp != 0)
|
|
{
|
|
MAGIC_GUARD_CHECK;
|
|
|
|
gBattlerTarget = gStatuses3[battler] & STATUS3_LEECHSEED_BATTLER; // Notice gBattlerTarget is actually the HP receiver.
|
|
gBattleMoveDamage = GetNonDynamaxMaxHP(battler) / 8;
|
|
if (gBattleMoveDamage == 0)
|
|
gBattleMoveDamage = 1;
|
|
gBattleScripting.animArg1 = gBattlerTarget;
|
|
gBattleScripting.animArg2 = gBattlerAttacker;
|
|
BattleScriptExecute(BattleScript_LeechSeedTurnDrain);
|
|
effect++;
|
|
}
|
|
gBattleStruct->turnEffectsTracker++;
|
|
break;
|
|
case ENDTURN_POISON: // poison
|
|
if ((gBattleMons[battler].status1 & STATUS1_POISON)
|
|
&& gBattleMons[battler].hp != 0)
|
|
{
|
|
MAGIC_GUARD_CHECK;
|
|
|
|
if (ability == ABILITY_POISON_HEAL)
|
|
{
|
|
if (!BATTLER_MAX_HP(battler) && !(gStatuses3[battler] & STATUS3_HEAL_BLOCK))
|
|
{
|
|
gBattleMoveDamage = GetNonDynamaxMaxHP(battler) / 8;
|
|
if (gBattleMoveDamage == 0)
|
|
gBattleMoveDamage = 1;
|
|
gBattleMoveDamage *= -1;
|
|
BattleScriptExecute(BattleScript_PoisonHealActivates);
|
|
effect++;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
gBattleMoveDamage = GetNonDynamaxMaxHP(battler) / 8;
|
|
if (gBattleMoveDamage == 0)
|
|
gBattleMoveDamage = 1;
|
|
BattleScriptExecute(BattleScript_PoisonTurnDmg);
|
|
effect++;
|
|
}
|
|
}
|
|
gBattleStruct->turnEffectsTracker++;
|
|
break;
|
|
case ENDTURN_BAD_POISON: // toxic poison
|
|
if ((gBattleMons[battler].status1 & STATUS1_TOXIC_POISON)
|
|
&& gBattleMons[battler].hp != 0)
|
|
{
|
|
MAGIC_GUARD_CHECK;
|
|
|
|
if (ability == ABILITY_POISON_HEAL)
|
|
{
|
|
if (!BATTLER_MAX_HP(battler) && !(gStatuses3[battler] & STATUS3_HEAL_BLOCK))
|
|
{
|
|
gBattleMoveDamage = GetNonDynamaxMaxHP(battler) / 8;
|
|
if (gBattleMoveDamage == 0)
|
|
gBattleMoveDamage = 1;
|
|
gBattleMoveDamage *= -1;
|
|
BattleScriptExecute(BattleScript_PoisonHealActivates);
|
|
effect++;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
gBattleMoveDamage = GetNonDynamaxMaxHP(battler) / 16;
|
|
if (gBattleMoveDamage == 0)
|
|
gBattleMoveDamage = 1;
|
|
if ((gBattleMons[battler].status1 & STATUS1_TOXIC_COUNTER) != STATUS1_TOXIC_TURN(15)) // not 16 turns
|
|
gBattleMons[battler].status1 += STATUS1_TOXIC_TURN(1);
|
|
gBattleMoveDamage *= (gBattleMons[battler].status1 & STATUS1_TOXIC_COUNTER) >> 8;
|
|
BattleScriptExecute(BattleScript_PoisonTurnDmg);
|
|
effect++;
|
|
}
|
|
}
|
|
gBattleStruct->turnEffectsTracker++;
|
|
break;
|
|
case ENDTURN_BURN: // burn
|
|
if ((gBattleMons[battler].status1 & STATUS1_BURN)
|
|
&& gBattleMons[battler].hp != 0)
|
|
{
|
|
MAGIC_GUARD_CHECK;
|
|
gBattleMoveDamage = GetNonDynamaxMaxHP(battler) / (B_BURN_DAMAGE >= GEN_7 ? 16 : 8);
|
|
if (ability == ABILITY_HEATPROOF)
|
|
{
|
|
if (gBattleMoveDamage > (gBattleMoveDamage / 2) + 1) // Record ability if the burn takes less damage than it normally would.
|
|
RecordAbilityBattle(battler, ABILITY_HEATPROOF);
|
|
gBattleMoveDamage /= 2;
|
|
}
|
|
if (gBattleMoveDamage == 0)
|
|
gBattleMoveDamage = 1;
|
|
BattleScriptExecute(BattleScript_BurnTurnDmg);
|
|
effect++;
|
|
}
|
|
gBattleStruct->turnEffectsTracker++;
|
|
break;
|
|
case ENDTURN_FROSTBITE: // burn
|
|
if ((gBattleMons[battler].status1 & STATUS1_FROSTBITE)
|
|
&& gBattleMons[battler].hp != 0)
|
|
{
|
|
MAGIC_GUARD_CHECK;
|
|
gBattleMoveDamage = GetNonDynamaxMaxHP(battler) / (B_BURN_DAMAGE >= GEN_7 ? 16 : 8);
|
|
if (gBattleMoveDamage == 0)
|
|
gBattleMoveDamage = 1;
|
|
BattleScriptExecute(BattleScript_FrostbiteTurnDmg);
|
|
effect++;
|
|
}
|
|
gBattleStruct->turnEffectsTracker++;
|
|
break;
|
|
case ENDTURN_NIGHTMARES: // spooky nightmares
|
|
if ((gBattleMons[battler].status2 & STATUS2_NIGHTMARE)
|
|
&& gBattleMons[battler].hp != 0)
|
|
{
|
|
MAGIC_GUARD_CHECK;
|
|
// R/S does not perform this sleep check, which causes the nightmare effect to
|
|
// persist even after the affected Pokémon has been awakened by Shed Skin.
|
|
if (gBattleMons[battler].status1 & STATUS1_SLEEP)
|
|
{
|
|
gBattleMoveDamage = GetNonDynamaxMaxHP(battler) / 4;
|
|
if (gBattleMoveDamage == 0)
|
|
gBattleMoveDamage = 1;
|
|
BattleScriptExecute(BattleScript_NightmareTurnDmg);
|
|
effect++;
|
|
}
|
|
else
|
|
{
|
|
gBattleMons[battler].status2 &= ~STATUS2_NIGHTMARE;
|
|
}
|
|
}
|
|
gBattleStruct->turnEffectsTracker++;
|
|
break;
|
|
case ENDTURN_CURSE: // curse
|
|
if ((gBattleMons[battler].status2 & STATUS2_CURSED)
|
|
&& gBattleMons[battler].hp != 0)
|
|
{
|
|
MAGIC_GUARD_CHECK;
|
|
gBattleMoveDamage = GetNonDynamaxMaxHP(battler) / 4;
|
|
if (gBattleMoveDamage == 0)
|
|
gBattleMoveDamage = 1;
|
|
BattleScriptExecute(BattleScript_CurseTurnDmg);
|
|
effect++;
|
|
}
|
|
gBattleStruct->turnEffectsTracker++;
|
|
break;
|
|
case ENDTURN_WRAP: // wrap
|
|
if ((gBattleMons[battler].status2 & STATUS2_WRAPPED) && gBattleMons[battler].hp != 0)
|
|
{
|
|
if (--gDisableStructs[battler].wrapTurns != 0) // damaged by wrap
|
|
{
|
|
MAGIC_GUARD_CHECK;
|
|
|
|
gBattleScripting.animArg1 = gBattleStruct->wrappedMove[battler];
|
|
gBattleScripting.animArg2 = gBattleStruct->wrappedMove[battler] >> 8;
|
|
PREPARE_MOVE_BUFFER(gBattleTextBuff1, gBattleStruct->wrappedMove[battler]);
|
|
gBattlescriptCurrInstr = BattleScript_WrapTurnDmg;
|
|
if (GetBattlerHoldEffect(gBattleStruct->wrappedBy[battler], TRUE) == HOLD_EFFECT_BINDING_BAND)
|
|
gBattleMoveDamage = GetNonDynamaxMaxHP(battler) / (B_BINDING_DAMAGE >= GEN_6 ? 6 : 8);
|
|
else
|
|
gBattleMoveDamage = GetNonDynamaxMaxHP(battler) / (B_BINDING_DAMAGE >= GEN_6 ? 8 : 16);
|
|
|
|
if (gBattleMoveDamage == 0)
|
|
gBattleMoveDamage = 1;
|
|
}
|
|
else // broke free
|
|
{
|
|
gBattleMons[battler].status2 &= ~STATUS2_WRAPPED;
|
|
PREPARE_MOVE_BUFFER(gBattleTextBuff1, gBattleStruct->wrappedMove[battler]);
|
|
gBattlescriptCurrInstr = BattleScript_WrapEnds;
|
|
}
|
|
BattleScriptExecute(gBattlescriptCurrInstr);
|
|
effect++;
|
|
}
|
|
gBattleStruct->turnEffectsTracker++;
|
|
break;
|
|
case ENDTURN_OCTOLOCK:
|
|
{
|
|
if (gDisableStructs[battler].octolock)
|
|
{
|
|
gBattlerTarget = battler;
|
|
BattleScriptExecute(BattleScript_OctolockEndTurn);
|
|
effect++;
|
|
}
|
|
gBattleStruct->turnEffectsTracker++;
|
|
}
|
|
break;
|
|
case ENDTURN_UPROAR: // uproar
|
|
if (gBattleMons[battler].status2 & STATUS2_UPROAR)
|
|
{
|
|
for (gBattlerAttacker = 0; gBattlerAttacker < gBattlersCount; gBattlerAttacker++)
|
|
{
|
|
if ((gBattleMons[gBattlerAttacker].status1 & STATUS1_SLEEP)
|
|
&& GetBattlerAbility(gBattlerAttacker) != ABILITY_SOUNDPROOF)
|
|
{
|
|
gBattleMons[gBattlerAttacker].status1 &= ~STATUS1_SLEEP;
|
|
gBattleMons[gBattlerAttacker].status2 &= ~STATUS2_NIGHTMARE;
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = 1;
|
|
BattleScriptExecute(BattleScript_MonWokeUpInUproar);
|
|
BtlController_EmitSetMonData(gBattlerAttacker, BUFFER_A, REQUEST_STATUS_BATTLE, 0, 4, &gBattleMons[gBattlerAttacker].status1);
|
|
MarkBattlerForControllerExec(gBattlerAttacker);
|
|
break;
|
|
}
|
|
}
|
|
if (gBattlerAttacker != gBattlersCount)
|
|
{
|
|
effect = 2; // a Pokémon was awaken
|
|
break;
|
|
}
|
|
else
|
|
{
|
|
gBattlerAttacker = battler;
|
|
gBattleMons[battler].status2 -= STATUS2_UPROAR_TURN(1); // uproar timer goes down
|
|
if (WasUnableToUseMove(battler))
|
|
{
|
|
CancelMultiTurnMoves(battler);
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_UPROAR_ENDS;
|
|
}
|
|
else if (gBattleMons[battler].status2 & STATUS2_UPROAR)
|
|
{
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_UPROAR_CONTINUES;
|
|
gBattleMons[battler].status2 |= STATUS2_MULTIPLETURNS;
|
|
}
|
|
else
|
|
{
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_UPROAR_ENDS;
|
|
CancelMultiTurnMoves(battler);
|
|
}
|
|
BattleScriptExecute(BattleScript_PrintUproarOverTurns);
|
|
effect = 1;
|
|
}
|
|
}
|
|
if (effect != 2)
|
|
gBattleStruct->turnEffectsTracker++;
|
|
break;
|
|
case ENDTURN_THRASH: // thrash
|
|
// Don't decrement STATUS2_LOCK_CONFUSE if the target is held by Sky Drop
|
|
if (gBattleMons[battler].status2 & STATUS2_LOCK_CONFUSE && !(gStatuses3[battler] & STATUS3_SKY_DROPPED))
|
|
{
|
|
gBattleMons[battler].status2 -= STATUS2_LOCK_CONFUSE_TURN(1);
|
|
if (WasUnableToUseMove(battler))
|
|
CancelMultiTurnMoves(battler);
|
|
else if (!(gBattleMons[battler].status2 & STATUS2_LOCK_CONFUSE)
|
|
&& (gBattleMons[battler].status2 & STATUS2_MULTIPLETURNS))
|
|
{
|
|
gBattleMons[battler].status2 &= ~STATUS2_MULTIPLETURNS;
|
|
if (!(gBattleMons[battler].status2 & STATUS2_CONFUSION))
|
|
{
|
|
gBattleScripting.moveEffect = MOVE_EFFECT_CONFUSION | MOVE_EFFECT_AFFECTS_USER;
|
|
SetMoveEffect(TRUE, FALSE);
|
|
if (gBattleMons[battler].status2 & STATUS2_CONFUSION)
|
|
BattleScriptExecute(BattleScript_ThrashConfuses);
|
|
effect++;
|
|
}
|
|
}
|
|
}
|
|
gBattleStruct->turnEffectsTracker++;
|
|
break;
|
|
case ENDTURN_FLINCH: // reset flinch
|
|
gBattleMons[battler].status2 &= ~STATUS2_FLINCHED;
|
|
gBattleStruct->turnEffectsTracker++;
|
|
break;
|
|
case ENDTURN_DISABLE: // disable
|
|
if (gDisableStructs[battler].disableTimer != 0)
|
|
{
|
|
for (i = 0; i < MAX_MON_MOVES; i++)
|
|
{
|
|
if (gDisableStructs[battler].disabledMove == gBattleMons[battler].moves[i])
|
|
break;
|
|
}
|
|
if (i == MAX_MON_MOVES) // Pokémon does not have the disabled move anymore
|
|
{
|
|
gDisableStructs[battler].disabledMove = 0;
|
|
gDisableStructs[battler].disableTimer = 0;
|
|
}
|
|
else if (--gDisableStructs[battler].disableTimer == 0) // disable ends
|
|
{
|
|
gDisableStructs[battler].disabledMove = 0;
|
|
BattleScriptExecute(BattleScript_DisabledNoMore);
|
|
effect++;
|
|
}
|
|
}
|
|
gBattleStruct->turnEffectsTracker++;
|
|
break;
|
|
case ENDTURN_ENCORE: // encore
|
|
if (gDisableStructs[battler].encoreTimer != 0)
|
|
{
|
|
if (gBattleMons[battler].moves[gDisableStructs[battler].encoredMovePos] != gDisableStructs[battler].encoredMove) // Pokémon does not have the encored move anymore
|
|
{
|
|
gDisableStructs[battler].encoredMove = 0;
|
|
gDisableStructs[battler].encoreTimer = 0;
|
|
}
|
|
else if (--gDisableStructs[battler].encoreTimer == 0
|
|
|| gBattleMons[battler].pp[gDisableStructs[battler].encoredMovePos] == 0)
|
|
{
|
|
gDisableStructs[battler].encoredMove = 0;
|
|
gDisableStructs[battler].encoreTimer = 0;
|
|
BattleScriptExecute(BattleScript_EncoredNoMore);
|
|
effect++;
|
|
}
|
|
}
|
|
gBattleStruct->turnEffectsTracker++;
|
|
break;
|
|
case ENDTURN_LOCK_ON: // lock-on decrement
|
|
if (gStatuses3[battler] & STATUS3_ALWAYS_HITS)
|
|
gStatuses3[battler] -= STATUS3_ALWAYS_HITS_TURN(1);
|
|
gBattleStruct->turnEffectsTracker++;
|
|
break;
|
|
case ENDTURN_CHARGE: // charge
|
|
if (gDisableStructs[battler].chargeTimer && --gDisableStructs[battler].chargeTimer == 0)
|
|
gStatuses3[battler] &= ~STATUS3_CHARGED_UP;
|
|
gBattleStruct->turnEffectsTracker++;
|
|
break;
|
|
case ENDTURN_TAUNT: // taunt
|
|
if (gDisableStructs[battler].tauntTimer && --gDisableStructs[battler].tauntTimer == 0)
|
|
{
|
|
BattleScriptExecute(BattleScript_BufferEndTurn);
|
|
PREPARE_MOVE_BUFFER(gBattleTextBuff1, MOVE_TAUNT);
|
|
effect++;
|
|
}
|
|
gBattleStruct->turnEffectsTracker++;
|
|
break;
|
|
case ENDTURN_YAWN: // yawn
|
|
if (gStatuses3[battler] & STATUS3_YAWN)
|
|
{
|
|
u16 battlerAbility = GetBattlerAbility(battler);
|
|
gStatuses3[battler] -= STATUS3_YAWN_TURN(1);
|
|
if (!(gStatuses3[battler] & STATUS3_YAWN) && !(gBattleMons[battler].status1 & STATUS1_ANY)
|
|
&& battlerAbility != ABILITY_VITAL_SPIRIT
|
|
&& battlerAbility != ABILITY_INSOMNIA && !UproarWakeUpCheck(battler)
|
|
&& !IsLeafGuardProtected(battler))
|
|
{
|
|
CancelMultiTurnMoves(battler);
|
|
gEffectBattler = battler;
|
|
if (IsBattlerTerrainAffected(battler, STATUS_FIELD_ELECTRIC_TERRAIN))
|
|
{
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_TERRAINPREVENTS_ELECTRIC;
|
|
BattleScriptExecute(BattleScript_TerrainPreventsEnd2);
|
|
}
|
|
else if (IsBattlerTerrainAffected(battler, STATUS_FIELD_MISTY_TERRAIN))
|
|
{
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_TERRAINPREVENTS_MISTY;
|
|
BattleScriptExecute(BattleScript_TerrainPreventsEnd2);
|
|
}
|
|
else
|
|
{
|
|
if (B_SLEEP_TURNS >= GEN_5)
|
|
gBattleMons[battler].status1 |= ((Random() % 3) + 2);
|
|
else
|
|
gBattleMons[battler].status1 |= ((Random() % 4) + 3);
|
|
|
|
BtlController_EmitSetMonData(battler, BUFFER_A, REQUEST_STATUS_BATTLE, 0, 4, &gBattleMons[battler].status1);
|
|
MarkBattlerForControllerExec(battler);
|
|
BattleScriptExecute(BattleScript_YawnMakesAsleep);
|
|
}
|
|
effect++;
|
|
}
|
|
}
|
|
gBattleStruct->turnEffectsTracker++;
|
|
break;
|
|
case ENDTURN_LASER_FOCUS:
|
|
if (gStatuses3[battler] & STATUS3_LASER_FOCUS)
|
|
{
|
|
if (gDisableStructs[battler].laserFocusTimer == 0 || --gDisableStructs[battler].laserFocusTimer == 0)
|
|
gStatuses3[battler] &= ~STATUS3_LASER_FOCUS;
|
|
}
|
|
gBattleStruct->turnEffectsTracker++;
|
|
break;
|
|
case ENDTURN_EMBARGO:
|
|
if (gStatuses3[battler] & STATUS3_EMBARGO)
|
|
{
|
|
if (gDisableStructs[battler].embargoTimer == 0 || --gDisableStructs[battler].embargoTimer == 0)
|
|
{
|
|
gStatuses3[battler] &= ~STATUS3_EMBARGO;
|
|
BattleScriptExecute(BattleScript_EmbargoEndTurn);
|
|
effect++;
|
|
}
|
|
}
|
|
gBattleStruct->turnEffectsTracker++;
|
|
break;
|
|
case ENDTURN_MAGNET_RISE:
|
|
if (gStatuses3[battler] & STATUS3_MAGNET_RISE)
|
|
{
|
|
if (gDisableStructs[battler].magnetRiseTimer == 0 || --gDisableStructs[battler].magnetRiseTimer == 0)
|
|
{
|
|
gStatuses3[battler] &= ~STATUS3_MAGNET_RISE;
|
|
BattleScriptExecute(BattleScript_BufferEndTurn);
|
|
PREPARE_STRING_BUFFER(gBattleTextBuff1, STRINGID_ELECTROMAGNETISM);
|
|
effect++;
|
|
}
|
|
}
|
|
gBattleStruct->turnEffectsTracker++;
|
|
break;
|
|
case ENDTURN_TELEKINESIS:
|
|
if (gStatuses3[battler] & STATUS3_TELEKINESIS)
|
|
{
|
|
if (gDisableStructs[battler].telekinesisTimer == 0 || --gDisableStructs[battler].telekinesisTimer == 0)
|
|
{
|
|
gStatuses3[battler] &= ~STATUS3_TELEKINESIS;
|
|
BattleScriptExecute(BattleScript_TelekinesisEndTurn);
|
|
effect++;
|
|
}
|
|
}
|
|
gBattleStruct->turnEffectsTracker++;
|
|
break;
|
|
case ENDTURN_HEALBLOCK:
|
|
if (gStatuses3[battler] & STATUS3_HEAL_BLOCK)
|
|
{
|
|
if (gDisableStructs[battler].healBlockTimer == 0 || --gDisableStructs[battler].healBlockTimer == 0)
|
|
{
|
|
gStatuses3[battler] &= ~STATUS3_HEAL_BLOCK;
|
|
BattleScriptExecute(BattleScript_BufferEndTurn);
|
|
PREPARE_MOVE_BUFFER(gBattleTextBuff1, MOVE_HEAL_BLOCK);
|
|
effect++;
|
|
}
|
|
}
|
|
gBattleStruct->turnEffectsTracker++;
|
|
break;
|
|
case ENDTURN_ROOST: // Return flying type.
|
|
if (gBattleResources->flags->flags[battler] & RESOURCE_FLAG_ROOST)
|
|
gBattleResources->flags->flags[battler] &= ~RESOURCE_FLAG_ROOST;
|
|
gBattleStruct->turnEffectsTracker++;
|
|
break;
|
|
case ENDTURN_ELECTRIFY:
|
|
gStatuses4[battler] &= ~STATUS4_ELECTRIFIED;
|
|
gBattleStruct->turnEffectsTracker++;
|
|
case ENDTURN_POWDER:
|
|
gBattleMons[battler].status2 &= ~STATUS2_POWDER;
|
|
gBattleStruct->turnEffectsTracker++;
|
|
case ENDTURN_THROAT_CHOP:
|
|
if (gDisableStructs[battler].throatChopTimer && --gDisableStructs[battler].throatChopTimer == 0)
|
|
{
|
|
BattleScriptExecute(BattleScript_ThroatChopEndTurn);
|
|
effect++;
|
|
}
|
|
gBattleStruct->turnEffectsTracker++;
|
|
break;
|
|
case ENDTURN_SLOW_START:
|
|
if (gDisableStructs[battler].slowStartTimer
|
|
&& --gDisableStructs[battler].slowStartTimer == 0
|
|
&& ability == ABILITY_SLOW_START)
|
|
{
|
|
BattleScriptExecute(BattleScript_SlowStartEnds);
|
|
effect++;
|
|
}
|
|
gBattleStruct->turnEffectsTracker++;
|
|
break;
|
|
case ENDTURN_CUD_CHEW:
|
|
if (GetBattlerAbility(battler) == ABILITY_CUD_CHEW && !gDisableStructs[battler].cudChew && ItemId_GetPocket(GetUsedHeldItem(battler)) == POCKET_BERRIES)
|
|
gDisableStructs[battler].cudChew = TRUE;
|
|
gBattleStruct->turnEffectsTracker++;
|
|
break;
|
|
case ENDTURN_SALT_CURE:
|
|
if (gStatuses4[battler] & STATUS4_SALT_CURE && gBattleMons[battler].hp != 0)
|
|
{
|
|
gBattlerTarget = battler;
|
|
if (IS_BATTLER_OF_TYPE(gBattlerTarget, TYPE_STEEL) || IS_BATTLER_OF_TYPE(gBattlerTarget, TYPE_WATER))
|
|
gBattleMoveDamage = gBattleMons[gBattlerTarget].maxHP / 4;
|
|
else
|
|
gBattleMoveDamage = gBattleMons[gBattlerTarget].maxHP / 8;
|
|
if (gBattleMoveDamage == 0)
|
|
gBattleMoveDamage = 1;
|
|
PREPARE_MOVE_BUFFER(gBattleTextBuff1, MOVE_SALT_CURE);
|
|
BattleScriptExecute(BattleScript_SaltCureExtraDamage);
|
|
effect++;
|
|
}
|
|
gBattleStruct->turnEffectsTracker++;
|
|
break;
|
|
case ENDTURN_SYRUP_BOMB:
|
|
if ((gStatuses4[battler] & STATUS4_SYRUP_BOMB) && (gBattleMons[battler].hp != 0))
|
|
{
|
|
if (gDisableStructs[battler].syrupBombTimer > 0 && --gDisableStructs[battler].syrupBombTimer == 0)
|
|
gStatuses4[battler] &= ~STATUS4_SYRUP_BOMB;
|
|
gBattlerTarget = battler;
|
|
PREPARE_MOVE_BUFFER(gBattleTextBuff1, MOVE_SYRUP_BOMB);
|
|
gBattlescriptCurrInstr = BattleScript_SyrupBombEndTurn;
|
|
BattleScriptExecute(gBattlescriptCurrInstr);
|
|
effect++;
|
|
}
|
|
gBattleStruct->turnEffectsTracker++;
|
|
break;
|
|
case ENDTURN_TORMENT:
|
|
if (gDisableStructs[battler].tormentTimer != PERMANENT_TORMENT
|
|
&& --gDisableStructs[battler].tormentTimer == 0)
|
|
{
|
|
gBattleMons[battler].status2 &= ~STATUS2_TORMENT;
|
|
BattleScriptExecute(BattleScript_TormentEnds);
|
|
effect++;
|
|
}
|
|
gBattleStruct->turnEffectsTracker++;
|
|
break;
|
|
case ENDTURN_DYNAMAX:
|
|
if (IsDynamaxed(battler)
|
|
&& --gBattleStruct->dynamax.dynamaxTurns[battler] == 0)
|
|
{
|
|
gBattleScripting.battler = battler;
|
|
UndoDynamax(battler);
|
|
BattleScriptExecute(BattleScript_DynamaxEnds);
|
|
effect++;
|
|
}
|
|
gBattleStruct->turnEffectsTracker++;
|
|
break;
|
|
case ENDTURN_SEA_OF_FIRE_DAMAGE:
|
|
if (IsBattlerAlive(battler) && gSideStatuses[GetBattlerSide(battler)] & SIDE_STATUS_SEA_OF_FIRE)
|
|
{
|
|
gBattleMoveDamage = gBattleMons[battler].maxHP / 8;
|
|
BtlController_EmitStatusAnimation(battler, BUFFER_A, FALSE, STATUS1_BURN);
|
|
MarkBattlerForControllerExec(battler);
|
|
BattleScriptExecute(BattleScript_HurtByTheSeaOfFire);
|
|
effect++;
|
|
}
|
|
gBattleStruct->turnEffectsTracker++;
|
|
break;
|
|
case ENDTURN_BATTLER_COUNT: // done
|
|
gBattleStruct->turnEffectsTracker = 0;
|
|
gBattleStruct->turnEffectsBattlerId++;
|
|
break;
|
|
}
|
|
|
|
if (effect != 0)
|
|
return effect;
|
|
|
|
}
|
|
gHitMarker &= ~(HITMARKER_GRUDGE | HITMARKER_IGNORE_BIDE);
|
|
return 0;
|
|
}
|
|
|
|
bool32 HandleWishPerishSongOnTurnEnd(void)
|
|
{
|
|
u32 battler;
|
|
|
|
gHitMarker |= (HITMARKER_GRUDGE | HITMARKER_IGNORE_BIDE);
|
|
switch (gBattleStruct->wishPerishSongState)
|
|
{
|
|
case 0:
|
|
while (gBattleStruct->wishPerishSongBattlerId < gBattlersCount)
|
|
{
|
|
battler = gBattleStruct->wishPerishSongBattlerId;
|
|
if (gAbsentBattlerFlags & gBitTable[battler])
|
|
{
|
|
gBattleStruct->wishPerishSongBattlerId++;
|
|
continue;
|
|
}
|
|
|
|
gBattleStruct->wishPerishSongBattlerId++;
|
|
if (gWishFutureKnock.futureSightCounter[battler] != 0
|
|
&& --gWishFutureKnock.futureSightCounter[battler] == 0
|
|
&& gBattleMons[battler].hp != 0)
|
|
{
|
|
if (gWishFutureKnock.futureSightMove[battler] == MOVE_FUTURE_SIGHT)
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_FUTURE_SIGHT;
|
|
else
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_DOOM_DESIRE;
|
|
|
|
PREPARE_MOVE_BUFFER(gBattleTextBuff1, gWishFutureKnock.futureSightMove[battler]);
|
|
|
|
gBattlerTarget = battler;
|
|
gBattlerAttacker = gWishFutureKnock.futureSightAttacker[battler];
|
|
gSpecialStatuses[gBattlerTarget].shellBellDmg = IGNORE_SHELL_BELL;
|
|
gCurrentMove = gWishFutureKnock.futureSightMove[battler];
|
|
SetTypeBeforeUsingMove(gCurrentMove, battler);
|
|
BattleScriptExecute(BattleScript_MonTookFutureAttack);
|
|
|
|
if (gWishFutureKnock.futureSightCounter[battler] == 0
|
|
&& gWishFutureKnock.futureSightCounter[BATTLE_PARTNER(battler)] == 0)
|
|
{
|
|
gSideStatuses[GetBattlerSide(gBattlerTarget)] &= ~SIDE_STATUS_FUTUREATTACK;
|
|
}
|
|
return TRUE;
|
|
}
|
|
}
|
|
gBattleStruct->wishPerishSongState = 1;
|
|
gBattleStruct->wishPerishSongBattlerId = 0;
|
|
// fall through
|
|
case 1:
|
|
while (gBattleStruct->wishPerishSongBattlerId < gBattlersCount)
|
|
{
|
|
battler = gBattlerAttacker = gBattlerByTurnOrder[gBattleStruct->wishPerishSongBattlerId];
|
|
if (gAbsentBattlerFlags & gBitTable[battler])
|
|
{
|
|
gBattleStruct->wishPerishSongBattlerId++;
|
|
continue;
|
|
}
|
|
gBattleStruct->wishPerishSongBattlerId++;
|
|
if (gStatuses3[battler] & STATUS3_PERISH_SONG)
|
|
{
|
|
PREPARE_BYTE_NUMBER_BUFFER(gBattleTextBuff1, 1, gDisableStructs[battler].perishSongTimer);
|
|
if (gDisableStructs[battler].perishSongTimer == 0)
|
|
{
|
|
gStatuses3[battler] &= ~STATUS3_PERISH_SONG;
|
|
gBattleMoveDamage = gBattleMons[battler].hp;
|
|
gBattlescriptCurrInstr = BattleScript_PerishSongTakesLife;
|
|
}
|
|
else
|
|
{
|
|
gDisableStructs[battler].perishSongTimer--;
|
|
gBattlescriptCurrInstr = BattleScript_PerishSongCountGoesDown;
|
|
}
|
|
BattleScriptExecute(gBattlescriptCurrInstr);
|
|
return TRUE;
|
|
}
|
|
}
|
|
gBattleStruct->wishPerishSongState = 2;
|
|
gBattleStruct->wishPerishSongBattlerId = 0;
|
|
// fall through
|
|
case 2:
|
|
if ((gBattleTypeFlags & BATTLE_TYPE_ARENA)
|
|
&& gBattleStruct->arenaTurnCounter == 2
|
|
&& gBattleMons[0].hp != 0 && gBattleMons[1].hp != 0)
|
|
{
|
|
s32 i;
|
|
|
|
for (i = 0; i < 2; i++)
|
|
CancelMultiTurnMoves(i);
|
|
|
|
gBattlescriptCurrInstr = BattleScript_ArenaDoJudgment;
|
|
BattleScriptExecute(BattleScript_ArenaDoJudgment);
|
|
gBattleStruct->wishPerishSongState++;
|
|
return TRUE;
|
|
}
|
|
break;
|
|
}
|
|
|
|
gHitMarker &= ~(HITMARKER_GRUDGE | HITMARKER_IGNORE_BIDE);
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
#define FAINTED_ACTIONS_MAX_CASE 8
|
|
|
|
bool32 HandleFaintedMonActions(void)
|
|
{
|
|
if (gBattleTypeFlags & BATTLE_TYPE_SAFARI)
|
|
return FALSE;
|
|
do
|
|
{
|
|
s32 i;
|
|
switch (gBattleStruct->faintedActionsState)
|
|
{
|
|
case 0:
|
|
gBattleStruct->faintedActionsBattlerId = 0;
|
|
gBattleStruct->faintedActionsState++;
|
|
for (i = 0; i < gBattlersCount; i++)
|
|
{
|
|
if (gAbsentBattlerFlags & gBitTable[i] && !HasNoMonsToSwitch(i, PARTY_SIZE, PARTY_SIZE))
|
|
gAbsentBattlerFlags &= ~(gBitTable[i]);
|
|
}
|
|
// fall through
|
|
case 1:
|
|
do
|
|
{
|
|
gBattlerFainted = gBattlerTarget = gBattleStruct->faintedActionsBattlerId;
|
|
if (gBattleMons[gBattleStruct->faintedActionsBattlerId].hp == 0
|
|
&& !(gBattleStruct->givenExpMons & gBitTable[gBattlerPartyIndexes[gBattleStruct->faintedActionsBattlerId]])
|
|
&& !(gAbsentBattlerFlags & gBitTable[gBattleStruct->faintedActionsBattlerId]))
|
|
{
|
|
BattleScriptExecute(BattleScript_GiveExp);
|
|
gBattleStruct->faintedActionsState = 2;
|
|
return TRUE;
|
|
}
|
|
} while (++gBattleStruct->faintedActionsBattlerId != gBattlersCount);
|
|
gBattleStruct->faintedActionsState = 3;
|
|
break;
|
|
case 2:
|
|
OpponentSwitchInResetSentPokesToOpponentValue(gBattlerFainted);
|
|
if (++gBattleStruct->faintedActionsBattlerId == gBattlersCount)
|
|
gBattleStruct->faintedActionsState = 3;
|
|
else
|
|
gBattleStruct->faintedActionsState = 1;
|
|
// Don't switch mons until all pokemon performed their actions or the battle's over.
|
|
if (B_FAINT_SWITCH_IN >= GEN_4
|
|
&& gBattleOutcome == 0
|
|
&& !NoAliveMonsForEitherParty()
|
|
&& gCurrentTurnActionNumber != gBattlersCount)
|
|
{
|
|
gAbsentBattlerFlags |= gBitTable[gBattlerFainted];
|
|
if (gBattleStruct->faintedActionsState != 1)
|
|
return FALSE;
|
|
}
|
|
break;
|
|
case 3:
|
|
// Don't switch mons until all pokemon performed their actions or the battle's over.
|
|
if (B_FAINT_SWITCH_IN >= GEN_4
|
|
&& gBattleOutcome == 0
|
|
&& !NoAliveMonsForEitherParty()
|
|
&& gCurrentTurnActionNumber != gBattlersCount)
|
|
{
|
|
return FALSE;
|
|
}
|
|
gBattleStruct->faintedActionsBattlerId = 0;
|
|
gBattleStruct->faintedActionsState++;
|
|
// fall through
|
|
case 4:
|
|
do
|
|
{
|
|
gBattlerFainted = gBattlerTarget = gBattleStruct->faintedActionsBattlerId;
|
|
if (gBattleMons[gBattleStruct->faintedActionsBattlerId].hp == 0
|
|
&& !(gAbsentBattlerFlags & gBitTable[gBattleStruct->faintedActionsBattlerId]))
|
|
{
|
|
BattleScriptExecute(BattleScript_HandleFaintedMon);
|
|
gBattleStruct->faintedActionsState = 5;
|
|
return TRUE;
|
|
}
|
|
} while (++gBattleStruct->faintedActionsBattlerId != gBattlersCount);
|
|
gBattleStruct->faintedActionsState = 6;
|
|
break;
|
|
case 5:
|
|
if (++gBattleStruct->faintedActionsBattlerId == gBattlersCount)
|
|
gBattleStruct->faintedActionsState = 6;
|
|
else
|
|
gBattleStruct->faintedActionsState = 4;
|
|
break;
|
|
case 6: // All battlers switch-in abilities happen here to prevent them happening against an empty field.
|
|
for (i = 0; i < gBattlersCount; i++)
|
|
{
|
|
if (gBattleStruct->switchInAbilityPostponed & gBitTable[i])
|
|
{
|
|
if (DoSwitchInAbilitiesItems(i))
|
|
return TRUE;
|
|
gBattleStruct->switchInAbilityPostponed &= ~(gBitTable[i]);
|
|
}
|
|
}
|
|
gBattleStruct->faintedActionsState++;
|
|
break;
|
|
case 7:
|
|
if (ItemBattleEffects(ITEMEFFECT_NORMAL, 0, TRUE))
|
|
return TRUE;
|
|
gBattleStruct->faintedActionsState++;
|
|
break;
|
|
case FAINTED_ACTIONS_MAX_CASE:
|
|
break;
|
|
}
|
|
} while (gBattleStruct->faintedActionsState != FAINTED_ACTIONS_MAX_CASE);
|
|
return FALSE;
|
|
}
|
|
|
|
void TryClearRageAndFuryCutter(void)
|
|
{
|
|
s32 i;
|
|
for (i = 0; i < gBattlersCount; i++)
|
|
{
|
|
if ((gBattleMons[i].status2 & STATUS2_RAGE) && gChosenMoveByBattler[i] != MOVE_RAGE)
|
|
gBattleMons[i].status2 &= ~STATUS2_RAGE;
|
|
if (gDisableStructs[i].furyCutterCounter != 0 && gChosenMoveByBattler[i] != MOVE_FURY_CUTTER)
|
|
gDisableStructs[i].furyCutterCounter = 0;
|
|
}
|
|
}
|
|
|
|
void SetAtkCancellerForCalledMove(void)
|
|
{
|
|
gBattleStruct->atkCancellerTracker = CANCELLER_HEAL_BLOCKED;
|
|
gBattleStruct->isAtkCancelerForCalledMove = TRUE;
|
|
}
|
|
|
|
u8 AtkCanceller_UnableToUseMove(u32 moveType)
|
|
{
|
|
u8 effect = 0;
|
|
do
|
|
{
|
|
switch (gBattleStruct->atkCancellerTracker)
|
|
{
|
|
case CANCELLER_FLAGS: // flags clear
|
|
gBattleMons[gBattlerAttacker].status2 &= ~STATUS2_DESTINY_BOND;
|
|
gStatuses3[gBattlerAttacker] &= ~STATUS3_GRUDGE;
|
|
gStatuses4[gBattlerAttacker] &= ~ STATUS4_GLAIVE_RUSH;
|
|
gBattleScripting.tripleKickPower = 0;
|
|
gBattleStruct->atkCancellerTracker++;
|
|
break;
|
|
case CANCELLER_SKY_DROP:
|
|
// If Pokemon is being held in Sky Drop
|
|
if (gStatuses3[gBattlerAttacker] & STATUS3_SKY_DROPPED)
|
|
{
|
|
gBattlescriptCurrInstr = BattleScript_MoveEnd;
|
|
gHitMarker |= HITMARKER_UNABLE_TO_USE_MOVE;
|
|
effect = 1;
|
|
}
|
|
gBattleStruct->atkCancellerTracker++;
|
|
break;
|
|
case CANCELLER_ASLEEP: // check being asleep
|
|
if (gBattleMons[gBattlerAttacker].status1 & STATUS1_SLEEP)
|
|
{
|
|
if (UproarWakeUpCheck(gBattlerAttacker))
|
|
{
|
|
gBattleMons[gBattlerAttacker].status1 &= ~STATUS1_SLEEP;
|
|
gBattleMons[gBattlerAttacker].status2 &= ~STATUS2_NIGHTMARE;
|
|
BattleScriptPushCursor();
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_WOKE_UP_UPROAR;
|
|
gBattlescriptCurrInstr = BattleScript_MoveUsedWokeUp;
|
|
effect = 2;
|
|
}
|
|
else
|
|
{
|
|
u8 toSub;
|
|
if (GetBattlerAbility(gBattlerAttacker) == ABILITY_EARLY_BIRD)
|
|
toSub = 2;
|
|
else
|
|
toSub = 1;
|
|
if ((gBattleMons[gBattlerAttacker].status1 & STATUS1_SLEEP) < toSub)
|
|
gBattleMons[gBattlerAttacker].status1 &= ~STATUS1_SLEEP;
|
|
else
|
|
gBattleMons[gBattlerAttacker].status1 -= toSub;
|
|
if (gBattleMons[gBattlerAttacker].status1 & STATUS1_SLEEP)
|
|
{
|
|
if (gChosenMove != MOVE_SNORE && gChosenMove != MOVE_SLEEP_TALK)
|
|
{
|
|
gBattlescriptCurrInstr = BattleScript_MoveUsedIsAsleep;
|
|
gHitMarker |= HITMARKER_UNABLE_TO_USE_MOVE;
|
|
effect = 2;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
gBattleMons[gBattlerAttacker].status2 &= ~STATUS2_NIGHTMARE;
|
|
BattleScriptPushCursor();
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_WOKE_UP;
|
|
gBattlescriptCurrInstr = BattleScript_MoveUsedWokeUp;
|
|
effect = 2;
|
|
}
|
|
}
|
|
}
|
|
gBattleStruct->atkCancellerTracker++;
|
|
break;
|
|
case CANCELLER_FROZEN: // check being frozen
|
|
if (gBattleMons[gBattlerAttacker].status1 & STATUS1_FREEZE && !(gBattleMoves[gCurrentMove].thawsUser))
|
|
{
|
|
if (!RandomPercentage(RNG_FROZEN, 20))
|
|
{
|
|
gBattlescriptCurrInstr = BattleScript_MoveUsedIsFrozen;
|
|
gHitMarker |= HITMARKER_NO_ATTACKSTRING;
|
|
}
|
|
else // unfreeze
|
|
{
|
|
gBattleMons[gBattlerAttacker].status1 &= ~STATUS1_FREEZE;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_MoveUsedUnfroze;
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_DEFROSTED;
|
|
}
|
|
effect = 2;
|
|
}
|
|
gBattleStruct->atkCancellerTracker++;
|
|
break;
|
|
case CANCELLER_TRUANT: // truant
|
|
if (GetBattlerAbility(gBattlerAttacker) == ABILITY_TRUANT && gDisableStructs[gBattlerAttacker].truantCounter)
|
|
{
|
|
CancelMultiTurnMoves(gBattlerAttacker);
|
|
gHitMarker |= HITMARKER_UNABLE_TO_USE_MOVE;
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_LOAFING;
|
|
gBattlerAbility = gBattlerAttacker;
|
|
gBattlescriptCurrInstr = BattleScript_TruantLoafingAround;
|
|
gMoveResultFlags |= MOVE_RESULT_MISSED;
|
|
effect = 1;
|
|
}
|
|
gBattleStruct->atkCancellerTracker++;
|
|
break;
|
|
case CANCELLER_RECHARGE: // recharge
|
|
if (gBattleMons[gBattlerAttacker].status2 & STATUS2_RECHARGE)
|
|
{
|
|
gBattleMons[gBattlerAttacker].status2 &= ~STATUS2_RECHARGE;
|
|
gDisableStructs[gBattlerAttacker].rechargeTimer = 0;
|
|
CancelMultiTurnMoves(gBattlerAttacker);
|
|
gBattlescriptCurrInstr = BattleScript_MoveUsedMustRecharge;
|
|
gHitMarker |= HITMARKER_UNABLE_TO_USE_MOVE;
|
|
effect = 1;
|
|
}
|
|
gBattleStruct->atkCancellerTracker++;
|
|
break;
|
|
case CANCELLER_FLINCH: // flinch
|
|
if (gBattleMons[gBattlerAttacker].status2 & STATUS2_FLINCHED)
|
|
{
|
|
gProtectStructs[gBattlerAttacker].flinchImmobility = TRUE;
|
|
CancelMultiTurnMoves(gBattlerAttacker);
|
|
gBattlescriptCurrInstr = BattleScript_MoveUsedFlinched;
|
|
gHitMarker |= HITMARKER_UNABLE_TO_USE_MOVE;
|
|
effect = 1;
|
|
}
|
|
gBattleStruct->atkCancellerTracker++;
|
|
break;
|
|
case CANCELLER_DISABLED: // disabled move
|
|
if (gBattleStruct->zmove.toBeUsed[gBattlerAttacker] == MOVE_NONE && gDisableStructs[gBattlerAttacker].disabledMove == gCurrentMove && gDisableStructs[gBattlerAttacker].disabledMove != MOVE_NONE)
|
|
{
|
|
gProtectStructs[gBattlerAttacker].usedDisabledMove = TRUE;
|
|
gBattleScripting.battler = gBattlerAttacker;
|
|
CancelMultiTurnMoves(gBattlerAttacker);
|
|
gBattlescriptCurrInstr = BattleScript_MoveUsedIsDisabled;
|
|
gHitMarker |= HITMARKER_UNABLE_TO_USE_MOVE;
|
|
effect = 1;
|
|
}
|
|
gBattleStruct->atkCancellerTracker++;
|
|
break;
|
|
case CANCELLER_HEAL_BLOCKED:
|
|
if (gBattleStruct->zmove.toBeUsed[gBattlerAttacker] == MOVE_NONE && gStatuses3[gBattlerAttacker] & STATUS3_HEAL_BLOCK && IsHealBlockPreventingMove(gBattlerAttacker, gCurrentMove))
|
|
{
|
|
gProtectStructs[gBattlerAttacker].usedHealBlockedMove = TRUE;
|
|
gBattleScripting.battler = gBattlerAttacker;
|
|
CancelMultiTurnMoves(gBattlerAttacker);
|
|
gBattlescriptCurrInstr = BattleScript_MoveUsedHealBlockPrevents;
|
|
gHitMarker |= HITMARKER_UNABLE_TO_USE_MOVE;
|
|
effect = 1;
|
|
}
|
|
gBattleStruct->atkCancellerTracker++;
|
|
break;
|
|
case CANCELLER_GRAVITY:
|
|
if (gFieldStatuses & STATUS_FIELD_GRAVITY && IsGravityPreventingMove(gCurrentMove))
|
|
{
|
|
gProtectStructs[gBattlerAttacker].usedGravityPreventedMove = TRUE;
|
|
gBattleScripting.battler = gBattlerAttacker;
|
|
CancelMultiTurnMoves(gBattlerAttacker);
|
|
gBattlescriptCurrInstr = BattleScript_MoveUsedGravityPrevents;
|
|
gHitMarker |= HITMARKER_UNABLE_TO_USE_MOVE;
|
|
effect = 1;
|
|
}
|
|
gBattleStruct->atkCancellerTracker++;
|
|
break;
|
|
case CANCELLER_TAUNTED: // taunt
|
|
if (gBattleStruct->zmove.toBeUsed[gBattlerAttacker] == MOVE_NONE && gDisableStructs[gBattlerAttacker].tauntTimer && IS_MOVE_STATUS(gCurrentMove))
|
|
{
|
|
gProtectStructs[gBattlerAttacker].usedTauntedMove = TRUE;
|
|
CancelMultiTurnMoves(gBattlerAttacker);
|
|
gBattlescriptCurrInstr = BattleScript_MoveUsedIsTaunted;
|
|
gHitMarker |= HITMARKER_UNABLE_TO_USE_MOVE;
|
|
effect = 1;
|
|
}
|
|
gBattleStruct->atkCancellerTracker++;
|
|
break;
|
|
case CANCELLER_IMPRISONED: // imprisoned
|
|
if (gBattleStruct->zmove.toBeUsed[gBattlerAttacker] == MOVE_NONE && GetImprisonedMovesCount(gBattlerAttacker, gCurrentMove))
|
|
{
|
|
gProtectStructs[gBattlerAttacker].usedImprisonedMove = TRUE;
|
|
CancelMultiTurnMoves(gBattlerAttacker);
|
|
gBattlescriptCurrInstr = BattleScript_MoveUsedIsImprisoned;
|
|
gHitMarker |= HITMARKER_UNABLE_TO_USE_MOVE;
|
|
effect = 1;
|
|
}
|
|
gBattleStruct->atkCancellerTracker++;
|
|
break;
|
|
case CANCELLER_CONFUSED: // confusion
|
|
if (!gBattleStruct->isAtkCancelerForCalledMove && gBattleMons[gBattlerAttacker].status2 & STATUS2_CONFUSION)
|
|
{
|
|
if (!(gStatuses4[gBattlerAttacker] & STATUS4_INFINITE_CONFUSION))
|
|
gBattleMons[gBattlerAttacker].status2 -= STATUS2_CONFUSION_TURN(1);
|
|
if (gBattleMons[gBattlerAttacker].status2 & STATUS2_CONFUSION)
|
|
{
|
|
// confusion dmg
|
|
if (RandomWeighted(RNG_CONFUSION, (B_CONFUSION_SELF_DMG_CHANCE >= GEN_7 ? 2 : 1), 1))
|
|
{
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = TRUE;
|
|
gBattlerTarget = gBattlerAttacker;
|
|
gBattleMoveDamage = CalculateMoveDamage(MOVE_NONE, gBattlerAttacker, gBattlerAttacker, TYPE_MYSTERY, 40, FALSE, FALSE, TRUE);
|
|
gProtectStructs[gBattlerAttacker].confusionSelfDmg = TRUE;
|
|
gHitMarker |= HITMARKER_UNABLE_TO_USE_MOVE;
|
|
}
|
|
else
|
|
{
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = FALSE;
|
|
BattleScriptPushCursor();
|
|
}
|
|
gBattlescriptCurrInstr = BattleScript_MoveUsedIsConfused;
|
|
}
|
|
else // snapped out of confusion
|
|
{
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_MoveUsedIsConfusedNoMore;
|
|
}
|
|
effect = 1;
|
|
}
|
|
gBattleStruct->atkCancellerTracker++;
|
|
break;
|
|
case CANCELLER_PARALYSED: // paralysis
|
|
if (!gBattleStruct->isAtkCancelerForCalledMove && (gBattleMons[gBattlerAttacker].status1 & STATUS1_PARALYSIS) && !RandomPercentage(RNG_PARALYSIS, 75))
|
|
{
|
|
gProtectStructs[gBattlerAttacker].prlzImmobility = TRUE;
|
|
// This is removed in FRLG and Emerald for some reason
|
|
//CancelMultiTurnMoves(gBattlerAttacker);
|
|
gBattlescriptCurrInstr = BattleScript_MoveUsedIsParalyzed;
|
|
gHitMarker |= HITMARKER_UNABLE_TO_USE_MOVE;
|
|
effect = 1;
|
|
}
|
|
gBattleStruct->atkCancellerTracker++;
|
|
break;
|
|
case CANCELLER_IN_LOVE: // infatuation
|
|
if (!gBattleStruct->isAtkCancelerForCalledMove && gBattleMons[gBattlerAttacker].status2 & STATUS2_INFATUATION)
|
|
{
|
|
gBattleScripting.battler = CountTrailingZeroBits((gBattleMons[gBattlerAttacker].status2 & STATUS2_INFATUATION) >> 0x10);
|
|
if (!RandomPercentage(RNG_INFATUATION, 50))
|
|
{
|
|
BattleScriptPushCursor();
|
|
}
|
|
else
|
|
{
|
|
BattleScriptPush(BattleScript_MoveUsedIsInLoveCantAttack);
|
|
gHitMarker |= HITMARKER_UNABLE_TO_USE_MOVE;
|
|
gProtectStructs[gBattlerAttacker].loveImmobility = TRUE;
|
|
CancelMultiTurnMoves(gBattlerAttacker);
|
|
}
|
|
gBattlescriptCurrInstr = BattleScript_MoveUsedIsInLove;
|
|
effect = 1;
|
|
}
|
|
gBattleStruct->atkCancellerTracker++;
|
|
break;
|
|
case CANCELLER_BIDE: // bide
|
|
if (gBattleMons[gBattlerAttacker].status2 & STATUS2_BIDE)
|
|
{
|
|
gBattleMons[gBattlerAttacker].status2 -= STATUS2_BIDE_TURN(1);
|
|
if (gBattleMons[gBattlerAttacker].status2 & STATUS2_BIDE)
|
|
{
|
|
gBattlescriptCurrInstr = BattleScript_BideStoringEnergy;
|
|
}
|
|
else
|
|
{
|
|
// This is removed in FRLG and Emerald for some reason
|
|
//gBattleMons[gBattlerAttacker].status2 &= ~STATUS2_MULTIPLETURNS;
|
|
if (gBideDmg[gBattlerAttacker])
|
|
{
|
|
gCurrentMove = MOVE_BIDE;
|
|
gBattleScripting.bideDmg = gBideDmg[gBattlerAttacker] * 2;
|
|
gBattlerTarget = gBideTarget[gBattlerAttacker];
|
|
if (gAbsentBattlerFlags & gBitTable[gBattlerTarget])
|
|
gBattlerTarget = GetMoveTarget(MOVE_BIDE, MOVE_TARGET_SELECTED + 1);
|
|
gBattlescriptCurrInstr = BattleScript_BideAttack;
|
|
}
|
|
else
|
|
{
|
|
gBattlescriptCurrInstr = BattleScript_BideNoEnergyToAttack;
|
|
}
|
|
}
|
|
effect = 1;
|
|
}
|
|
gBattleStruct->atkCancellerTracker++;
|
|
break;
|
|
case CANCELLER_THAW: // move thawing
|
|
if (gBattleMons[gBattlerAttacker].status1 & STATUS1_FREEZE)
|
|
{
|
|
if (!(MoveHasMoveEffectSelfArg(gCurrentMove, MOVE_EFFECT_REMOVE_ARG_TYPE, TYPE_FIRE) && !IS_BATTLER_OF_TYPE(gBattlerAttacker, TYPE_FIRE)))
|
|
{
|
|
gBattleMons[gBattlerAttacker].status1 &= ~STATUS1_FREEZE;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_MoveUsedUnfroze;
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_DEFROSTED_BY_MOVE;
|
|
}
|
|
effect = 2;
|
|
}
|
|
if (gBattleMons[gBattlerAttacker].status1 & STATUS1_FROSTBITE && gBattleMoves[gCurrentMove].thawsUser)
|
|
{
|
|
if (!(MoveHasMoveEffectSelfArg(gCurrentMove, MOVE_EFFECT_REMOVE_ARG_TYPE, TYPE_FIRE) && !IS_BATTLER_OF_TYPE(gBattlerAttacker, TYPE_FIRE)))
|
|
{
|
|
gBattleMons[gBattlerAttacker].status1 &= ~STATUS1_FROSTBITE;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_MoveUsedUnfrostbite;
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_FROSTBITE_HEALED_BY_MOVE;
|
|
}
|
|
effect = 2;
|
|
}
|
|
gBattleStruct->atkCancellerTracker++;
|
|
break;
|
|
case CANCELLER_POWDER_MOVE:
|
|
if ((gBattleMoves[gCurrentMove].powderMove) && (gBattlerAttacker != gBattlerTarget))
|
|
{
|
|
if (B_POWDER_GRASS >= GEN_6
|
|
&& (IS_BATTLER_OF_TYPE(gBattlerTarget, TYPE_GRASS) || GetBattlerAbility(gBattlerTarget) == ABILITY_OVERCOAT))
|
|
{
|
|
gBattlerAbility = gBattlerTarget;
|
|
effect = 1;
|
|
}
|
|
else if (GetBattlerHoldEffect(gBattlerTarget, TRUE) == HOLD_EFFECT_SAFETY_GOGGLES)
|
|
{
|
|
RecordItemEffectBattle(gBattlerTarget, HOLD_EFFECT_SAFETY_GOGGLES);
|
|
gLastUsedItem = gBattleMons[gBattlerTarget].item;
|
|
effect = 1;
|
|
}
|
|
|
|
if (effect != 0)
|
|
gBattlescriptCurrInstr = BattleScript_PowderMoveNoEffect;
|
|
}
|
|
if (gProtectStructs[gBattlerAttacker].usesBouncedMove) // Edge case for bouncing a powder move against a grass type pokemon.
|
|
gBattleStruct->atkCancellerTracker = CANCELLER_END;
|
|
else
|
|
gBattleStruct->atkCancellerTracker++;
|
|
break;
|
|
case CANCELLER_POWDER_STATUS:
|
|
if (gBattleMons[gBattlerAttacker].status2 & STATUS2_POWDER)
|
|
{
|
|
if (moveType == TYPE_FIRE)
|
|
{
|
|
gProtectStructs[gBattlerAttacker].powderSelfDmg = TRUE;
|
|
gBattleMoveDamage = GetNonDynamaxMaxHP(gBattlerAttacker) / 4;
|
|
gBattlescriptCurrInstr = BattleScript_MoveUsedPowder;
|
|
effect = 1;
|
|
}
|
|
}
|
|
gBattleStruct->atkCancellerTracker++;
|
|
break;
|
|
case CANCELLER_THROAT_CHOP:
|
|
if (gBattleStruct->zmove.toBeUsed[gBattlerAttacker] == MOVE_NONE && gDisableStructs[gBattlerAttacker].throatChopTimer && gBattleMoves[gCurrentMove].soundMove)
|
|
{
|
|
gProtectStructs[gBattlerAttacker].usedThroatChopPreventedMove = TRUE;
|
|
CancelMultiTurnMoves(gBattlerAttacker);
|
|
gBattlescriptCurrInstr = BattleScript_MoveUsedIsThroatChopPrevented;
|
|
gHitMarker |= HITMARKER_UNABLE_TO_USE_MOVE;
|
|
effect = 1;
|
|
}
|
|
gBattleStruct->atkCancellerTracker++;
|
|
break;
|
|
case CANCELLER_Z_MOVES:
|
|
if (gBattleStruct->zmove.toBeUsed[gBattlerAttacker] != MOVE_NONE)
|
|
{
|
|
//attacker has a queued z move
|
|
gBattleStruct->zmove.active = TRUE;
|
|
gBattleStruct->zmove.activeCategory = gBattleStruct->zmove.categories[gBattlerAttacker];
|
|
RecordItemEffectBattle(gBattlerAttacker, HOLD_EFFECT_Z_CRYSTAL);
|
|
gBattleStruct->zmove.used[gBattlerAttacker] = TRUE;
|
|
if ((gBattleTypeFlags & BATTLE_TYPE_DOUBLE) && IsPartnerMonFromSameTrainer(gBattlerAttacker))
|
|
gBattleStruct->zmove.used[BATTLE_PARTNER(gBattlerAttacker)] = TRUE; //if 1v1 double, set partner used flag as well
|
|
|
|
gBattleScripting.battler = gBattlerAttacker;
|
|
if (gBattleStruct->zmove.activeCategory == BATTLE_CATEGORY_STATUS)
|
|
{
|
|
gBattleStruct->zmove.effect = gBattleMoves[gBattleStruct->zmove.baseMoves[gBattlerAttacker]].zMove.effect;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_ZMoveActivateStatus;
|
|
}
|
|
else
|
|
{
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_ZMoveActivateDamaging;
|
|
}
|
|
effect = 1;
|
|
}
|
|
gBattleStruct->atkCancellerTracker++;
|
|
break;
|
|
case CANCELLER_MULTIHIT_MOVES:
|
|
if (gBattleMoves[gCurrentMove].effect == EFFECT_MULTI_HIT)
|
|
{
|
|
u16 ability = gBattleMons[gBattlerAttacker].ability;
|
|
|
|
if (ability == ABILITY_SKILL_LINK)
|
|
{
|
|
gMultiHitCounter = 5;
|
|
}
|
|
else if (ability == ABILITY_BATTLE_BOND
|
|
&& gCurrentMove == MOVE_WATER_SHURIKEN
|
|
&& gBattleMons[gBattlerAttacker].species == SPECIES_GRENINJA_ASH)
|
|
{
|
|
gMultiHitCounter = 3;
|
|
}
|
|
else
|
|
{
|
|
SetRandomMultiHitCounter();
|
|
}
|
|
|
|
PREPARE_BYTE_NUMBER_BUFFER(gBattleScripting.multihitString, 1, 0)
|
|
}
|
|
else if (gBattleMoves[gCurrentMove].strikeCount > 1)
|
|
{
|
|
if (gBattleMoves[gCurrentMove].effect == EFFECT_POPULATION_BOMB && GetBattlerHoldEffect(gBattlerAttacker, TRUE) == HOLD_EFFECT_LOADED_DICE)
|
|
{
|
|
gMultiHitCounter = RandomUniform(RNG_LOADED_DICE, 4, 10);
|
|
}
|
|
else
|
|
{
|
|
gMultiHitCounter = gBattleMoves[gCurrentMove].strikeCount;
|
|
PREPARE_BYTE_NUMBER_BUFFER(gBattleScripting.multihitString, 3, 0)
|
|
}
|
|
}
|
|
else if (B_BEAT_UP >= GEN_5 && gBattleMoves[gCurrentMove].effect == EFFECT_BEAT_UP)
|
|
{
|
|
struct Pokemon* party = GetBattlerParty(gBattlerAttacker);
|
|
int i;
|
|
|
|
for (i = 0; i < PARTY_SIZE; i++)
|
|
{
|
|
if (GetMonData(&party[i], MON_DATA_HP)
|
|
&& GetMonData(&party[i], MON_DATA_SPECIES) != SPECIES_NONE
|
|
&& !GetMonData(&party[i], MON_DATA_IS_EGG)
|
|
&& !GetMonData(&party[i], MON_DATA_STATUS))
|
|
gMultiHitCounter++;
|
|
}
|
|
|
|
gBattleStruct->beatUpSlot = 0;
|
|
PREPARE_BYTE_NUMBER_BUFFER(gBattleScripting.multihitString, 1, 0)
|
|
}
|
|
gBattleStruct->atkCancellerTracker++;
|
|
break;
|
|
case CANCELLER_END:
|
|
break;
|
|
}
|
|
|
|
} while (gBattleStruct->atkCancellerTracker != CANCELLER_END && gBattleStruct->atkCancellerTracker != CANCELLER_END2 && effect == 0);
|
|
|
|
if (effect == 2)
|
|
{
|
|
BtlController_EmitSetMonData(gBattlerAttacker, BUFFER_A, REQUEST_STATUS_BATTLE, 0, 4, &gBattleMons[gBattlerAttacker].status1);
|
|
MarkBattlerForControllerExec(gBattlerAttacker);
|
|
}
|
|
return effect;
|
|
}
|
|
|
|
// After Protean Activation.
|
|
u8 AtkCanceller_UnableToUseMove2(void)
|
|
{
|
|
u8 effect = 0;
|
|
|
|
do
|
|
{
|
|
switch (gBattleStruct->atkCancellerTracker)
|
|
{
|
|
case CANCELLER_END:
|
|
gBattleStruct->atkCancellerTracker++;
|
|
case CANCELLER_PSYCHIC_TERRAIN:
|
|
if (gFieldStatuses & STATUS_FIELD_PSYCHIC_TERRAIN
|
|
&& IsBattlerGrounded(gBattlerTarget)
|
|
&& GetChosenMovePriority(gBattlerAttacker) > 0
|
|
&& gBattleMoves[gCurrentMove].target != MOVE_TARGET_ALL_BATTLERS
|
|
&& gBattleMoves[gCurrentMove].target != MOVE_TARGET_OPPONENTS_FIELD
|
|
&& GetBattlerSide(gBattlerAttacker) != GetBattlerSide(gBattlerTarget))
|
|
{
|
|
CancelMultiTurnMoves(gBattlerAttacker);
|
|
gBattlescriptCurrInstr = BattleScript_MoveUsedPsychicTerrainPrevents;
|
|
gHitMarker |= HITMARKER_UNABLE_TO_USE_MOVE;
|
|
effect = 1;
|
|
}
|
|
gBattleStruct->atkCancellerTracker++;
|
|
break;
|
|
case CANCELLER_END2:
|
|
break;
|
|
}
|
|
|
|
} while (gBattleStruct->atkCancellerTracker != CANCELLER_END2 && effect == 0);
|
|
|
|
return effect;
|
|
}
|
|
|
|
bool32 HasNoMonsToSwitch(u32 battler, u8 partyIdBattlerOn1, u8 partyIdBattlerOn2)
|
|
{
|
|
u32 i, side, playerId, flankId;
|
|
struct Pokemon *party;
|
|
|
|
if (!(gBattleTypeFlags & BATTLE_TYPE_DOUBLE))
|
|
return FALSE;
|
|
|
|
side = GetBattlerSide(battler);
|
|
|
|
if (BATTLE_TWO_VS_ONE_OPPONENT && side == B_SIDE_OPPONENT)
|
|
{
|
|
flankId = GetBattlerAtPosition(B_POSITION_OPPONENT_LEFT);
|
|
playerId = GetBattlerAtPosition(B_POSITION_OPPONENT_RIGHT);
|
|
party = gEnemyParty;
|
|
|
|
if (partyIdBattlerOn1 == PARTY_SIZE)
|
|
partyIdBattlerOn1 = gBattlerPartyIndexes[flankId];
|
|
if (partyIdBattlerOn2 == PARTY_SIZE)
|
|
partyIdBattlerOn2 = gBattlerPartyIndexes[playerId];
|
|
|
|
for (i = 0; i < PARTY_SIZE; i++)
|
|
{
|
|
if (IsValidForBattle(&party[i])
|
|
&& i != partyIdBattlerOn1 && i != partyIdBattlerOn2
|
|
&& i != *(gBattleStruct->monToSwitchIntoId + flankId) && i != playerId[gBattleStruct->monToSwitchIntoId])
|
|
break;
|
|
}
|
|
return (i == PARTY_SIZE);
|
|
}
|
|
else if (gBattleTypeFlags & BATTLE_TYPE_INGAME_PARTNER)
|
|
{
|
|
party = GetBattlerParty(battler);
|
|
if (side == B_SIDE_OPPONENT && WILD_DOUBLE_BATTLE)
|
|
{
|
|
flankId = GetBattlerAtPosition(B_POSITION_OPPONENT_LEFT);
|
|
playerId = GetBattlerAtPosition(B_POSITION_OPPONENT_RIGHT);
|
|
|
|
if (partyIdBattlerOn1 == PARTY_SIZE)
|
|
partyIdBattlerOn1 = gBattlerPartyIndexes[flankId];
|
|
if (partyIdBattlerOn2 == PARTY_SIZE)
|
|
partyIdBattlerOn2 = gBattlerPartyIndexes[playerId];
|
|
|
|
for (i = 0; i < PARTY_SIZE; i++)
|
|
{
|
|
if (IsValidForBattle(&party[i])
|
|
&& i != partyIdBattlerOn1 && i != partyIdBattlerOn2
|
|
&& i != *(gBattleStruct->monToSwitchIntoId + flankId) && i != playerId[gBattleStruct->monToSwitchIntoId])
|
|
break;
|
|
}
|
|
return (i == PARTY_SIZE);
|
|
}
|
|
else
|
|
{
|
|
playerId = ((battler & BIT_FLANK) / 2);
|
|
for (i = playerId * MULTI_PARTY_SIZE; i < playerId * MULTI_PARTY_SIZE + MULTI_PARTY_SIZE; i++)
|
|
{
|
|
if (IsValidForBattle(&party[i]))
|
|
break;
|
|
}
|
|
return (i == playerId * MULTI_PARTY_SIZE + MULTI_PARTY_SIZE);
|
|
}
|
|
}
|
|
else if (gBattleTypeFlags & BATTLE_TYPE_MULTI)
|
|
{
|
|
if (gBattleTypeFlags & BATTLE_TYPE_TOWER_LINK_MULTI)
|
|
{
|
|
if (side == B_SIDE_PLAYER)
|
|
{
|
|
party = gPlayerParty;
|
|
flankId = GetBattlerMultiplayerId(battler);
|
|
playerId = GetLinkTrainerFlankId(flankId);
|
|
}
|
|
else
|
|
{
|
|
party = gEnemyParty;
|
|
if (battler == 1)
|
|
playerId = 0;
|
|
else
|
|
playerId = 1;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
flankId = GetBattlerMultiplayerId(battler);
|
|
party = GetBattlerParty(battler);
|
|
playerId = GetLinkTrainerFlankId(flankId);
|
|
}
|
|
|
|
for (i = playerId * MULTI_PARTY_SIZE; i < playerId * MULTI_PARTY_SIZE + MULTI_PARTY_SIZE; i++)
|
|
{
|
|
if (IsValidForBattle(&party[i]))
|
|
break;
|
|
}
|
|
return (i == playerId * MULTI_PARTY_SIZE + MULTI_PARTY_SIZE);
|
|
}
|
|
else if ((gBattleTypeFlags & BATTLE_TYPE_TWO_OPPONENTS) && side == B_SIDE_OPPONENT)
|
|
{
|
|
party = gEnemyParty;
|
|
|
|
if (battler == 1)
|
|
playerId = 0;
|
|
else
|
|
playerId = MULTI_PARTY_SIZE;
|
|
|
|
for (i = playerId; i < playerId + MULTI_PARTY_SIZE; i++)
|
|
{
|
|
if (IsValidForBattle(&party[i]))
|
|
break;
|
|
}
|
|
return (i == playerId + 3);
|
|
}
|
|
else
|
|
{
|
|
if (side == B_SIDE_OPPONENT)
|
|
{
|
|
flankId = GetBattlerAtPosition(B_POSITION_OPPONENT_LEFT);
|
|
playerId = GetBattlerAtPosition(B_POSITION_OPPONENT_RIGHT);
|
|
party = gEnemyParty;
|
|
}
|
|
else
|
|
{
|
|
flankId = GetBattlerAtPosition(B_POSITION_PLAYER_LEFT);
|
|
playerId = GetBattlerAtPosition(B_POSITION_PLAYER_RIGHT);
|
|
party = gPlayerParty;
|
|
}
|
|
|
|
if (partyIdBattlerOn1 == PARTY_SIZE)
|
|
partyIdBattlerOn1 = gBattlerPartyIndexes[flankId];
|
|
if (partyIdBattlerOn2 == PARTY_SIZE)
|
|
partyIdBattlerOn2 = gBattlerPartyIndexes[playerId];
|
|
|
|
for (i = 0; i < PARTY_SIZE; i++)
|
|
{
|
|
if (IsValidForBattle(&party[i])
|
|
&& i != partyIdBattlerOn1 && i != partyIdBattlerOn2
|
|
&& i != *(gBattleStruct->monToSwitchIntoId + flankId) && i != playerId[gBattleStruct->monToSwitchIntoId])
|
|
break;
|
|
}
|
|
return (i == PARTY_SIZE);
|
|
}
|
|
}
|
|
|
|
static const u16 sWeatherFlagsInfo[][3] =
|
|
{
|
|
[ENUM_WEATHER_RAIN] = {B_WEATHER_RAIN_TEMPORARY, B_WEATHER_RAIN_PERMANENT, HOLD_EFFECT_DAMP_ROCK},
|
|
[ENUM_WEATHER_RAIN_PRIMAL] = {B_WEATHER_RAIN_PRIMAL, B_WEATHER_RAIN_PRIMAL, HOLD_EFFECT_DAMP_ROCK},
|
|
[ENUM_WEATHER_SUN] = {B_WEATHER_SUN_TEMPORARY, B_WEATHER_SUN_PERMANENT, HOLD_EFFECT_HEAT_ROCK},
|
|
[ENUM_WEATHER_SUN_PRIMAL] = {B_WEATHER_SUN_PRIMAL, B_WEATHER_SUN_PRIMAL, HOLD_EFFECT_HEAT_ROCK},
|
|
[ENUM_WEATHER_SANDSTORM] = {B_WEATHER_SANDSTORM_TEMPORARY, B_WEATHER_SANDSTORM_PERMANENT, HOLD_EFFECT_SMOOTH_ROCK},
|
|
[ENUM_WEATHER_HAIL] = {B_WEATHER_HAIL_TEMPORARY, B_WEATHER_HAIL_PERMANENT, HOLD_EFFECT_ICY_ROCK},
|
|
[ENUM_WEATHER_STRONG_WINDS] = {B_WEATHER_STRONG_WINDS, B_WEATHER_STRONG_WINDS, HOLD_EFFECT_NONE},
|
|
[ENUM_WEATHER_SNOW] = {B_WEATHER_SNOW_TEMPORARY, B_WEATHER_SNOW_PERMANENT, HOLD_EFFECT_ICY_ROCK},
|
|
};
|
|
|
|
static void ShouldChangeFormInWeather(u32 battler)
|
|
{
|
|
int i;
|
|
int side = GetBattlerSide(battler);
|
|
struct Pokemon *party = GetSideParty(side);
|
|
|
|
for (i = 0; i < PARTY_SIZE; i++)
|
|
{
|
|
if (GetMonData(&party[i], MON_DATA_SPECIES) == SPECIES_EISCUE_NOICE_FACE)
|
|
gBattleStruct->allowedToChangeFormInWeather[i][side] = TRUE;
|
|
else
|
|
gBattleStruct->allowedToChangeFormInWeather[i][side] = FALSE;
|
|
}
|
|
}
|
|
|
|
bool32 TryChangeBattleWeather(u32 battler, u32 weatherEnumId, bool32 viaAbility)
|
|
{
|
|
u16 battlerAbility = GetBattlerAbility(battler);
|
|
if (gBattleWeather & B_WEATHER_PRIMAL_ANY
|
|
&& battlerAbility != ABILITY_DESOLATE_LAND
|
|
&& battlerAbility != ABILITY_PRIMORDIAL_SEA
|
|
&& battlerAbility != ABILITY_DELTA_STREAM)
|
|
{
|
|
return FALSE;
|
|
}
|
|
else if (B_ABILITY_WEATHER < GEN_6 && viaAbility && !(gBattleWeather & sWeatherFlagsInfo[weatherEnumId][1]))
|
|
{
|
|
gBattleWeather = (sWeatherFlagsInfo[weatherEnumId][0] | sWeatherFlagsInfo[weatherEnumId][1]);
|
|
ShouldChangeFormInWeather(battler);
|
|
return TRUE;
|
|
}
|
|
else if (!(gBattleWeather & (sWeatherFlagsInfo[weatherEnumId][0] | sWeatherFlagsInfo[weatherEnumId][1])))
|
|
{
|
|
gBattleWeather = (sWeatherFlagsInfo[weatherEnumId][0]);
|
|
if (GetBattlerHoldEffect(battler, TRUE) == sWeatherFlagsInfo[weatherEnumId][2])
|
|
gWishFutureKnock.weatherDuration = 8;
|
|
else
|
|
gWishFutureKnock.weatherDuration = 5;
|
|
ShouldChangeFormInWeather(battler);
|
|
return TRUE;
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
static bool32 TryChangeBattleTerrain(u32 battler, u32 statusFlag, u8 *timer)
|
|
{
|
|
if ((!(gFieldStatuses & statusFlag) && (!gBattleStruct->isSkyBattle)))
|
|
{
|
|
gFieldStatuses &= ~(STATUS_FIELD_MISTY_TERRAIN | STATUS_FIELD_GRASSY_TERRAIN | STATUS_FIELD_ELECTRIC_TERRAIN | STATUS_FIELD_PSYCHIC_TERRAIN);
|
|
gFieldStatuses |= statusFlag;
|
|
gDisableStructs[battler].terrainAbilityDone = FALSE;
|
|
|
|
if (GetBattlerHoldEffect(battler, TRUE) == HOLD_EFFECT_TERRAIN_EXTENDER)
|
|
*timer = 8;
|
|
else
|
|
*timer = 5;
|
|
|
|
gBattleScripting.battler = battler;
|
|
return TRUE;
|
|
}
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
static void ForewarnChooseMove(u32 battler)
|
|
{
|
|
struct Forewarn {
|
|
u8 battler;
|
|
u8 power;
|
|
u16 moveId;
|
|
};
|
|
u32 i, j, bestId, count;
|
|
struct Forewarn *data = Alloc(sizeof(struct Forewarn) * MAX_BATTLERS_COUNT * MAX_MON_MOVES);
|
|
|
|
// Put all moves
|
|
for (count = 0, i = 0; i < MAX_BATTLERS_COUNT; i++)
|
|
{
|
|
if (IsBattlerAlive(i) && GetBattlerSide(i) != GetBattlerSide(battler))
|
|
{
|
|
for (j = 0; j < MAX_MON_MOVES; j++)
|
|
{
|
|
if (gBattleMons[i].moves[j] == MOVE_NONE)
|
|
continue;
|
|
data[count].moveId = gBattleMons[i].moves[j];
|
|
data[count].battler = i;
|
|
switch (gBattleMoves[data[count].moveId].effect)
|
|
{
|
|
case EFFECT_OHKO:
|
|
data[count].power = 150;
|
|
break;
|
|
case EFFECT_COUNTER:
|
|
case EFFECT_MIRROR_COAT:
|
|
case EFFECT_METAL_BURST:
|
|
data[count].power = 120;
|
|
break;
|
|
default:
|
|
if (gBattleMoves[data[count].moveId].power == 1)
|
|
data[count].power = 80;
|
|
else
|
|
data[count].power = gBattleMoves[data[count].moveId].power;
|
|
break;
|
|
}
|
|
count++;
|
|
}
|
|
}
|
|
}
|
|
|
|
for (bestId = 0, i = 1; i < count; i++)
|
|
{
|
|
if (data[i].power > data[bestId].power)
|
|
bestId = i;
|
|
else if (data[i].power == data[bestId].power && Random() & 1)
|
|
bestId = i;
|
|
}
|
|
|
|
gBattlerTarget = data[bestId].battler;
|
|
PREPARE_MOVE_BUFFER(gBattleTextBuff1, data[bestId].moveId)
|
|
RecordKnownMove(gBattlerTarget, data[bestId].moveId);
|
|
|
|
Free(data);
|
|
}
|
|
|
|
bool32 ChangeTypeBasedOnTerrain(u32 battler)
|
|
{
|
|
u32 battlerType;
|
|
|
|
if (gFieldStatuses & STATUS_FIELD_ELECTRIC_TERRAIN)
|
|
battlerType = TYPE_ELECTRIC;
|
|
else if (gFieldStatuses & STATUS_FIELD_GRASSY_TERRAIN)
|
|
battlerType = TYPE_GRASS;
|
|
else if (gFieldStatuses & STATUS_FIELD_MISTY_TERRAIN)
|
|
battlerType = TYPE_FAIRY;
|
|
else if (gFieldStatuses & STATUS_FIELD_PSYCHIC_TERRAIN)
|
|
battlerType = TYPE_PSYCHIC;
|
|
else // failsafe
|
|
return FALSE;
|
|
|
|
SET_BATTLER_TYPE(battler, battlerType);
|
|
PREPARE_TYPE_BUFFER(gBattleTextBuff1, battlerType);
|
|
return TRUE;
|
|
}
|
|
|
|
// Supreme Overlord adds a damage boost for each fainted ally.
|
|
// The first ally adds a x1.2 boost, and subsequent allies add an extra x0.1 boost each.
|
|
static uq4_12_t GetSupremeOverlordModifier(u32 battler)
|
|
{
|
|
u32 i;
|
|
struct Pokemon *party = GetBattlerParty(battler);
|
|
uq4_12_t modifier = UQ_4_12(1.0);
|
|
bool32 appliedFirstBoost = FALSE;
|
|
|
|
for (i = 0; i < PARTY_SIZE; i++)
|
|
{
|
|
if (GetMonData(&party[i], MON_DATA_SPECIES) != SPECIES_NONE
|
|
&& !GetMonData(&party[i], MON_DATA_IS_EGG)
|
|
&& GetMonData(&party[i], MON_DATA_HP) == 0)
|
|
modifier += (!appliedFirstBoost) ? UQ_4_12(0.2) : UQ_4_12(0.1);
|
|
appliedFirstBoost = TRUE;
|
|
}
|
|
|
|
return modifier;
|
|
}
|
|
|
|
static bool32 HadMoreThanHalfHpNowHasLess(u32 battler)
|
|
{
|
|
// Had more than half of hp before, now has less
|
|
return (gBattleStruct->hpBefore[battler] >= gBattleMons[battler].maxHP / 2
|
|
&& gBattleMons[battler].hp < gBattleMons[battler].maxHP / 2);
|
|
}
|
|
|
|
u32 AbilityBattleEffects(u32 caseID, u32 battler, u32 ability, u32 special, u32 moveArg)
|
|
{
|
|
u32 effect = 0;
|
|
u32 moveType, move;
|
|
u32 side;
|
|
u32 i, j;
|
|
u32 partner;
|
|
struct Pokemon *mon;
|
|
|
|
if (gBattleTypeFlags & BATTLE_TYPE_SAFARI)
|
|
return 0;
|
|
|
|
if (gBattlerAttacker >= gBattlersCount)
|
|
gBattlerAttacker = battler;
|
|
|
|
if (special)
|
|
gLastUsedAbility = special;
|
|
else
|
|
gLastUsedAbility = GetBattlerAbility(battler);
|
|
|
|
if (moveArg)
|
|
move = moveArg;
|
|
else
|
|
move = gCurrentMove;
|
|
|
|
GET_MOVE_TYPE(move, moveType);
|
|
|
|
switch (caseID)
|
|
{
|
|
case ABILITYEFFECT_SWITCH_IN_TERRAIN:
|
|
gBattleScripting.battler = battler;
|
|
if (VarGet(VAR_TERRAIN) & STATUS_FIELD_TERRAIN_ANY)
|
|
{
|
|
u16 terrainFlags = VarGet(VAR_TERRAIN) & STATUS_FIELD_TERRAIN_ANY; // only works for status flag (1 << 15)
|
|
gFieldStatuses = terrainFlags | STATUS_FIELD_TERRAIN_PERMANENT; // terrain is permanent
|
|
switch (VarGet(VAR_TERRAIN) & STATUS_FIELD_TERRAIN_ANY)
|
|
{
|
|
case STATUS_FIELD_ELECTRIC_TERRAIN:
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_TERRAIN_SET_ELECTRIC;
|
|
break;
|
|
case STATUS_FIELD_MISTY_TERRAIN:
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_TERRAIN_SET_MISTY;
|
|
break;
|
|
case STATUS_FIELD_GRASSY_TERRAIN:
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_TERRAIN_SET_GRASSY;
|
|
break;
|
|
case STATUS_FIELD_PSYCHIC_TERRAIN:
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_TERRAIN_SET_PSYCHIC;
|
|
break;
|
|
}
|
|
|
|
BattleScriptPushCursorAndCallback(BattleScript_OverworldTerrain);
|
|
effect++;
|
|
}
|
|
else if (B_THUNDERSTORM_TERRAIN == TRUE
|
|
&& GetCurrentWeather() == WEATHER_RAIN_THUNDERSTORM
|
|
&& !(gFieldStatuses & STATUS_FIELD_ELECTRIC_TERRAIN))
|
|
{
|
|
// overworld weather started rain, so just do electric terrain anim
|
|
gFieldStatuses = (STATUS_FIELD_ELECTRIC_TERRAIN | STATUS_FIELD_TERRAIN_PERMANENT);
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_TERRAIN_SET_ELECTRIC;
|
|
BattleScriptPushCursorAndCallback(BattleScript_OverworldTerrain);
|
|
effect++;
|
|
}
|
|
else if (B_FOG_TERRAIN == TRUE
|
|
&& (GetCurrentWeather() == WEATHER_FOG_HORIZONTAL || GetCurrentWeather() == WEATHER_FOG_DIAGONAL)
|
|
&& !(gFieldStatuses & STATUS_FIELD_MISTY_TERRAIN))
|
|
{
|
|
gFieldStatuses = (STATUS_FIELD_MISTY_TERRAIN | STATUS_FIELD_TERRAIN_PERMANENT);
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_TERRAIN_SET_MISTY;
|
|
BattleScriptPushCursorAndCallback(BattleScript_OverworldTerrain);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITYEFFECT_SWITCH_IN_WEATHER:
|
|
gBattleScripting.battler = battler;
|
|
if (!(gBattleTypeFlags & BATTLE_TYPE_RECORDED))
|
|
{
|
|
switch (GetCurrentWeather())
|
|
{
|
|
case WEATHER_RAIN:
|
|
case WEATHER_RAIN_THUNDERSTORM:
|
|
case WEATHER_DOWNPOUR:
|
|
if (!(gBattleWeather & B_WEATHER_RAIN))
|
|
{
|
|
gBattleWeather = (B_WEATHER_RAIN_TEMPORARY | B_WEATHER_RAIN_PERMANENT);
|
|
gBattleScripting.animArg1 = B_ANIM_RAIN_CONTINUES;
|
|
effect++;
|
|
}
|
|
break;
|
|
case WEATHER_SANDSTORM:
|
|
if (!(gBattleWeather & B_WEATHER_SANDSTORM))
|
|
{
|
|
gBattleWeather = B_WEATHER_SANDSTORM;
|
|
gBattleScripting.animArg1 = B_ANIM_SANDSTORM_CONTINUES;
|
|
effect++;
|
|
}
|
|
break;
|
|
case WEATHER_DROUGHT:
|
|
if (!(gBattleWeather & B_WEATHER_SUN))
|
|
{
|
|
gBattleWeather = (B_WEATHER_SUN_PERMANENT | B_WEATHER_SUN_TEMPORARY);
|
|
gBattleScripting.animArg1 = B_ANIM_SUN_CONTINUES;
|
|
effect++;
|
|
}
|
|
break;
|
|
case WEATHER_SNOW:
|
|
if (!(gBattleWeather & (B_WEATHER_HAIL | B_WEATHER_SNOW)))
|
|
{
|
|
if (B_OVERWORLD_SNOW >= GEN_9)
|
|
{
|
|
gBattleWeather = B_WEATHER_SNOW;
|
|
gBattleScripting.animArg1 = B_ANIM_SNOW_CONTINUES;
|
|
}
|
|
else
|
|
{
|
|
gBattleWeather = B_WEATHER_HAIL;
|
|
gBattleScripting.animArg1 = B_ANIM_HAIL_CONTINUES;
|
|
}
|
|
effect++;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
if (effect != 0)
|
|
{
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = GetCurrentWeather();
|
|
BattleScriptPushCursorAndCallback(BattleScript_OverworldWeatherStarts);
|
|
}
|
|
break;
|
|
case ABILITYEFFECT_ON_SWITCHIN: // 0
|
|
gBattleScripting.battler = battler;
|
|
switch (gLastUsedAbility)
|
|
{
|
|
case ABILITY_IMPOSTER:
|
|
if (IsBattlerAlive(BATTLE_OPPOSITE(battler))
|
|
&& !(gBattleMons[BATTLE_OPPOSITE(battler)].status2 & (STATUS2_TRANSFORMED | STATUS2_SUBSTITUTE))
|
|
&& !(gBattleMons[battler].status2 & STATUS2_TRANSFORMED)
|
|
&& !(gBattleStruct->illusion[BATTLE_OPPOSITE(battler)].on)
|
|
&& !(gStatuses3[BATTLE_OPPOSITE(battler)] & STATUS3_SEMI_INVULNERABLE))
|
|
{
|
|
gBattlerAttacker = battler;
|
|
gBattlerTarget = BATTLE_OPPOSITE(battler);
|
|
BattleScriptPushCursorAndCallback(BattleScript_ImposterActivates);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_MOLD_BREAKER:
|
|
if (!gSpecialStatuses[battler].switchInAbilityDone)
|
|
{
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_SWITCHIN_MOLDBREAKER;
|
|
gSpecialStatuses[battler].switchInAbilityDone = TRUE;
|
|
BattleScriptPushCursorAndCallback(BattleScript_SwitchInAbilityMsg);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_TERAVOLT:
|
|
if (!gSpecialStatuses[battler].switchInAbilityDone)
|
|
{
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_SWITCHIN_TERAVOLT;
|
|
gSpecialStatuses[battler].switchInAbilityDone = TRUE;
|
|
BattleScriptPushCursorAndCallback(BattleScript_SwitchInAbilityMsg);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_TURBOBLAZE:
|
|
if (!gSpecialStatuses[battler].switchInAbilityDone)
|
|
{
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_SWITCHIN_TURBOBLAZE;
|
|
gSpecialStatuses[battler].switchInAbilityDone = TRUE;
|
|
BattleScriptPushCursorAndCallback(BattleScript_SwitchInAbilityMsg);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_SLOW_START:
|
|
if (!gSpecialStatuses[battler].switchInAbilityDone)
|
|
{
|
|
gDisableStructs[battler].slowStartTimer = 5;
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_SWITCHIN_SLOWSTART;
|
|
gSpecialStatuses[battler].switchInAbilityDone = TRUE;
|
|
BattleScriptPushCursorAndCallback(BattleScript_SwitchInAbilityMsg);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_UNNERVE:
|
|
if (!gSpecialStatuses[battler].switchInAbilityDone)
|
|
{
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_SWITCHIN_UNNERVE;
|
|
gSpecialStatuses[battler].switchInAbilityDone = TRUE;
|
|
BattleScriptPushCursorAndCallback(BattleScript_SwitchInAbilityMsg);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_AS_ONE_ICE_RIDER:
|
|
case ABILITY_AS_ONE_SHADOW_RIDER:
|
|
if (!gSpecialStatuses[battler].switchInAbilityDone)
|
|
{
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_SWITCHIN_ASONE;
|
|
gSpecialStatuses[battler].switchInAbilityDone = TRUE;
|
|
BattleScriptPushCursorAndCallback(BattleScript_ActivateAsOne);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_CURIOUS_MEDICINE:
|
|
if (!gSpecialStatuses[battler].switchInAbilityDone && IsDoubleBattle()
|
|
&& IsBattlerAlive(BATTLE_PARTNER(battler)) && TryResetBattlerStatChanges(BATTLE_PARTNER(battler)))
|
|
{
|
|
gEffectBattler = BATTLE_PARTNER(battler);
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_SWITCHIN_CURIOUS_MEDICINE;
|
|
gSpecialStatuses[battler].switchInAbilityDone = TRUE;
|
|
BattleScriptPushCursorAndCallback(BattleScript_SwitchInAbilityMsg);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_PASTEL_VEIL:
|
|
if (!gSpecialStatuses[battler].switchInAbilityDone)
|
|
{
|
|
gBattlerTarget = battler;
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_SWITCHIN_PASTEL_VEIL;
|
|
BattleScriptPushCursorAndCallback(BattleScript_PastelVeilActivates);
|
|
effect++;
|
|
gSpecialStatuses[battler].switchInAbilityDone = TRUE;
|
|
}
|
|
break;
|
|
case ABILITY_ANTICIPATION:
|
|
if (!gSpecialStatuses[battler].switchInAbilityDone)
|
|
{
|
|
u32 side = GetBattlerSide(battler);
|
|
|
|
for (i = 0; i < MAX_BATTLERS_COUNT; i++)
|
|
{
|
|
if (IsBattlerAlive(i) && side != GetBattlerSide(i))
|
|
{
|
|
for (j = 0; j < MAX_MON_MOVES; j++)
|
|
{
|
|
move = gBattleMons[i].moves[j];
|
|
GET_MOVE_TYPE(move, moveType);
|
|
if (CalcTypeEffectivenessMultiplier(move, moveType, i, battler, ABILITY_ANTICIPATION, FALSE) >= UQ_4_12(2.0))
|
|
{
|
|
effect++;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if (effect != 0)
|
|
{
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_SWITCHIN_ANTICIPATION;
|
|
gSpecialStatuses[battler].switchInAbilityDone = TRUE;
|
|
BattleScriptPushCursorAndCallback(BattleScript_SwitchInAbilityMsg);
|
|
}
|
|
}
|
|
break;
|
|
case ABILITY_FRISK:
|
|
if (!gSpecialStatuses[battler].switchInAbilityDone)
|
|
{
|
|
gSpecialStatuses[battler].switchInAbilityDone = TRUE;
|
|
gBattlerAttacker = battler;
|
|
BattleScriptPushCursorAndCallback(BattleScript_FriskActivates); // Try activate
|
|
effect++;
|
|
}
|
|
return effect; // Note: It returns effect as to not record the ability if Frisk does not activate.
|
|
case ABILITY_FOREWARN:
|
|
if (!gSpecialStatuses[battler].switchInAbilityDone)
|
|
{
|
|
ForewarnChooseMove(battler);
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_SWITCHIN_FOREWARN;
|
|
gSpecialStatuses[battler].switchInAbilityDone = TRUE;
|
|
BattleScriptPushCursorAndCallback(BattleScript_SwitchInAbilityMsg);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_DOWNLOAD:
|
|
if (!gSpecialStatuses[battler].switchInAbilityDone)
|
|
{
|
|
u32 statId, opposingBattler;
|
|
u32 opposingDef = 0, opposingSpDef = 0;
|
|
|
|
opposingBattler = BATTLE_OPPOSITE(battler);
|
|
for (i = 0; i < 2; opposingBattler ^= BIT_FLANK, i++)
|
|
{
|
|
if (IsBattlerAlive(opposingBattler))
|
|
{
|
|
opposingDef += gBattleMons[opposingBattler].defense
|
|
* gStatStageRatios[gBattleMons[opposingBattler].statStages[STAT_DEF]][0]
|
|
/ gStatStageRatios[gBattleMons[opposingBattler].statStages[STAT_DEF]][1];
|
|
opposingSpDef += gBattleMons[opposingBattler].spDefense
|
|
* gStatStageRatios[gBattleMons[opposingBattler].statStages[STAT_SPDEF]][0]
|
|
/ gStatStageRatios[gBattleMons[opposingBattler].statStages[STAT_SPDEF]][1];
|
|
}
|
|
}
|
|
|
|
if (opposingDef < opposingSpDef)
|
|
statId = STAT_ATK;
|
|
else
|
|
statId = STAT_SPATK;
|
|
|
|
gSpecialStatuses[battler].switchInAbilityDone = TRUE;
|
|
|
|
if (CompareStat(battler, statId, MAX_STAT_STAGE, CMP_LESS_THAN))
|
|
{
|
|
SET_STATCHANGER(statId, 1, FALSE);
|
|
gBattlerAttacker = battler;
|
|
PREPARE_STAT_BUFFER(gBattleTextBuff1, statId);
|
|
BattleScriptPushCursorAndCallback(BattleScript_AttackerAbilityStatRaiseEnd3);
|
|
effect++;
|
|
}
|
|
}
|
|
break;
|
|
case ABILITY_PRESSURE:
|
|
if (!gSpecialStatuses[battler].switchInAbilityDone)
|
|
{
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_SWITCHIN_PRESSURE;
|
|
gSpecialStatuses[battler].switchInAbilityDone = TRUE;
|
|
BattleScriptPushCursorAndCallback(BattleScript_SwitchInAbilityMsg);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_DARK_AURA:
|
|
if (!gSpecialStatuses[battler].switchInAbilityDone)
|
|
{
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_SWITCHIN_DARKAURA;
|
|
gSpecialStatuses[battler].switchInAbilityDone = TRUE;
|
|
BattleScriptPushCursorAndCallback(BattleScript_SwitchInAbilityMsg);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_FAIRY_AURA:
|
|
if (!gSpecialStatuses[battler].switchInAbilityDone)
|
|
{
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_SWITCHIN_FAIRYAURA;
|
|
gSpecialStatuses[battler].switchInAbilityDone = TRUE;
|
|
BattleScriptPushCursorAndCallback(BattleScript_SwitchInAbilityMsg);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_AURA_BREAK:
|
|
if (!gSpecialStatuses[battler].switchInAbilityDone)
|
|
{
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_SWITCHIN_AURABREAK;
|
|
gSpecialStatuses[battler].switchInAbilityDone = TRUE;
|
|
BattleScriptPushCursorAndCallback(BattleScript_SwitchInAbilityMsg);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_COMATOSE:
|
|
if (!gSpecialStatuses[battler].switchInAbilityDone)
|
|
{
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_SWITCHIN_COMATOSE;
|
|
gSpecialStatuses[battler].switchInAbilityDone = TRUE;
|
|
BattleScriptPushCursorAndCallback(BattleScript_SwitchInAbilityMsg);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_SCREEN_CLEANER:
|
|
if (!gSpecialStatuses[battler].switchInAbilityDone && TryRemoveScreens(battler))
|
|
{
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_SWITCHIN_SCREENCLEANER;
|
|
gSpecialStatuses[battler].switchInAbilityDone = TRUE;
|
|
BattleScriptPushCursorAndCallback(BattleScript_SwitchInAbilityMsg);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_DRIZZLE:
|
|
if (TryChangeBattleWeather(battler, ENUM_WEATHER_RAIN, TRUE))
|
|
{
|
|
BattleScriptPushCursorAndCallback(BattleScript_DrizzleActivates);
|
|
effect++;
|
|
}
|
|
else if (gBattleWeather & B_WEATHER_PRIMAL_ANY && WEATHER_HAS_EFFECT && !gSpecialStatuses[battler].switchInAbilityDone)
|
|
{
|
|
gSpecialStatuses[battler].switchInAbilityDone = TRUE;
|
|
BattleScriptPushCursorAndCallback(BattleScript_BlockedByPrimalWeatherEnd3);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_SAND_STREAM:
|
|
if (TryChangeBattleWeather(battler, ENUM_WEATHER_SANDSTORM, TRUE))
|
|
{
|
|
BattleScriptPushCursorAndCallback(BattleScript_SandstreamActivates);
|
|
effect++;
|
|
}
|
|
else if (gBattleWeather & B_WEATHER_PRIMAL_ANY && WEATHER_HAS_EFFECT && !gSpecialStatuses[battler].switchInAbilityDone)
|
|
{
|
|
gSpecialStatuses[battler].switchInAbilityDone = TRUE;
|
|
BattleScriptPushCursorAndCallback(BattleScript_BlockedByPrimalWeatherEnd3);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_DROUGHT:
|
|
if (TryChangeBattleWeather(battler, ENUM_WEATHER_SUN, TRUE))
|
|
{
|
|
BattleScriptPushCursorAndCallback(BattleScript_DroughtActivates);
|
|
effect++;
|
|
}
|
|
else if (gBattleWeather & B_WEATHER_PRIMAL_ANY && WEATHER_HAS_EFFECT && !gSpecialStatuses[battler].switchInAbilityDone)
|
|
{
|
|
gSpecialStatuses[battler].switchInAbilityDone = TRUE;
|
|
BattleScriptPushCursorAndCallback(BattleScript_BlockedByPrimalWeatherEnd3);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_SNOW_WARNING:
|
|
if (B_SNOW_WARNING >= GEN_9 && TryChangeBattleWeather(battler, ENUM_WEATHER_SNOW, TRUE))
|
|
{
|
|
BattleScriptPushCursorAndCallback(BattleScript_SnowWarningActivatesSnow);
|
|
effect++;
|
|
}
|
|
else if (B_SNOW_WARNING < GEN_9 && TryChangeBattleWeather(battler, ENUM_WEATHER_HAIL, TRUE))
|
|
{
|
|
BattleScriptPushCursorAndCallback(BattleScript_SnowWarningActivatesHail);
|
|
effect++;
|
|
}
|
|
else if (gBattleWeather & B_WEATHER_PRIMAL_ANY && WEATHER_HAS_EFFECT && !gSpecialStatuses[battler].switchInAbilityDone)
|
|
{
|
|
gSpecialStatuses[battler].switchInAbilityDone = TRUE;
|
|
BattleScriptPushCursorAndCallback(BattleScript_BlockedByPrimalWeatherEnd3);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_ELECTRIC_SURGE:
|
|
case ABILITY_HADRON_ENGINE:
|
|
if (TryChangeBattleTerrain(battler, STATUS_FIELD_ELECTRIC_TERRAIN, &gFieldTimers.terrainTimer))
|
|
{
|
|
BattleScriptPushCursorAndCallback(BattleScript_ElectricSurgeActivates);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_GRASSY_SURGE:
|
|
if (TryChangeBattleTerrain(battler, STATUS_FIELD_GRASSY_TERRAIN, &gFieldTimers.terrainTimer))
|
|
{
|
|
BattleScriptPushCursorAndCallback(BattleScript_GrassySurgeActivates);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_MISTY_SURGE:
|
|
if (TryChangeBattleTerrain(battler, STATUS_FIELD_MISTY_TERRAIN, &gFieldTimers.terrainTimer))
|
|
{
|
|
BattleScriptPushCursorAndCallback(BattleScript_MistySurgeActivates);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_PSYCHIC_SURGE:
|
|
if (TryChangeBattleTerrain(battler, STATUS_FIELD_PSYCHIC_TERRAIN, &gFieldTimers.terrainTimer))
|
|
{
|
|
BattleScriptPushCursorAndCallback(BattleScript_PsychicSurgeActivates);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_INTIMIDATE:
|
|
if (!gSpecialStatuses[battler].switchInAbilityDone)
|
|
{
|
|
gBattlerAttacker = battler;
|
|
gSpecialStatuses[battler].switchInAbilityDone = TRUE;
|
|
SET_STATCHANGER(STAT_ATK, 1, TRUE);
|
|
BattleScriptPushCursorAndCallback(BattleScript_IntimidateActivates);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_TRACE:
|
|
if (!(gSpecialStatuses[battler].traced))
|
|
{
|
|
gBattleResources->flags->flags[battler] |= RESOURCE_FLAG_TRACED;
|
|
gSpecialStatuses[battler].traced = TRUE;
|
|
}
|
|
break;
|
|
case ABILITY_CLOUD_NINE:
|
|
case ABILITY_AIR_LOCK:
|
|
if (!gSpecialStatuses[battler].switchInAbilityDone)
|
|
{
|
|
gSpecialStatuses[battler].switchInAbilityDone = TRUE;
|
|
BattleScriptPushCursorAndCallback(BattleScript_AnnounceAirLockCloudNine);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_SCHOOLING:
|
|
if (gBattleMons[battler].level < 20)
|
|
break;
|
|
// Fallthrough
|
|
case ABILITY_ZEN_MODE:
|
|
case ABILITY_SHIELDS_DOWN:
|
|
if (TryBattleFormChange(battler, FORM_CHANGE_BATTLE_HP_PERCENT))
|
|
{
|
|
gBattlerAttacker = battler;
|
|
BattleScriptPushCursorAndCallback(BattleScript_AttackerFormChangeEnd3);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_INTREPID_SWORD:
|
|
if (!gSpecialStatuses[battler].switchInAbilityDone && CompareStat(battler, STAT_ATK, MAX_STAT_STAGE, CMP_LESS_THAN)
|
|
&& !(gBattleStruct->intrepidSwordBoost[GetBattlerSide(battler)] & gBitTable[gBattlerPartyIndexes[battler]]))
|
|
{
|
|
gBattleScripting.savedBattler = gBattlerAttacker;
|
|
gBattlerAttacker = battler;
|
|
if (B_INTREPID_SWORD == GEN_9)
|
|
gBattleStruct->intrepidSwordBoost[GetBattlerSide(battler)] |= gBitTable[gBattlerPartyIndexes[battler]];
|
|
gSpecialStatuses[battler].switchInAbilityDone = TRUE;
|
|
SET_STATCHANGER(STAT_ATK, 1, FALSE);
|
|
BattleScriptPushCursorAndCallback(BattleScript_BattlerAbilityStatRaiseOnSwitchIn);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_DAUNTLESS_SHIELD:
|
|
if (!gSpecialStatuses[battler].switchInAbilityDone && CompareStat(battler, STAT_DEF, MAX_STAT_STAGE, CMP_LESS_THAN)
|
|
&& !(gBattleStruct->dauntlessShieldBoost[GetBattlerSide(battler)] & gBitTable[gBattlerPartyIndexes[battler]]))
|
|
{
|
|
gBattleScripting.savedBattler = gBattlerAttacker;
|
|
gBattlerAttacker = battler;
|
|
if (B_DAUNTLESS_SHIELD == GEN_9)
|
|
gBattleStruct->dauntlessShieldBoost[GetBattlerSide(battler)] |= gBitTable[gBattlerPartyIndexes[battler]];
|
|
gSpecialStatuses[battler].switchInAbilityDone = TRUE;
|
|
SET_STATCHANGER(STAT_DEF, 1, FALSE);
|
|
BattleScriptPushCursorAndCallback(BattleScript_BattlerAbilityStatRaiseOnSwitchIn);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_DESOLATE_LAND:
|
|
if (TryChangeBattleWeather(battler, ENUM_WEATHER_SUN_PRIMAL, TRUE))
|
|
{
|
|
BattleScriptPushCursorAndCallback(BattleScript_DesolateLandActivates);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_PRIMORDIAL_SEA:
|
|
if (TryChangeBattleWeather(battler, ENUM_WEATHER_RAIN_PRIMAL, TRUE))
|
|
{
|
|
BattleScriptPushCursorAndCallback(BattleScript_PrimordialSeaActivates);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_DELTA_STREAM:
|
|
if (TryChangeBattleWeather(battler, ENUM_WEATHER_STRONG_WINDS, TRUE))
|
|
{
|
|
BattleScriptPushCursorAndCallback(BattleScript_DeltaStreamActivates);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_VESSEL_OF_RUIN:
|
|
if (!gSpecialStatuses[battler].switchInAbilityDone)
|
|
{
|
|
PREPARE_STAT_BUFFER(gBattleTextBuff1, STAT_SPATK);
|
|
gSpecialStatuses[battler].switchInAbilityDone = TRUE;
|
|
BattleScriptPushCursorAndCallback(BattleScript_RuinAbilityActivates);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_SWORD_OF_RUIN:
|
|
if (!gSpecialStatuses[battler].switchInAbilityDone)
|
|
{
|
|
PREPARE_STAT_BUFFER(gBattleTextBuff1, STAT_DEF);
|
|
gSpecialStatuses[battler].switchInAbilityDone = TRUE;
|
|
BattleScriptPushCursorAndCallback(BattleScript_RuinAbilityActivates);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_TABLETS_OF_RUIN:
|
|
if (!gSpecialStatuses[battler].switchInAbilityDone)
|
|
{
|
|
PREPARE_STAT_BUFFER(gBattleTextBuff1, STAT_ATK);
|
|
gSpecialStatuses[battler].switchInAbilityDone = TRUE;
|
|
BattleScriptPushCursorAndCallback(BattleScript_RuinAbilityActivates);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_BEADS_OF_RUIN:
|
|
if (!gSpecialStatuses[battler].switchInAbilityDone)
|
|
{
|
|
PREPARE_STAT_BUFFER(gBattleTextBuff1, STAT_SPDEF);
|
|
gSpecialStatuses[battler].switchInAbilityDone = TRUE;
|
|
BattleScriptPushCursorAndCallback(BattleScript_RuinAbilityActivates);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_ORICHALCUM_PULSE:
|
|
if (TryChangeBattleWeather(battler, ENUM_WEATHER_SUN, TRUE))
|
|
{
|
|
BattleScriptPushCursorAndCallback(BattleScript_DroughtActivates);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_SUPREME_OVERLORD:
|
|
if (!gSpecialStatuses[battler].switchInAbilityDone && CountUsablePartyMons(battler) < PARTY_SIZE)
|
|
{
|
|
gSpecialStatuses[battler].switchInAbilityDone = TRUE;
|
|
gBattleStruct->supremeOverlordModifier[battler] = GetSupremeOverlordModifier(battler);
|
|
BattleScriptPushCursorAndCallback(BattleScript_SupremeOverlordActivates);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_COSTAR:
|
|
if (!gSpecialStatuses[battler].switchInAbilityDone
|
|
&& IsDoubleBattle()
|
|
&& IsBattlerAlive(BATTLE_PARTNER(battler))
|
|
&& CountBattlerStatIncreases(BATTLE_PARTNER(battler), FALSE))
|
|
{
|
|
gSpecialStatuses[battler].switchInAbilityDone = TRUE;
|
|
for (i = 0; i < NUM_BATTLE_STATS; i++)
|
|
gBattleMons[battler].statStages[i] = gBattleMons[BATTLE_PARTNER(battler)].statStages[i];
|
|
gBattlerTarget = BATTLE_PARTNER(battler);
|
|
BattleScriptPushCursorAndCallback(BattleScript_CostarActivates);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_ZERO_TO_HERO:
|
|
side = GetBattlerSide(battler);
|
|
mon = &GetSideParty(side)[gBattlerPartyIndexes[battler]];
|
|
|
|
if (!gSpecialStatuses[battler].switchInAbilityDone
|
|
&& GetMonData(mon, MON_DATA_SPECIES) == SPECIES_PALAFIN_HERO
|
|
&& !(gBattleStruct->transformZeroToHero[side] & gBitTable[gBattlerPartyIndexes[battler]]))
|
|
{
|
|
gSpecialStatuses[battler].switchInAbilityDone = TRUE;
|
|
gBattleStruct->transformZeroToHero[side] |= gBitTable[gBattlerPartyIndexes[battler]];
|
|
BattleScriptPushCursorAndCallback(BattleScript_ZeroToHeroActivates);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_HOSPITALITY:
|
|
partner = BATTLE_PARTNER(battler);
|
|
|
|
if (!gSpecialStatuses[battler].switchInAbilityDone && IsDoubleBattle() && gBattleMons[partner].hp < gBattleMons[partner].maxHP)
|
|
{
|
|
gBattlerTarget = partner;
|
|
gSpecialStatuses[battler].switchInAbilityDone = TRUE;
|
|
gBattleMoveDamage = (GetNonDynamaxMaxHP(partner) / 4) * -1;
|
|
BattleScriptPushCursorAndCallback(BattleScript_HospitalityActivates);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_EMBODY_ASPECT_TEAL:
|
|
case ABILITY_EMBODY_ASPECT_HEARTHFLAME:
|
|
case ABILITY_EMBODY_ASPECT_WELLSPRING:
|
|
case ABILITY_EMBODY_ASPECT_CORNERSTONE:
|
|
if (!gSpecialStatuses[battler].switchInAbilityDone)
|
|
{
|
|
u32 stat = STAT_SPATK;
|
|
|
|
if (gLastUsedAbility == ABILITY_EMBODY_ASPECT_TEAL)
|
|
stat = STAT_SPATK;
|
|
else if (gLastUsedAbility == ABILITY_EMBODY_ASPECT_HEARTHFLAME)
|
|
stat = STAT_ATK;
|
|
else if (gLastUsedAbility == ABILITY_EMBODY_ASPECT_WELLSPRING)
|
|
stat = STAT_SPDEF;
|
|
else if (gLastUsedAbility == ABILITY_EMBODY_ASPECT_CORNERSTONE)
|
|
stat = STAT_DEF;
|
|
|
|
if (CompareStat(battler, stat, MAX_STAT_STAGE, CMP_EQUAL))
|
|
break;
|
|
|
|
gBattleScripting.savedBattler = gBattlerAttacker;
|
|
gBattlerAttacker = battler;
|
|
gSpecialStatuses[battler].switchInAbilityDone = TRUE;
|
|
SET_STATCHANGER(stat, 1, FALSE);
|
|
BattleScriptPushCursorAndCallback(BattleScript_BattlerAbilityStatRaiseOnSwitchIn);
|
|
effect++;
|
|
}
|
|
break;
|
|
}
|
|
break;
|
|
case ABILITYEFFECT_ENDTURN: // 1
|
|
if (gBattleMons[battler].hp != 0)
|
|
{
|
|
gBattlerAttacker = battler;
|
|
switch (gLastUsedAbility)
|
|
{
|
|
case ABILITY_HARVEST:
|
|
if ((IsBattlerWeatherAffected(battler, B_WEATHER_SUN) || Random() % 2 == 0)
|
|
&& gBattleMons[battler].item == ITEM_NONE
|
|
&& gBattleStruct->changedItems[battler] == ITEM_NONE // Will not inherit an item
|
|
&& ItemId_GetPocket(GetUsedHeldItem(battler)) == POCKET_BERRIES)
|
|
{
|
|
gLastUsedItem = GetUsedHeldItem(battler);
|
|
BattleScriptPushCursorAndCallback(BattleScript_HarvestActivates);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_DRY_SKIN:
|
|
if (IsBattlerWeatherAffected(battler, B_WEATHER_SUN))
|
|
goto SOLAR_POWER_HP_DROP;
|
|
// Dry Skin works similarly to Rain Dish in Rain
|
|
case ABILITY_RAIN_DISH:
|
|
if (IsBattlerWeatherAffected(battler, B_WEATHER_RAIN)
|
|
&& !BATTLER_MAX_HP(battler)
|
|
&& !(gStatuses3[battler] & STATUS3_HEAL_BLOCK))
|
|
{
|
|
BattleScriptPushCursorAndCallback(BattleScript_RainDishActivates);
|
|
gBattleMoveDamage = GetNonDynamaxMaxHP(battler) / (gLastUsedAbility == ABILITY_RAIN_DISH ? 16 : 8);
|
|
if (gBattleMoveDamage == 0)
|
|
gBattleMoveDamage = 1;
|
|
gBattleMoveDamage *= -1;
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_HYDRATION:
|
|
if (IsBattlerWeatherAffected(battler, B_WEATHER_RAIN)
|
|
&& gBattleMons[battler].status1 & STATUS1_ANY)
|
|
{
|
|
goto ABILITY_HEAL_MON_STATUS;
|
|
}
|
|
break;
|
|
case ABILITY_SHED_SKIN:
|
|
if ((gBattleMons[battler].status1 & STATUS1_ANY) && (Random() % 3) == 0)
|
|
{
|
|
ABILITY_HEAL_MON_STATUS:
|
|
if (gBattleMons[battler].status1 & (STATUS1_POISON | STATUS1_TOXIC_POISON))
|
|
StringCopy(gBattleTextBuff1, gStatusConditionString_PoisonJpn);
|
|
if (gBattleMons[battler].status1 & STATUS1_SLEEP)
|
|
StringCopy(gBattleTextBuff1, gStatusConditionString_SleepJpn);
|
|
if (gBattleMons[battler].status1 & STATUS1_PARALYSIS)
|
|
StringCopy(gBattleTextBuff1, gStatusConditionString_ParalysisJpn);
|
|
if (gBattleMons[battler].status1 & STATUS1_BURN)
|
|
StringCopy(gBattleTextBuff1, gStatusConditionString_BurnJpn);
|
|
if (gBattleMons[battler].status1 & (STATUS1_FREEZE | STATUS1_FROSTBITE))
|
|
StringCopy(gBattleTextBuff1, gStatusConditionString_IceJpn);
|
|
|
|
gBattleMons[battler].status1 = 0;
|
|
gBattleMons[battler].status2 &= ~STATUS2_NIGHTMARE;
|
|
gBattleScripting.battler = battler;
|
|
BattleScriptPushCursorAndCallback(BattleScript_ShedSkinActivates);
|
|
BtlController_EmitSetMonData(battler, BUFFER_A, REQUEST_STATUS_BATTLE, 0, 4, &gBattleMons[battler].status1);
|
|
MarkBattlerForControllerExec(battler);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_SPEED_BOOST:
|
|
if (CompareStat(battler, STAT_SPEED, MAX_STAT_STAGE, CMP_LESS_THAN) && gDisableStructs[battler].isFirstTurn != 2)
|
|
{
|
|
SET_STATCHANGER(STAT_SPEED, 1, FALSE);
|
|
BattleScriptPushCursorAndCallback(BattleScript_SpeedBoostActivates);
|
|
gBattleScripting.battler = battler;
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_MOODY:
|
|
if (gDisableStructs[battler].isFirstTurn != 2)
|
|
{
|
|
u32 validToRaise = 0, validToLower = 0;
|
|
u32 statsNum = B_MOODY_ACC_EVASION >= GEN_8 ? NUM_STATS : NUM_BATTLE_STATS;
|
|
|
|
for (i = STAT_ATK; i < statsNum; i++)
|
|
{
|
|
if (CompareStat(battler, i, MIN_STAT_STAGE, CMP_GREATER_THAN))
|
|
validToLower |= gBitTable[i];
|
|
if (CompareStat(battler, i, MAX_STAT_STAGE, CMP_LESS_THAN))
|
|
validToRaise |= gBitTable[i];
|
|
}
|
|
|
|
if (validToLower != 0 || validToRaise != 0) // Can lower one stat, or can raise one stat
|
|
{
|
|
gBattleScripting.statChanger = gBattleScripting.savedStatChanger = 0; // for raising and lowering stat respectively
|
|
if (validToRaise != 0) // Find stat to raise
|
|
{
|
|
do
|
|
{
|
|
i = (Random() % statsNum) + STAT_ATK;
|
|
} while (!(validToRaise & gBitTable[i]));
|
|
SET_STATCHANGER(i, 2, FALSE);
|
|
validToLower &= ~(gBitTable[i]); // Can't lower the same stat as raising.
|
|
}
|
|
if (validToLower != 0) // Find stat to lower
|
|
{
|
|
do
|
|
{
|
|
i = (Random() % statsNum) + STAT_ATK;
|
|
} while (!(validToLower & gBitTable[i]));
|
|
SET_STATCHANGER2(gBattleScripting.savedStatChanger, i, 1, TRUE);
|
|
}
|
|
BattleScriptPushCursorAndCallback(BattleScript_MoodyActivates);
|
|
effect++;
|
|
}
|
|
}
|
|
break;
|
|
case ABILITY_TRUANT:
|
|
gDisableStructs[gBattlerAttacker].truantCounter ^= 1;
|
|
break;
|
|
case ABILITY_BAD_DREAMS:
|
|
BattleScriptPushCursorAndCallback(BattleScript_BadDreamsActivates);
|
|
effect++;
|
|
break;
|
|
SOLAR_POWER_HP_DROP:
|
|
case ABILITY_SOLAR_POWER:
|
|
if (IsBattlerWeatherAffected(battler, B_WEATHER_SUN))
|
|
{
|
|
BattleScriptPushCursorAndCallback(BattleScript_SolarPowerActivates);
|
|
gBattleMoveDamage = GetNonDynamaxMaxHP(battler) / 8;
|
|
if (gBattleMoveDamage == 0)
|
|
gBattleMoveDamage = 1;
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_HEALER:
|
|
gBattleScripting.battler = BATTLE_PARTNER(battler);
|
|
if (IsBattlerAlive(gBattleScripting.battler)
|
|
&& gBattleMons[gBattleScripting.battler].status1 & STATUS1_ANY
|
|
&& (Random() % 100) < 30)
|
|
{
|
|
BattleScriptPushCursorAndCallback(BattleScript_HealerActivates);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_SCHOOLING:
|
|
if (gBattleMons[battler].level < 20)
|
|
break;
|
|
// Fallthrough
|
|
case ABILITY_ZEN_MODE:
|
|
case ABILITY_SHIELDS_DOWN:
|
|
case ABILITY_POWER_CONSTRUCT:
|
|
if (TryBattleFormChange(battler, FORM_CHANGE_BATTLE_HP_PERCENT))
|
|
{
|
|
gBattlerAttacker = battler;
|
|
BattleScriptPushCursorAndCallback(BattleScript_AttackerFormChangeEnd3);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_BALL_FETCH:
|
|
if (gBattleMons[battler].item == ITEM_NONE
|
|
&& gBattleResults.catchAttempts[gLastUsedBall - ITEM_ULTRA_BALL] >= 1
|
|
&& !gHasFetchedBall)
|
|
{
|
|
gBattleScripting.battler = battler;
|
|
BtlController_EmitSetMonData(battler, BUFFER_A, REQUEST_HELDITEM_BATTLE, 0, 2, &gLastUsedBall);
|
|
MarkBattlerForControllerExec(battler);
|
|
gHasFetchedBall = TRUE;
|
|
gLastUsedItem = gLastUsedBall;
|
|
BattleScriptPushCursorAndCallback(BattleScript_BallFetch);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_HUNGER_SWITCH:
|
|
if (TryBattleFormChange(battler, FORM_CHANGE_BATTLE_TURN_END))
|
|
{
|
|
gBattlerAttacker = battler;
|
|
BattleScriptPushCursorAndCallback(BattleScript_AttackerFormChangeEnd3NoPopup);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_CUD_CHEW:
|
|
if (ItemId_GetPocket(GetUsedHeldItem(battler)) == POCKET_BERRIES && gDisableStructs[battler].cudChew == TRUE)
|
|
{
|
|
gLastUsedItem = gBattleStruct->usedHeldItems[battler][GetBattlerSide(battler)];
|
|
gBattleStruct->usedHeldItems[battler][GetBattlerSide(battler)] = ITEM_NONE;
|
|
BattleScriptPushCursorAndCallback(BattleScript_CudChewActivates);
|
|
effect++;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
break;
|
|
case ABILITYEFFECT_MOVES_BLOCK: // 2
|
|
{
|
|
u16 moveTarget = GetBattlerMoveTargetType(battler, move);
|
|
u16 battlerAbility = GetBattlerAbility(battler);
|
|
u16 targetAbility = GetBattlerAbility(gBattlerTarget);
|
|
|
|
if ((gLastUsedAbility == ABILITY_SOUNDPROOF && gBattleMoves[move].soundMove && !(moveTarget & MOVE_TARGET_USER))
|
|
|| (gLastUsedAbility == ABILITY_BULLETPROOF && gBattleMoves[move].ballisticMove))
|
|
{
|
|
if (gBattleMons[gBattlerAttacker].status2 & STATUS2_MULTIPLETURNS)
|
|
gHitMarker |= HITMARKER_NO_PPDEDUCT;
|
|
gBattlescriptCurrInstr = BattleScript_SoundproofProtected;
|
|
effect = 1;
|
|
}
|
|
else if ((gLastUsedAbility == ABILITY_DAZZLING || gLastUsedAbility == ABILITY_QUEENLY_MAJESTY || gLastUsedAbility == ABILITY_ARMOR_TAIL || IsBattlerAlive(battler ^= BIT_FLANK))
|
|
&& (battlerAbility == ABILITY_DAZZLING || battlerAbility == ABILITY_QUEENLY_MAJESTY || battlerAbility == ABILITY_ARMOR_TAIL)
|
|
&& GetChosenMovePriority(gBattlerAttacker) > 0
|
|
&& GetBattlerSide(gBattlerAttacker) != GetBattlerSide(battler))
|
|
{
|
|
if (gBattleMons[gBattlerAttacker].status2 & STATUS2_MULTIPLETURNS)
|
|
gHitMarker |= HITMARKER_NO_PPDEDUCT;
|
|
gBattlescriptCurrInstr = BattleScript_DazzlingProtected;
|
|
effect = 1;
|
|
}
|
|
else if (GetChosenMovePriority(gBattlerAttacker) > 0
|
|
&& BlocksPrankster(move, gBattlerAttacker, gBattlerTarget, TRUE)
|
|
&& !(IS_MOVE_STATUS(move) && (targetAbility == ABILITY_MAGIC_BOUNCE || gProtectStructs[gBattlerTarget].bounceMove)))
|
|
{
|
|
if (!(gBattleTypeFlags & BATTLE_TYPE_DOUBLE) || !(moveTarget & (MOVE_TARGET_BOTH | MOVE_TARGET_FOES_AND_ALLY)))
|
|
CancelMultiTurnMoves(gBattlerAttacker); // Don't cancel moves that can hit two targets bc one target might not be protected
|
|
gBattleScripting.battler = gBattlerAbility = gBattlerTarget;
|
|
gBattlescriptCurrInstr = BattleScript_DarkTypePreventsPrankster;
|
|
effect = 1;
|
|
}
|
|
else if (GetBattlerAbility(gBattlerTarget) == ABILITY_GOOD_AS_GOLD
|
|
&& IS_MOVE_STATUS(gCurrentMove)
|
|
&& !(moveTarget & MOVE_TARGET_USER)
|
|
&& !(moveTarget & MOVE_TARGET_OPPONENTS_FIELD)
|
|
&& !(moveTarget & MOVE_TARGET_ALL_BATTLERS))
|
|
{
|
|
gBattlescriptCurrInstr = BattleScript_GoodAsGoldActivates;
|
|
effect = 1;
|
|
}
|
|
break;
|
|
}
|
|
case ABILITYEFFECT_ABSORBING: // 3
|
|
if (move != MOVE_NONE)
|
|
{
|
|
u8 statId;
|
|
u8 statAmount = 1;
|
|
switch (gLastUsedAbility)
|
|
{
|
|
case ABILITY_VOLT_ABSORB:
|
|
if (moveType == TYPE_ELECTRIC && gBattleMoves[move].target != MOVE_TARGET_ALL_BATTLERS)
|
|
effect = 1;
|
|
break;
|
|
case ABILITY_WATER_ABSORB:
|
|
case ABILITY_DRY_SKIN:
|
|
if (moveType == TYPE_WATER)
|
|
effect = 1;
|
|
break;
|
|
case ABILITY_MOTOR_DRIVE:
|
|
if (moveType == TYPE_ELECTRIC && gBattleMoves[move].target != MOVE_TARGET_ALL_BATTLERS)
|
|
effect = 2, statId = STAT_SPEED;
|
|
break;
|
|
case ABILITY_LIGHTNING_ROD:
|
|
if (moveType == TYPE_ELECTRIC && gBattleMoves[move].target != MOVE_TARGET_ALL_BATTLERS)
|
|
effect = 2, statId = STAT_SPATK;
|
|
break;
|
|
case ABILITY_STORM_DRAIN:
|
|
if (moveType == TYPE_WATER)
|
|
effect = 2, statId = STAT_SPATK;
|
|
break;
|
|
case ABILITY_SAP_SIPPER:
|
|
if (moveType == TYPE_GRASS)
|
|
effect = 2, statId = STAT_ATK;
|
|
break;
|
|
case ABILITY_FLASH_FIRE:
|
|
if (moveType == TYPE_FIRE
|
|
&& (B_FLASH_FIRE_FROZEN >= GEN_5 || !(gBattleMons[battler].status1 & STATUS1_FREEZE)))
|
|
{
|
|
if (!(gBattleResources->flags->flags[battler] & RESOURCE_FLAG_FLASH_FIRE))
|
|
{
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_FLASH_FIRE_BOOST;
|
|
if (gProtectStructs[gBattlerAttacker].notFirstStrike)
|
|
gBattlescriptCurrInstr = BattleScript_FlashFireBoost;
|
|
else
|
|
gBattlescriptCurrInstr = BattleScript_FlashFireBoost_PPLoss;
|
|
|
|
gBattleResources->flags->flags[battler] |= RESOURCE_FLAG_FLASH_FIRE;
|
|
effect = 3;
|
|
}
|
|
else
|
|
{
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_FLASH_FIRE_NO_BOOST;
|
|
if (gProtectStructs[gBattlerAttacker].notFirstStrike)
|
|
gBattlescriptCurrInstr = BattleScript_FlashFireBoost;
|
|
else
|
|
gBattlescriptCurrInstr = BattleScript_FlashFireBoost_PPLoss;
|
|
|
|
effect = 3;
|
|
}
|
|
}
|
|
break;
|
|
case ABILITY_WELL_BAKED_BODY:
|
|
if (moveType == TYPE_FIRE)
|
|
effect = 2, statId = STAT_DEF, statAmount = 2;
|
|
break;
|
|
case ABILITY_WIND_RIDER:
|
|
if (gBattleMoves[gCurrentMove].windMove && !(GetBattlerMoveTargetType(gBattlerAttacker, gCurrentMove) & MOVE_TARGET_USER))
|
|
effect = 2, statId = STAT_ATK;
|
|
break;
|
|
case ABILITY_EARTH_EATER:
|
|
if (moveType == TYPE_GROUND)
|
|
effect = 1;
|
|
break;
|
|
}
|
|
|
|
if (effect == 1) // Drain Hp ability.
|
|
{
|
|
if (BATTLER_MAX_HP(battler) || (B_HEAL_BLOCKING >= GEN_5 && gStatuses3[battler] & STATUS3_HEAL_BLOCK))
|
|
{
|
|
if ((gProtectStructs[gBattlerAttacker].notFirstStrike))
|
|
gBattlescriptCurrInstr = BattleScript_MonMadeMoveUseless;
|
|
else
|
|
gBattlescriptCurrInstr = BattleScript_MonMadeMoveUseless_PPLoss;
|
|
}
|
|
else
|
|
{
|
|
if (gProtectStructs[gBattlerAttacker].notFirstStrike)
|
|
gBattlescriptCurrInstr = BattleScript_MoveHPDrain;
|
|
else
|
|
gBattlescriptCurrInstr = BattleScript_MoveHPDrain_PPLoss;
|
|
|
|
gBattleMoveDamage = GetNonDynamaxMaxHP(battler) / 4;
|
|
if (gBattleMoveDamage == 0)
|
|
gBattleMoveDamage = 1;
|
|
gBattleMoveDamage *= -1;
|
|
}
|
|
}
|
|
else if (effect == 2) // Boost Stat ability;
|
|
{
|
|
if (!CompareStat(battler, statId, MAX_STAT_STAGE, CMP_LESS_THAN))
|
|
{
|
|
if ((gProtectStructs[gBattlerAttacker].notFirstStrike))
|
|
gBattlescriptCurrInstr = BattleScript_MonMadeMoveUseless;
|
|
else
|
|
gBattlescriptCurrInstr = BattleScript_MonMadeMoveUseless_PPLoss;
|
|
}
|
|
else
|
|
{
|
|
if (gProtectStructs[gBattlerAttacker].notFirstStrike)
|
|
gBattlescriptCurrInstr = BattleScript_MoveStatDrain;
|
|
else
|
|
gBattlescriptCurrInstr = BattleScript_MoveStatDrain_PPLoss;
|
|
|
|
SET_STATCHANGER(statId, statAmount, FALSE);
|
|
if (B_ABSORBING_ABILITY_STRING < GEN_5)
|
|
PREPARE_STAT_BUFFER(gBattleTextBuff1, statId);
|
|
}
|
|
}
|
|
|
|
if (effect)
|
|
gMultiHitCounter = 0; // Prevent multi-hit moves from hitting more than once after move has been absorbed.
|
|
}
|
|
break;
|
|
case ABILITYEFFECT_MOVE_END: // Think contact abilities.
|
|
switch (gLastUsedAbility)
|
|
{
|
|
case ABILITY_JUSTIFIED:
|
|
if (!(gMoveResultFlags & MOVE_RESULT_NO_EFFECT)
|
|
&& TARGET_TURN_DAMAGED
|
|
&& IsBattlerAlive(battler)
|
|
&& moveType == TYPE_DARK
|
|
&& CompareStat(battler, STAT_ATK, MAX_STAT_STAGE, CMP_LESS_THAN))
|
|
{
|
|
gEffectBattler = battler;
|
|
SET_STATCHANGER(STAT_ATK, 1, FALSE);
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_TargetAbilityStatRaiseRet;
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_RATTLED:
|
|
if (!(gMoveResultFlags & MOVE_RESULT_NO_EFFECT)
|
|
&& TARGET_TURN_DAMAGED
|
|
&& IsBattlerAlive(battler)
|
|
&& (moveType == TYPE_DARK || moveType == TYPE_BUG || moveType == TYPE_GHOST)
|
|
&& CompareStat(battler, STAT_SPEED, MAX_STAT_STAGE, CMP_LESS_THAN))
|
|
{
|
|
gEffectBattler = battler;
|
|
SET_STATCHANGER(STAT_SPEED, 1, FALSE);
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_TargetAbilityStatRaiseRet;
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_WATER_COMPACTION:
|
|
if (!(gMoveResultFlags & MOVE_RESULT_NO_EFFECT)
|
|
&& TARGET_TURN_DAMAGED
|
|
&& IsBattlerAlive(battler)
|
|
&& moveType == TYPE_WATER
|
|
&& CompareStat(battler, STAT_DEF, MAX_STAT_STAGE, CMP_LESS_THAN))
|
|
{
|
|
gEffectBattler = battler;
|
|
SET_STATCHANGER(STAT_DEF, 2, FALSE);
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_TargetAbilityStatRaiseRet;
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_STAMINA:
|
|
if (!(gMoveResultFlags & MOVE_RESULT_NO_EFFECT)
|
|
&& gBattlerAttacker != gBattlerTarget
|
|
&& TARGET_TURN_DAMAGED
|
|
&& IsBattlerAlive(battler)
|
|
&& CompareStat(battler, STAT_DEF, MAX_STAT_STAGE, CMP_LESS_THAN))
|
|
{
|
|
gEffectBattler = battler;
|
|
SET_STATCHANGER(STAT_DEF, 1, FALSE);
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_TargetAbilityStatRaiseRet;
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_BERSERK:
|
|
if (!(gMoveResultFlags & MOVE_RESULT_NO_EFFECT)
|
|
&& TARGET_TURN_DAMAGED
|
|
&& IsBattlerAlive(battler)
|
|
&& HadMoreThanHalfHpNowHasLess(battler)
|
|
&& (gMultiHitCounter == 0 || gMultiHitCounter == 1)
|
|
&& !(TestSheerForceFlag(gBattlerAttacker, gCurrentMove))
|
|
&& CompareStat(battler, STAT_SPATK, MAX_STAT_STAGE, CMP_LESS_THAN))
|
|
{
|
|
gEffectBattler = battler;
|
|
SET_STATCHANGER(STAT_SPATK, 1, FALSE);
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_TargetAbilityStatRaiseRet;
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_EMERGENCY_EXIT:
|
|
case ABILITY_WIMP_OUT:
|
|
if (!(gMoveResultFlags & MOVE_RESULT_NO_EFFECT)
|
|
&& TARGET_TURN_DAMAGED
|
|
&& IsBattlerAlive(battler)
|
|
// Had more than half of hp before, now has less
|
|
&& gBattleStruct->hpBefore[battler] > gBattleMons[battler].maxHP / 2
|
|
&& gBattleMons[battler].hp < gBattleMons[battler].maxHP / 2
|
|
&& (gMultiHitCounter == 0 || gMultiHitCounter == 1)
|
|
&& !(TestSheerForceFlag(gBattlerAttacker, gCurrentMove))
|
|
&& (CanBattlerSwitch(battler) || !(gBattleTypeFlags & BATTLE_TYPE_TRAINER))
|
|
&& !(gBattleTypeFlags & BATTLE_TYPE_ARENA)
|
|
&& CountUsablePartyMons(battler) > 0
|
|
// Not currently held by Sky Drop
|
|
&& !(gStatuses3[battler] & STATUS3_SKY_DROPPED))
|
|
{
|
|
gBattleResources->flags->flags[battler] |= RESOURCE_FLAG_EMERGENCY_EXIT;
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_WEAK_ARMOR:
|
|
if (!(gMoveResultFlags & MOVE_RESULT_NO_EFFECT)
|
|
&& TARGET_TURN_DAMAGED
|
|
&& IsBattlerAlive(battler)
|
|
&& IS_MOVE_PHYSICAL(gCurrentMove)
|
|
&& (CompareStat(battler, STAT_SPEED, MAX_STAT_STAGE, CMP_LESS_THAN) // Don't activate if both Speed and Defense cannot be raised.
|
|
|| CompareStat(battler, STAT_DEF, MIN_STAT_STAGE, CMP_GREATER_THAN)))
|
|
{
|
|
if (gBattleMoves[gCurrentMove].effect == EFFECT_HIT_ESCAPE && CanBattlerSwitch(gBattlerAttacker))
|
|
gProtectStructs[battler].disableEjectPack = TRUE; // Set flag for target
|
|
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_WeakArmorActivates;
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_CURSED_BODY:
|
|
if (!(gMoveResultFlags & MOVE_RESULT_NO_EFFECT)
|
|
&& TARGET_TURN_DAMAGED
|
|
&& gDisableStructs[gBattlerAttacker].disabledMove == MOVE_NONE
|
|
&& IsBattlerAlive(gBattlerAttacker)
|
|
&& !IsAbilityOnSide(gBattlerAttacker, ABILITY_AROMA_VEIL)
|
|
&& gBattleMons[gBattlerAttacker].pp[gChosenMovePos] != 0
|
|
&& !IsDynamaxed(gBattlerAttacker) // TODO: Max Moves don't make contact, useless?
|
|
&& (Random() % 3) == 0)
|
|
{
|
|
gDisableStructs[gBattlerAttacker].disabledMove = gChosenMove;
|
|
gDisableStructs[gBattlerAttacker].disableTimer = 4;
|
|
PREPARE_MOVE_BUFFER(gBattleTextBuff1, gChosenMove);
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_CursedBodyActivates;
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_LINGERING_AROMA:
|
|
case ABILITY_MUMMY:
|
|
if (!(gMoveResultFlags & MOVE_RESULT_NO_EFFECT)
|
|
&& IsBattlerAlive(gBattlerAttacker)
|
|
&& TARGET_TURN_DAMAGED
|
|
&& IsMoveMakingContact(move, gBattlerAttacker)
|
|
&& gBattleStruct->overwrittenAbilities[gBattlerAttacker] != GetBattlerAbility(gBattlerTarget)
|
|
&& gBattleMons[gBattlerTarget].ability != ABILITY_MUMMY
|
|
&& gBattleMons[gBattlerTarget].ability != ABILITY_LINGERING_AROMA
|
|
&& !gAbilities[gBattleMons[gBattlerTarget].ability].cantBeSuppressed)
|
|
{
|
|
if (GetBattlerHoldEffect(gBattlerAttacker, TRUE) == HOLD_EFFECT_ABILITY_SHIELD)
|
|
{
|
|
RecordItemEffectBattle(gBattlerAttacker, HOLD_EFFECT_ABILITY_SHIELD);
|
|
break;
|
|
}
|
|
|
|
gLastUsedAbility = gBattleMons[gBattlerAttacker].ability = gBattleStruct->overwrittenAbilities[gBattlerAttacker] = gBattleMons[gBattlerTarget].ability;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_MummyActivates;
|
|
effect++;
|
|
break;
|
|
}
|
|
break;
|
|
case ABILITY_WANDERING_SPIRIT:
|
|
if (!(gMoveResultFlags & MOVE_RESULT_NO_EFFECT)
|
|
&& IsBattlerAlive(gBattlerAttacker)
|
|
&& TARGET_TURN_DAMAGED
|
|
&& IsMoveMakingContact(move, gBattlerAttacker)
|
|
&& !IsDynamaxed(gBattlerTarget)
|
|
&& !gAbilities[gBattleMons[gBattlerAttacker].ability].cantBeSwapped)
|
|
{
|
|
if (GetBattlerHoldEffect(gBattlerAttacker, TRUE) == HOLD_EFFECT_ABILITY_SHIELD)
|
|
{
|
|
RecordItemEffectBattle(gBattlerAttacker, HOLD_EFFECT_ABILITY_SHIELD);
|
|
break;
|
|
}
|
|
|
|
gLastUsedAbility = gBattleMons[gBattlerAttacker].ability;
|
|
gBattleMons[gBattlerAttacker].ability = gBattleStruct->overwrittenAbilities[gBattlerAttacker] = gBattleMons[gBattlerTarget].ability;
|
|
gBattleMons[gBattlerTarget].ability = gBattleStruct->overwrittenAbilities[gBattlerTarget] = gLastUsedAbility;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_WanderingSpiritActivates;
|
|
effect++;
|
|
break;
|
|
}
|
|
break;
|
|
case ABILITY_ANGER_POINT:
|
|
if (!(gMoveResultFlags & MOVE_RESULT_NO_EFFECT)
|
|
&& gIsCriticalHit
|
|
&& TARGET_TURN_DAMAGED
|
|
&& IsBattlerAlive(battler)
|
|
&& CompareStat(battler, STAT_ATK, MAX_STAT_STAGE, CMP_LESS_THAN))
|
|
{
|
|
SET_STATCHANGER(STAT_ATK, MAX_STAT_STAGE - gBattleMons[battler].statStages[STAT_ATK], FALSE);
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_TargetsStatWasMaxedOut;
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_COLOR_CHANGE:
|
|
if (!(gMoveResultFlags & MOVE_RESULT_NO_EFFECT)
|
|
&& move != MOVE_STRUGGLE
|
|
&& gBattleMoves[move].power != 0
|
|
&& TARGET_TURN_DAMAGED
|
|
&& !IS_BATTLER_OF_TYPE(battler, moveType)
|
|
&& gBattleMons[battler].hp != 0)
|
|
{
|
|
SET_BATTLER_TYPE(battler, moveType);
|
|
PREPARE_TYPE_BUFFER(gBattleTextBuff1, moveType);
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_ColorChangeActivates;
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_GOOEY:
|
|
case ABILITY_TANGLING_HAIR:
|
|
if (!(gMoveResultFlags & MOVE_RESULT_NO_EFFECT)
|
|
&& gBattleMons[gBattlerAttacker].hp != 0
|
|
&& (CompareStat(gBattlerAttacker, STAT_SPEED, MIN_STAT_STAGE, CMP_GREATER_THAN) || GetBattlerAbility(gBattlerAttacker) == ABILITY_MIRROR_ARMOR)
|
|
&& !gProtectStructs[gBattlerAttacker].confusionSelfDmg
|
|
&& TARGET_TURN_DAMAGED
|
|
&& IsMoveMakingContact(move, gBattlerAttacker))
|
|
{
|
|
SET_STATCHANGER(STAT_SPEED, 1, TRUE);
|
|
gBattleScripting.moveEffect = MOVE_EFFECT_SPD_MINUS_1;
|
|
PREPARE_ABILITY_BUFFER(gBattleTextBuff1, gLastUsedAbility);
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_GooeyActivates;
|
|
gHitMarker |= HITMARKER_STATUS_ABILITY_EFFECT;
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_ROUGH_SKIN:
|
|
case ABILITY_IRON_BARBS:
|
|
if (!(gMoveResultFlags & MOVE_RESULT_NO_EFFECT)
|
|
&& gBattleMons[gBattlerAttacker].hp != 0
|
|
&& !gProtectStructs[gBattlerAttacker].confusionSelfDmg
|
|
&& TARGET_TURN_DAMAGED
|
|
&& IsMoveMakingContact(move, gBattlerAttacker))
|
|
{
|
|
gBattleMoveDamage = GetNonDynamaxMaxHP(gBattlerAttacker) / (B_ROUGH_SKIN_DMG >= GEN_4 ? 8 : 16);
|
|
if (gBattleMoveDamage == 0)
|
|
gBattleMoveDamage = 1;
|
|
PREPARE_ABILITY_BUFFER(gBattleTextBuff1, gLastUsedAbility);
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_RoughSkinActivates;
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_AFTERMATH:
|
|
if (!(gMoveResultFlags & MOVE_RESULT_NO_EFFECT)
|
|
&& gBattleMons[gBattlerTarget].hp == 0
|
|
&& IsBattlerAlive(gBattlerAttacker)
|
|
&& IsMoveMakingContact(move, gBattlerAttacker))
|
|
{
|
|
u32 battler;
|
|
if ((battler = IsAbilityOnField(ABILITY_DAMP)))
|
|
{
|
|
gBattleScripting.battler = battler - 1;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_DampPreventsAftermath;
|
|
}
|
|
else
|
|
{
|
|
gBattleMoveDamage = GetNonDynamaxMaxHP(gBattlerAttacker) / 4;
|
|
if (gBattleMoveDamage == 0)
|
|
gBattleMoveDamage = 1;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_AftermathDmg;
|
|
}
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_INNARDS_OUT:
|
|
if (!(gMoveResultFlags & MOVE_RESULT_NO_EFFECT)
|
|
&& gBattleMons[gBattlerTarget].hp == 0
|
|
&& IsBattlerAlive(gBattlerAttacker))
|
|
{
|
|
gBattleMoveDamage = gSpecialStatuses[gBattlerTarget].shellBellDmg;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_AftermathDmg;
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_EFFECT_SPORE:
|
|
if (!IS_BATTLER_OF_TYPE(gBattlerAttacker, TYPE_GRASS)
|
|
&& GetBattlerAbility(gBattlerAttacker) != ABILITY_OVERCOAT
|
|
&& GetBattlerHoldEffect(gBattlerAttacker, TRUE) != HOLD_EFFECT_SAFETY_GOGGLES)
|
|
{
|
|
i = Random() % 3;
|
|
if (i == 0)
|
|
goto POISON_POINT;
|
|
if (i == 1)
|
|
goto STATIC;
|
|
// Sleep
|
|
if (!(gMoveResultFlags & MOVE_RESULT_NO_EFFECT)
|
|
&& gBattleMons[gBattlerAttacker].hp != 0
|
|
&& !gProtectStructs[gBattlerAttacker].confusionSelfDmg
|
|
&& TARGET_TURN_DAMAGED
|
|
&& CanSleep(gBattlerAttacker)
|
|
&& IsMoveMakingContact(move, gBattlerAttacker)
|
|
&& (Random() % 3) == 0)
|
|
{
|
|
gBattleScripting.moveEffect = MOVE_EFFECT_AFFECTS_USER | MOVE_EFFECT_SLEEP;
|
|
PREPARE_ABILITY_BUFFER(gBattleTextBuff1, gLastUsedAbility);
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_AbilityStatusEffect;
|
|
gHitMarker |= HITMARKER_STATUS_ABILITY_EFFECT;
|
|
effect++;
|
|
}
|
|
}
|
|
break;
|
|
POISON_POINT:
|
|
case ABILITY_POISON_POINT:
|
|
if (!(gMoveResultFlags & MOVE_RESULT_NO_EFFECT)
|
|
&& gBattleMons[gBattlerAttacker].hp != 0
|
|
&& !gProtectStructs[gBattlerAttacker].confusionSelfDmg
|
|
&& TARGET_TURN_DAMAGED
|
|
&& CanBePoisoned(gBattlerTarget, gBattlerAttacker)
|
|
&& IsMoveMakingContact(move, gBattlerAttacker)
|
|
&& RandomWeighted(RNG_POISON_POINT, 2, 1))
|
|
{
|
|
gBattleScripting.moveEffect = MOVE_EFFECT_AFFECTS_USER | MOVE_EFFECT_POISON;
|
|
PREPARE_ABILITY_BUFFER(gBattleTextBuff1, gLastUsedAbility);
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_AbilityStatusEffect;
|
|
gHitMarker |= HITMARKER_STATUS_ABILITY_EFFECT;
|
|
effect++;
|
|
}
|
|
break;
|
|
STATIC:
|
|
case ABILITY_STATIC:
|
|
if (!(gMoveResultFlags & MOVE_RESULT_NO_EFFECT)
|
|
&& gBattleMons[gBattlerAttacker].hp != 0
|
|
&& !gProtectStructs[gBattlerAttacker].confusionSelfDmg
|
|
&& TARGET_TURN_DAMAGED
|
|
&& CanBeParalyzed(gBattlerAttacker)
|
|
&& IsMoveMakingContact(move, gBattlerAttacker)
|
|
&& RandomWeighted(RNG_STATIC, 2, 1))
|
|
{
|
|
gBattleScripting.moveEffect = MOVE_EFFECT_AFFECTS_USER | MOVE_EFFECT_PARALYSIS;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_AbilityStatusEffect;
|
|
gHitMarker |= HITMARKER_STATUS_ABILITY_EFFECT;
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_FLAME_BODY:
|
|
if (!(gMoveResultFlags & MOVE_RESULT_NO_EFFECT)
|
|
&& gBattleMons[gBattlerAttacker].hp != 0
|
|
&& !gProtectStructs[gBattlerAttacker].confusionSelfDmg
|
|
&& (IsMoveMakingContact(move, gBattlerAttacker))
|
|
&& TARGET_TURN_DAMAGED
|
|
&& CanBeBurned(gBattlerAttacker)
|
|
&& RandomWeighted(RNG_FLAME_BODY, 2, 1))
|
|
{
|
|
gBattleScripting.moveEffect = MOVE_EFFECT_AFFECTS_USER | MOVE_EFFECT_BURN;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_AbilityStatusEffect;
|
|
gHitMarker |= HITMARKER_STATUS_ABILITY_EFFECT;
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_CUTE_CHARM:
|
|
if (!(gMoveResultFlags & MOVE_RESULT_NO_EFFECT)
|
|
&& gBattleMons[gBattlerAttacker].hp != 0
|
|
&& !gProtectStructs[gBattlerAttacker].confusionSelfDmg
|
|
&& TARGET_TURN_DAMAGED
|
|
&& gBattleMons[gBattlerTarget].hp != 0
|
|
&& RandomWeighted(RNG_CUTE_CHARM, 2, 1)
|
|
&& !(gBattleMons[gBattlerAttacker].status2 & STATUS2_INFATUATION)
|
|
&& AreBattlersOfOppositeGender(gBattlerAttacker, gBattlerTarget)
|
|
&& GetBattlerAbility(gBattlerAttacker) != ABILITY_OBLIVIOUS
|
|
&& IsMoveMakingContact(move, gBattlerAttacker)
|
|
&& !IsAbilityOnSide(gBattlerAttacker, ABILITY_AROMA_VEIL))
|
|
{
|
|
gBattleMons[gBattlerAttacker].status2 |= STATUS2_INFATUATED_WITH(gBattlerTarget);
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_CuteCharmActivates;
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_ILLUSION:
|
|
if (gBattleStruct->illusion[gBattlerTarget].on && !gBattleStruct->illusion[gBattlerTarget].broken && TARGET_TURN_DAMAGED)
|
|
{
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_IllusionOff;
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_COTTON_DOWN:
|
|
if (!(gMoveResultFlags & MOVE_RESULT_NO_EFFECT)
|
|
&& gBattleMons[gBattlerAttacker].hp != 0
|
|
&& !gProtectStructs[gBattlerAttacker].confusionSelfDmg
|
|
&& TARGET_TURN_DAMAGED)
|
|
{
|
|
gEffectBattler = gBattlerTarget;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_CottonDownActivates;
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_STEAM_ENGINE:
|
|
if (!(gMoveResultFlags & MOVE_RESULT_NO_EFFECT)
|
|
&& TARGET_TURN_DAMAGED
|
|
&& IsBattlerAlive(battler)
|
|
&& CompareStat(battler, STAT_SPEED, MAX_STAT_STAGE, CMP_LESS_THAN)
|
|
&& (moveType == TYPE_FIRE || moveType == TYPE_WATER))
|
|
{
|
|
gEffectBattler = battler;
|
|
SET_STATCHANGER(STAT_SPEED, 6, FALSE);
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_TargetAbilityStatRaiseRet;
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_SAND_SPIT:
|
|
if (!(gMoveResultFlags & MOVE_RESULT_NO_EFFECT)
|
|
&& !gProtectStructs[gBattlerAttacker].confusionSelfDmg
|
|
&& TARGET_TURN_DAMAGED
|
|
&& !(gBattleWeather & B_WEATHER_SANDSTORM && WEATHER_HAS_EFFECT))
|
|
{
|
|
if (gBattleWeather & B_WEATHER_PRIMAL_ANY && WEATHER_HAS_EFFECT)
|
|
{
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_BlockedByPrimalWeatherRet;
|
|
effect++;
|
|
}
|
|
else if (TryChangeBattleWeather(battler, ENUM_WEATHER_SANDSTORM, TRUE))
|
|
{
|
|
gBattleScripting.battler = battler;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_SandSpitActivates;
|
|
effect++;
|
|
}
|
|
}
|
|
break;
|
|
case ABILITY_PERISH_BODY:
|
|
if (!(gMoveResultFlags & MOVE_RESULT_NO_EFFECT)
|
|
&& !gProtectStructs[gBattlerAttacker].confusionSelfDmg
|
|
&& TARGET_TURN_DAMAGED
|
|
&& IsBattlerAlive(battler)
|
|
&& (IsMoveMakingContact(move, gBattlerAttacker))
|
|
&& !(gStatuses3[gBattlerAttacker] & STATUS3_PERISH_SONG))
|
|
{
|
|
if (!(gStatuses3[battler] & STATUS3_PERISH_SONG))
|
|
{
|
|
gStatuses3[battler] |= STATUS3_PERISH_SONG;
|
|
gDisableStructs[battler].perishSongTimer = 3;
|
|
}
|
|
gStatuses3[gBattlerAttacker] |= STATUS3_PERISH_SONG;
|
|
gDisableStructs[gBattlerAttacker].perishSongTimer = 3;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_PerishBodyActivates;
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_GULP_MISSILE:
|
|
if (!(gMoveResultFlags & MOVE_RESULT_NO_EFFECT)
|
|
&& !gProtectStructs[gBattlerAttacker].confusionSelfDmg
|
|
&& TARGET_TURN_DAMAGED
|
|
&& IsBattlerAlive(battler))
|
|
{
|
|
if (gBattleMons[gBattlerTarget].species == SPECIES_CRAMORANT_GORGING)
|
|
{
|
|
gBattleMons[gBattlerTarget].species = SPECIES_CRAMORANT;
|
|
if (GetBattlerAbility(gBattlerAttacker) != ABILITY_MAGIC_GUARD)
|
|
{
|
|
gBattleMoveDamage = GetNonDynamaxMaxHP(gBattlerAttacker) / 4;
|
|
if (gBattleMoveDamage == 0)
|
|
gBattleMoveDamage = 1;
|
|
}
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_GulpMissileGorging;
|
|
effect++;
|
|
}
|
|
else if (gBattleMons[gBattlerTarget].species == SPECIES_CRAMORANT_GULPING)
|
|
{
|
|
gBattleMons[gBattlerTarget].species = SPECIES_CRAMORANT;
|
|
if (GetBattlerAbility(gBattlerAttacker) != ABILITY_MAGIC_GUARD)
|
|
{
|
|
gBattleMoveDamage = GetNonDynamaxMaxHP(gBattlerAttacker) / 4;
|
|
if (gBattleMoveDamage == 0)
|
|
gBattleMoveDamage = 1;
|
|
}
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_GulpMissileGulping;
|
|
effect++;
|
|
}
|
|
}
|
|
break;
|
|
case ABILITY_SEED_SOWER:
|
|
if (!(gMoveResultFlags & MOVE_RESULT_NO_EFFECT)
|
|
&& !gProtectStructs[gBattlerAttacker].confusionSelfDmg
|
|
&& TARGET_TURN_DAMAGED
|
|
&& IsBattlerAlive(gBattlerTarget)
|
|
&& TryChangeBattleTerrain(gBattlerTarget, STATUS_FIELD_GRASSY_TERRAIN, &gFieldTimers.terrainTimer))
|
|
{
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_SeedSowerActivates;
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_THERMAL_EXCHANGE:
|
|
if (!(gMoveResultFlags & MOVE_RESULT_NO_EFFECT)
|
|
&& TARGET_TURN_DAMAGED
|
|
&& IsBattlerAlive(gBattlerTarget)
|
|
&& CompareStat(gBattlerTarget, STAT_ATK, MAX_STAT_STAGE, CMP_LESS_THAN)
|
|
&& moveType == TYPE_FIRE)
|
|
{
|
|
gEffectBattler = gBattlerTarget;
|
|
SET_STATCHANGER(STAT_ATK, 1, FALSE);
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_TargetAbilityStatRaiseRet;
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_ANGER_SHELL:
|
|
if (!(gMoveResultFlags & MOVE_RESULT_NO_EFFECT)
|
|
&& !gProtectStructs[gBattlerAttacker].confusionSelfDmg
|
|
&& TARGET_TURN_DAMAGED
|
|
&& (gMultiHitCounter == 0 || gMultiHitCounter == 1) // Activates after all hits from a multi-hit move.
|
|
&& IsBattlerAlive(gBattlerTarget)
|
|
&& HadMoreThanHalfHpNowHasLess(gBattlerTarget)
|
|
&& !(TestSheerForceFlag(gBattlerAttacker, gCurrentMove)))
|
|
{
|
|
gBattlerAttacker = gBattlerTarget;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_AngerShellActivates;
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_WIND_POWER:
|
|
if (!(gBattleMoves[gCurrentMove].windMove))
|
|
break;
|
|
// fall through
|
|
case ABILITY_ELECTROMORPHOSIS:
|
|
if (!(gMoveResultFlags & MOVE_RESULT_NO_EFFECT)
|
|
&& !gProtectStructs[gBattlerAttacker].confusionSelfDmg
|
|
&& TARGET_TURN_DAMAGED
|
|
&& IsBattlerAlive(gBattlerTarget))
|
|
{
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_WindPowerActivates;
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_TOXIC_DEBRIS:
|
|
if (!(gMoveResultFlags & MOVE_RESULT_NO_EFFECT)
|
|
&& (!gBattleStruct->isSkyBattle)
|
|
&& !gProtectStructs[gBattlerAttacker].confusionSelfDmg
|
|
&& IS_MOVE_PHYSICAL(gCurrentMove)
|
|
&& TARGET_TURN_DAMAGED
|
|
&& (gSideTimers[gBattlerAttacker].toxicSpikesAmount != 2))
|
|
{
|
|
SWAP(gBattlerAttacker, gBattlerTarget, i);
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_ToxicDebrisActivates;
|
|
effect++;
|
|
}
|
|
break;
|
|
}
|
|
break;
|
|
case ABILITYEFFECT_MOVE_END_ATTACKER: // Same as above, but for attacker
|
|
switch (gLastUsedAbility)
|
|
{
|
|
case ABILITY_POISON_TOUCH:
|
|
if (!(gMoveResultFlags & MOVE_RESULT_NO_EFFECT)
|
|
&& gBattleMons[gBattlerTarget].hp != 0
|
|
&& !gProtectStructs[gBattlerAttacker].confusionSelfDmg
|
|
&& CanBePoisoned(gBattlerAttacker, gBattlerTarget)
|
|
&& IsMoveMakingContact(move, gBattlerAttacker)
|
|
&& TARGET_TURN_DAMAGED // Need to actually hit the target
|
|
&& (Random() % 3) == 0)
|
|
{
|
|
gBattleScripting.moveEffect = MOVE_EFFECT_POISON;
|
|
PREPARE_ABILITY_BUFFER(gBattleTextBuff1, gLastUsedAbility);
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_AbilityStatusEffect;
|
|
gHitMarker |= HITMARKER_STATUS_ABILITY_EFFECT;
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_STENCH:
|
|
if (!(gMoveResultFlags & MOVE_RESULT_NO_EFFECT)
|
|
&& gBattleMons[gBattlerTarget].hp != 0
|
|
&& !gProtectStructs[gBattlerAttacker].confusionSelfDmg
|
|
&& RandomWeighted(RNG_STENCH, 9, 1)
|
|
&& !IS_MOVE_STATUS(move)
|
|
&& !MoveHasMoveEffect(gCurrentMove, MOVE_EFFECT_FLINCH))
|
|
{
|
|
gBattleScripting.moveEffect = MOVE_EFFECT_FLINCH;
|
|
BattleScriptPushCursor();
|
|
SetMoveEffect(FALSE, FALSE);
|
|
BattleScriptPop();
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_GULP_MISSILE:
|
|
if (((gCurrentMove == MOVE_SURF && TARGET_TURN_DAMAGED) || gStatuses3[gBattlerAttacker] & STATUS3_UNDERWATER)
|
|
&& TryBattleFormChange(gBattlerAttacker, FORM_CHANGE_BATTLE_HP_PERCENT))
|
|
{
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_AttackerFormChange;
|
|
effect++;
|
|
}
|
|
break;
|
|
}
|
|
break;
|
|
case ABILITYEFFECT_MOVE_END_OTHER: // Abilities that activate on *another* battler's moveend: Dancer, Soul-Heart, Receiver, Symbiosis
|
|
switch (GetBattlerAbility(battler))
|
|
{
|
|
case ABILITY_DANCER:
|
|
if (IsBattlerAlive(battler)
|
|
&& (gBattleMoves[gCurrentMove].danceMove)
|
|
&& !gSpecialStatuses[battler].dancerUsedMove
|
|
&& gBattlerAttacker != battler)
|
|
{
|
|
// Set bit and save Dancer mon's original target
|
|
gSpecialStatuses[battler].dancerUsedMove = TRUE;
|
|
gSpecialStatuses[battler].dancerOriginalTarget = *(gBattleStruct->moveTarget + battler) | 0x4;
|
|
gBattleStruct->atkCancellerTracker = 0;
|
|
gBattlerAttacker = gBattlerAbility = battler;
|
|
gCalledMove = gCurrentMove;
|
|
|
|
// Set the target to the original target of the mon that first used a Dance move
|
|
gBattlerTarget = gBattleScripting.savedBattler & 0x3;
|
|
|
|
// Make sure that the target isn't an ally - if it is, target the original user
|
|
if (GetBattlerSide(gBattlerTarget) == GetBattlerSide(gBattlerAttacker))
|
|
gBattlerTarget = (gBattleScripting.savedBattler & 0xF0) >> 4;
|
|
gHitMarker &= ~HITMARKER_ATTACKSTRING_PRINTED;
|
|
BattleScriptExecute(BattleScript_DancerActivates);
|
|
effect++;
|
|
}
|
|
break;
|
|
}
|
|
break;
|
|
case ABILITYEFFECT_OPPORTUNIST:
|
|
/* Similar to ABILITYEFFECT_IMMUNITY in that it loops through all battlers.
|
|
* Is called after ABILITYEFFECT_ON_SWITCHIN to copy any boosts
|
|
* from switch in abilities e.g. intrepid sword, as
|
|
*/
|
|
for (battler = 0; battler < gBattlersCount; battler++)
|
|
{
|
|
switch (GetBattlerAbility(battler))
|
|
{
|
|
case ABILITY_OPPORTUNIST:
|
|
if (gProtectStructs[battler].activateOpportunist == 2) {
|
|
gBattleScripting.savedBattler = gBattlerAttacker;
|
|
gBattleScripting.battler = gBattlerAttacker = gBattlerAbility = battler;
|
|
gProtectStructs[battler].activateOpportunist--;
|
|
BattleScriptPushCursorAndCallback(BattleScript_OpportunistCopyStatChange);
|
|
effect = 1;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
break;
|
|
case ABILITYEFFECT_IMMUNITY: // 5
|
|
for (battler = 0; battler < gBattlersCount; battler++)
|
|
{
|
|
switch (GetBattlerAbility(battler))
|
|
{
|
|
case ABILITY_IMMUNITY:
|
|
case ABILITY_PASTEL_VEIL:
|
|
if (gBattleMons[battler].status1 & (STATUS1_POISON | STATUS1_TOXIC_POISON | STATUS1_TOXIC_COUNTER))
|
|
{
|
|
StringCopy(gBattleTextBuff1, gStatusConditionString_PoisonJpn);
|
|
effect = 1;
|
|
}
|
|
break;
|
|
case ABILITY_OWN_TEMPO:
|
|
if (gBattleMons[battler].status2 & STATUS2_CONFUSION)
|
|
{
|
|
StringCopy(gBattleTextBuff1, gStatusConditionString_ConfusionJpn);
|
|
effect = 2;
|
|
}
|
|
break;
|
|
case ABILITY_LIMBER:
|
|
if (gBattleMons[battler].status1 & STATUS1_PARALYSIS)
|
|
{
|
|
StringCopy(gBattleTextBuff1, gStatusConditionString_ParalysisJpn);
|
|
effect = 1;
|
|
}
|
|
break;
|
|
case ABILITY_INSOMNIA:
|
|
case ABILITY_VITAL_SPIRIT:
|
|
if (gBattleMons[battler].status1 & STATUS1_SLEEP)
|
|
{
|
|
gBattleMons[battler].status2 &= ~STATUS2_NIGHTMARE;
|
|
StringCopy(gBattleTextBuff1, gStatusConditionString_SleepJpn);
|
|
effect = 1;
|
|
}
|
|
break;
|
|
case ABILITY_WATER_VEIL:
|
|
case ABILITY_WATER_BUBBLE:
|
|
if (gBattleMons[battler].status1 & STATUS1_BURN)
|
|
{
|
|
StringCopy(gBattleTextBuff1, gStatusConditionString_BurnJpn);
|
|
effect = 1;
|
|
}
|
|
break;
|
|
case ABILITY_MAGMA_ARMOR:
|
|
if (gBattleMons[battler].status1 & (STATUS1_FREEZE | STATUS1_FROSTBITE))
|
|
{
|
|
StringCopy(gBattleTextBuff1, gStatusConditionString_IceJpn);
|
|
effect = 1;
|
|
}
|
|
break;
|
|
case ABILITY_OBLIVIOUS:
|
|
if (gBattleMons[battler].status2 & STATUS2_INFATUATION)
|
|
effect = 3;
|
|
else if (gDisableStructs[battler].tauntTimer != 0)
|
|
effect = 4;
|
|
break;
|
|
}
|
|
|
|
if (effect != 0)
|
|
{
|
|
switch (effect)
|
|
{
|
|
case 1: // status cleared
|
|
gBattleMons[battler].status1 = 0;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_AbilityCuredStatus;
|
|
break;
|
|
case 2: // get rid of confusion
|
|
RemoveConfusionStatus(battler);
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_AbilityCuredStatus;
|
|
break;
|
|
case 3: // get rid of infatuation
|
|
gBattleMons[battler].status2 &= ~STATUS2_INFATUATION;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_BattlerGotOverItsInfatuation;
|
|
break;
|
|
case 4: // get rid of taunt
|
|
gDisableStructs[battler].tauntTimer = 0;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_BattlerShookOffTaunt;
|
|
break;
|
|
}
|
|
|
|
gBattleScripting.battler = gBattlerAbility = battler;
|
|
BtlController_EmitSetMonData(battler, BUFFER_A, REQUEST_STATUS_BATTLE, 0, 4, &gBattleMons[battler].status1);
|
|
MarkBattlerForControllerExec(battler);
|
|
return effect;
|
|
}
|
|
}
|
|
break;
|
|
case ABILITYEFFECT_SYNCHRONIZE:
|
|
if (gLastUsedAbility == ABILITY_SYNCHRONIZE && (gHitMarker & HITMARKER_SYNCHRONISE_EFFECT))
|
|
{
|
|
gHitMarker &= ~HITMARKER_SYNCHRONISE_EFFECT;
|
|
|
|
if (!(gBattleMons[gBattlerAttacker].status1 & STATUS1_ANY))
|
|
{
|
|
gBattleStruct->synchronizeMoveEffect &= ~(MOVE_EFFECT_AFFECTS_USER | MOVE_EFFECT_CERTAIN);
|
|
if (B_SYNCHRONIZE_TOXIC < GEN_5 && gBattleStruct->synchronizeMoveEffect == MOVE_EFFECT_TOXIC)
|
|
gBattleStruct->synchronizeMoveEffect = MOVE_EFFECT_POISON;
|
|
|
|
gBattleScripting.moveEffect = gBattleStruct->synchronizeMoveEffect + MOVE_EFFECT_AFFECTS_USER;
|
|
gBattleScripting.battler = gBattlerAbility = gBattlerTarget;
|
|
PREPARE_ABILITY_BUFFER(gBattleTextBuff1, ABILITY_SYNCHRONIZE);
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_SynchronizeActivates;
|
|
gHitMarker |= HITMARKER_STATUS_ABILITY_EFFECT;
|
|
effect++;
|
|
}
|
|
}
|
|
break;
|
|
case ABILITYEFFECT_ATK_SYNCHRONIZE: // 8
|
|
if (gLastUsedAbility == ABILITY_SYNCHRONIZE && (gHitMarker & HITMARKER_SYNCHRONISE_EFFECT))
|
|
{
|
|
gHitMarker &= ~HITMARKER_SYNCHRONISE_EFFECT;
|
|
|
|
if (!(gBattleMons[gBattlerTarget].status1 & STATUS1_ANY))
|
|
{
|
|
gBattleStruct->synchronizeMoveEffect &= ~(MOVE_EFFECT_AFFECTS_USER | MOVE_EFFECT_CERTAIN);
|
|
if (gBattleStruct->synchronizeMoveEffect == MOVE_EFFECT_TOXIC)
|
|
gBattleStruct->synchronizeMoveEffect = MOVE_EFFECT_POISON;
|
|
|
|
gBattleScripting.moveEffect = gBattleStruct->synchronizeMoveEffect;
|
|
gBattleScripting.battler = gBattlerAbility = gBattlerAttacker;
|
|
PREPARE_ABILITY_BUFFER(gBattleTextBuff1, ABILITY_SYNCHRONIZE);
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_SynchronizeActivates;
|
|
gHitMarker |= HITMARKER_STATUS_ABILITY_EFFECT;
|
|
effect++;
|
|
}
|
|
}
|
|
break;
|
|
case ABILITYEFFECT_TRACE1:
|
|
case ABILITYEFFECT_TRACE2:
|
|
for (i = 0; i < gBattlersCount; i++)
|
|
{
|
|
if (gBattleMons[i].ability == ABILITY_TRACE && (gBattleResources->flags->flags[i] & RESOURCE_FLAG_TRACED))
|
|
{
|
|
u32 chosenTarget;
|
|
u32 side = (BATTLE_OPPOSITE(GetBattlerPosition(i))) & BIT_SIDE; // side of the opposing Pokémon
|
|
u32 target1 = GetBattlerAtPosition(side);
|
|
u32 target2 = GetBattlerAtPosition(side + BIT_FLANK);
|
|
|
|
if (gBattleTypeFlags & BATTLE_TYPE_DOUBLE)
|
|
{
|
|
if (!gAbilities[gBattleMons[target1].ability].cantBeTraced && gBattleMons[target1].hp != 0
|
|
&& !gAbilities[gBattleMons[target2].ability].cantBeTraced && gBattleMons[target2].hp != 0)
|
|
chosenTarget = GetBattlerAtPosition((RandomPercentage(RNG_TRACE, 50) * 2) | side), effect++;
|
|
else if (!gAbilities[gBattleMons[target1].ability].cantBeTraced && gBattleMons[target1].hp != 0)
|
|
chosenTarget = target1, effect++;
|
|
else if (!gAbilities[gBattleMons[target2].ability].cantBeTraced && gBattleMons[target2].hp != 0)
|
|
chosenTarget = target2, effect++;
|
|
}
|
|
else
|
|
{
|
|
if (!gAbilities[gBattleMons[target1].ability].cantBeTraced && gBattleMons[target1].hp != 0)
|
|
chosenTarget = target1, effect++;
|
|
}
|
|
|
|
if (effect != 0)
|
|
{
|
|
BattleScriptPushCursorAndCallback(BattleScript_TraceActivatesEnd3);
|
|
gBattleResources->flags->flags[i] &= ~RESOURCE_FLAG_TRACED;
|
|
gBattleStruct->tracedAbility[i] = gLastUsedAbility = gBattleMons[chosenTarget].ability;
|
|
RecordAbilityBattle(chosenTarget, gLastUsedAbility); // Record the opposing battler has this ability
|
|
battler = gBattlerAbility = gBattleScripting.battler = i;
|
|
|
|
PREPARE_MON_NICK_WITH_PREFIX_BUFFER(gBattleTextBuff1, chosenTarget, gBattlerPartyIndexes[chosenTarget])
|
|
PREPARE_ABILITY_BUFFER(gBattleTextBuff2, gLastUsedAbility)
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
case ABILITYEFFECT_NEUTRALIZINGGAS:
|
|
// Prints message only. separate from ABILITYEFFECT_ON_SWITCHIN bc activates before entry hazards
|
|
for (i = 0; i < gBattlersCount; i++)
|
|
{
|
|
if (gBattleMons[i].ability == ABILITY_NEUTRALIZING_GAS && !(gBattleResources->flags->flags[i] & RESOURCE_FLAG_NEUTRALIZING_GAS))
|
|
{
|
|
gBattleResources->flags->flags[i] |= RESOURCE_FLAG_NEUTRALIZING_GAS;
|
|
gBattlerAbility = i;
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_SWITCHIN_NEUTRALIZING_GAS;
|
|
BattleScriptPushCursorAndCallback(BattleScript_SwitchInAbilityMsg);
|
|
effect++;
|
|
}
|
|
|
|
if (effect != 0)
|
|
break;
|
|
}
|
|
break;
|
|
case ABILITYEFFECT_FIELD_SPORT:
|
|
switch (gLastUsedAbility)
|
|
{
|
|
case ABILITYEFFECT_MUD_SPORT:
|
|
for (i = 0; i < gBattlersCount; i++)
|
|
{
|
|
if (gStatuses4[i] & STATUS4_MUD_SPORT)
|
|
effect = i + 1;
|
|
}
|
|
break;
|
|
case ABILITYEFFECT_WATER_SPORT:
|
|
for (i = 0; i < gBattlersCount; i++)
|
|
{
|
|
if (gStatuses4[i] & STATUS4_WATER_SPORT)
|
|
effect = i + 1;
|
|
}
|
|
break;
|
|
default:
|
|
for (i = 0; i < gBattlersCount; i++)
|
|
{
|
|
if (gBattleMons[i].ability == ability)
|
|
{
|
|
gLastUsedAbility = ability;
|
|
effect = i + 1;
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
break;
|
|
case ABILITYEFFECT_ON_WEATHER: // For ability effects that activate when the battle weather changes.
|
|
battler = gBattlerAbility = gBattleScripting.battler;
|
|
gLastUsedAbility = GetBattlerAbility(battler);
|
|
switch (gLastUsedAbility)
|
|
{
|
|
case ABILITY_FORECAST:
|
|
case ABILITY_FLOWER_GIFT:
|
|
if ((IsBattlerWeatherAffected(battler, gBattleWeather)
|
|
|| gBattleWeather == B_WEATHER_NONE
|
|
|| !WEATHER_HAS_EFFECT) // Air Lock active
|
|
&& TryBattleFormChange(battler, FORM_CHANGE_BATTLE_WEATHER))
|
|
{
|
|
BattleScriptPushCursorAndCallback(BattleScript_BattlerFormChangeWithStringEnd3);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_ICE_FACE:
|
|
if (IsBattlerWeatherAffected(battler, B_WEATHER_HAIL | B_WEATHER_SNOW)
|
|
&& gBattleMons[battler].species == SPECIES_EISCUE_NOICE_FACE
|
|
&& !(gBattleMons[battler].status2 & STATUS2_TRANSFORMED)
|
|
&& gBattleStruct->allowedToChangeFormInWeather[gBattlerPartyIndexes[battler]][GetBattlerSide(battler)])
|
|
{
|
|
gBattleStruct->allowedToChangeFormInWeather[gBattlerPartyIndexes[battler]][GetBattlerSide(battler)] = FALSE;
|
|
gBattleMons[battler].species = SPECIES_EISCUE_ICE_FACE;
|
|
BattleScriptPushCursorAndCallback(BattleScript_BattlerFormChangeWithStringEnd3);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_PROTOSYNTHESIS:
|
|
if (!gDisableStructs[battler].weatherAbilityDone && IsBattlerWeatherAffected(battler, B_WEATHER_SUN))
|
|
{
|
|
gDisableStructs[battler].weatherAbilityDone = TRUE;
|
|
PREPARE_STAT_BUFFER(gBattleTextBuff1, GetHighestStatId(battler));
|
|
gBattlerAbility = gBattleScripting.battler = battler;
|
|
BattleScriptPushCursorAndCallback(BattleScript_ProtosynthesisActivates);
|
|
effect++;
|
|
}
|
|
break;
|
|
}
|
|
break;
|
|
case ABILITYEFFECT_ON_TERRAIN: // For ability effects that activate when the field terrain changes.
|
|
gLastUsedAbility = GetBattlerAbility(battler);
|
|
switch (gLastUsedAbility)
|
|
{
|
|
case ABILITY_MIMICRY:
|
|
if (!gDisableStructs[battler].terrainAbilityDone && ChangeTypeBasedOnTerrain(battler))
|
|
{
|
|
gDisableStructs[battler].terrainAbilityDone = TRUE;
|
|
ChangeTypeBasedOnTerrain(battler);
|
|
gBattlerAbility = gBattleScripting.battler = battler;
|
|
BattleScriptPushCursorAndCallback(BattleScript_MimicryActivates_End3);
|
|
effect++;
|
|
}
|
|
break;
|
|
case ABILITY_QUARK_DRIVE:
|
|
if (!gDisableStructs[battler].terrainAbilityDone && IsBattlerTerrainAffected(battler, STATUS_FIELD_ELECTRIC_TERRAIN))
|
|
{
|
|
gDisableStructs[battler].terrainAbilityDone = TRUE;
|
|
PREPARE_STAT_BUFFER(gBattleTextBuff1, GetHighestStatId(battler));
|
|
gBattlerAbility = gBattleScripting.battler = battler;
|
|
BattleScriptPushCursorAndCallback(BattleScript_QuarkDriveActivates);
|
|
effect++;
|
|
}
|
|
break;
|
|
}
|
|
break;
|
|
}
|
|
|
|
if (effect && gLastUsedAbility != 0xFFFF)
|
|
RecordAbilityBattle(battler, gLastUsedAbility);
|
|
if (effect && caseID <= ABILITYEFFECT_MOVE_END)
|
|
gBattlerAbility = battler;
|
|
|
|
return effect;
|
|
}
|
|
|
|
bool32 TryPrimalReversion(u32 battler)
|
|
{
|
|
if (GetBattlerHoldEffect(battler, FALSE) == HOLD_EFFECT_PRIMAL_ORB
|
|
&& GetBattleFormChangeTargetSpecies(battler, FORM_CHANGE_BATTLE_PRIMAL_REVERSION) != SPECIES_NONE)
|
|
{
|
|
if (gBattlerAttacker == battler)
|
|
{
|
|
BattleScriptExecute(BattleScript_PrimalReversion);
|
|
}
|
|
else
|
|
{
|
|
// edge case for scenarios like a switch-in after activated eject button
|
|
gBattleScripting.savedBattler = gBattlerAttacker;
|
|
gBattlerAttacker = battler;
|
|
BattleScriptExecute(BattleScript_PrimalReversionRestoreAttacker);
|
|
}
|
|
return TRUE;
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
bool32 IsNeutralizingGasOnField(void)
|
|
{
|
|
u32 i;
|
|
|
|
for (i = 0; i < gBattlersCount; i++)
|
|
{
|
|
if (IsBattlerAlive(i) && gBattleMons[i].ability == ABILITY_NEUTRALIZING_GAS && !(gStatuses3[i] & STATUS3_GASTRO_ACID))
|
|
return TRUE;
|
|
}
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
bool32 IsMyceliumMightOnField(void)
|
|
{
|
|
u32 i;
|
|
|
|
for (i = 0; i < gBattlersCount; i++)
|
|
{
|
|
if (IsBattlerAlive(i) && gBattleMons[i].ability == ABILITY_MYCELIUM_MIGHT && IS_MOVE_STATUS(gCurrentMove))
|
|
return TRUE;
|
|
}
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
bool32 IsMoldBreakerTypeAbility(u32 ability)
|
|
{
|
|
return (ability == ABILITY_MOLD_BREAKER || ability == ABILITY_TERAVOLT || ability == ABILITY_TURBOBLAZE);
|
|
}
|
|
|
|
u32 GetBattlerAbility(u32 battler)
|
|
{
|
|
if (gAbilities[gBattleMons[battler].ability].cantBeSuppressed)
|
|
return gBattleMons[battler].ability;
|
|
|
|
if (gStatuses3[battler] & STATUS3_GASTRO_ACID)
|
|
return ABILITY_NONE;
|
|
|
|
if (IsNeutralizingGasOnField() && gBattleMons[battler].ability != ABILITY_NEUTRALIZING_GAS)
|
|
return ABILITY_NONE;
|
|
|
|
if (IsMyceliumMightOnField())
|
|
return ABILITY_NONE;
|
|
|
|
if (((IsMoldBreakerTypeAbility(gBattleMons[gBattlerAttacker].ability)
|
|
&& !(gStatuses3[gBattlerAttacker] & STATUS3_GASTRO_ACID))
|
|
|| gBattleMoves[gCurrentMove].ignoresTargetAbility)
|
|
&& gAbilities[gBattleMons[battler].ability].breakable
|
|
&& gBattlerByTurnOrder[gCurrentTurnActionNumber] == gBattlerAttacker
|
|
&& gActionsByTurnOrder[gBattlerByTurnOrder[gBattlerAttacker]] == B_ACTION_USE_MOVE
|
|
&& gCurrentTurnActionNumber < gBattlersCount)
|
|
return ABILITY_NONE;
|
|
|
|
return gBattleMons[battler].ability;
|
|
}
|
|
|
|
u32 IsAbilityOnSide(u32 battler, u32 ability)
|
|
{
|
|
if (IsBattlerAlive(battler) && GetBattlerAbility(battler) == ability)
|
|
return battler + 1;
|
|
else if (IsBattlerAlive(BATTLE_PARTNER(battler)) && GetBattlerAbility(BATTLE_PARTNER(battler)) == ability)
|
|
return BATTLE_PARTNER(battler) + 1;
|
|
else
|
|
return 0;
|
|
}
|
|
|
|
u32 IsAbilityOnOpposingSide(u32 battler, u32 ability)
|
|
{
|
|
return IsAbilityOnSide(BATTLE_OPPOSITE(battler), ability);
|
|
}
|
|
|
|
u32 IsAbilityOnField(u32 ability)
|
|
{
|
|
u32 i;
|
|
|
|
for (i = 0; i < gBattlersCount; i++)
|
|
{
|
|
if (IsBattlerAlive(i) && GetBattlerAbility(i) == ability)
|
|
return i + 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
u32 IsAbilityOnFieldExcept(u32 battler, u32 ability)
|
|
{
|
|
u32 i;
|
|
|
|
for (i = 0; i < gBattlersCount; i++)
|
|
{
|
|
if (i != battler && IsBattlerAlive(i) && GetBattlerAbility(i) == ability)
|
|
return i + 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
u32 IsAbilityPreventingEscape(u32 battler)
|
|
{
|
|
u32 id;
|
|
if (B_GHOSTS_ESCAPE >= GEN_6 && IS_BATTLER_OF_TYPE(battler, TYPE_GHOST))
|
|
return 0;
|
|
if ((id = IsAbilityOnOpposingSide(battler, ABILITY_SHADOW_TAG))
|
|
&& (B_SHADOW_TAG_ESCAPE >= GEN_4 && GetBattlerAbility(battler) != ABILITY_SHADOW_TAG))
|
|
return id;
|
|
if ((id = IsAbilityOnOpposingSide(battler, ABILITY_ARENA_TRAP)) && IsBattlerGrounded(battler))
|
|
return id;
|
|
if ((id = IsAbilityOnOpposingSide(battler, ABILITY_MAGNET_PULL)) && IS_BATTLER_OF_TYPE(battler, TYPE_STEEL))
|
|
return id;
|
|
|
|
return 0;
|
|
}
|
|
|
|
bool32 CanBattlerEscape(u32 battler) // no ability check
|
|
{
|
|
if (GetBattlerHoldEffect(battler, TRUE) == HOLD_EFFECT_SHED_SHELL)
|
|
return TRUE;
|
|
else if (B_GHOSTS_ESCAPE >= GEN_6 && IS_BATTLER_OF_TYPE(battler, TYPE_GHOST))
|
|
return TRUE;
|
|
else if (gBattleMons[battler].status2 & (STATUS2_ESCAPE_PREVENTION | STATUS2_WRAPPED))
|
|
return FALSE;
|
|
else if (gStatuses3[battler] & STATUS3_ROOTED)
|
|
return FALSE;
|
|
else if (gFieldStatuses & STATUS_FIELD_FAIRY_LOCK)
|
|
return FALSE;
|
|
else if (gStatuses3[battler] & STATUS3_SKY_DROPPED)
|
|
return FALSE;
|
|
else
|
|
return TRUE;
|
|
}
|
|
|
|
void BattleScriptExecute(const u8 *BS_ptr)
|
|
{
|
|
gBattlescriptCurrInstr = BS_ptr;
|
|
gBattleResources->battleCallbackStack->function[gBattleResources->battleCallbackStack->size++] = gBattleMainFunc;
|
|
gBattleMainFunc = RunBattleScriptCommands_PopCallbacksStack;
|
|
gCurrentActionFuncId = 0;
|
|
}
|
|
|
|
void BattleScriptPushCursorAndCallback(const u8 *BS_ptr)
|
|
{
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BS_ptr;
|
|
gBattleResources->battleCallbackStack->function[gBattleResources->battleCallbackStack->size++] = gBattleMainFunc;
|
|
gBattleMainFunc = RunBattleScriptCommands;
|
|
}
|
|
|
|
enum
|
|
{
|
|
ITEM_NO_EFFECT,
|
|
ITEM_STATUS_CHANGE,
|
|
ITEM_EFFECT_OTHER,
|
|
ITEM_PP_CHANGE,
|
|
ITEM_HP_CHANGE,
|
|
ITEM_STATS_CHANGE,
|
|
};
|
|
|
|
bool32 IsBattlerTerrainAffected(u32 battler, u32 terrainFlag)
|
|
{
|
|
if (!(gFieldStatuses & terrainFlag))
|
|
return FALSE;
|
|
else if (gStatuses3[battler] & STATUS3_SEMI_INVULNERABLE)
|
|
return FALSE;
|
|
|
|
return IsBattlerGrounded(battler);
|
|
}
|
|
|
|
bool32 CanSleep(u32 battler)
|
|
{
|
|
u16 ability = GetBattlerAbility(battler);
|
|
if (ability == ABILITY_INSOMNIA
|
|
|| ability == ABILITY_VITAL_SPIRIT
|
|
|| ability == ABILITY_COMATOSE
|
|
|| ability == ABILITY_PURIFYING_SALT
|
|
|| gSideStatuses[GetBattlerSide(battler)] & SIDE_STATUS_SAFEGUARD
|
|
|| gBattleMons[battler].status1 & STATUS1_ANY
|
|
|| IsAbilityOnSide(battler, ABILITY_SWEET_VEIL)
|
|
|| IsAbilityStatusProtected(battler)
|
|
|| IsBattlerTerrainAffected(battler, STATUS_FIELD_ELECTRIC_TERRAIN | STATUS_FIELD_MISTY_TERRAIN))
|
|
return FALSE;
|
|
return TRUE;
|
|
}
|
|
|
|
bool32 CanBePoisoned(u32 battlerAttacker, u32 battlerTarget)
|
|
{
|
|
u16 ability = GetBattlerAbility(battlerTarget);
|
|
|
|
if (!(CanPoisonType(battlerAttacker, battlerTarget))
|
|
|| gSideStatuses[GetBattlerSide(battlerTarget)] & SIDE_STATUS_SAFEGUARD
|
|
|| gBattleMons[battlerTarget].status1 & STATUS1_ANY
|
|
|| ability == ABILITY_IMMUNITY
|
|
|| ability == ABILITY_COMATOSE
|
|
|| ability == ABILITY_PURIFYING_SALT
|
|
|| IsAbilityOnSide(battlerTarget, ABILITY_PASTEL_VEIL)
|
|
|| IsAbilityStatusProtected(battlerTarget)
|
|
|| IsBattlerTerrainAffected(battlerTarget, STATUS_FIELD_MISTY_TERRAIN))
|
|
return FALSE;
|
|
return TRUE;
|
|
}
|
|
|
|
bool32 CanBeBurned(u32 battler)
|
|
{
|
|
u16 ability = GetBattlerAbility(battler);
|
|
if (IS_BATTLER_OF_TYPE(battler, TYPE_FIRE)
|
|
|| gSideStatuses[GetBattlerSide(battler)] & SIDE_STATUS_SAFEGUARD
|
|
|| gBattleMons[battler].status1 & STATUS1_ANY
|
|
|| ability == ABILITY_WATER_VEIL
|
|
|| ability == ABILITY_WATER_BUBBLE
|
|
|| ability == ABILITY_COMATOSE
|
|
|| ability == ABILITY_THERMAL_EXCHANGE
|
|
|| ability == ABILITY_PURIFYING_SALT
|
|
|| IsAbilityStatusProtected(battler)
|
|
|| IsBattlerTerrainAffected(battler, STATUS_FIELD_MISTY_TERRAIN))
|
|
return FALSE;
|
|
return TRUE;
|
|
}
|
|
|
|
bool32 CanBeParalyzed(u32 battler)
|
|
{
|
|
u16 ability = GetBattlerAbility(battler);
|
|
if ((B_PARALYZE_ELECTRIC >= GEN_6 && IS_BATTLER_OF_TYPE(battler, TYPE_ELECTRIC))
|
|
|| gSideStatuses[GetBattlerSide(battler)] & SIDE_STATUS_SAFEGUARD
|
|
|| ability == ABILITY_LIMBER
|
|
|| ability == ABILITY_COMATOSE
|
|
|| ability == ABILITY_PURIFYING_SALT
|
|
|| gBattleMons[battler].status1 & STATUS1_ANY
|
|
|| IsAbilityStatusProtected(battler)
|
|
|| IsBattlerTerrainAffected(battler, STATUS_FIELD_MISTY_TERRAIN))
|
|
return FALSE;
|
|
return TRUE;
|
|
}
|
|
|
|
bool32 CanBeFrozen(u32 battler)
|
|
{
|
|
u16 ability = GetBattlerAbility(battler);
|
|
if (IS_BATTLER_OF_TYPE(battler, TYPE_ICE)
|
|
|| IsBattlerWeatherAffected(battler, B_WEATHER_SUN)
|
|
|| gSideStatuses[GetBattlerSide(battler)] & SIDE_STATUS_SAFEGUARD
|
|
|| ability == ABILITY_MAGMA_ARMOR
|
|
|| ability == ABILITY_COMATOSE
|
|
|| ability == ABILITY_PURIFYING_SALT
|
|
|| gBattleMons[battler].status1 & STATUS1_ANY
|
|
|| IsAbilityStatusProtected(battler)
|
|
|| IsBattlerTerrainAffected(battler, STATUS_FIELD_MISTY_TERRAIN))
|
|
return FALSE;
|
|
return TRUE;
|
|
}
|
|
|
|
bool32 CanGetFrostbite(u32 battler)
|
|
{
|
|
u16 ability = GetBattlerAbility(battler);
|
|
if (IS_BATTLER_OF_TYPE(battler, TYPE_ICE)
|
|
|| gSideStatuses[GetBattlerSide(battler)] & SIDE_STATUS_SAFEGUARD
|
|
|| ability == ABILITY_MAGMA_ARMOR
|
|
|| ability == ABILITY_COMATOSE
|
|
|| ability == ABILITY_PURIFYING_SALT
|
|
|| gBattleMons[battler].status1 & STATUS1_ANY
|
|
|| IsAbilityStatusProtected(battler)
|
|
|| IsBattlerTerrainAffected(battler, STATUS_FIELD_MISTY_TERRAIN))
|
|
return FALSE;
|
|
return TRUE;
|
|
}
|
|
|
|
bool32 CanBeConfused(u32 battler)
|
|
{
|
|
if (GetBattlerAbility(battler) == ABILITY_OWN_TEMPO
|
|
|| gBattleMons[battler].status2 & STATUS2_CONFUSION
|
|
|| IsBattlerTerrainAffected(battler, STATUS_FIELD_MISTY_TERRAIN))
|
|
return FALSE;
|
|
return TRUE;
|
|
}
|
|
|
|
// second argument is 1/X of current hp compared to max hp
|
|
bool32 HasEnoughHpToEatBerry(u32 battler, u32 hpFraction, u32 itemId)
|
|
{
|
|
bool32 isBerry = (ItemId_GetPocket(itemId) == POCKET_BERRIES);
|
|
|
|
if (gBattleMons[battler].hp == 0)
|
|
return FALSE;
|
|
if (gBattleScripting.overrideBerryRequirements)
|
|
return TRUE;
|
|
// Unnerve prevents consumption of opponents' berries.
|
|
if (isBerry && IsUnnerveAbilityOnOpposingSide(battler))
|
|
return FALSE;
|
|
if (gBattleMons[battler].hp <= gBattleMons[battler].maxHP / hpFraction)
|
|
return TRUE;
|
|
|
|
if (hpFraction <= 4 && GetBattlerAbility(battler) == ABILITY_GLUTTONY && isBerry
|
|
&& gBattleMons[battler].hp <= gBattleMons[battler].maxHP / 2)
|
|
{
|
|
RecordAbilityBattle(battler, ABILITY_GLUTTONY);
|
|
return TRUE;
|
|
}
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
static u8 HealConfuseBerry(u32 battler, u32 itemId, u32 flavorId, bool32 end2)
|
|
{
|
|
if (HasEnoughHpToEatBerry(battler, (B_CONFUSE_BERRIES_HEAL >= GEN_7 ? 4 : 2), itemId)
|
|
&& (B_HEAL_BLOCKING < GEN_5 || !(gStatuses3[battler] & STATUS3_HEAL_BLOCK)))
|
|
{
|
|
PREPARE_FLAVOR_BUFFER(gBattleTextBuff1, flavorId);
|
|
|
|
gBattleMoveDamage = GetNonDynamaxMaxHP(battler) / GetBattlerItemHoldEffectParam(battler, itemId);
|
|
if (gBattleMoveDamage == 0)
|
|
gBattleMoveDamage = 1;
|
|
gBattleMoveDamage *= -1;
|
|
|
|
if (GetBattlerAbility(battler) == ABILITY_RIPEN)
|
|
{
|
|
gBattleMoveDamage *= 2;
|
|
gBattlerAbility = battler;
|
|
}
|
|
gBattleScripting.battler = battler;
|
|
if (end2)
|
|
{
|
|
if (GetFlavorRelationByPersonality(gBattleMons[battler].personality, flavorId) < 0)
|
|
BattleScriptExecute(BattleScript_BerryConfuseHealEnd2);
|
|
else
|
|
BattleScriptExecute(BattleScript_ItemHealHP_RemoveItemEnd2);
|
|
}
|
|
else
|
|
{
|
|
BattleScriptPushCursor();
|
|
if (GetFlavorRelationByPersonality(gBattleMons[battler].personality, flavorId) < 0)
|
|
gBattlescriptCurrInstr = BattleScript_BerryConfuseHealRet;
|
|
else
|
|
gBattlescriptCurrInstr = BattleScript_ItemHealHP_RemoveItemRet;
|
|
}
|
|
|
|
return ITEM_HP_CHANGE;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static u8 StatRaiseBerry(u32 battler, u32 itemId, u32 statId, bool32 end2)
|
|
{
|
|
if (CompareStat(battler, statId, MAX_STAT_STAGE, CMP_LESS_THAN) && HasEnoughHpToEatBerry(battler, GetBattlerItemHoldEffectParam(battler, itemId), itemId))
|
|
{
|
|
BufferStatChange(battler, statId, STRINGID_STATROSE);
|
|
gEffectBattler = battler;
|
|
if (GetBattlerAbility(battler) == ABILITY_RIPEN)
|
|
SET_STATCHANGER(statId, 2, FALSE);
|
|
else
|
|
SET_STATCHANGER(statId, 1, FALSE);
|
|
|
|
gBattleScripting.animArg1 = 14 + statId;
|
|
gBattleScripting.animArg2 = 0;
|
|
|
|
if (end2)
|
|
{
|
|
BattleScriptExecute(BattleScript_BerryStatRaiseEnd2);
|
|
}
|
|
else
|
|
{
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_BerryStatRaiseRet;
|
|
}
|
|
return ITEM_STATS_CHANGE;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static u8 RandomStatRaiseBerry(u32 battler, u32 itemId, bool32 end2)
|
|
{
|
|
s32 i;
|
|
u16 stringId;
|
|
|
|
for (i = 0; i < NUM_STATS - 1; i++)
|
|
{
|
|
if (CompareStat(battler, STAT_ATK + i, MAX_STAT_STAGE, CMP_LESS_THAN))
|
|
break;
|
|
}
|
|
if (i != NUM_STATS - 1 && HasEnoughHpToEatBerry(battler, GetBattlerItemHoldEffectParam(battler, itemId), itemId))
|
|
{
|
|
u16 battlerAbility = GetBattlerAbility(battler);
|
|
do
|
|
{
|
|
i = Random() % (NUM_STATS - 1);
|
|
} while (!CompareStat(battler, STAT_ATK + i, MAX_STAT_STAGE, CMP_LESS_THAN));
|
|
|
|
PREPARE_STAT_BUFFER(gBattleTextBuff1, i + 1);
|
|
stringId = (battlerAbility == ABILITY_CONTRARY) ? STRINGID_STATFELL : STRINGID_STATROSE;
|
|
gBattleTextBuff2[0] = B_BUFF_PLACEHOLDER_BEGIN;
|
|
gBattleTextBuff2[1] = B_BUFF_STRING;
|
|
gBattleTextBuff2[2] = STRINGID_STATSHARPLY;
|
|
gBattleTextBuff2[3] = STRINGID_STATSHARPLY >> 8;
|
|
gBattleTextBuff2[4] = B_BUFF_STRING;
|
|
gBattleTextBuff2[5] = stringId;
|
|
gBattleTextBuff2[6] = stringId >> 8;
|
|
gBattleTextBuff2[7] = EOS;
|
|
gEffectBattler = battler;
|
|
if (battlerAbility == ABILITY_RIPEN)
|
|
SET_STATCHANGER(i + 1, 4, FALSE);
|
|
else
|
|
SET_STATCHANGER(i + 1, 2, FALSE);
|
|
|
|
gBattleScripting.animArg1 = 0x21 + i + 6;
|
|
gBattleScripting.animArg2 = 0;
|
|
if (end2)
|
|
{
|
|
BattleScriptExecute(BattleScript_BerryStatRaiseEnd2);
|
|
}
|
|
else
|
|
{
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_BerryStatRaiseRet;
|
|
}
|
|
|
|
return ITEM_STATS_CHANGE;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static u8 TrySetMicleBerry(u32 battler, u32 itemId, bool32 end2)
|
|
{
|
|
if (HasEnoughHpToEatBerry(battler, 4, itemId))
|
|
{
|
|
gProtectStructs[battler].usedMicleBerry = TRUE; // battler's next attack has increased accuracy
|
|
|
|
if (end2)
|
|
{
|
|
BattleScriptExecute(BattleScript_MicleBerryActivateEnd2);
|
|
}
|
|
else
|
|
{
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_MicleBerryActivateRet;
|
|
}
|
|
return ITEM_EFFECT_OTHER;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static u8 TrySetEnigmaBerry(u32 battler)
|
|
{
|
|
if (IsBattlerAlive(battler)
|
|
&& !DoesSubstituteBlockMove(gBattlerAttacker, battler, gCurrentMove)
|
|
&& ((TARGET_TURN_DAMAGED && gMoveResultFlags & MOVE_RESULT_SUPER_EFFECTIVE) || gBattleScripting.overrideBerryRequirements)
|
|
&& !(gBattleScripting.overrideBerryRequirements && gBattleMons[battler].hp == gBattleMons[battler].maxHP)
|
|
&& (B_HEAL_BLOCKING < GEN_5 || !(gStatuses3[battler] & STATUS3_HEAL_BLOCK)))
|
|
{
|
|
gBattleScripting.battler = battler;
|
|
gBattleMoveDamage = (gBattleMons[battler].maxHP * 25 / 100) * -1;
|
|
if (GetBattlerAbility(battler) == ABILITY_RIPEN)
|
|
gBattleMoveDamage *= 2;
|
|
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_ItemHealHP_RemoveItemRet;
|
|
return ITEM_HP_CHANGE;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static u8 DamagedStatBoostBerryEffect(u32 battler, u8 statId, u8 category)
|
|
{
|
|
if (IsBattlerAlive(battler)
|
|
&& CompareStat(battler, statId, MAX_STAT_STAGE, CMP_LESS_THAN)
|
|
&& (gBattleScripting.overrideBerryRequirements
|
|
|| (!DoesSubstituteBlockMove(gBattlerAttacker, battler, gCurrentMove)
|
|
&& GetBattleMoveCategory(gCurrentMove) == category
|
|
&& TARGET_TURN_DAMAGED))
|
|
)
|
|
{
|
|
BufferStatChange(battler, statId, STRINGID_STATROSE);
|
|
|
|
gEffectBattler = battler;
|
|
if (GetBattlerAbility(battler) == ABILITY_RIPEN)
|
|
SET_STATCHANGER(statId, 2, FALSE);
|
|
else
|
|
SET_STATCHANGER(statId, 1, FALSE);
|
|
|
|
gBattleScripting.battler = battler;
|
|
gBattleScripting.animArg1 = 14 + statId;
|
|
gBattleScripting.animArg2 = 0;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_BerryStatRaiseRet;
|
|
return ITEM_STATS_CHANGE;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
u8 TryHandleSeed(u32 battler, u32 terrainFlag, u8 statId, u16 itemId, bool32 execute)
|
|
{
|
|
if (gFieldStatuses & terrainFlag && CompareStat(battler, statId, MAX_STAT_STAGE, CMP_LESS_THAN))
|
|
{
|
|
BufferStatChange(battler, statId, STRINGID_STATROSE);
|
|
gLastUsedItem = itemId; // For surge abilities
|
|
gEffectBattler = gBattleScripting.battler = battler;
|
|
SET_STATCHANGER(statId, 1, FALSE);
|
|
gBattleScripting.animArg1 = 14 + statId;
|
|
gBattleScripting.animArg2 = 0;
|
|
if (execute)
|
|
{
|
|
BattleScriptExecute(BattleScript_BerryStatRaiseEnd2);
|
|
}
|
|
else
|
|
{
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_BerryStatRaiseRet;
|
|
}
|
|
return ITEM_STATS_CHANGE;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static u32 ItemRestorePp(u32 battler, u32 itemId, bool32 execute)
|
|
{
|
|
struct Pokemon *party = GetBattlerParty(battler);
|
|
struct Pokemon *mon = &party[gBattlerPartyIndexes[battler]];
|
|
u32 i, changedPP = 0;
|
|
|
|
for (i = 0; i < MAX_MON_MOVES; i++)
|
|
{
|
|
u32 move = GetMonData(mon, MON_DATA_MOVE1 + i);
|
|
u32 currentPP = GetMonData(mon, MON_DATA_PP1 + i);
|
|
u32 ppBonuses = GetMonData(mon, MON_DATA_PP_BONUSES);
|
|
u32 maxPP = CalculatePPWithBonus(move, ppBonuses, i);
|
|
if (move && (currentPP == 0 || (gBattleScripting.overrideBerryRequirements && currentPP != maxPP)))
|
|
{
|
|
u32 ppRestored = GetBattlerItemHoldEffectParam(battler, itemId);
|
|
|
|
if (GetBattlerAbility(battler) == ABILITY_RIPEN)
|
|
{
|
|
ppRestored *= 2;
|
|
gBattlerAbility = battler;
|
|
}
|
|
if (currentPP + ppRestored > maxPP)
|
|
changedPP = maxPP;
|
|
else
|
|
changedPP = currentPP + ppRestored;
|
|
|
|
PREPARE_MOVE_BUFFER(gBattleTextBuff1, move);
|
|
|
|
if (execute)
|
|
{
|
|
BattleScriptExecute(BattleScript_BerryPPHealEnd2);
|
|
}
|
|
else
|
|
{
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_BerryPPHealRet;
|
|
}
|
|
BtlController_EmitSetMonData(battler, BUFFER_A, i + REQUEST_PPMOVE1_BATTLE, 0, 1, &changedPP);
|
|
MarkBattlerForControllerExec(battler);
|
|
if (MOVE_IS_PERMANENT(battler, i))
|
|
gBattleMons[battler].pp[i] = changedPP;
|
|
return ITEM_PP_CHANGE;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static u8 ItemHealHp(u32 battler, u32 itemId, bool32 end2, bool32 percentHeal)
|
|
{
|
|
if (!(gBattleScripting.overrideBerryRequirements && gBattleMons[battler].hp == gBattleMons[battler].maxHP)
|
|
&& (B_HEAL_BLOCKING < GEN_5 || !(gStatuses3[battler] & STATUS3_HEAL_BLOCK))
|
|
&& HasEnoughHpToEatBerry(battler, 2, itemId))
|
|
{
|
|
if (percentHeal)
|
|
gBattleMoveDamage = (GetNonDynamaxMaxHP(battler) * GetBattlerItemHoldEffectParam(battler, itemId) / 100) * -1;
|
|
else
|
|
gBattleMoveDamage = GetBattlerItemHoldEffectParam(battler, itemId) * -1;
|
|
|
|
// check ripen
|
|
if (ItemId_GetPocket(itemId) == POCKET_BERRIES && GetBattlerAbility(battler) == ABILITY_RIPEN)
|
|
gBattleMoveDamage *= 2;
|
|
|
|
gBattlerAbility = battler; // in SWSH, berry juice shows ability pop up but has no effect. This is mimicked here
|
|
if (end2)
|
|
{
|
|
BattleScriptExecute(BattleScript_ItemHealHP_RemoveItemEnd2);
|
|
}
|
|
else
|
|
{
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_ItemHealHP_RemoveItemRet;
|
|
}
|
|
return ITEM_HP_CHANGE;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static bool32 UnnerveOn(u32 battler, u32 itemId)
|
|
{
|
|
if (ItemId_GetPocket(itemId) == POCKET_BERRIES && IsUnnerveAbilityOnOpposingSide(battler))
|
|
return TRUE;
|
|
return FALSE;
|
|
}
|
|
|
|
static bool32 GetMentalHerbEffect(u32 battler)
|
|
{
|
|
bool32 ret = FALSE;
|
|
|
|
// Check infatuation
|
|
if (gBattleMons[battler].status2 & STATUS2_INFATUATION)
|
|
{
|
|
gBattleMons[battler].status2 &= ~STATUS2_INFATUATION;
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_MENTALHERBCURE_INFATUATION; // STRINGID_TARGETGOTOVERINFATUATION
|
|
StringCopy(gBattleTextBuff1, gStatusConditionString_LoveJpn);
|
|
ret = TRUE;
|
|
}
|
|
if (B_MENTAL_HERB >= GEN_5)
|
|
{
|
|
// Check taunt
|
|
if (gDisableStructs[battler].tauntTimer != 0)
|
|
{
|
|
gDisableStructs[battler].tauntTimer = 0;
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_MENTALHERBCURE_TAUNT;
|
|
PREPARE_MOVE_BUFFER(gBattleTextBuff1, MOVE_TAUNT);
|
|
ret = TRUE;
|
|
}
|
|
// Check encore
|
|
if (gDisableStructs[battler].encoreTimer != 0)
|
|
{
|
|
gDisableStructs[battler].encoredMove = 0;
|
|
gDisableStructs[battler].encoreTimer = 0;
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_MENTALHERBCURE_ENCORE; // STRINGID_PKMNENCOREENDED
|
|
ret = TRUE;
|
|
}
|
|
// Check torment
|
|
if (gBattleMons[battler].status2 & STATUS2_TORMENT)
|
|
{
|
|
gBattleMons[battler].status2 &= ~STATUS2_TORMENT;
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_MENTALHERBCURE_TORMENT;
|
|
ret = TRUE;
|
|
}
|
|
// Check heal block
|
|
if (gStatuses3[battler] & STATUS3_HEAL_BLOCK)
|
|
{
|
|
gStatuses3[battler] &= ~STATUS3_HEAL_BLOCK;
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_MENTALHERBCURE_HEALBLOCK;
|
|
ret = TRUE;
|
|
}
|
|
// Check disable
|
|
if (gDisableStructs[battler].disableTimer != 0)
|
|
{
|
|
gDisableStructs[battler].disableTimer = 0;
|
|
gDisableStructs[battler].disabledMove = 0;
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_MENTALHERBCURE_DISABLE;
|
|
ret = TRUE;
|
|
}
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
static u8 TryConsumeMirrorHerb(u32 battler, bool32 execute)
|
|
{
|
|
u8 effect = 0;
|
|
|
|
if (gProtectStructs[battler].eatMirrorHerb) {
|
|
gLastUsedItem = gBattleMons[battler].item;
|
|
gBattleScripting.savedBattler = gBattlerAttacker;
|
|
gBattleScripting.battler = gBattlerAttacker = battler;
|
|
gProtectStructs[battler].eatMirrorHerb = 0;
|
|
if (execute) {
|
|
BattleScriptExecute(BattleScript_MirrorHerbCopyStatChangeEnd2);
|
|
} else {
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_MirrorHerbCopyStatChange;
|
|
}
|
|
effect = ITEM_STATS_CHANGE;
|
|
}
|
|
return effect;
|
|
}
|
|
|
|
static u8 ItemEffectMoveEnd(u32 battler, u16 holdEffect)
|
|
{
|
|
u8 effect = 0;
|
|
u32 i;
|
|
|
|
switch (holdEffect)
|
|
{
|
|
case HOLD_EFFECT_MICLE_BERRY:
|
|
if (B_HP_BERRIES >= GEN_4)
|
|
effect = TrySetMicleBerry(battler, gLastUsedItem, FALSE);
|
|
break;
|
|
case HOLD_EFFECT_RESTORE_HP:
|
|
if (B_HP_BERRIES >= GEN_4)
|
|
effect = ItemHealHp(battler, gLastUsedItem, FALSE, FALSE);
|
|
break;
|
|
case HOLD_EFFECT_RESTORE_PCT_HP:
|
|
if (B_BERRIES_INSTANT >= GEN_4)
|
|
effect = ItemHealHp(battler, gLastUsedItem, FALSE, TRUE);
|
|
break;
|
|
case HOLD_EFFECT_RESTORE_PP:
|
|
if (B_BERRIES_INSTANT >= GEN_4)
|
|
effect = ItemRestorePp(battler, gLastUsedItem, FALSE);
|
|
break;
|
|
case HOLD_EFFECT_CONFUSE_SPICY:
|
|
if (B_BERRIES_INSTANT >= GEN_4)
|
|
effect = HealConfuseBerry(battler, gLastUsedItem, FLAVOR_SPICY, FALSE);
|
|
break;
|
|
case HOLD_EFFECT_CONFUSE_DRY:
|
|
if (B_BERRIES_INSTANT >= GEN_4)
|
|
effect = HealConfuseBerry(battler, gLastUsedItem, FLAVOR_DRY, FALSE);
|
|
break;
|
|
case HOLD_EFFECT_CONFUSE_SWEET:
|
|
if (B_BERRIES_INSTANT >= GEN_4)
|
|
effect = HealConfuseBerry(battler, gLastUsedItem, FLAVOR_SWEET, FALSE);
|
|
break;
|
|
case HOLD_EFFECT_CONFUSE_BITTER:
|
|
if (B_BERRIES_INSTANT >= GEN_4)
|
|
effect = HealConfuseBerry(battler, gLastUsedItem, FLAVOR_BITTER, FALSE);
|
|
break;
|
|
case HOLD_EFFECT_CONFUSE_SOUR:
|
|
if (B_BERRIES_INSTANT >= GEN_4)
|
|
effect = HealConfuseBerry(battler, gLastUsedItem, FLAVOR_SOUR, FALSE);
|
|
break;
|
|
case HOLD_EFFECT_ATTACK_UP:
|
|
if (B_BERRIES_INSTANT >= GEN_4)
|
|
effect = StatRaiseBerry(battler, gLastUsedItem, STAT_ATK, FALSE);
|
|
break;
|
|
case HOLD_EFFECT_DEFENSE_UP:
|
|
if (B_BERRIES_INSTANT >= GEN_4)
|
|
effect = StatRaiseBerry(battler, gLastUsedItem, STAT_DEF, FALSE);
|
|
break;
|
|
case HOLD_EFFECT_SPEED_UP:
|
|
if (B_BERRIES_INSTANT >= GEN_4)
|
|
effect = StatRaiseBerry(battler, gLastUsedItem, STAT_SPEED, FALSE);
|
|
break;
|
|
case HOLD_EFFECT_SP_ATTACK_UP:
|
|
if (B_BERRIES_INSTANT >= GEN_4)
|
|
effect = StatRaiseBerry(battler, gLastUsedItem, STAT_SPATK, FALSE);
|
|
break;
|
|
case HOLD_EFFECT_SP_DEFENSE_UP:
|
|
if (B_BERRIES_INSTANT >= GEN_4)
|
|
effect = StatRaiseBerry(battler, gLastUsedItem, STAT_SPDEF, FALSE);
|
|
break;
|
|
case HOLD_EFFECT_ENIGMA_BERRY: // consume and heal if hit by super effective move
|
|
if (B_BERRIES_INSTANT >= GEN_4)
|
|
effect = TrySetEnigmaBerry(battler);
|
|
break;
|
|
case HOLD_EFFECT_KEE_BERRY: // consume and boost defense if used physical move
|
|
if (B_BERRIES_INSTANT >= GEN_4)
|
|
effect = DamagedStatBoostBerryEffect(battler, STAT_DEF, BATTLE_CATEGORY_PHYSICAL);
|
|
break;
|
|
case HOLD_EFFECT_MARANGA_BERRY: // consume and boost sp. defense if used special move
|
|
if (B_BERRIES_INSTANT >= GEN_4)
|
|
effect = DamagedStatBoostBerryEffect(battler, STAT_SPDEF, BATTLE_CATEGORY_SPECIAL);
|
|
break;
|
|
case HOLD_EFFECT_RANDOM_STAT_UP:
|
|
if (B_BERRIES_INSTANT >= GEN_4)
|
|
effect = RandomStatRaiseBerry(battler, gLastUsedItem, FALSE);
|
|
break;
|
|
case HOLD_EFFECT_CURE_PAR:
|
|
if (gBattleMons[battler].status1 & STATUS1_PARALYSIS && !UnnerveOn(battler, gLastUsedItem))
|
|
{
|
|
gBattleMons[battler].status1 &= ~STATUS1_PARALYSIS;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_BerryCureParRet;
|
|
effect = ITEM_STATUS_CHANGE;
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_CURE_PSN:
|
|
if (gBattleMons[battler].status1 & STATUS1_PSN_ANY && !UnnerveOn(battler, gLastUsedItem))
|
|
{
|
|
gBattleMons[battler].status1 &= ~(STATUS1_PSN_ANY | STATUS1_TOXIC_COUNTER);
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_BerryCurePsnRet;
|
|
effect = ITEM_STATUS_CHANGE;
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_CURE_BRN:
|
|
if (gBattleMons[battler].status1 & STATUS1_BURN && !UnnerveOn(battler, gLastUsedItem))
|
|
{
|
|
gBattleMons[battler].status1 &= ~STATUS1_BURN;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_BerryCureBrnRet;
|
|
effect = ITEM_STATUS_CHANGE;
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_CURE_FRZ:
|
|
if (gBattleMons[battler].status1 & STATUS1_FREEZE && !UnnerveOn(battler, gLastUsedItem))
|
|
{
|
|
gBattleMons[battler].status1 &= ~STATUS1_FREEZE;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_BerryCureFrzRet;
|
|
effect = ITEM_STATUS_CHANGE;
|
|
}
|
|
if (gBattleMons[battler].status1 & STATUS1_FROSTBITE && !UnnerveOn(battler, gLastUsedItem))
|
|
{
|
|
gBattleMons[battler].status1 &= ~STATUS1_FROSTBITE;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_BerryCureFsbRet;
|
|
effect = ITEM_STATUS_CHANGE;
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_CURE_SLP:
|
|
if (gBattleMons[battler].status1 & STATUS1_SLEEP && !UnnerveOn(battler, gLastUsedItem))
|
|
{
|
|
gBattleMons[battler].status1 &= ~STATUS1_SLEEP;
|
|
gBattleMons[battler].status2 &= ~STATUS2_NIGHTMARE;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_BerryCureSlpRet;
|
|
effect = ITEM_STATUS_CHANGE;
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_CURE_CONFUSION:
|
|
if (gBattleMons[battler].status2 & STATUS2_CONFUSION && !UnnerveOn(battler, gLastUsedItem))
|
|
{
|
|
RemoveConfusionStatus(battler);
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_BerryCureConfusionRet;
|
|
effect = ITEM_EFFECT_OTHER;
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_MENTAL_HERB:
|
|
if (GetMentalHerbEffect(battler))
|
|
{
|
|
gBattleScripting.savedBattler = gBattlerAttacker;
|
|
gBattlerAttacker = battler;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_MentalHerbCureRet;
|
|
effect = ITEM_EFFECT_OTHER;
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_CURE_STATUS:
|
|
if ((gBattleMons[battler].status1 & STATUS1_ANY || gBattleMons[battler].status2 & STATUS2_CONFUSION) && !UnnerveOn(battler, gLastUsedItem))
|
|
{
|
|
if (gBattleMons[battler].status1 & STATUS1_PSN_ANY)
|
|
StringCopy(gBattleTextBuff1, gStatusConditionString_PoisonJpn);
|
|
|
|
if (gBattleMons[battler].status1 & STATUS1_SLEEP)
|
|
{
|
|
gBattleMons[battler].status2 &= ~STATUS2_NIGHTMARE;
|
|
StringCopy(gBattleTextBuff1, gStatusConditionString_SleepJpn);
|
|
}
|
|
|
|
if (gBattleMons[battler].status1 & STATUS1_PARALYSIS)
|
|
StringCopy(gBattleTextBuff1, gStatusConditionString_ParalysisJpn);
|
|
|
|
if (gBattleMons[battler].status1 & STATUS1_BURN)
|
|
StringCopy(gBattleTextBuff1, gStatusConditionString_BurnJpn);
|
|
|
|
if (gBattleMons[battler].status1 & STATUS1_FREEZE || gBattleMons[battler].status1 & STATUS1_FROSTBITE)
|
|
StringCopy(gBattleTextBuff1, gStatusConditionString_IceJpn);
|
|
|
|
if (gBattleMons[battler].status2 & STATUS2_CONFUSION)
|
|
StringCopy(gBattleTextBuff1, gStatusConditionString_ConfusionJpn);
|
|
|
|
gBattleMons[battler].status1 = 0;
|
|
RemoveConfusionStatus(battler);
|
|
BattleScriptPushCursor();
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_CURED_PROBLEM;
|
|
gBattlescriptCurrInstr = BattleScript_BerryCureChosenStatusRet;
|
|
effect = ITEM_STATUS_CHANGE;
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_RESTORE_STATS:
|
|
for (i = 0; i < NUM_BATTLE_STATS; i++)
|
|
{
|
|
if (gBattleMons[battler].statStages[i] < DEFAULT_STAT_STAGE)
|
|
{
|
|
gBattleMons[battler].statStages[i] = DEFAULT_STAT_STAGE;
|
|
effect = ITEM_STATS_CHANGE;
|
|
}
|
|
}
|
|
if (effect != 0)
|
|
{
|
|
gBattleScripting.battler = battler;
|
|
gPotentialItemEffectBattler = battler;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_WhiteHerbRet;
|
|
return effect;
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_CRITICAL_UP: // lansat berry
|
|
if (B_BERRIES_INSTANT >= GEN_4
|
|
&& !(gBattleMons[battler].status2 & STATUS2_FOCUS_ENERGY)
|
|
&& HasEnoughHpToEatBerry(battler, GetBattlerItemHoldEffectParam(battler, gLastUsedItem), gLastUsedItem))
|
|
{
|
|
gBattleMons[battler].status2 |= STATUS2_FOCUS_ENERGY;
|
|
gBattleScripting.battler = battler;
|
|
gPotentialItemEffectBattler = battler;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_BerryFocusEnergyRet;
|
|
effect = ITEM_EFFECT_OTHER;
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_BERSERK_GENE:
|
|
BufferStatChange(battler, STAT_ATK, STRINGID_STATROSE);
|
|
gEffectBattler = battler;
|
|
if (CanBeInfinitelyConfused(gEffectBattler))
|
|
{
|
|
gStatuses4[gEffectBattler] |= STATUS4_INFINITE_CONFUSION;
|
|
}
|
|
SET_STATCHANGER(STAT_ATK, 2, FALSE);
|
|
|
|
gBattleScripting.animArg1 = 14 + STAT_ATK;
|
|
gBattleScripting.animArg2 = 0;
|
|
|
|
BattleScriptPushCursorAndCallback(BattleScript_BerserkGeneRet);
|
|
effect = ITEM_STATS_CHANGE;
|
|
break;
|
|
case HOLD_EFFECT_MIRROR_HERB:
|
|
effect = TryConsumeMirrorHerb(battler, FALSE);
|
|
break;
|
|
}
|
|
|
|
return effect;
|
|
}
|
|
|
|
u8 ItemBattleEffects(u8 caseID, u32 battler, bool32 moveTurn)
|
|
{
|
|
int i = 0, moveType;
|
|
u8 effect = ITEM_NO_EFFECT;
|
|
u32 battlerHoldEffect = 0, atkHoldEffect;
|
|
u8 atkHoldEffectParam;
|
|
u16 atkItem;
|
|
|
|
if (caseID != ITEMEFFECT_USE_LAST_ITEM) {
|
|
gLastUsedItem = gBattleMons[battler].item;
|
|
battlerHoldEffect = GetBattlerHoldEffect(battler, TRUE);
|
|
}
|
|
|
|
atkItem = gBattleMons[gBattlerAttacker].item;
|
|
atkHoldEffect = GetBattlerHoldEffect(gBattlerAttacker, TRUE);
|
|
atkHoldEffectParam = GetBattlerHoldEffectParam(gBattlerAttacker);
|
|
|
|
switch (caseID)
|
|
{
|
|
case ITEMEFFECT_ON_SWITCH_IN:
|
|
if (!gSpecialStatuses[battler].switchInItemDone)
|
|
{
|
|
switch (battlerHoldEffect)
|
|
{
|
|
case HOLD_EFFECT_DOUBLE_PRIZE:
|
|
if (GetBattlerSide(battler) == B_SIDE_PLAYER && !gBattleStruct->moneyMultiplierItem)
|
|
{
|
|
gBattleStruct->moneyMultiplier *= 2;
|
|
gBattleStruct->moneyMultiplierItem = 1;
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_RESTORE_STATS:
|
|
for (i = 0; i < NUM_BATTLE_STATS; i++)
|
|
{
|
|
if (gBattleMons[battler].statStages[i] < DEFAULT_STAT_STAGE)
|
|
{
|
|
gBattleMons[battler].statStages[i] = DEFAULT_STAT_STAGE;
|
|
effect = ITEM_STATS_CHANGE;
|
|
}
|
|
}
|
|
if (effect != 0)
|
|
{
|
|
gBattleScripting.battler = battler;
|
|
gPotentialItemEffectBattler = battler;
|
|
gBattlerAttacker = battler;
|
|
BattleScriptExecute(BattleScript_WhiteHerbEnd2);
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_CONFUSE_SPICY:
|
|
if (B_BERRIES_INSTANT >= GEN_4)
|
|
effect = HealConfuseBerry(battler, gLastUsedItem, FLAVOR_SPICY, TRUE);
|
|
break;
|
|
case HOLD_EFFECT_CONFUSE_DRY:
|
|
if (B_BERRIES_INSTANT >= GEN_4)
|
|
effect = HealConfuseBerry(battler, gLastUsedItem, FLAVOR_DRY, TRUE);
|
|
break;
|
|
case HOLD_EFFECT_CONFUSE_SWEET:
|
|
if (B_BERRIES_INSTANT >= GEN_4)
|
|
effect = HealConfuseBerry(battler, gLastUsedItem, FLAVOR_SWEET, TRUE);
|
|
break;
|
|
case HOLD_EFFECT_CONFUSE_BITTER:
|
|
if (B_BERRIES_INSTANT >= GEN_4)
|
|
effect = HealConfuseBerry(battler, gLastUsedItem, FLAVOR_BITTER, TRUE);
|
|
break;
|
|
case HOLD_EFFECT_CONFUSE_SOUR:
|
|
if (B_BERRIES_INSTANT >= GEN_4)
|
|
effect = HealConfuseBerry(battler, gLastUsedItem, FLAVOR_SOUR, TRUE);
|
|
break;
|
|
case HOLD_EFFECT_ATTACK_UP:
|
|
if (B_BERRIES_INSTANT >= GEN_4)
|
|
effect = StatRaiseBerry(battler, gLastUsedItem, STAT_ATK, TRUE);
|
|
break;
|
|
case HOLD_EFFECT_DEFENSE_UP:
|
|
if (B_BERRIES_INSTANT >= GEN_4)
|
|
effect = StatRaiseBerry(battler, gLastUsedItem, STAT_DEF, TRUE);
|
|
break;
|
|
case HOLD_EFFECT_SPEED_UP:
|
|
if (B_BERRIES_INSTANT >= GEN_4)
|
|
effect = StatRaiseBerry(battler, gLastUsedItem, STAT_SPEED, TRUE);
|
|
break;
|
|
case HOLD_EFFECT_SP_ATTACK_UP:
|
|
if (B_BERRIES_INSTANT >= GEN_4)
|
|
effect = StatRaiseBerry(battler, gLastUsedItem, STAT_SPATK, TRUE);
|
|
break;
|
|
case HOLD_EFFECT_SP_DEFENSE_UP:
|
|
if (B_BERRIES_INSTANT >= GEN_4)
|
|
effect = StatRaiseBerry(battler, gLastUsedItem, STAT_SPDEF, TRUE);
|
|
break;
|
|
case HOLD_EFFECT_CRITICAL_UP:
|
|
if (B_BERRIES_INSTANT >= GEN_4
|
|
&& !(gBattleMons[battler].status2 & STATUS2_FOCUS_ENERGY)
|
|
&& HasEnoughHpToEatBerry(battler, GetBattlerItemHoldEffectParam(battler, gLastUsedItem), gLastUsedItem))
|
|
{
|
|
gBattleMons[battler].status2 |= STATUS2_FOCUS_ENERGY;
|
|
gBattleScripting.battler = battler;
|
|
BattleScriptExecute(BattleScript_BerryFocusEnergyEnd2);
|
|
effect = ITEM_EFFECT_OTHER;
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_RANDOM_STAT_UP:
|
|
if (B_BERRIES_INSTANT >= GEN_4)
|
|
effect = RandomStatRaiseBerry(battler, gLastUsedItem, TRUE);
|
|
break;
|
|
case HOLD_EFFECT_CURE_PAR:
|
|
if (B_BERRIES_INSTANT >= GEN_4
|
|
&& gBattleMons[battler].status1 & STATUS1_PARALYSIS
|
|
&& !UnnerveOn(battler, gLastUsedItem))
|
|
{
|
|
gBattleMons[battler].status1 &= ~STATUS1_PARALYSIS;
|
|
BattleScriptExecute(BattleScript_BerryCurePrlzEnd2);
|
|
effect = ITEM_STATUS_CHANGE;
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_CURE_PSN:
|
|
if (B_BERRIES_INSTANT >= GEN_4
|
|
&& (gBattleMons[battler].status1 & STATUS1_PSN_ANY)
|
|
&& !UnnerveOn(battler, gLastUsedItem))
|
|
{
|
|
gBattleMons[battler].status1 &= ~(STATUS1_PSN_ANY | STATUS1_TOXIC_COUNTER);
|
|
BattleScriptExecute(BattleScript_BerryCurePsnEnd2);
|
|
effect = ITEM_STATUS_CHANGE;
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_CURE_BRN:
|
|
if (B_BERRIES_INSTANT >= GEN_4
|
|
&& (gBattleMons[battler].status1 & STATUS1_BURN)
|
|
&& !UnnerveOn(battler, gLastUsedItem))
|
|
{
|
|
gBattleMons[battler].status1 &= ~STATUS1_BURN;
|
|
BattleScriptExecute(BattleScript_BerryCureBrnEnd2);
|
|
effect = ITEM_STATUS_CHANGE;
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_CURE_FRZ:
|
|
if (B_BERRIES_INSTANT >= GEN_4
|
|
&& (gBattleMons[battler].status1 & STATUS1_FREEZE)
|
|
&& !UnnerveOn(battler, gLastUsedItem))
|
|
{
|
|
gBattleMons[battler].status1 &= ~STATUS1_FREEZE;
|
|
BattleScriptExecute(BattleScript_BerryCureFrzEnd2);
|
|
effect = ITEM_STATUS_CHANGE;
|
|
}
|
|
if (B_BERRIES_INSTANT >= GEN_4
|
|
&& (gBattleMons[battler].status1 & STATUS1_FROSTBITE)
|
|
&& !UnnerveOn(battler, gLastUsedItem))
|
|
{
|
|
gBattleMons[battler].status1 &= ~STATUS1_FROSTBITE;
|
|
BattleScriptExecute(BattleScript_BerryCureFsbEnd2);
|
|
effect = ITEM_STATUS_CHANGE;
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_CURE_SLP:
|
|
if (B_BERRIES_INSTANT >= GEN_4
|
|
&& (gBattleMons[battler].status1 & STATUS1_SLEEP)
|
|
&& !UnnerveOn(battler, gLastUsedItem))
|
|
{
|
|
gBattleMons[battler].status1 &= ~STATUS1_SLEEP;
|
|
gBattleMons[battler].status2 &= ~STATUS2_NIGHTMARE;
|
|
BattleScriptExecute(BattleScript_BerryCureSlpEnd2);
|
|
effect = ITEM_STATUS_CHANGE;
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_CURE_STATUS:
|
|
if (B_BERRIES_INSTANT >= GEN_4
|
|
&& (gBattleMons[battler].status1 & STATUS1_ANY || gBattleMons[battler].status2 & STATUS2_CONFUSION)
|
|
&& !UnnerveOn(battler, gLastUsedItem))
|
|
{
|
|
i = 0;
|
|
if (gBattleMons[battler].status1 & STATUS1_PSN_ANY)
|
|
{
|
|
StringCopy(gBattleTextBuff1, gStatusConditionString_PoisonJpn);
|
|
i++;
|
|
}
|
|
if (gBattleMons[battler].status1 & STATUS1_SLEEP)
|
|
{
|
|
gBattleMons[battler].status2 &= ~STATUS2_NIGHTMARE;
|
|
StringCopy(gBattleTextBuff1, gStatusConditionString_SleepJpn);
|
|
i++;
|
|
}
|
|
if (gBattleMons[battler].status1 & STATUS1_PARALYSIS)
|
|
{
|
|
StringCopy(gBattleTextBuff1, gStatusConditionString_ParalysisJpn);
|
|
i++;
|
|
}
|
|
if (gBattleMons[battler].status1 & STATUS1_BURN)
|
|
{
|
|
StringCopy(gBattleTextBuff1, gStatusConditionString_BurnJpn);
|
|
i++;
|
|
}
|
|
if (gBattleMons[battler].status1 & STATUS1_FREEZE || gBattleMons[battler].status1 & STATUS1_FROSTBITE)
|
|
{
|
|
StringCopy(gBattleTextBuff1, gStatusConditionString_IceJpn);
|
|
i++;
|
|
}
|
|
if (gBattleMons[battler].status2 & STATUS2_CONFUSION)
|
|
{
|
|
StringCopy(gBattleTextBuff1, gStatusConditionString_ConfusionJpn);
|
|
i++;
|
|
}
|
|
if (i <= 1)
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_CURED_PROBLEM;
|
|
else
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_NORMALIZED_STATUS;
|
|
gBattleMons[battler].status1 = 0;
|
|
RemoveConfusionStatus(battler);
|
|
BattleScriptExecute(BattleScript_BerryCureChosenStatusEnd2);
|
|
effect = ITEM_STATUS_CHANGE;
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_RESTORE_HP:
|
|
if (B_BERRIES_INSTANT >= GEN_4)
|
|
effect = ItemHealHp(battler, gLastUsedItem, TRUE, FALSE);
|
|
break;
|
|
case HOLD_EFFECT_RESTORE_PCT_HP:
|
|
if (B_BERRIES_INSTANT >= GEN_4)
|
|
effect = ItemHealHp(battler, gLastUsedItem, TRUE, TRUE);
|
|
break;
|
|
case HOLD_EFFECT_AIR_BALLOON:
|
|
effect = ITEM_EFFECT_OTHER;
|
|
gBattleScripting.battler = battler;
|
|
BattleScriptPushCursorAndCallback(BattleScript_AirBaloonMsgIn);
|
|
RecordItemEffectBattle(battler, HOLD_EFFECT_AIR_BALLOON);
|
|
break;
|
|
case HOLD_EFFECT_ROOM_SERVICE:
|
|
if (TryRoomService(battler))
|
|
{
|
|
BattleScriptExecute(BattleScript_BerryStatRaiseEnd2);
|
|
effect = ITEM_STATS_CHANGE;
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_SEEDS:
|
|
switch (GetBattlerHoldEffectParam(battler))
|
|
{
|
|
case HOLD_EFFECT_PARAM_ELECTRIC_TERRAIN:
|
|
effect = TryHandleSeed(battler, STATUS_FIELD_ELECTRIC_TERRAIN, STAT_DEF, gLastUsedItem, TRUE);
|
|
break;
|
|
case HOLD_EFFECT_PARAM_GRASSY_TERRAIN:
|
|
effect = TryHandleSeed(battler, STATUS_FIELD_GRASSY_TERRAIN, STAT_DEF, gLastUsedItem, TRUE);
|
|
break;
|
|
case HOLD_EFFECT_PARAM_MISTY_TERRAIN:
|
|
effect = TryHandleSeed(battler, STATUS_FIELD_MISTY_TERRAIN, STAT_SPDEF, gLastUsedItem, TRUE);
|
|
break;
|
|
case HOLD_EFFECT_PARAM_PSYCHIC_TERRAIN:
|
|
effect = TryHandleSeed(battler, STATUS_FIELD_PSYCHIC_TERRAIN, STAT_SPDEF, gLastUsedItem, TRUE);
|
|
break;
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_EJECT_PACK:
|
|
if (gProtectStructs[battler].statFell
|
|
&& gProtectStructs[battler].disableEjectPack == 0
|
|
&& !(gCurrentMove == MOVE_PARTING_SHOT && CanBattlerSwitch(gBattlerAttacker))) // Does not activate if attacker used Parting Shot and can switch out
|
|
{
|
|
gProtectStructs[battler].statFell = FALSE;
|
|
gBattleScripting.battler = battler;
|
|
effect = ITEM_STATS_CHANGE;
|
|
if (moveTurn)
|
|
{
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_EjectPackActivate_Ret;
|
|
}
|
|
else
|
|
{
|
|
BattleScriptExecute(BattleScript_EjectPackActivate_End2);
|
|
}
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_BERSERK_GENE:
|
|
BufferStatChange(battler, STAT_ATK, STRINGID_STATROSE);
|
|
gEffectBattler = battler;
|
|
if (CanBeInfinitelyConfused(gEffectBattler))
|
|
{
|
|
gStatuses4[gEffectBattler] |= STATUS4_INFINITE_CONFUSION;
|
|
}
|
|
SET_STATCHANGER(STAT_ATK, 2, FALSE);
|
|
|
|
gBattleScripting.animArg1 = 14 + STAT_ATK;
|
|
gBattleScripting.animArg2 = 0;
|
|
|
|
BattleScriptPushCursorAndCallback(BattleScript_BerserkGeneRet);
|
|
effect = ITEM_STATS_CHANGE;
|
|
break;
|
|
}
|
|
if (effect != 0)
|
|
{
|
|
gSpecialStatuses[battler].switchInItemDone = TRUE;
|
|
gBattlerAttacker = gPotentialItemEffectBattler = gBattleScripting.battler = battler;
|
|
switch (effect)
|
|
{
|
|
case ITEM_STATUS_CHANGE:
|
|
BtlController_EmitSetMonData(battler, BUFFER_A, REQUEST_STATUS_BATTLE, 0, 4, &gBattleMons[battler].status1);
|
|
MarkBattlerForControllerExec(battler);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
case ITEMEFFECT_NORMAL:
|
|
if (gBattleMons[battler].hp)
|
|
{
|
|
switch (battlerHoldEffect)
|
|
{
|
|
case HOLD_EFFECT_RESTORE_HP:
|
|
if (!moveTurn)
|
|
effect = ItemHealHp(battler, gLastUsedItem, TRUE, FALSE);
|
|
break;
|
|
case HOLD_EFFECT_RESTORE_PCT_HP:
|
|
if (!moveTurn)
|
|
effect = ItemHealHp(battler, gLastUsedItem, TRUE, TRUE);
|
|
break;
|
|
case HOLD_EFFECT_RESTORE_PP:
|
|
if (!moveTurn)
|
|
effect = ItemRestorePp(battler, gLastUsedItem, TRUE);
|
|
break;
|
|
case HOLD_EFFECT_RESTORE_STATS:
|
|
for (i = 0; i < NUM_BATTLE_STATS; i++)
|
|
{
|
|
if (gBattleMons[battler].statStages[i] < DEFAULT_STAT_STAGE)
|
|
{
|
|
gBattleMons[battler].statStages[i] = DEFAULT_STAT_STAGE;
|
|
effect = ITEM_STATS_CHANGE;
|
|
}
|
|
}
|
|
if (effect != 0)
|
|
{
|
|
gBattleScripting.battler = battler;
|
|
gPotentialItemEffectBattler = battler;
|
|
gBattlerAttacker = battler;
|
|
BattleScriptExecute(BattleScript_WhiteHerbEnd2);
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_BLACK_SLUDGE:
|
|
if (IS_BATTLER_OF_TYPE(battler, TYPE_POISON))
|
|
{
|
|
goto LEFTOVERS;
|
|
}
|
|
else if (GetBattlerAbility(battler) != ABILITY_MAGIC_GUARD && !moveTurn)
|
|
{
|
|
gBattleMoveDamage = GetNonDynamaxMaxHP(battler) / 8;
|
|
if (gBattleMoveDamage == 0)
|
|
gBattleMoveDamage = 1;
|
|
BattleScriptExecute(BattleScript_ItemHurtEnd2);
|
|
effect = ITEM_HP_CHANGE;
|
|
RecordItemEffectBattle(battler, battlerHoldEffect);
|
|
PREPARE_ITEM_BUFFER(gBattleTextBuff1, gLastUsedItem);
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_LEFTOVERS:
|
|
LEFTOVERS:
|
|
if (gBattleMons[battler].hp < gBattleMons[battler].maxHP && !moveTurn
|
|
&& (B_HEAL_BLOCKING < GEN_5 || !(gStatuses3[battler] & STATUS3_HEAL_BLOCK)))
|
|
{
|
|
gBattleMoveDamage = GetNonDynamaxMaxHP(battler) / 16;
|
|
if (gBattleMoveDamage == 0)
|
|
gBattleMoveDamage = 1;
|
|
gBattleMoveDamage *= -1;
|
|
BattleScriptExecute(BattleScript_ItemHealHP_End2);
|
|
effect = ITEM_HP_CHANGE;
|
|
RecordItemEffectBattle(battler, battlerHoldEffect);
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_CONFUSE_SPICY:
|
|
if (!moveTurn)
|
|
effect = HealConfuseBerry(battler, gLastUsedItem, FLAVOR_SPICY, TRUE);
|
|
break;
|
|
case HOLD_EFFECT_CONFUSE_DRY:
|
|
if (!moveTurn)
|
|
effect = HealConfuseBerry(battler, gLastUsedItem, FLAVOR_DRY, TRUE);
|
|
break;
|
|
case HOLD_EFFECT_CONFUSE_SWEET:
|
|
if (!moveTurn)
|
|
effect = HealConfuseBerry(battler, gLastUsedItem, FLAVOR_SWEET, TRUE);
|
|
break;
|
|
case HOLD_EFFECT_CONFUSE_BITTER:
|
|
if (!moveTurn)
|
|
effect = HealConfuseBerry(battler, gLastUsedItem, FLAVOR_BITTER, TRUE);
|
|
break;
|
|
case HOLD_EFFECT_CONFUSE_SOUR:
|
|
if (!moveTurn)
|
|
effect = HealConfuseBerry(battler, gLastUsedItem, FLAVOR_SOUR, TRUE);
|
|
break;
|
|
case HOLD_EFFECT_ATTACK_UP:
|
|
if (!moveTurn)
|
|
effect = StatRaiseBerry(battler, gLastUsedItem, STAT_ATK, TRUE);
|
|
break;
|
|
case HOLD_EFFECT_DEFENSE_UP:
|
|
if (!moveTurn)
|
|
effect = StatRaiseBerry(battler, gLastUsedItem, STAT_DEF, TRUE);
|
|
break;
|
|
case HOLD_EFFECT_SPEED_UP:
|
|
if (!moveTurn)
|
|
effect = StatRaiseBerry(battler, gLastUsedItem, STAT_SPEED, TRUE);
|
|
break;
|
|
case HOLD_EFFECT_SP_ATTACK_UP:
|
|
if (!moveTurn)
|
|
effect = StatRaiseBerry(battler, gLastUsedItem, STAT_SPATK, TRUE);
|
|
break;
|
|
case HOLD_EFFECT_SP_DEFENSE_UP:
|
|
if (!moveTurn)
|
|
effect = StatRaiseBerry(battler, gLastUsedItem, STAT_SPDEF, TRUE);
|
|
break;
|
|
case HOLD_EFFECT_CRITICAL_UP:
|
|
if (!moveTurn && !(gBattleMons[battler].status2 & STATUS2_FOCUS_ENERGY)
|
|
&& HasEnoughHpToEatBerry(battler, GetBattlerItemHoldEffectParam(battler, gLastUsedItem), gLastUsedItem))
|
|
{
|
|
gBattleMons[battler].status2 |= STATUS2_FOCUS_ENERGY;
|
|
gBattleScripting.battler = battler;
|
|
BattleScriptExecute(BattleScript_BerryFocusEnergyEnd2);
|
|
effect = ITEM_EFFECT_OTHER;
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_RANDOM_STAT_UP:
|
|
if (!moveTurn)
|
|
effect = RandomStatRaiseBerry(battler, gLastUsedItem, TRUE);
|
|
break;
|
|
case HOLD_EFFECT_CURE_PAR:
|
|
if (gBattleMons[battler].status1 & STATUS1_PARALYSIS && !UnnerveOn(battler, gLastUsedItem))
|
|
{
|
|
gBattleMons[battler].status1 &= ~STATUS1_PARALYSIS;
|
|
BattleScriptExecute(BattleScript_BerryCurePrlzEnd2);
|
|
effect = ITEM_STATUS_CHANGE;
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_CURE_PSN:
|
|
if (gBattleMons[battler].status1 & STATUS1_PSN_ANY && !UnnerveOn(battler, gLastUsedItem))
|
|
{
|
|
gBattleMons[battler].status1 &= ~(STATUS1_PSN_ANY | STATUS1_TOXIC_COUNTER);
|
|
BattleScriptExecute(BattleScript_BerryCurePsnEnd2);
|
|
effect = ITEM_STATUS_CHANGE;
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_CURE_BRN:
|
|
if (gBattleMons[battler].status1 & STATUS1_BURN && !UnnerveOn(battler, gLastUsedItem))
|
|
{
|
|
gBattleMons[battler].status1 &= ~STATUS1_BURN;
|
|
BattleScriptExecute(BattleScript_BerryCureBrnEnd2);
|
|
effect = ITEM_STATUS_CHANGE;
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_CURE_FRZ:
|
|
if (gBattleMons[battler].status1 & STATUS1_FREEZE && !UnnerveOn(battler, gLastUsedItem))
|
|
{
|
|
gBattleMons[battler].status1 &= ~STATUS1_FREEZE;
|
|
BattleScriptExecute(BattleScript_BerryCureFrzEnd2);
|
|
effect = ITEM_STATUS_CHANGE;
|
|
}
|
|
if (gBattleMons[battler].status1 & STATUS1_FROSTBITE && !UnnerveOn(battler, gLastUsedItem))
|
|
{
|
|
gBattleMons[battler].status1 &= ~STATUS1_FROSTBITE;
|
|
BattleScriptExecute(BattleScript_BerryCureFsbEnd2);
|
|
effect = ITEM_STATUS_CHANGE;
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_CURE_SLP:
|
|
if (gBattleMons[battler].status1 & STATUS1_SLEEP && !UnnerveOn(battler, gLastUsedItem))
|
|
{
|
|
gBattleMons[battler].status1 &= ~STATUS1_SLEEP;
|
|
gBattleMons[battler].status2 &= ~STATUS2_NIGHTMARE;
|
|
BattleScriptExecute(BattleScript_BerryCureSlpEnd2);
|
|
effect = ITEM_STATUS_CHANGE;
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_CURE_CONFUSION:
|
|
if (gBattleMons[battler].status2 & STATUS2_CONFUSION && !UnnerveOn(battler, gLastUsedItem))
|
|
{
|
|
RemoveConfusionStatus(battler);
|
|
BattleScriptExecute(BattleScript_BerryCureConfusionEnd2);
|
|
effect = ITEM_EFFECT_OTHER;
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_CURE_STATUS:
|
|
if ((gBattleMons[battler].status1 & STATUS1_ANY || gBattleMons[battler].status2 & STATUS2_CONFUSION) && !UnnerveOn(battler, gLastUsedItem))
|
|
{
|
|
i = 0;
|
|
if (gBattleMons[battler].status1 & STATUS1_PSN_ANY)
|
|
{
|
|
StringCopy(gBattleTextBuff1, gStatusConditionString_PoisonJpn);
|
|
i++;
|
|
}
|
|
if (gBattleMons[battler].status1 & STATUS1_SLEEP)
|
|
{
|
|
gBattleMons[battler].status2 &= ~STATUS2_NIGHTMARE;
|
|
StringCopy(gBattleTextBuff1, gStatusConditionString_SleepJpn);
|
|
i++;
|
|
}
|
|
if (gBattleMons[battler].status1 & STATUS1_PARALYSIS)
|
|
{
|
|
StringCopy(gBattleTextBuff1, gStatusConditionString_ParalysisJpn);
|
|
i++;
|
|
}
|
|
if (gBattleMons[battler].status1 & STATUS1_BURN)
|
|
{
|
|
StringCopy(gBattleTextBuff1, gStatusConditionString_BurnJpn);
|
|
i++;
|
|
}
|
|
if (gBattleMons[battler].status1 & STATUS1_FREEZE || gBattleMons[battler].status1 & STATUS1_FROSTBITE)
|
|
{
|
|
StringCopy(gBattleTextBuff1, gStatusConditionString_IceJpn);
|
|
i++;
|
|
}
|
|
if (gBattleMons[battler].status2 & STATUS2_CONFUSION)
|
|
{
|
|
StringCopy(gBattleTextBuff1, gStatusConditionString_ConfusionJpn);
|
|
i++;
|
|
}
|
|
if (i <= 1)
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_CURED_PROBLEM;
|
|
else
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = B_MSG_NORMALIZED_STATUS;
|
|
gBattleMons[battler].status1 = 0;
|
|
RemoveConfusionStatus(battler);
|
|
BattleScriptExecute(BattleScript_BerryCureChosenStatusEnd2);
|
|
effect = ITEM_STATUS_CHANGE;
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_MENTAL_HERB:
|
|
if (GetMentalHerbEffect(battler))
|
|
{
|
|
gBattleScripting.savedBattler = gBattlerAttacker;
|
|
gBattlerAttacker = battler;
|
|
BattleScriptExecute(BattleScript_MentalHerbCureEnd2);
|
|
effect = ITEM_EFFECT_OTHER;
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_MICLE_BERRY:
|
|
if (!moveTurn)
|
|
effect = TrySetMicleBerry(battler, gLastUsedItem, TRUE);
|
|
break;
|
|
case HOLD_EFFECT_BERSERK_GENE:
|
|
BufferStatChange(battler, STAT_ATK, STRINGID_STATROSE);
|
|
gEffectBattler = battler;
|
|
if (CanBeInfinitelyConfused(gEffectBattler))
|
|
{
|
|
gStatuses4[gEffectBattler] |= STATUS4_INFINITE_CONFUSION;
|
|
}
|
|
SET_STATCHANGER(STAT_ATK, 2, FALSE);
|
|
|
|
gBattleScripting.animArg1 = 14 + STAT_ATK;
|
|
gBattleScripting.animArg2 = 0;
|
|
|
|
BattleScriptPushCursorAndCallback(BattleScript_BerserkGeneRet);
|
|
effect = ITEM_STATS_CHANGE;
|
|
break;
|
|
case HOLD_EFFECT_MIRROR_HERB:
|
|
effect = TryConsumeMirrorHerb(battler, TRUE);
|
|
break;
|
|
}
|
|
|
|
if (effect != 0)
|
|
{
|
|
gBattlerAttacker = gPotentialItemEffectBattler = gBattleScripting.battler = battler;
|
|
switch (effect)
|
|
{
|
|
case ITEM_STATUS_CHANGE:
|
|
BtlController_EmitSetMonData(battler, BUFFER_A, REQUEST_STATUS_BATTLE, 0, 4, &gBattleMons[battler].status1);
|
|
MarkBattlerForControllerExec(battler);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
case ITEMEFFECT_USE_LAST_ITEM:
|
|
effect = ItemEffectMoveEnd(battler, ItemId_GetHoldEffect(gLastUsedItem));
|
|
gBattleScripting.overrideBerryRequirements = 2; // to exit VARIOUS_CONSUME_BERRIES
|
|
if (effect)
|
|
{
|
|
gPotentialItemEffectBattler = gBattleScripting.battler = battler;
|
|
if (effect == ITEM_STATUS_CHANGE)
|
|
{
|
|
BtlController_EmitSetMonData(battler, BUFFER_A, REQUEST_STATUS_BATTLE, 0, 4, &gBattleMons[battler].status1);
|
|
MarkBattlerForControllerExec(battler);
|
|
}
|
|
break;
|
|
}
|
|
break;
|
|
case ITEMEFFECT_MOVE_END:
|
|
for (battler = 0; battler < gBattlersCount; battler++)
|
|
{
|
|
gLastUsedItem = gBattleMons[battler].item;
|
|
effect = ItemEffectMoveEnd(battler, GetBattlerHoldEffect(battler, TRUE));
|
|
if (effect)
|
|
{
|
|
gPotentialItemEffectBattler = gBattleScripting.battler = battler;
|
|
if (effect == ITEM_STATUS_CHANGE)
|
|
{
|
|
BtlController_EmitSetMonData(battler, BUFFER_A, REQUEST_STATUS_BATTLE, 0, 4, &gBattleMons[battler].status1);
|
|
MarkBattlerForControllerExec(battler);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
break;
|
|
case ITEMEFFECT_KINGSROCK:
|
|
// Occur on each hit of a multi-strike move
|
|
switch (atkHoldEffect)
|
|
{
|
|
case HOLD_EFFECT_FLINCH:
|
|
{
|
|
u16 ability = GetBattlerAbility(gBattlerAttacker);
|
|
if (B_SERENE_GRACE_BOOST >= GEN_5 && ability == ABILITY_SERENE_GRACE)
|
|
atkHoldEffectParam *= 2;
|
|
if (gSideStatuses[GetBattlerSide(battler)] & SIDE_STATUS_RAINBOW && gCurrentMove != MOVE_SECRET_POWER)
|
|
atkHoldEffectParam *= 2;
|
|
if (gBattleMoveDamage != 0 // Need to have done damage
|
|
&& !(gMoveResultFlags & MOVE_RESULT_NO_EFFECT)
|
|
&& TARGET_TURN_DAMAGED
|
|
&& !gBattleMoves[gCurrentMove].ignoresKingsRock
|
|
&& gBattleMons[gBattlerTarget].hp
|
|
&& RandomPercentage(RNG_HOLD_EFFECT_FLINCH, atkHoldEffectParam)
|
|
&& ability != ABILITY_STENCH)
|
|
{
|
|
gBattleScripting.moveEffect = MOVE_EFFECT_FLINCH;
|
|
BattleScriptPushCursor();
|
|
SetMoveEffect(FALSE, FALSE);
|
|
BattleScriptPop();
|
|
}
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_BLUNDER_POLICY:
|
|
if (gBattleStruct->blunderPolicy
|
|
&& gBattleMons[gBattlerAttacker].hp != 0
|
|
&& CompareStat(gBattlerAttacker, STAT_SPEED, MAX_STAT_STAGE, CMP_LESS_THAN))
|
|
{
|
|
gBattleStruct->blunderPolicy = FALSE;
|
|
gLastUsedItem = atkItem;
|
|
SET_STATCHANGER(STAT_SPEED, 2, FALSE);
|
|
effect = ITEM_STATS_CHANGE;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_AttackerItemStatRaise;
|
|
}
|
|
break;
|
|
}
|
|
break;
|
|
case ITEMEFFECT_LIFEORB_SHELLBELL:
|
|
// Occur after the final hit of a multi-strike move
|
|
switch (atkHoldEffect)
|
|
{
|
|
case HOLD_EFFECT_SHELL_BELL:
|
|
if (gSpecialStatuses[gBattlerAttacker].damagedMons // Need to have done damage
|
|
&& gBattlerAttacker != gBattlerTarget
|
|
&& gBattleMons[gBattlerAttacker].hp != gBattleMons[gBattlerAttacker].maxHP
|
|
&& gBattleMons[gBattlerAttacker].hp != 0
|
|
&& (B_HEAL_BLOCKING < GEN_5 || !(gStatuses3[battler] & STATUS3_HEAL_BLOCK)))
|
|
{
|
|
gLastUsedItem = atkItem;
|
|
gPotentialItemEffectBattler = gBattlerAttacker;
|
|
gBattleScripting.battler = gBattlerAttacker;
|
|
gBattleMoveDamage = (gSpecialStatuses[gBattlerTarget].shellBellDmg / atkHoldEffectParam) * -1;
|
|
if (gBattleMoveDamage == 0)
|
|
gBattleMoveDamage = -1;
|
|
gSpecialStatuses[gBattlerTarget].shellBellDmg = 0;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_ItemHealHP_Ret;
|
|
effect = ITEM_HP_CHANGE;
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_LIFE_ORB:
|
|
if (IsBattlerAlive(gBattlerAttacker)
|
|
&& !(TestSheerForceFlag(gBattlerAttacker, gCurrentMove))
|
|
&& GetBattlerAbility(gBattlerAttacker) != ABILITY_MAGIC_GUARD
|
|
&& !gSpecialStatuses[gBattlerAttacker].magicianStolen
|
|
&& gSpecialStatuses[gBattlerAttacker].damagedMons)
|
|
{
|
|
gBattleMoveDamage = GetNonDynamaxMaxHP(gBattlerAttacker) / 10;
|
|
if (gBattleMoveDamage == 0)
|
|
gBattleMoveDamage = 1;
|
|
effect = ITEM_HP_CHANGE;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_ItemHurtRet;
|
|
gLastUsedItem = gBattleMons[gBattlerAttacker].item;
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_THROAT_SPRAY: // Does NOT need to be a damaging move
|
|
if (gProtectStructs[gBattlerAttacker].targetAffected
|
|
&& gBattleMons[gBattlerAttacker].hp != 0
|
|
&& gBattleMoves[gCurrentMove].soundMove
|
|
&& CompareStat(gBattlerAttacker, STAT_SPATK, MAX_STAT_STAGE, CMP_LESS_THAN)
|
|
&& !NoAliveMonsForEitherParty()) // Don't activate if battle will end
|
|
{
|
|
gLastUsedItem = atkItem;
|
|
gBattleScripting.battler = gBattlerAttacker;
|
|
SET_STATCHANGER(STAT_SPATK, 1, FALSE);
|
|
effect = ITEM_STATS_CHANGE;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_AttackerItemStatRaise;
|
|
}
|
|
break;
|
|
}
|
|
break;
|
|
case ITEMEFFECT_TARGET:
|
|
if (!(gMoveResultFlags & MOVE_RESULT_NO_EFFECT))
|
|
{
|
|
GET_MOVE_TYPE(gCurrentMove, moveType);
|
|
switch (battlerHoldEffect)
|
|
{
|
|
case HOLD_EFFECT_AIR_BALLOON:
|
|
if (TARGET_TURN_DAMAGED)
|
|
{
|
|
effect = ITEM_EFFECT_OTHER;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_AirBaloonMsgPop;
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_ROCKY_HELMET:
|
|
if (TARGET_TURN_DAMAGED
|
|
&& IsMoveMakingContact(gCurrentMove, gBattlerAttacker)
|
|
&& IsBattlerAlive(gBattlerAttacker)
|
|
&& GetBattlerAbility(gBattlerAttacker) != ABILITY_MAGIC_GUARD)
|
|
{
|
|
gBattleMoveDamage = GetNonDynamaxMaxHP(gBattlerAttacker) / 6;
|
|
if (gBattleMoveDamage == 0)
|
|
gBattleMoveDamage = 1;
|
|
effect = ITEM_HP_CHANGE;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_RockyHelmetActivates;
|
|
PREPARE_ITEM_BUFFER(gBattleTextBuff1, gLastUsedItem);
|
|
RecordItemEffectBattle(battler, HOLD_EFFECT_ROCKY_HELMET);
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_WEAKNESS_POLICY:
|
|
if (IsBattlerAlive(battler)
|
|
&& TARGET_TURN_DAMAGED
|
|
&& gMoveResultFlags & MOVE_RESULT_SUPER_EFFECTIVE)
|
|
{
|
|
effect = ITEM_STATS_CHANGE;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_WeaknessPolicy;
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_SNOWBALL:
|
|
if (IsBattlerAlive(battler)
|
|
&& TARGET_TURN_DAMAGED
|
|
&& moveType == TYPE_ICE)
|
|
{
|
|
effect = ITEM_STATS_CHANGE;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_TargetItemStatRaise;
|
|
SET_STATCHANGER(STAT_ATK, 1, FALSE);
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_LUMINOUS_MOSS:
|
|
if (IsBattlerAlive(battler)
|
|
&& TARGET_TURN_DAMAGED
|
|
&& moveType == TYPE_WATER)
|
|
{
|
|
effect = ITEM_STATS_CHANGE;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_TargetItemStatRaise;
|
|
SET_STATCHANGER(STAT_SPDEF, 1, FALSE);
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_CELL_BATTERY:
|
|
if (IsBattlerAlive(battler)
|
|
&& TARGET_TURN_DAMAGED
|
|
&& moveType == TYPE_ELECTRIC)
|
|
{
|
|
effect = ITEM_STATS_CHANGE;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_TargetItemStatRaise;
|
|
SET_STATCHANGER(STAT_ATK, 1, FALSE);
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_ABSORB_BULB:
|
|
if (IsBattlerAlive(battler)
|
|
&& TARGET_TURN_DAMAGED
|
|
&& moveType == TYPE_WATER)
|
|
{
|
|
effect = ITEM_STATS_CHANGE;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_TargetItemStatRaise;
|
|
SET_STATCHANGER(STAT_SPATK, 1, FALSE);
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_ENIGMA_BERRY: // consume and heal if hit by super effective move
|
|
effect = TrySetEnigmaBerry(battler);
|
|
break;
|
|
case HOLD_EFFECT_JABOCA_BERRY: // consume and damage attacker if used physical move
|
|
if (IsBattlerAlive(battler)
|
|
&& TARGET_TURN_DAMAGED
|
|
&& !DoesSubstituteBlockMove(gBattlerAttacker, battler, gCurrentMove)
|
|
&& IS_MOVE_PHYSICAL(gCurrentMove)
|
|
&& GetBattlerAbility(gBattlerAttacker) != ABILITY_MAGIC_GUARD)
|
|
{
|
|
gBattleMoveDamage = GetNonDynamaxMaxHP(gBattlerAttacker) / 8;
|
|
if (gBattleMoveDamage == 0)
|
|
gBattleMoveDamage = 1;
|
|
if (GetBattlerAbility(battler) == ABILITY_RIPEN)
|
|
gBattleMoveDamage *= 2;
|
|
|
|
effect = ITEM_HP_CHANGE;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_JabocaRowapBerryActivates;
|
|
PREPARE_ITEM_BUFFER(gBattleTextBuff1, gLastUsedItem);
|
|
RecordItemEffectBattle(battler, HOLD_EFFECT_ROCKY_HELMET);
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_ROWAP_BERRY: // consume and damage attacker if used special move
|
|
if (IsBattlerAlive(battler)
|
|
&& TARGET_TURN_DAMAGED
|
|
&& !DoesSubstituteBlockMove(gBattlerAttacker, battler, gCurrentMove)
|
|
&& IS_MOVE_SPECIAL(gCurrentMove)
|
|
&& GetBattlerAbility(gBattlerAttacker) != ABILITY_MAGIC_GUARD)
|
|
{
|
|
gBattleMoveDamage = GetNonDynamaxMaxHP(gBattlerAttacker) / 8;
|
|
if (gBattleMoveDamage == 0)
|
|
gBattleMoveDamage = 1;
|
|
if (GetBattlerAbility(battler) == ABILITY_RIPEN)
|
|
gBattleMoveDamage *= 2;
|
|
|
|
effect = ITEM_HP_CHANGE;
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_JabocaRowapBerryActivates;
|
|
PREPARE_ITEM_BUFFER(gBattleTextBuff1, gLastUsedItem);
|
|
RecordItemEffectBattle(battler, HOLD_EFFECT_ROCKY_HELMET);
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_KEE_BERRY: // consume and boost defense if used physical move
|
|
effect = DamagedStatBoostBerryEffect(battler, STAT_DEF, BATTLE_CATEGORY_PHYSICAL);
|
|
break;
|
|
case HOLD_EFFECT_MARANGA_BERRY: // consume and boost sp. defense if used special move
|
|
effect = DamagedStatBoostBerryEffect(battler, STAT_SPDEF, BATTLE_CATEGORY_SPECIAL);
|
|
break;
|
|
case HOLD_EFFECT_STICKY_BARB:
|
|
if (TARGET_TURN_DAMAGED
|
|
&& (!(gMoveResultFlags & MOVE_RESULT_NO_EFFECT))
|
|
&& IsMoveMakingContact(gCurrentMove, gBattlerAttacker)
|
|
&& !DoesSubstituteBlockMove(gBattlerAttacker, battler, gCurrentMove)
|
|
&& IsBattlerAlive(gBattlerAttacker)
|
|
&& CanStealItem(gBattlerAttacker, gBattlerTarget, gBattleMons[gBattlerTarget].item)
|
|
&& gBattleMons[gBattlerAttacker].item == ITEM_NONE)
|
|
{
|
|
// No sticky hold checks.
|
|
gEffectBattler = battler; // gEffectBattler = target
|
|
StealTargetItem(gBattlerAttacker, gBattlerTarget); // Attacker takes target's barb
|
|
BattleScriptPushCursor();
|
|
gBattlescriptCurrInstr = BattleScript_StickyBarbTransfer;
|
|
effect = ITEM_EFFECT_OTHER;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
break;
|
|
case ITEMEFFECT_ORBS:
|
|
{
|
|
u16 battlerAbility = GetBattlerAbility(battler);
|
|
switch (battlerHoldEffect)
|
|
{
|
|
case HOLD_EFFECT_TOXIC_ORB:
|
|
if (CanBePoisoned(battler, battler))
|
|
{
|
|
effect = ITEM_STATUS_CHANGE;
|
|
gBattleMons[battler].status1 = STATUS1_TOXIC_POISON;
|
|
BattleScriptExecute(BattleScript_ToxicOrb);
|
|
RecordItemEffectBattle(battler, battlerHoldEffect);
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_FLAME_ORB:
|
|
if (CanBeBurned(battler))
|
|
{
|
|
effect = ITEM_STATUS_CHANGE;
|
|
gBattleMons[battler].status1 = STATUS1_BURN;
|
|
BattleScriptExecute(BattleScript_FlameOrb);
|
|
RecordItemEffectBattle(battler, battlerHoldEffect);
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_STICKY_BARB: // Not an orb per se, but similar effect, and needs to NOT activate with pickpocket
|
|
if (battlerAbility != ABILITY_MAGIC_GUARD)
|
|
{
|
|
gBattleMoveDamage = GetNonDynamaxMaxHP(battler) / 8;
|
|
if (gBattleMoveDamage == 0)
|
|
gBattleMoveDamage = 1;
|
|
BattleScriptExecute(BattleScript_ItemHurtEnd2);
|
|
effect = ITEM_HP_CHANGE;
|
|
RecordItemEffectBattle(battler, battlerHoldEffect);
|
|
PREPARE_ITEM_BUFFER(gBattleTextBuff1, gLastUsedItem);
|
|
}
|
|
break;
|
|
}
|
|
|
|
if (effect == ITEM_STATUS_CHANGE)
|
|
{
|
|
BtlController_EmitSetMonData(battler, BUFFER_A, REQUEST_STATUS_BATTLE, 0, 4, &gBattleMons[battler].status1);
|
|
MarkBattlerForControllerExec(battler);
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
|
|
// Berry was successfully used on a Pokemon.
|
|
if (effect && (gLastUsedItem >= FIRST_BERRY_INDEX && gLastUsedItem <= LAST_BERRY_INDEX))
|
|
gBattleStruct->ateBerry[battler & BIT_SIDE] |= gBitTable[gBattlerPartyIndexes[battler]];
|
|
|
|
return effect;
|
|
}
|
|
|
|
void ClearVariousBattlerFlags(u32 battler)
|
|
{
|
|
gDisableStructs[battler].furyCutterCounter = 0;
|
|
gBattleMons[battler].status2 &= ~STATUS2_DESTINY_BOND;
|
|
gStatuses3[battler] &= ~STATUS3_GRUDGE;
|
|
gStatuses4[battler] &= ~ STATUS4_GLAIVE_RUSH;
|
|
}
|
|
|
|
void HandleAction_RunBattleScript(void) // identical to RunBattleScriptCommands
|
|
{
|
|
if (gBattleControllerExecFlags == 0)
|
|
gBattleScriptingCommandsTable[*gBattlescriptCurrInstr]();
|
|
}
|
|
|
|
u32 SetRandomTarget(u32 battler)
|
|
{
|
|
u32 target;
|
|
static const u8 targets[2][2] =
|
|
{
|
|
[B_SIDE_PLAYER] = {B_POSITION_OPPONENT_LEFT, B_POSITION_OPPONENT_RIGHT},
|
|
[B_SIDE_OPPONENT] = {B_POSITION_PLAYER_LEFT, B_POSITION_PLAYER_RIGHT},
|
|
};
|
|
|
|
if (gBattleTypeFlags & BATTLE_TYPE_DOUBLE)
|
|
{
|
|
target = GetBattlerAtPosition(targets[GetBattlerSide(battler)][Random() % 2]);
|
|
if (!IsBattlerAlive(target))
|
|
target ^= BIT_FLANK;
|
|
}
|
|
else
|
|
{
|
|
target = GetBattlerAtPosition(targets[GetBattlerSide(battler)][0]);
|
|
}
|
|
|
|
return target;
|
|
}
|
|
|
|
u32 GetMoveTarget(u16 move, u8 setTarget)
|
|
{
|
|
u8 targetBattler = 0;
|
|
u32 moveTarget, side;
|
|
|
|
if (setTarget != NO_TARGET_OVERRIDE)
|
|
moveTarget = setTarget - 1;
|
|
else
|
|
moveTarget = GetBattlerMoveTargetType(gBattlerAttacker, move);
|
|
|
|
// Special cases
|
|
if (move == MOVE_CURSE && !IS_BATTLER_OF_TYPE(gBattlerAttacker, TYPE_GHOST))
|
|
moveTarget = MOVE_TARGET_USER;
|
|
|
|
switch (moveTarget)
|
|
{
|
|
case MOVE_TARGET_SELECTED:
|
|
side = BATTLE_OPPOSITE(GetBattlerSide(gBattlerAttacker));
|
|
if (IsAffectedByFollowMe(gBattlerAttacker, side, move))
|
|
{
|
|
targetBattler = gSideTimers[side].followmeTarget;
|
|
}
|
|
else
|
|
{
|
|
targetBattler = SetRandomTarget(gBattlerAttacker);
|
|
if (gBattleMoves[move].type == TYPE_ELECTRIC
|
|
&& IsAbilityOnOpposingSide(gBattlerAttacker, ABILITY_LIGHTNING_ROD)
|
|
&& GetBattlerAbility(targetBattler) != ABILITY_LIGHTNING_ROD)
|
|
{
|
|
targetBattler ^= BIT_FLANK;
|
|
RecordAbilityBattle(targetBattler, gBattleMons[targetBattler].ability);
|
|
gSpecialStatuses[targetBattler].lightningRodRedirected = TRUE;
|
|
}
|
|
else if (gBattleMoves[move].type == TYPE_WATER
|
|
&& IsAbilityOnOpposingSide(gBattlerAttacker, ABILITY_STORM_DRAIN)
|
|
&& GetBattlerAbility(targetBattler) != ABILITY_STORM_DRAIN)
|
|
{
|
|
targetBattler ^= BIT_FLANK;
|
|
RecordAbilityBattle(targetBattler, gBattleMons[targetBattler].ability);
|
|
gSpecialStatuses[targetBattler].stormDrainRedirected = TRUE;
|
|
}
|
|
}
|
|
break;
|
|
case MOVE_TARGET_DEPENDS:
|
|
case MOVE_TARGET_BOTH:
|
|
case MOVE_TARGET_FOES_AND_ALLY:
|
|
case MOVE_TARGET_OPPONENTS_FIELD:
|
|
targetBattler = GetBattlerAtPosition(BATTLE_OPPOSITE(GetBattlerSide(gBattlerAttacker)));
|
|
if (!IsBattlerAlive(targetBattler))
|
|
targetBattler ^= BIT_FLANK;
|
|
break;
|
|
case MOVE_TARGET_RANDOM:
|
|
side = BATTLE_OPPOSITE(GetBattlerSide(gBattlerAttacker));
|
|
if (IsAffectedByFollowMe(gBattlerAttacker, side, move))
|
|
targetBattler = gSideTimers[side].followmeTarget;
|
|
else if (gBattleTypeFlags & BATTLE_TYPE_DOUBLE && moveTarget & MOVE_TARGET_RANDOM)
|
|
targetBattler = SetRandomTarget(gBattlerAttacker);
|
|
else
|
|
targetBattler = GetBattlerAtPosition(BATTLE_OPPOSITE(GetBattlerSide(gBattlerAttacker)));
|
|
break;
|
|
case MOVE_TARGET_USER_OR_SELECTED:
|
|
case MOVE_TARGET_USER:
|
|
default:
|
|
targetBattler = gBattlerAttacker;
|
|
break;
|
|
case MOVE_TARGET_ALLY:
|
|
if (IsBattlerAlive(BATTLE_PARTNER(gBattlerAttacker)))
|
|
targetBattler = BATTLE_PARTNER(gBattlerAttacker);
|
|
else
|
|
targetBattler = gBattlerAttacker;
|
|
break;
|
|
}
|
|
|
|
*(gBattleStruct->moveTarget + gBattlerAttacker) = targetBattler;
|
|
|
|
return targetBattler;
|
|
}
|
|
|
|
static bool32 IsBattlerModernFatefulEncounter(u32 battler)
|
|
{
|
|
return TRUE;
|
|
}
|
|
|
|
u8 IsMonDisobedient(void)
|
|
{
|
|
s32 rnd;
|
|
s32 calc;
|
|
u8 obedienceLevel = 0;
|
|
u8 levelReferenced;
|
|
|
|
if (gBattleTypeFlags & (BATTLE_TYPE_LINK | BATTLE_TYPE_RECORDED_LINK))
|
|
return 0;
|
|
if (BattlerHasAi(gBattlerAttacker))
|
|
return 0;
|
|
|
|
if (IsBattlerModernFatefulEncounter(gBattlerAttacker)) // only false if illegal Mew or Deoxys
|
|
{
|
|
if (gBattleTypeFlags & BATTLE_TYPE_INGAME_PARTNER && GetBattlerPosition(gBattlerAttacker) == B_POSITION_PLAYER_RIGHT)
|
|
return 0;
|
|
if (gBattleTypeFlags & BATTLE_TYPE_FRONTIER)
|
|
return 0;
|
|
if (gBattleTypeFlags & BATTLE_TYPE_RECORDED)
|
|
return 0;
|
|
if (B_OBEDIENCE_MECHANICS < GEN_8 && !IsOtherTrainer(gBattleMons[gBattlerAttacker].otId, gBattleMons[gBattlerAttacker].otName))
|
|
return 0;
|
|
if (FlagGet(FLAG_BADGE08_GET)) // Rain Badge, ignore obedience altogether
|
|
return 0;
|
|
|
|
obedienceLevel = 10;
|
|
|
|
if (FlagGet(FLAG_BADGE01_GET)) // Stone Badge
|
|
obedienceLevel = 20;
|
|
if (FlagGet(FLAG_BADGE02_GET)) // Knuckle Badge
|
|
obedienceLevel = 30;
|
|
if (FlagGet(FLAG_BADGE03_GET)) // Dynamo Badge
|
|
obedienceLevel = 40;
|
|
if (FlagGet(FLAG_BADGE04_GET)) // Heat Badge
|
|
obedienceLevel = 50;
|
|
if (FlagGet(FLAG_BADGE05_GET)) // Balance Badge
|
|
obedienceLevel = 60;
|
|
if (FlagGet(FLAG_BADGE06_GET)) // Feather Badge
|
|
obedienceLevel = 70;
|
|
if (FlagGet(FLAG_BADGE07_GET)) // Mind Badge
|
|
obedienceLevel = 80;
|
|
}
|
|
|
|
if (B_OBEDIENCE_MECHANICS >= GEN_8
|
|
&& !IsOtherTrainer(gBattleMons[gBattlerAttacker].otId, gBattleMons[gBattlerAttacker].otName))
|
|
levelReferenced = gBattleMons[gBattlerAttacker].metLevel;
|
|
else
|
|
levelReferenced = gBattleMons[gBattlerAttacker].level;
|
|
|
|
if (levelReferenced <= obedienceLevel)
|
|
return 0;
|
|
rnd = (Random() & 255);
|
|
calc = (levelReferenced + obedienceLevel) * rnd >> 8;
|
|
if (calc < obedienceLevel)
|
|
return 0;
|
|
|
|
// is not obedient
|
|
if (gCurrentMove == MOVE_RAGE)
|
|
gBattleMons[gBattlerAttacker].status2 &= ~STATUS2_RAGE;
|
|
if (gBattleMons[gBattlerAttacker].status1 & STATUS1_SLEEP && (gCurrentMove == MOVE_SNORE || gCurrentMove == MOVE_SLEEP_TALK))
|
|
{
|
|
gBattlescriptCurrInstr = BattleScript_IgnoresWhileAsleep;
|
|
return 1;
|
|
}
|
|
|
|
rnd = (Random() & 255);
|
|
calc = (levelReferenced + obedienceLevel) * rnd >> 8;
|
|
if (calc < obedienceLevel)
|
|
{
|
|
calc = CheckMoveLimitations(gBattlerAttacker, gBitTable[gCurrMovePos], MOVE_LIMITATIONS_ALL);
|
|
if (calc == ALL_MOVES_MASK) // all moves cannot be used
|
|
{
|
|
// Randomly select, then print a disobedient string
|
|
// B_MSG_LOAFING, B_MSG_WONT_OBEY, B_MSG_TURNED_AWAY, or B_MSG_PRETEND_NOT_NOTICE
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = MOD(Random(), NUM_LOAF_STRINGS);
|
|
gBattlescriptCurrInstr = BattleScript_MoveUsedLoafingAround;
|
|
return 1;
|
|
}
|
|
else // use a random move
|
|
{
|
|
do
|
|
{
|
|
gCurrMovePos = gChosenMovePos = MOD(Random(), MAX_MON_MOVES);
|
|
} while (gBitTable[gCurrMovePos] & calc);
|
|
|
|
gCalledMove = gBattleMons[gBattlerAttacker].moves[gCurrMovePos];
|
|
gBattlescriptCurrInstr = BattleScript_IgnoresAndUsesRandomMove;
|
|
gBattlerTarget = GetMoveTarget(gCalledMove, NO_TARGET_OVERRIDE);
|
|
gHitMarker |= HITMARKER_DISOBEDIENT_MOVE;
|
|
return 2;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
obedienceLevel = levelReferenced - obedienceLevel;
|
|
|
|
calc = (Random() & 255);
|
|
if (calc < obedienceLevel && CanSleep(gBattlerAttacker))
|
|
{
|
|
// try putting asleep
|
|
int i;
|
|
for (i = 0; i < gBattlersCount; i++)
|
|
{
|
|
if (gBattleMons[i].status2 & STATUS2_UPROAR)
|
|
break;
|
|
}
|
|
if (i == gBattlersCount)
|
|
{
|
|
gBattlescriptCurrInstr = BattleScript_IgnoresAndFallsAsleep;
|
|
return 1;
|
|
}
|
|
}
|
|
calc -= obedienceLevel;
|
|
if (calc < obedienceLevel)
|
|
{
|
|
gBattleMoveDamage = CalculateMoveDamage(MOVE_NONE, gBattlerAttacker, gBattlerAttacker, TYPE_MYSTERY, 40, FALSE, FALSE, TRUE);
|
|
gBattlerTarget = gBattlerAttacker;
|
|
gBattlescriptCurrInstr = BattleScript_IgnoresAndHitsItself;
|
|
gHitMarker |= HITMARKER_UNABLE_TO_USE_MOVE;
|
|
return 2;
|
|
}
|
|
else
|
|
{
|
|
// Randomly select, then print a disobedient string
|
|
// B_MSG_LOAFING, B_MSG_WONT_OBEY, B_MSG_TURNED_AWAY, or B_MSG_PRETEND_NOT_NOTICE
|
|
gBattleCommunication[MULTISTRING_CHOOSER] = MOD(Random(), NUM_LOAF_STRINGS);
|
|
gBattlescriptCurrInstr = BattleScript_MoveUsedLoafingAround;
|
|
return 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
u32 GetBattlerHoldEffect(u32 battler, bool32 checkNegating)
|
|
{
|
|
if (checkNegating)
|
|
{
|
|
if (gStatuses3[battler] & STATUS3_EMBARGO)
|
|
return HOLD_EFFECT_NONE;
|
|
if (gFieldStatuses & STATUS_FIELD_MAGIC_ROOM)
|
|
return HOLD_EFFECT_NONE;
|
|
if (GetBattlerAbility(battler) == ABILITY_KLUTZ)
|
|
return HOLD_EFFECT_NONE;
|
|
}
|
|
|
|
gPotentialItemEffectBattler = battler;
|
|
|
|
if (gBattleMons[battler].item == ITEM_ENIGMA_BERRY_E_READER)
|
|
return gEnigmaBerries[battler].holdEffect;
|
|
else
|
|
return ItemId_GetHoldEffect(gBattleMons[battler].item);
|
|
}
|
|
|
|
static u32 GetBattlerItemHoldEffectParam(u32 battler, u32 item)
|
|
{
|
|
if (item == ITEM_ENIGMA_BERRY_E_READER)
|
|
return gEnigmaBerries[battler].holdEffectParam;
|
|
else
|
|
return ItemId_GetHoldEffectParam(item);
|
|
}
|
|
|
|
u32 GetBattlerHoldEffectParam(u32 battler)
|
|
{
|
|
if (gBattleMons[battler].item == ITEM_ENIGMA_BERRY_E_READER)
|
|
return gEnigmaBerries[battler].holdEffectParam;
|
|
else
|
|
return ItemId_GetHoldEffectParam(gBattleMons[battler].item);
|
|
}
|
|
|
|
bool32 IsMoveMakingContact(u32 move, u32 battlerAtk)
|
|
{
|
|
u32 atkHoldEffect = GetBattlerHoldEffect(battlerAtk, TRUE);
|
|
|
|
if (!gBattleMoves[move].makesContact)
|
|
{
|
|
if (gBattleMoves[move].effect == EFFECT_SHELL_SIDE_ARM && gBattleStruct->swapDamageCategory)
|
|
return TRUE;
|
|
else
|
|
return FALSE;
|
|
}
|
|
else if ((atkHoldEffect == HOLD_EFFECT_PUNCHING_GLOVE && gBattleMoves[move].punchingMove)
|
|
|| atkHoldEffect == HOLD_EFFECT_PROTECTIVE_PADS
|
|
|| GetBattlerAbility(battlerAtk) == ABILITY_LONG_REACH)
|
|
{
|
|
return FALSE;
|
|
}
|
|
else
|
|
{
|
|
return TRUE;
|
|
}
|
|
}
|
|
|
|
bool32 IsBattlerProtected(u32 battler, u32 move)
|
|
{
|
|
// Decorate bypasses protect and detect, but not crafty shield
|
|
if (move == MOVE_DECORATE)
|
|
{
|
|
if (gSideStatuses[GetBattlerSide(battler)] & SIDE_STATUS_CRAFTY_SHIELD)
|
|
return TRUE;
|
|
else if (gProtectStructs[battler].protected)
|
|
return FALSE;
|
|
}
|
|
|
|
// Z-Moves and Max Moves bypass protection (except Max Guard).
|
|
if ((IsMaxMove(move) || gBattleStruct->zmove.active)
|
|
&& (!gProtectStructs[battler].maxGuarded
|
|
|| gBattleMoves[move].argument == MAX_EFFECT_BYPASS_PROTECT))
|
|
return FALSE;
|
|
|
|
// Max Guard is silly about the moves it blocks, including Teatime.
|
|
if (gProtectStructs[battler].maxGuarded && IsMoveBlockedByMaxGuard(move))
|
|
return TRUE;
|
|
|
|
// Protective Pads doesn't stop Unseen Fist from bypassing Protect effects, so IsMoveMakingContact() isn't used here.
|
|
// This means extra logic is needed to handle Shell Side Arm.
|
|
if (GetBattlerAbility(gBattlerAttacker) == ABILITY_UNSEEN_FIST
|
|
&& (gBattleMoves[move].makesContact || (gBattleMoves[move].effect == EFFECT_SHELL_SIDE_ARM && gBattleStruct->swapDamageCategory))
|
|
&& !gProtectStructs[battler].maxGuarded) // Max Guard cannot be bypassed by Unseen Fist
|
|
return FALSE;
|
|
else if (gBattleMoves[move].ignoresProtect)
|
|
return FALSE;
|
|
else if (gProtectStructs[battler].protected)
|
|
return TRUE;
|
|
else if (gSideStatuses[GetBattlerSide(battler)] & SIDE_STATUS_WIDE_GUARD
|
|
&& GetBattlerMoveTargetType(gBattlerAttacker, move) & (MOVE_TARGET_BOTH | MOVE_TARGET_FOES_AND_ALLY))
|
|
return TRUE;
|
|
else if (gProtectStructs[battler].banefulBunkered)
|
|
return TRUE;
|
|
else if (gProtectStructs[battler].burningBulwarked)
|
|
return TRUE;
|
|
else if ((gProtectStructs[battler].obstructed || gProtectStructs[battler].silkTrapped) && !IS_MOVE_STATUS(move))
|
|
return TRUE;
|
|
else if (gProtectStructs[battler].spikyShielded)
|
|
return TRUE;
|
|
else if (gProtectStructs[battler].kingsShielded && gBattleMoves[move].power != 0)
|
|
return TRUE;
|
|
else if (gProtectStructs[battler].maxGuarded)
|
|
return TRUE;
|
|
else if (gSideStatuses[GetBattlerSide(battler)] & SIDE_STATUS_QUICK_GUARD
|
|
&& GetChosenMovePriority(gBattlerAttacker) > 0)
|
|
return TRUE;
|
|
else if (gSideStatuses[GetBattlerSide(battler)] & SIDE_STATUS_CRAFTY_SHIELD
|
|
&& IS_MOVE_STATUS(move))
|
|
return TRUE;
|
|
else if (gSideStatuses[GetBattlerSide(battler)] & SIDE_STATUS_MAT_BLOCK
|
|
&& !IS_MOVE_STATUS(move))
|
|
return TRUE;
|
|
else
|
|
return FALSE;
|
|
}
|
|
|
|
// Only called directly when calculating damage type effectiveness
|
|
static bool32 IsBattlerGrounded2(u32 battler, bool32 considerInverse)
|
|
{
|
|
u32 holdEffect = GetBattlerHoldEffect(battler, TRUE);
|
|
|
|
if (holdEffect == HOLD_EFFECT_IRON_BALL)
|
|
return TRUE;
|
|
if (gFieldStatuses & STATUS_FIELD_GRAVITY)
|
|
return TRUE;
|
|
if (B_ROOTED_GROUNDING >= GEN_4 && gStatuses3[battler] & STATUS3_ROOTED)
|
|
return TRUE;
|
|
if (gStatuses3[battler] & STATUS3_SMACKED_DOWN)
|
|
return TRUE;
|
|
if (gStatuses3[battler] & STATUS3_TELEKINESIS)
|
|
return FALSE;
|
|
if (gStatuses3[battler] & STATUS3_MAGNET_RISE)
|
|
return FALSE;
|
|
if (holdEffect == HOLD_EFFECT_AIR_BALLOON)
|
|
return FALSE;
|
|
if (GetBattlerAbility(battler) == ABILITY_LEVITATE)
|
|
return FALSE;
|
|
if (IS_BATTLER_OF_TYPE(battler, TYPE_FLYING) && (!considerInverse || !FlagGet(B_FLAG_INVERSE_BATTLE)))
|
|
return FALSE;
|
|
return TRUE;
|
|
}
|
|
|
|
bool32 IsBattlerGrounded(u32 battler)
|
|
{
|
|
return IsBattlerGrounded2(battler, FALSE);
|
|
}
|
|
|
|
bool32 IsBattlerAlive(u32 battler)
|
|
{
|
|
if (gBattleMons[battler].hp == 0)
|
|
return FALSE;
|
|
else if (battler >= gBattlersCount)
|
|
return FALSE;
|
|
else if (gAbsentBattlerFlags & gBitTable[battler])
|
|
return FALSE;
|
|
else
|
|
return TRUE;
|
|
}
|
|
|
|
u32 GetMoveSlot(u16 *moves, u32 move)
|
|
{
|
|
u32 i;
|
|
|
|
for (i = 0; i < MAX_MON_MOVES; i++)
|
|
{
|
|
if (moves[i] == move)
|
|
break;
|
|
}
|
|
return i;
|
|
}
|
|
|
|
u32 GetBattlerWeight(u32 battler)
|
|
{
|
|
u32 i;
|
|
u32 weight = GetSpeciesWeight(gBattleMons[battler].species);
|
|
u32 ability = GetBattlerAbility(battler);
|
|
u32 holdEffect = GetBattlerHoldEffect(battler, TRUE);
|
|
|
|
if (ability == ABILITY_HEAVY_METAL)
|
|
weight *= 2;
|
|
else if (ability == ABILITY_LIGHT_METAL)
|
|
weight /= 2;
|
|
|
|
if (holdEffect == HOLD_EFFECT_FLOAT_STONE)
|
|
weight /= 2;
|
|
|
|
for (i = 0; i < gDisableStructs[battler].autotomizeCount; i++)
|
|
{
|
|
if (weight > 1000)
|
|
{
|
|
weight -= 1000;
|
|
}
|
|
else if (weight <= 1000)
|
|
{
|
|
weight = 1;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (weight == 0)
|
|
weight = 1;
|
|
|
|
return weight;
|
|
}
|
|
|
|
u32 CountBattlerStatIncreases(u32 battler, bool32 countEvasionAcc)
|
|
{
|
|
u32 i;
|
|
u32 count = 0;
|
|
|
|
for (i = 0; i < NUM_BATTLE_STATS; i++)
|
|
{
|
|
if ((i == STAT_ACC || i == STAT_EVASION) && !countEvasionAcc)
|
|
continue;
|
|
if (gBattleMons[battler].statStages[i] > DEFAULT_STAT_STAGE) // Stat is increased.
|
|
count += gBattleMons[battler].statStages[i] - DEFAULT_STAT_STAGE;
|
|
}
|
|
|
|
return count;
|
|
}
|
|
|
|
u32 GetMoveTargetCount(u32 move, u32 battlerAtk, u32 battlerDef)
|
|
{
|
|
switch (GetBattlerMoveTargetType(gBattlerAttacker, move))
|
|
{
|
|
case MOVE_TARGET_BOTH:
|
|
return IsBattlerAlive(battlerDef)
|
|
+ IsBattlerAlive(BATTLE_PARTNER(battlerDef));
|
|
case MOVE_TARGET_FOES_AND_ALLY:
|
|
return IsBattlerAlive(battlerDef)
|
|
+ IsBattlerAlive(BATTLE_PARTNER(battlerDef))
|
|
+ IsBattlerAlive(BATTLE_PARTNER(battlerAtk));
|
|
case MOVE_TARGET_OPPONENTS_FIELD:
|
|
return 1;
|
|
case MOVE_TARGET_DEPENDS:
|
|
case MOVE_TARGET_SELECTED:
|
|
case MOVE_TARGET_RANDOM:
|
|
case MOVE_TARGET_USER_OR_SELECTED:
|
|
return IsBattlerAlive(battlerDef);
|
|
case MOVE_TARGET_USER:
|
|
return IsBattlerAlive(battlerAtk);
|
|
default:
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
static const u8 sFlailHpScaleToPowerTable[] =
|
|
{
|
|
1, 200,
|
|
4, 150,
|
|
9, 100,
|
|
16, 80,
|
|
32, 40,
|
|
48, 20
|
|
};
|
|
|
|
// format: min. weight (hectograms), base power
|
|
static const u16 sWeightToDamageTable[] =
|
|
{
|
|
100, 20,
|
|
250, 40,
|
|
500, 60,
|
|
1000, 80,
|
|
2000, 100,
|
|
0xFFFF, 0xFFFF
|
|
};
|
|
|
|
static const u8 sSpeedDiffPowerTable[] = {40, 60, 80, 120, 150};
|
|
static const u8 sHeatCrashPowerTable[] = {40, 40, 60, 80, 100, 120};
|
|
static const u8 sTrumpCardPowerTable[] = {200, 80, 60, 50, 40};
|
|
|
|
const struct TypePower gNaturalGiftTable[] =
|
|
{
|
|
[ITEM_TO_BERRY(ITEM_CHERI_BERRY)] = {TYPE_FIRE, 80},
|
|
[ITEM_TO_BERRY(ITEM_CHESTO_BERRY)] = {TYPE_WATER, 80},
|
|
[ITEM_TO_BERRY(ITEM_PECHA_BERRY)] = {TYPE_ELECTRIC, 80},
|
|
[ITEM_TO_BERRY(ITEM_RAWST_BERRY)] = {TYPE_GRASS, 80},
|
|
[ITEM_TO_BERRY(ITEM_ASPEAR_BERRY)] = {TYPE_ICE, 80},
|
|
[ITEM_TO_BERRY(ITEM_LEPPA_BERRY)] = {TYPE_FIGHTING, 80},
|
|
[ITEM_TO_BERRY(ITEM_ORAN_BERRY)] = {TYPE_POISON, 80},
|
|
[ITEM_TO_BERRY(ITEM_PERSIM_BERRY)] = {TYPE_GROUND, 80},
|
|
[ITEM_TO_BERRY(ITEM_LUM_BERRY)] = {TYPE_FLYING, 80},
|
|
[ITEM_TO_BERRY(ITEM_SITRUS_BERRY)] = {TYPE_PSYCHIC, 80},
|
|
[ITEM_TO_BERRY(ITEM_FIGY_BERRY)] = {TYPE_BUG, 80},
|
|
[ITEM_TO_BERRY(ITEM_WIKI_BERRY)] = {TYPE_ROCK, 80},
|
|
[ITEM_TO_BERRY(ITEM_MAGO_BERRY)] = {TYPE_GHOST, 80},
|
|
[ITEM_TO_BERRY(ITEM_AGUAV_BERRY)] = {TYPE_DRAGON, 80},
|
|
[ITEM_TO_BERRY(ITEM_IAPAPA_BERRY)] = {TYPE_DARK, 80},
|
|
[ITEM_TO_BERRY(ITEM_RAZZ_BERRY)] = {TYPE_STEEL, 80},
|
|
[ITEM_TO_BERRY(ITEM_OCCA_BERRY)] = {TYPE_FIRE, 80},
|
|
[ITEM_TO_BERRY(ITEM_PASSHO_BERRY)] = {TYPE_WATER, 80},
|
|
[ITEM_TO_BERRY(ITEM_WACAN_BERRY)] = {TYPE_ELECTRIC, 80},
|
|
[ITEM_TO_BERRY(ITEM_RINDO_BERRY)] = {TYPE_GRASS, 80},
|
|
[ITEM_TO_BERRY(ITEM_YACHE_BERRY)] = {TYPE_ICE, 80},
|
|
[ITEM_TO_BERRY(ITEM_CHOPLE_BERRY)] = {TYPE_FIGHTING, 80},
|
|
[ITEM_TO_BERRY(ITEM_KEBIA_BERRY)] = {TYPE_POISON, 80},
|
|
[ITEM_TO_BERRY(ITEM_SHUCA_BERRY)] = {TYPE_GROUND, 80},
|
|
[ITEM_TO_BERRY(ITEM_COBA_BERRY)] = {TYPE_FLYING, 80},
|
|
[ITEM_TO_BERRY(ITEM_PAYAPA_BERRY)] = {TYPE_PSYCHIC, 80},
|
|
[ITEM_TO_BERRY(ITEM_TANGA_BERRY)] = {TYPE_BUG, 80},
|
|
[ITEM_TO_BERRY(ITEM_CHARTI_BERRY)] = {TYPE_ROCK, 80},
|
|
[ITEM_TO_BERRY(ITEM_KASIB_BERRY)] = {TYPE_GHOST, 80},
|
|
[ITEM_TO_BERRY(ITEM_HABAN_BERRY)] = {TYPE_DRAGON, 80},
|
|
[ITEM_TO_BERRY(ITEM_COLBUR_BERRY)] = {TYPE_DARK, 80},
|
|
[ITEM_TO_BERRY(ITEM_BABIRI_BERRY)] = {TYPE_STEEL, 80},
|
|
[ITEM_TO_BERRY(ITEM_CHILAN_BERRY)] = {TYPE_NORMAL, 80},
|
|
[ITEM_TO_BERRY(ITEM_ROSELI_BERRY)] = {TYPE_FAIRY, 80},
|
|
[ITEM_TO_BERRY(ITEM_BLUK_BERRY)] = {TYPE_FIRE, 90},
|
|
[ITEM_TO_BERRY(ITEM_NANAB_BERRY)] = {TYPE_WATER, 90},
|
|
[ITEM_TO_BERRY(ITEM_WEPEAR_BERRY)] = {TYPE_ELECTRIC, 90},
|
|
[ITEM_TO_BERRY(ITEM_PINAP_BERRY)] = {TYPE_GRASS, 90},
|
|
[ITEM_TO_BERRY(ITEM_POMEG_BERRY)] = {TYPE_ICE, 90},
|
|
[ITEM_TO_BERRY(ITEM_KELPSY_BERRY)] = {TYPE_FIGHTING, 90},
|
|
[ITEM_TO_BERRY(ITEM_QUALOT_BERRY)] = {TYPE_POISON, 90},
|
|
[ITEM_TO_BERRY(ITEM_HONDEW_BERRY)] = {TYPE_GROUND, 90},
|
|
[ITEM_TO_BERRY(ITEM_GREPA_BERRY)] = {TYPE_FLYING, 90},
|
|
[ITEM_TO_BERRY(ITEM_TAMATO_BERRY)] = {TYPE_PSYCHIC, 90},
|
|
[ITEM_TO_BERRY(ITEM_CORNN_BERRY)] = {TYPE_BUG, 90},
|
|
[ITEM_TO_BERRY(ITEM_MAGOST_BERRY)] = {TYPE_ROCK, 90},
|
|
[ITEM_TO_BERRY(ITEM_RABUTA_BERRY)] = {TYPE_GHOST, 90},
|
|
[ITEM_TO_BERRY(ITEM_NOMEL_BERRY)] = {TYPE_DRAGON, 90},
|
|
[ITEM_TO_BERRY(ITEM_SPELON_BERRY)] = {TYPE_DARK, 90},
|
|
[ITEM_TO_BERRY(ITEM_PAMTRE_BERRY)] = {TYPE_STEEL, 90},
|
|
[ITEM_TO_BERRY(ITEM_WATMEL_BERRY)] = {TYPE_FIRE, 100},
|
|
[ITEM_TO_BERRY(ITEM_DURIN_BERRY)] = {TYPE_WATER, 100},
|
|
[ITEM_TO_BERRY(ITEM_BELUE_BERRY)] = {TYPE_ELECTRIC, 100},
|
|
[ITEM_TO_BERRY(ITEM_LIECHI_BERRY)] = {TYPE_GRASS, 100},
|
|
[ITEM_TO_BERRY(ITEM_GANLON_BERRY)] = {TYPE_ICE, 100},
|
|
[ITEM_TO_BERRY(ITEM_SALAC_BERRY)] = {TYPE_FIGHTING, 100},
|
|
[ITEM_TO_BERRY(ITEM_PETAYA_BERRY)] = {TYPE_POISON, 100},
|
|
[ITEM_TO_BERRY(ITEM_APICOT_BERRY)] = {TYPE_GROUND, 100},
|
|
[ITEM_TO_BERRY(ITEM_LANSAT_BERRY)] = {TYPE_FLYING, 100},
|
|
[ITEM_TO_BERRY(ITEM_STARF_BERRY)] = {TYPE_PSYCHIC, 100},
|
|
[ITEM_TO_BERRY(ITEM_ENIGMA_BERRY)] = {TYPE_BUG, 100},
|
|
[ITEM_TO_BERRY(ITEM_MICLE_BERRY)] = {TYPE_ROCK, 100},
|
|
[ITEM_TO_BERRY(ITEM_CUSTAP_BERRY)] = {TYPE_GHOST, 100},
|
|
[ITEM_TO_BERRY(ITEM_JABOCA_BERRY)] = {TYPE_DRAGON, 100},
|
|
[ITEM_TO_BERRY(ITEM_ROWAP_BERRY)] = {TYPE_DARK, 100},
|
|
[ITEM_TO_BERRY(ITEM_KEE_BERRY)] = {TYPE_FAIRY, 100},
|
|
[ITEM_TO_BERRY(ITEM_MARANGA_BERRY)] = {TYPE_DARK, 100},
|
|
};
|
|
|
|
u32 CalcRolloutBasePower(u32 battlerAtk, u32 basePower, u32 rolloutTimer)
|
|
{
|
|
u32 i;
|
|
for (i = 1; i < (5 - rolloutTimer); i++)
|
|
basePower *= 2;
|
|
if (gBattleMons[battlerAtk].status2 & STATUS2_DEFENSE_CURL)
|
|
basePower *= 2;
|
|
return basePower;
|
|
}
|
|
|
|
u32 CalcFuryCutterBasePower(u32 basePower, u32 furyCutterCounter)
|
|
{
|
|
u32 i;
|
|
for (i = 1; i < furyCutterCounter; i++)
|
|
basePower *= 2;
|
|
return basePower;
|
|
}
|
|
|
|
static inline u32 CalcMoveBasePower(u32 move, u32 battlerAtk, u32 battlerDef, u32 abilityDef, u32 weather)
|
|
{
|
|
u32 i;
|
|
u32 basePower = gBattleMoves[move].power;
|
|
u32 weight, hpFraction, speed;
|
|
|
|
if (gBattleStruct->zmove.active)
|
|
return GetZMovePower(gBattleStruct->zmove.baseMoves[battlerAtk]);
|
|
|
|
switch (gBattleMoves[move].effect)
|
|
{
|
|
case EFFECT_PLEDGE:
|
|
if (gBattleStruct->pledgeMove)
|
|
basePower = 150;
|
|
break;
|
|
case EFFECT_FLING:
|
|
basePower = GetFlingPowerFromItemId(gBattleMons[battlerAtk].item);
|
|
break;
|
|
case EFFECT_ERUPTION:
|
|
basePower = gBattleMons[battlerAtk].hp * basePower / gBattleMons[battlerAtk].maxHP;
|
|
break;
|
|
case EFFECT_FLAIL:
|
|
hpFraction = GetScaledHPFraction(gBattleMons[battlerAtk].hp, gBattleMons[battlerAtk].maxHP, 48);
|
|
for (i = 0; i < sizeof(sFlailHpScaleToPowerTable); i += 2)
|
|
{
|
|
if (hpFraction <= sFlailHpScaleToPowerTable[i])
|
|
break;
|
|
}
|
|
basePower = sFlailHpScaleToPowerTable[i + 1];
|
|
break;
|
|
case EFFECT_RETURN:
|
|
basePower = 10 * (gBattleMons[battlerAtk].friendship) / 25;
|
|
break;
|
|
case EFFECT_FRUSTRATION:
|
|
basePower = 10 * (MAX_FRIENDSHIP - gBattleMons[battlerAtk].friendship) / 25;
|
|
break;
|
|
case EFFECT_FURY_CUTTER:
|
|
basePower = CalcFuryCutterBasePower(basePower, gDisableStructs[battlerAtk].furyCutterCounter);
|
|
break;
|
|
case EFFECT_ROLLOUT:
|
|
basePower = CalcRolloutBasePower(battlerAtk, basePower, gDisableStructs[battlerAtk].rolloutTimer);
|
|
break;
|
|
case EFFECT_MAGNITUDE:
|
|
basePower = gBattleStruct->magnitudeBasePower;
|
|
break;
|
|
case EFFECT_PRESENT:
|
|
basePower = gBattleStruct->presentBasePower;
|
|
break;
|
|
case EFFECT_TRIPLE_KICK:
|
|
if (gMultiHitCounter == 0) // Calc damage with max BP for move consideration
|
|
basePower *= 6;
|
|
else
|
|
basePower *= (4 - gMultiHitCounter);
|
|
break;
|
|
case EFFECT_SPIT_UP:
|
|
basePower = 100 * gDisableStructs[battlerAtk].stockpileCounter;
|
|
break;
|
|
case EFFECT_REVENGE:
|
|
if ((gProtectStructs[battlerAtk].physicalDmg
|
|
&& gProtectStructs[battlerAtk].physicalBattlerId == battlerDef)
|
|
|| (gProtectStructs[battlerAtk].specialDmg
|
|
&& gProtectStructs[battlerAtk].specialBattlerId == battlerDef))
|
|
basePower *= 2;
|
|
break;
|
|
case EFFECT_WEATHER_BALL:
|
|
if (weather & B_WEATHER_ANY)
|
|
basePower *= 2;
|
|
break;
|
|
case EFFECT_PURSUIT:
|
|
if (gActionsByTurnOrder[GetBattlerTurnOrderNum(battlerDef)] == B_ACTION_SWITCH)
|
|
basePower *= 2;
|
|
break;
|
|
case EFFECT_NATURAL_GIFT:
|
|
basePower = gNaturalGiftTable[ITEM_TO_BERRY(gBattleMons[battlerAtk].item)].power;
|
|
break;
|
|
case EFFECT_DOUBLE_POWER_ON_ARG_STATUS:
|
|
// Comatose targets treated as if asleep
|
|
if ((gBattleMons[battlerDef].status1 | (STATUS1_SLEEP * (abilityDef == ABILITY_COMATOSE))) & gBattleMoves[move].argument)
|
|
basePower *= 2;
|
|
break;
|
|
case EFFECT_WRING_OUT:
|
|
basePower = 120 * gBattleMons[battlerDef].hp / gBattleMons[battlerDef].maxHP;
|
|
break;
|
|
case EFFECT_ASSURANCE:
|
|
if (gProtectStructs[battlerDef].physicalDmg != 0 || gProtectStructs[battlerDef].specialDmg != 0 || gProtectStructs[battlerDef].confusionSelfDmg)
|
|
basePower *= 2;
|
|
break;
|
|
case EFFECT_TRUMP_CARD:
|
|
i = GetMoveSlot(gBattleMons[battlerAtk].moves, move);
|
|
if (i != MAX_MON_MOVES)
|
|
{
|
|
if (gBattleMons[battlerAtk].pp[i] >= ARRAY_COUNT(sTrumpCardPowerTable))
|
|
basePower = sTrumpCardPowerTable[ARRAY_COUNT(sTrumpCardPowerTable) - 1];
|
|
else
|
|
basePower = sTrumpCardPowerTable[gBattleMons[battlerAtk].pp[i]];
|
|
}
|
|
break;
|
|
case EFFECT_ACROBATICS:
|
|
if (gBattleMons[battlerAtk].item == ITEM_NONE
|
|
// Edge case, because removal of items happens after damage calculation.
|
|
|| (gSpecialStatuses[battlerAtk].gemBoost && GetBattlerHoldEffect(battlerAtk, FALSE) == HOLD_EFFECT_GEMS))
|
|
basePower *= 2;
|
|
break;
|
|
case EFFECT_LOW_KICK:
|
|
weight = GetBattlerWeight(battlerDef);
|
|
for (i = 0; sWeightToDamageTable[i] != 0xFFFF; i += 2)
|
|
{
|
|
if (sWeightToDamageTable[i] > weight)
|
|
break;
|
|
}
|
|
if (sWeightToDamageTable[i] != 0xFFFF)
|
|
basePower = sWeightToDamageTable[i + 1];
|
|
else
|
|
basePower = 120;
|
|
break;
|
|
case EFFECT_HEAT_CRASH:
|
|
weight = GetBattlerWeight(battlerAtk) / GetBattlerWeight(battlerDef);
|
|
if (weight >= ARRAY_COUNT(sHeatCrashPowerTable))
|
|
basePower = sHeatCrashPowerTable[ARRAY_COUNT(sHeatCrashPowerTable) - 1];
|
|
else
|
|
basePower = sHeatCrashPowerTable[weight];
|
|
break;
|
|
case EFFECT_PUNISHMENT:
|
|
basePower = 60 + (CountBattlerStatIncreases(battlerDef, FALSE) * 20);
|
|
if (basePower > 200)
|
|
basePower = 200;
|
|
break;
|
|
case EFFECT_STORED_POWER:
|
|
basePower += (CountBattlerStatIncreases(battlerAtk, TRUE) * 20);
|
|
break;
|
|
case EFFECT_ELECTRO_BALL:
|
|
speed = GetBattlerTotalSpeedStat(battlerAtk) / GetBattlerTotalSpeedStat(battlerDef);
|
|
if (speed >= ARRAY_COUNT(sSpeedDiffPowerTable))
|
|
speed = ARRAY_COUNT(sSpeedDiffPowerTable) - 1;
|
|
basePower = sSpeedDiffPowerTable[speed];
|
|
break;
|
|
case EFFECT_GYRO_BALL:
|
|
basePower = ((25 * GetBattlerTotalSpeedStat(battlerDef)) / GetBattlerTotalSpeedStat(battlerAtk)) + 1;
|
|
if (basePower > 150)
|
|
basePower = 150;
|
|
break;
|
|
case EFFECT_ECHOED_VOICE:
|
|
// gBattleStruct->sameMoveTurns incremented in ppreduce
|
|
if (gBattleStruct->sameMoveTurns[battlerAtk] != 0)
|
|
{
|
|
basePower += (basePower * gBattleStruct->sameMoveTurns[battlerAtk]);
|
|
if (basePower > 200)
|
|
basePower = 200;
|
|
}
|
|
break;
|
|
case EFFECT_PAYBACK:
|
|
if (GetBattlerTurnOrderNum(battlerAtk) > GetBattlerTurnOrderNum(battlerDef)
|
|
&& (B_PAYBACK_SWITCH_BOOST < GEN_5 || gDisableStructs[battlerDef].isFirstTurn != 2))
|
|
basePower *= 2;
|
|
break;
|
|
case EFFECT_BOLT_BEAK:
|
|
if (GetBattlerTurnOrderNum(battlerAtk) < GetBattlerTurnOrderNum(battlerDef)
|
|
|| gDisableStructs[battlerDef].isFirstTurn == 2)
|
|
basePower *= 2;
|
|
break;
|
|
case EFFECT_ROUND:
|
|
for (i = 0; i < gBattlersCount; i++)
|
|
{
|
|
if (i != battlerAtk && IsBattlerAlive(i) && gLastMoves[i] == MOVE_ROUND)
|
|
{
|
|
basePower *= 2;
|
|
break;
|
|
}
|
|
}
|
|
break;
|
|
case EFFECT_FUSION_COMBO:
|
|
if (gBattleMoves[gLastUsedMove].effect == EFFECT_FUSION_COMBO && move != gLastUsedMove)
|
|
basePower *= 2;
|
|
break;
|
|
case EFFECT_LASH_OUT:
|
|
if (gProtectStructs[battlerAtk].statFell)
|
|
basePower *= 2;
|
|
break;
|
|
case EFFECT_EXPLOSION:
|
|
if (move == MOVE_MISTY_EXPLOSION && gFieldStatuses & STATUS_FIELD_MISTY_TERRAIN && IsBattlerGrounded(battlerAtk))
|
|
basePower = uq4_12_multiply(basePower, UQ_4_12(1.5));
|
|
break;
|
|
case EFFECT_DYNAMAX_DOUBLE_DMG:
|
|
if (IsDynamaxed(battlerDef))
|
|
basePower *= 2;
|
|
break;
|
|
case EFFECT_HIDDEN_POWER:
|
|
{
|
|
if (B_HIDDEN_POWER_DMG < GEN_6)
|
|
{
|
|
u8 powerBits = ((gBattleMons[battlerAtk].hpIV & 2) >> 1)
|
|
| ((gBattleMons[battlerAtk].attackIV & 2) << 0)
|
|
| ((gBattleMons[battlerAtk].defenseIV & 2) << 1)
|
|
| ((gBattleMons[battlerAtk].speedIV & 2) << 2)
|
|
| ((gBattleMons[battlerAtk].spAttackIV & 2) << 3)
|
|
| ((gBattleMons[battlerAtk].spDefenseIV & 2) << 4);
|
|
|
|
basePower = (40 * powerBits) / 63 + 30;
|
|
}
|
|
break;
|
|
}
|
|
case EFFECT_GRAV_APPLE:
|
|
if (gFieldStatuses & STATUS_FIELD_GRAVITY)
|
|
basePower = uq4_12_multiply(basePower, UQ_4_12(1.5));
|
|
break;
|
|
case EFFECT_TERRAIN_PULSE:
|
|
if ((gFieldStatuses & STATUS_FIELD_TERRAIN_ANY)
|
|
&& IsBattlerGrounded(battlerAtk))
|
|
basePower *= 2;
|
|
break;
|
|
case EFFECT_EXPANDING_FORCE:
|
|
if (IsBattlerTerrainAffected(battlerAtk, STATUS_FIELD_PSYCHIC_TERRAIN))
|
|
basePower = uq4_12_multiply(basePower, UQ_4_12(1.5));
|
|
break;
|
|
case EFFECT_RISING_VOLTAGE:
|
|
if (IsBattlerTerrainAffected(battlerDef, STATUS_FIELD_ELECTRIC_TERRAIN))
|
|
basePower *= 2;
|
|
break;
|
|
case EFFECT_BEAT_UP:
|
|
if (B_BEAT_UP >= GEN_5)
|
|
basePower = CalcBeatUpPower();
|
|
break;
|
|
case EFFECT_PSYBLADE:
|
|
if (IsBattlerTerrainAffected(battlerAtk, STATUS_FIELD_ELECTRIC_TERRAIN))
|
|
basePower = uq4_12_multiply(basePower, UQ_4_12(1.5));
|
|
break;
|
|
case EFFECT_MAX_MOVE:
|
|
basePower = GetMaxMovePower(gBattleMons[battlerAtk].moves[gBattleStruct->chosenMovePositions[battlerAtk]]);
|
|
break;
|
|
case EFFECT_RAGE_FIST:
|
|
basePower += 50 * gBattleStruct->timesGotHit[GetBattlerSide(battlerAtk)][gBattlerPartyIndexes[battlerAtk]];
|
|
basePower = (basePower > 350) ? 350 : basePower;
|
|
break;
|
|
case EFFECT_FICKLE_BEAM:
|
|
if (RandomPercentage(RNG_FICKLE_BEAM, 30))
|
|
basePower *= 2;
|
|
break;
|
|
}
|
|
|
|
// Move-specific base power changes
|
|
switch (move)
|
|
{
|
|
case MOVE_WATER_SHURIKEN:
|
|
if (gBattleMons[battlerAtk].species == SPECIES_GRENINJA_ASH)
|
|
basePower = 20;
|
|
break;
|
|
}
|
|
|
|
if (basePower == 0)
|
|
basePower = 1;
|
|
return basePower;
|
|
}
|
|
|
|
static inline u32 CalcMoveBasePowerAfterModifiers(u32 move, u32 battlerAtk, u32 battlerDef, u32 moveType, bool32 updateFlags, u32 atkAbility, u32 defAbility, u32 holdEffectAtk, u32 weather)
|
|
{
|
|
u32 i;
|
|
u32 holdEffectParamAtk;
|
|
u32 basePower = CalcMoveBasePower(move, battlerAtk, battlerDef, defAbility, weather);
|
|
uq4_12_t holdEffectModifier;
|
|
uq4_12_t modifier = UQ_4_12(1.0);
|
|
u32 atkSide = GetBattlerSide(battlerAtk);
|
|
|
|
// move effect
|
|
switch (gBattleMoves[move].effect)
|
|
{
|
|
case EFFECT_FACADE:
|
|
if (gBattleMons[battlerAtk].status1 & (STATUS1_BURN | STATUS1_PSN_ANY | STATUS1_PARALYSIS | STATUS1_FROSTBITE))
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(2.0));
|
|
break;
|
|
case EFFECT_BRINE:
|
|
if (gBattleMons[battlerDef].hp <= (gBattleMons[battlerDef].maxHP / 2))
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(2.0));
|
|
break;
|
|
case EFFECT_RETALIATE:
|
|
if (gSideTimers[atkSide].retaliateTimer == 1)
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(2.0));
|
|
break;
|
|
case EFFECT_SOLAR_BEAM:
|
|
if (IsBattlerWeatherAffected(battlerAtk, (B_WEATHER_HAIL | B_WEATHER_SANDSTORM | B_WEATHER_RAIN | B_WEATHER_SNOW)))
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(0.5));
|
|
break;
|
|
case EFFECT_STOMPING_TANTRUM:
|
|
if (gBattleStruct->lastMoveFailed & gBitTable[battlerAtk])
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(2.0));
|
|
break;
|
|
case EFFECT_BULLDOZE:
|
|
case EFFECT_MAGNITUDE:
|
|
case EFFECT_EARTHQUAKE:
|
|
if (gFieldStatuses & STATUS_FIELD_GRASSY_TERRAIN && !(gStatuses3[battlerDef] & STATUS3_SEMI_INVULNERABLE))
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(0.5));
|
|
break;
|
|
case EFFECT_KNOCK_OFF:
|
|
if (B_KNOCK_OFF_DMG >= GEN_6
|
|
&& gBattleMons[battlerDef].item != ITEM_NONE
|
|
&& CanBattlerGetOrLoseItem(battlerDef, gBattleMons[battlerDef].item))
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.5));
|
|
break;
|
|
}
|
|
|
|
// various effects
|
|
if (gProtectStructs[battlerAtk].helpingHand)
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.5));
|
|
if (gSpecialStatuses[battlerAtk].gemBoost)
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.0) + sPercentToModifier[gSpecialStatuses[battlerAtk].gemParam]);
|
|
if (gStatuses3[battlerAtk] & STATUS3_CHARGED_UP && moveType == TYPE_ELECTRIC)
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(2.0));
|
|
if (gStatuses3[battlerAtk] & STATUS3_ME_FIRST)
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.5));
|
|
if (IsBattlerTerrainAffected(battlerAtk, STATUS_FIELD_GRASSY_TERRAIN) && moveType == TYPE_GRASS)
|
|
modifier = uq4_12_multiply(modifier, (B_TERRAIN_TYPE_BOOST >= GEN_8 ? UQ_4_12(1.3) : UQ_4_12(1.5)));
|
|
if (IsBattlerTerrainAffected(battlerDef, STATUS_FIELD_MISTY_TERRAIN) && moveType == TYPE_DRAGON)
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(0.5));
|
|
if (IsBattlerTerrainAffected(battlerAtk, STATUS_FIELD_ELECTRIC_TERRAIN) && moveType == TYPE_ELECTRIC)
|
|
modifier = uq4_12_multiply(modifier, (B_TERRAIN_TYPE_BOOST >= GEN_8 ? UQ_4_12(1.3) : UQ_4_12(1.5)));
|
|
if (IsBattlerTerrainAffected(battlerAtk, STATUS_FIELD_PSYCHIC_TERRAIN) && moveType == TYPE_PSYCHIC)
|
|
modifier = uq4_12_multiply(modifier, (B_TERRAIN_TYPE_BOOST >= GEN_8 ? UQ_4_12(1.3) : UQ_4_12(1.5)));
|
|
if (moveType == TYPE_ELECTRIC && ((gFieldStatuses & STATUS_FIELD_MUDSPORT)
|
|
|| AbilityBattleEffects(ABILITYEFFECT_FIELD_SPORT, 0, 0, ABILITYEFFECT_MUD_SPORT, 0)))
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(B_SPORT_DMG_REDUCTION >= GEN_5 ? 0.23 : 0.5));
|
|
if (moveType == TYPE_FIRE && ((gFieldStatuses & STATUS_FIELD_WATERSPORT)
|
|
|| AbilityBattleEffects(ABILITYEFFECT_FIELD_SPORT, 0, 0, ABILITYEFFECT_WATER_SPORT, 0)))
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(B_SPORT_DMG_REDUCTION >= GEN_5 ? 0.23 : 0.5));
|
|
|
|
// attacker's abilities
|
|
switch (atkAbility)
|
|
{
|
|
case ABILITY_TECHNICIAN:
|
|
if (basePower <= 60)
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.5));
|
|
break;
|
|
case ABILITY_FLARE_BOOST:
|
|
if (gBattleMons[battlerAtk].status1 & STATUS1_BURN && IS_MOVE_SPECIAL(move))
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.5));
|
|
break;
|
|
case ABILITY_TOXIC_BOOST:
|
|
if (gBattleMons[battlerAtk].status1 & STATUS1_PSN_ANY && IS_MOVE_PHYSICAL(move))
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.5));
|
|
break;
|
|
case ABILITY_RECKLESS:
|
|
if (IS_MOVE_RECOIL(move))
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.2));
|
|
break;
|
|
case ABILITY_IRON_FIST:
|
|
if (gBattleMoves[move].punchingMove)
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.2));
|
|
break;
|
|
case ABILITY_SHEER_FORCE:
|
|
if (gBattleMoves[move].sheerForceBoost)
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.3));
|
|
break;
|
|
case ABILITY_SAND_FORCE:
|
|
if ((moveType == TYPE_STEEL || moveType == TYPE_ROCK || moveType == TYPE_GROUND)
|
|
&& weather & B_WEATHER_SANDSTORM)
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.3));
|
|
break;
|
|
case ABILITY_RIVALRY:
|
|
if (AreBattlersOfSameGender(battlerAtk, battlerDef))
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.25));
|
|
else if (AreBattlersOfOppositeGender(battlerAtk, battlerDef))
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(0.75));
|
|
break;
|
|
case ABILITY_ANALYTIC:
|
|
if (GetBattlerTurnOrderNum(battlerAtk) == gBattlersCount - 1 && move != MOVE_FUTURE_SIGHT && move != MOVE_DOOM_DESIRE)
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.3));
|
|
break;
|
|
case ABILITY_TOUGH_CLAWS:
|
|
if (IsMoveMakingContact(move, battlerAtk))
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.3));
|
|
break;
|
|
case ABILITY_STRONG_JAW:
|
|
if (gBattleMoves[move].bitingMove)
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.5));
|
|
break;
|
|
case ABILITY_MEGA_LAUNCHER:
|
|
if (gBattleMoves[move].pulseMove)
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.5));
|
|
break;
|
|
case ABILITY_WATER_BUBBLE:
|
|
if (moveType == TYPE_WATER)
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(2.0));
|
|
break;
|
|
case ABILITY_STEELWORKER:
|
|
if (moveType == TYPE_STEEL)
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.5));
|
|
break;
|
|
case ABILITY_PIXILATE:
|
|
if (moveType == TYPE_FAIRY && gBattleStruct->ateBoost[battlerAtk])
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.2));
|
|
break;
|
|
case ABILITY_GALVANIZE:
|
|
if (moveType == TYPE_ELECTRIC && gBattleStruct->ateBoost[battlerAtk])
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.2));
|
|
break;
|
|
case ABILITY_REFRIGERATE:
|
|
if (moveType == TYPE_ICE && gBattleStruct->ateBoost[battlerAtk])
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.2));
|
|
break;
|
|
case ABILITY_AERILATE:
|
|
if (moveType == TYPE_FLYING && gBattleStruct->ateBoost[battlerAtk])
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.2));
|
|
break;
|
|
case ABILITY_NORMALIZE:
|
|
if (moveType == TYPE_NORMAL && gBattleStruct->ateBoost[battlerAtk])
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.2));
|
|
break;
|
|
case ABILITY_PUNK_ROCK:
|
|
if (gBattleMoves[move].soundMove)
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.3));
|
|
break;
|
|
case ABILITY_STEELY_SPIRIT:
|
|
if (moveType == TYPE_STEEL)
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.5));
|
|
break;
|
|
case ABILITY_TRANSISTOR:
|
|
if (moveType == TYPE_ELECTRIC)
|
|
#if B_TRANSISTOR_BOOST >= GEN_9
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(5325 / 4096));
|
|
#else
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.5));
|
|
#endif
|
|
break;
|
|
case ABILITY_DRAGONS_MAW:
|
|
if (moveType == TYPE_DRAGON)
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.5));
|
|
break;
|
|
case ABILITY_GORILLA_TACTICS:
|
|
if (IS_MOVE_PHYSICAL(move))
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.5));
|
|
break;
|
|
case ABILITY_ROCKY_PAYLOAD:
|
|
if (moveType == TYPE_ROCK)
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.5));
|
|
break;
|
|
case ABILITY_PROTOSYNTHESIS:
|
|
{
|
|
u8 atkHighestStat = GetHighestStatId(battlerAtk);
|
|
if (weather & B_WEATHER_SUN
|
|
&& ((IS_MOVE_PHYSICAL(move) && atkHighestStat == STAT_ATK) || (IS_MOVE_SPECIAL(move) && atkHighestStat == STAT_SPATK)))
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.3));
|
|
}
|
|
break;
|
|
case ABILITY_QUARK_DRIVE:
|
|
{
|
|
u8 atkHighestStat = GetHighestStatId(battlerAtk);
|
|
if (gFieldStatuses & STATUS_FIELD_ELECTRIC_TERRAIN
|
|
&& ((IS_MOVE_PHYSICAL(move) && atkHighestStat == STAT_ATK) || (IS_MOVE_SPECIAL(move) && atkHighestStat == STAT_SPATK)))
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.3));
|
|
}
|
|
break;
|
|
case ABILITY_ORICHALCUM_PULSE:
|
|
if (weather & B_WEATHER_SUN)
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.3));
|
|
break;
|
|
case ABILITY_HADRON_ENGINE:
|
|
if (gFieldStatuses & STATUS_FIELD_ELECTRIC_TERRAIN)
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.3));
|
|
break;
|
|
case ABILITY_SHARPNESS:
|
|
if (gBattleMoves[move].slicingMove)
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.5));
|
|
break;
|
|
case ABILITY_SUPREME_OVERLORD:
|
|
modifier = uq4_12_multiply(modifier, gBattleStruct->supremeOverlordModifier[battlerAtk]);
|
|
break;
|
|
}
|
|
|
|
// field abilities
|
|
if ((IsAbilityOnField(ABILITY_DARK_AURA) && moveType == TYPE_DARK)
|
|
|| (IsAbilityOnField(ABILITY_FAIRY_AURA) && moveType == TYPE_FAIRY))
|
|
{
|
|
if (IsAbilityOnField(ABILITY_AURA_BREAK))
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(0.75));
|
|
else
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.33));
|
|
}
|
|
|
|
// attacker partner's abilities
|
|
if (IsBattlerAlive(BATTLE_PARTNER(battlerAtk)))
|
|
{
|
|
switch (GetBattlerAbility(BATTLE_PARTNER(battlerAtk)))
|
|
{
|
|
case ABILITY_BATTERY:
|
|
if (IS_MOVE_SPECIAL(move))
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.3));
|
|
break;
|
|
case ABILITY_POWER_SPOT:
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.3));
|
|
break;
|
|
case ABILITY_STEELY_SPIRIT:
|
|
if (moveType == TYPE_STEEL)
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.5));
|
|
break;
|
|
}
|
|
}
|
|
|
|
// target's abilities
|
|
switch (defAbility)
|
|
{
|
|
case ABILITY_HEATPROOF:
|
|
case ABILITY_WATER_BUBBLE:
|
|
if (moveType == TYPE_FIRE)
|
|
{
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(0.5));
|
|
if (updateFlags)
|
|
RecordAbilityBattle(battlerDef, defAbility);
|
|
}
|
|
break;
|
|
case ABILITY_DRY_SKIN:
|
|
if (moveType == TYPE_FIRE)
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.25));
|
|
break;
|
|
case ABILITY_PROTOSYNTHESIS:
|
|
{
|
|
u8 defHighestStat = GetHighestStatId(battlerDef);
|
|
if (weather & B_WEATHER_SUN
|
|
&& ((IS_MOVE_PHYSICAL(move) && defHighestStat == STAT_DEF) || (IS_MOVE_SPECIAL(move) && defHighestStat == STAT_SPDEF)))
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(0.7));
|
|
}
|
|
break;
|
|
case ABILITY_QUARK_DRIVE:
|
|
{
|
|
u8 defHighestStat = GetHighestStatId(battlerDef);
|
|
if (gFieldStatuses & STATUS_FIELD_ELECTRIC_TERRAIN
|
|
&& ((IS_MOVE_PHYSICAL(move) && defHighestStat == STAT_DEF) || (IS_MOVE_SPECIAL(move) && defHighestStat == STAT_SPDEF)))
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(0.7));
|
|
}
|
|
break;
|
|
}
|
|
|
|
holdEffectParamAtk = GetBattlerHoldEffectParam(battlerAtk);
|
|
if (holdEffectParamAtk > 100)
|
|
holdEffectParamAtk = 100;
|
|
|
|
holdEffectModifier = UQ_4_12(1.0) + sPercentToModifier[holdEffectParamAtk];
|
|
|
|
// attacker's hold effect
|
|
switch (holdEffectAtk)
|
|
{
|
|
case HOLD_EFFECT_MUSCLE_BAND:
|
|
if (IS_MOVE_PHYSICAL(move))
|
|
modifier = uq4_12_multiply(modifier, holdEffectModifier);
|
|
break;
|
|
case HOLD_EFFECT_WISE_GLASSES:
|
|
if (IS_MOVE_SPECIAL(move))
|
|
modifier = uq4_12_multiply(modifier, holdEffectModifier);
|
|
break;
|
|
case HOLD_EFFECT_LUSTROUS_ORB:
|
|
if (GET_BASE_SPECIES_ID(gBattleMons[battlerAtk].species) == SPECIES_PALKIA && (moveType == TYPE_WATER || moveType == TYPE_DRAGON))
|
|
modifier = uq4_12_multiply(modifier, holdEffectModifier);
|
|
break;
|
|
case HOLD_EFFECT_ADAMANT_ORB:
|
|
if (GET_BASE_SPECIES_ID(gBattleMons[battlerAtk].species) == SPECIES_DIALGA && (moveType == TYPE_STEEL || moveType == TYPE_DRAGON))
|
|
modifier = uq4_12_multiply(modifier, holdEffectModifier);
|
|
break;
|
|
case HOLD_EFFECT_GRISEOUS_ORB:
|
|
if (GET_BASE_SPECIES_ID(gBattleMons[battlerAtk].species) == SPECIES_GIRATINA && (moveType == TYPE_GHOST || moveType == TYPE_DRAGON))
|
|
modifier = uq4_12_multiply(modifier, holdEffectModifier);
|
|
break;
|
|
case HOLD_EFFECT_SOUL_DEW:
|
|
if ((gBattleMons[battlerAtk].species == SPECIES_LATIAS || gBattleMons[battlerAtk].species == SPECIES_LATIOS)
|
|
&& ((B_SOUL_DEW_BOOST >= GEN_7 && (moveType == TYPE_PSYCHIC || moveType == TYPE_DRAGON))
|
|
|| (B_SOUL_DEW_BOOST < GEN_7 && !(gBattleTypeFlags & BATTLE_TYPE_FRONTIER) && IS_MOVE_SPECIAL(move))))
|
|
modifier = uq4_12_multiply(modifier, holdEffectModifier);
|
|
break;
|
|
case HOLD_EFFECT_BUG_POWER:
|
|
case HOLD_EFFECT_STEEL_POWER:
|
|
case HOLD_EFFECT_GROUND_POWER:
|
|
case HOLD_EFFECT_ROCK_POWER:
|
|
case HOLD_EFFECT_GRASS_POWER:
|
|
case HOLD_EFFECT_DARK_POWER:
|
|
case HOLD_EFFECT_FIGHTING_POWER:
|
|
case HOLD_EFFECT_ELECTRIC_POWER:
|
|
case HOLD_EFFECT_WATER_POWER:
|
|
case HOLD_EFFECT_FLYING_POWER:
|
|
case HOLD_EFFECT_POISON_POWER:
|
|
case HOLD_EFFECT_ICE_POWER:
|
|
case HOLD_EFFECT_GHOST_POWER:
|
|
case HOLD_EFFECT_PSYCHIC_POWER:
|
|
case HOLD_EFFECT_FIRE_POWER:
|
|
case HOLD_EFFECT_DRAGON_POWER:
|
|
case HOLD_EFFECT_NORMAL_POWER:
|
|
case HOLD_EFFECT_FAIRY_POWER:
|
|
for (i = 0; i < ARRAY_COUNT(sHoldEffectToType); i++)
|
|
{
|
|
if (holdEffectAtk == sHoldEffectToType[i][0])
|
|
{
|
|
if (moveType == sHoldEffectToType[i][1])
|
|
modifier = uq4_12_multiply(modifier, holdEffectModifier);
|
|
break;
|
|
}
|
|
}
|
|
break;
|
|
case HOLD_EFFECT_PLATE:
|
|
if (moveType == ItemId_GetSecondaryId(gBattleMons[battlerAtk].item))
|
|
modifier = uq4_12_multiply(modifier, holdEffectModifier);
|
|
break;
|
|
case HOLD_EFFECT_PUNCHING_GLOVE:
|
|
if (gBattleMoves[move].punchingMove)
|
|
modifier = uq4_12_multiply(modifier, UQ_4_12(1.1));
|
|
break;
|
|
}
|
|
return uq4_12_multiply_by_int_half_down(modifier, basePower);
|
|
}
|
|
|
|
static inline u32 CalcAttackStat(u32 move, u32 battlerAtk, u32 battlerDef, u32 moveType, bool32 isCrit, bool32 updateFlags, u32 atkAbility, u32 defAbility, u32 holdEffectAtk)
|
|
{
|
|
u8 atkStage;
|
|
u32 atkStat;
|
|
uq4_12_t modifier;
|
|
u16 atkBaseSpeciesId;
|
|
|
|
atkBaseSpeciesId = GET_BASE_SPECIES_ID(gBattleMons[battlerAtk].species);
|
|
|
|
if (gBattleMoves[move].effect == EFFECT_FOUL_PLAY)
|
|
{
|
|
if (IS_MOVE_PHYSICAL(move))
|
|
{
|
|
atkStat = gBattleMons[battlerDef].attack;
|
|
atkStage = gBattleMons[battlerDef].statStages[STAT_ATK];
|
|
}
|
|
else
|
|
{
|
|
atkStat = gBattleMons[battlerDef].spAttack;
|
|
atkStage = gBattleMons[battlerDef].statStages[STAT_SPATK];
|
|
}
|
|
}
|
|
else if (gBattleMoves[move].effect == EFFECT_BODY_PRESS)
|
|
{
|
|
atkStat = gBattleMons[battlerAtk].defense;
|
|
atkStage = gBattleMons[battlerAtk].statStages[STAT_DEF];
|
|
}
|
|
else
|
|
{
|
|
if (IS_MOVE_PHYSICAL(move))
|
|
{
|
|
atkStat = gBattleMons[battlerAtk].attack;
|
|
atkStage = gBattleMons[battlerAtk].statStages[STAT_ATK];
|
|
}
|
|
else
|
|
{
|
|
atkStat = gBattleMons[battlerAtk].spAttack;
|
|
atkStage = gBattleMons[battlerAtk].statStages[STAT_SPATK];
|
|
}
|
|
}
|
|
|
|
// critical hits ignore attack stat's stage drops
|
|
if (isCrit && atkStage < DEFAULT_STAT_STAGE)
|
|
atkStage = DEFAULT_STAT_STAGE;
|
|
// pokemon with unaware ignore attack stat changes while taking damage
|
|
if (defAbility == ABILITY_UNAWARE)
|
|
atkStage = DEFAULT_STAT_STAGE;
|
|
|
|
atkStat *= gStatStageRatios[atkStage][0];
|
|
atkStat /= gStatStageRatios[atkStage][1];
|
|
|
|
// apply attack stat modifiers
|
|
modifier = UQ_4_12(1.0);
|
|
|
|
// attacker's abilities
|
|
switch (atkAbility)
|
|
{
|
|
case ABILITY_HUGE_POWER:
|
|
case ABILITY_PURE_POWER:
|
|
if (IS_MOVE_PHYSICAL(move))
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(2.0));
|
|
break;
|
|
case ABILITY_SLOW_START:
|
|
if (gDisableStructs[battlerAtk].slowStartTimer != 0)
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(0.5));
|
|
break;
|
|
case ABILITY_SOLAR_POWER:
|
|
if (IS_MOVE_SPECIAL(move) && IsBattlerWeatherAffected(battlerAtk, B_WEATHER_SUN))
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(1.5));
|
|
break;
|
|
case ABILITY_DEFEATIST:
|
|
if (gBattleMons[battlerAtk].hp <= (gBattleMons[battlerAtk].maxHP / 2))
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(0.5));
|
|
break;
|
|
case ABILITY_FLASH_FIRE:
|
|
if (moveType == TYPE_FIRE && gBattleResources->flags->flags[battlerAtk] & RESOURCE_FLAG_FLASH_FIRE)
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(1.5));
|
|
break;
|
|
case ABILITY_SWARM:
|
|
if (moveType == TYPE_BUG && gBattleMons[battlerAtk].hp <= (gBattleMons[battlerAtk].maxHP / 3))
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(1.5));
|
|
break;
|
|
case ABILITY_TORRENT:
|
|
if (moveType == TYPE_WATER && gBattleMons[battlerAtk].hp <= (gBattleMons[battlerAtk].maxHP / 3))
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(1.5));
|
|
break;
|
|
case ABILITY_BLAZE:
|
|
if (moveType == TYPE_FIRE && gBattleMons[battlerAtk].hp <= (gBattleMons[battlerAtk].maxHP / 3))
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(1.5));
|
|
break;
|
|
case ABILITY_OVERGROW:
|
|
if (moveType == TYPE_GRASS && gBattleMons[battlerAtk].hp <= (gBattleMons[battlerAtk].maxHP / 3))
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(1.5));
|
|
break;
|
|
case ABILITY_PLUS:
|
|
if (IS_MOVE_SPECIAL(move) && IsBattlerAlive(BATTLE_PARTNER(battlerAtk)))
|
|
{
|
|
u32 partnerAbility = GetBattlerAbility(BATTLE_PARTNER(battlerAtk));
|
|
if (partnerAbility == ABILITY_MINUS
|
|
|| (B_PLUS_MINUS_INTERACTION >= GEN_5 && partnerAbility == ABILITY_PLUS))
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(1.5));
|
|
}
|
|
break;
|
|
case ABILITY_MINUS:
|
|
if (IS_MOVE_SPECIAL(move) && IsBattlerAlive(BATTLE_PARTNER(battlerAtk)))
|
|
{
|
|
u32 partnerAbility = GetBattlerAbility(BATTLE_PARTNER(battlerAtk));
|
|
if (partnerAbility == ABILITY_PLUS
|
|
|| (B_PLUS_MINUS_INTERACTION >= GEN_5 && partnerAbility == ABILITY_MINUS))
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(1.5));
|
|
}
|
|
break;
|
|
case ABILITY_FLOWER_GIFT:
|
|
if (gBattleMons[battlerAtk].species == SPECIES_CHERRIM_SUNSHINE && IsBattlerWeatherAffected(battlerAtk, B_WEATHER_SUN) && IS_MOVE_PHYSICAL(move))
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(1.5));
|
|
break;
|
|
case ABILITY_HUSTLE:
|
|
if (IS_MOVE_PHYSICAL(move))
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(1.5));
|
|
break;
|
|
case ABILITY_STAKEOUT:
|
|
if (gDisableStructs[battlerDef].isFirstTurn == 2) // just switched in
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(2.0));
|
|
break;
|
|
case ABILITY_GUTS:
|
|
if (gBattleMons[battlerAtk].status1 & STATUS1_ANY && IS_MOVE_PHYSICAL(move))
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(1.5));
|
|
break;
|
|
}
|
|
|
|
// target's abilities
|
|
switch (defAbility)
|
|
{
|
|
case ABILITY_THICK_FAT:
|
|
if (moveType == TYPE_FIRE || moveType == TYPE_ICE)
|
|
{
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(0.5));
|
|
if (updateFlags)
|
|
RecordAbilityBattle(battlerDef, ABILITY_THICK_FAT);
|
|
}
|
|
break;
|
|
}
|
|
|
|
// ally's abilities
|
|
if (IsBattlerAlive(BATTLE_PARTNER(battlerAtk)))
|
|
{
|
|
switch (GetBattlerAbility(BATTLE_PARTNER(battlerAtk)))
|
|
{
|
|
case ABILITY_FLOWER_GIFT:
|
|
if (gBattleMons[BATTLE_PARTNER(battlerAtk)].species == SPECIES_CHERRIM_SUNSHINE && IsBattlerWeatherAffected(BATTLE_PARTNER(battlerAtk), B_WEATHER_SUN) && IS_MOVE_PHYSICAL(move))
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(1.5));
|
|
break;
|
|
}
|
|
}
|
|
|
|
// field abilities
|
|
if (IsAbilityOnField(ABILITY_VESSEL_OF_RUIN) && atkAbility != ABILITY_VESSEL_OF_RUIN && IS_MOVE_SPECIAL(move))
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(0.75));
|
|
|
|
if (IsAbilityOnField(ABILITY_TABLETS_OF_RUIN) && atkAbility != ABILITY_TABLETS_OF_RUIN && IS_MOVE_PHYSICAL(move))
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(0.75));
|
|
|
|
// attacker's hold effect
|
|
switch (holdEffectAtk)
|
|
{
|
|
case HOLD_EFFECT_THICK_CLUB:
|
|
if ((atkBaseSpeciesId == SPECIES_CUBONE || atkBaseSpeciesId == SPECIES_MAROWAK) && IS_MOVE_PHYSICAL(move))
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(2.0));
|
|
break;
|
|
case HOLD_EFFECT_DEEP_SEA_TOOTH:
|
|
if (gBattleMons[battlerAtk].species == SPECIES_CLAMPERL && IS_MOVE_SPECIAL(move))
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(2.0));
|
|
break;
|
|
case HOLD_EFFECT_LIGHT_BALL:
|
|
if (atkBaseSpeciesId == SPECIES_PIKACHU && (B_LIGHT_BALL_ATTACK_BOOST >= GEN_4 || IS_MOVE_SPECIAL(move)))
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(2.0));
|
|
break;
|
|
case HOLD_EFFECT_CHOICE_BAND:
|
|
if (IS_MOVE_PHYSICAL(move) && !IsDynamaxed(battlerAtk))
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(1.5));
|
|
break;
|
|
case HOLD_EFFECT_CHOICE_SPECS:
|
|
if (IS_MOVE_SPECIAL(move) && !IsDynamaxed(battlerAtk))
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(1.5));
|
|
break;
|
|
}
|
|
|
|
// The offensive stats of a Player's Pokémon are boosted by x1.1 (+10%) if they have the 1st badge and 7th badges.
|
|
// Having the 1st badge boosts physical attack while having the 7th badge boosts special attack.
|
|
if (ShouldGetStatBadgeBoost(FLAG_BADGE01_GET, battlerAtk) && IS_MOVE_PHYSICAL(move))
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(1.1));
|
|
if (ShouldGetStatBadgeBoost(FLAG_BADGE07_GET, battlerAtk) && IS_MOVE_SPECIAL(move))
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(1.1));
|
|
|
|
return uq4_12_multiply_by_int_half_down(modifier, atkStat);
|
|
}
|
|
|
|
static bool32 CanEvolve(u32 species)
|
|
{
|
|
u32 i;
|
|
const struct Evolution *evolutions = GetSpeciesEvolutions(species);
|
|
|
|
if (evolutions != NULL)
|
|
{
|
|
for (i = 0; evolutions[i].method != EVOLUTIONS_END; i++)
|
|
{
|
|
if (evolutions[i].method
|
|
&& SanitizeSpeciesId(evolutions[i].targetSpecies) != SPECIES_NONE)
|
|
return TRUE;
|
|
}
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
static inline u32 CalcDefenseStat(u32 move, u32 battlerAtk, u32 battlerDef, u32 moveType, bool32 isCrit, bool32 updateFlags, u32 atkAbility, u32 defAbility, u32 holdEffectDef, u32 weather)
|
|
{
|
|
bool32 usesDefStat;
|
|
u8 defStage;
|
|
u32 defStat, def, spDef;
|
|
uq4_12_t modifier;
|
|
|
|
if (gFieldStatuses & STATUS_FIELD_WONDER_ROOM) // the defense stats are swapped
|
|
{
|
|
def = gBattleMons[battlerDef].spDefense;
|
|
spDef = gBattleMons[battlerDef].defense;
|
|
}
|
|
else
|
|
{
|
|
def = gBattleMons[battlerDef].defense;
|
|
spDef = gBattleMons[battlerDef].spDefense;
|
|
}
|
|
|
|
if (gBattleMoves[move].effect == EFFECT_PSYSHOCK || IS_MOVE_PHYSICAL(move)) // uses defense stat instead of sp.def
|
|
{
|
|
defStat = def;
|
|
defStage = gBattleMons[battlerDef].statStages[STAT_DEF];
|
|
usesDefStat = TRUE;
|
|
}
|
|
else // is special
|
|
{
|
|
defStat = spDef;
|
|
defStage = gBattleMons[battlerDef].statStages[STAT_SPDEF];
|
|
usesDefStat = FALSE;
|
|
}
|
|
|
|
// Self-destruct / Explosion cut defense in half
|
|
if (B_EXPLOSION_DEFENSE < GEN_5 && gBattleMoves[gCurrentMove].effect == EFFECT_EXPLOSION)
|
|
defStat /= 2;
|
|
|
|
// critical hits ignore positive stat changes
|
|
if (isCrit && defStage > DEFAULT_STAT_STAGE)
|
|
defStage = DEFAULT_STAT_STAGE;
|
|
// pokemon with unaware ignore defense stat changes while dealing damage
|
|
if (atkAbility == ABILITY_UNAWARE)
|
|
defStage = DEFAULT_STAT_STAGE;
|
|
// certain moves also ignore stat changes
|
|
if (gBattleMoves[move].ignoresTargetDefenseEvasionStages)
|
|
defStage = DEFAULT_STAT_STAGE;
|
|
|
|
defStat *= gStatStageRatios[defStage][0];
|
|
defStat /= gStatStageRatios[defStage][1];
|
|
|
|
// apply defense stat modifiers
|
|
modifier = UQ_4_12(1.0);
|
|
|
|
// target's abilities
|
|
switch (defAbility)
|
|
{
|
|
case ABILITY_MARVEL_SCALE:
|
|
if (gBattleMons[battlerDef].status1 & STATUS1_ANY && usesDefStat)
|
|
{
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(1.5));
|
|
if (updateFlags)
|
|
RecordAbilityBattle(battlerDef, ABILITY_MARVEL_SCALE);
|
|
}
|
|
break;
|
|
case ABILITY_FUR_COAT:
|
|
if (usesDefStat)
|
|
{
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(2.0));
|
|
if (updateFlags)
|
|
RecordAbilityBattle(battlerDef, ABILITY_FUR_COAT);
|
|
}
|
|
break;
|
|
case ABILITY_GRASS_PELT:
|
|
if (gFieldStatuses & STATUS_FIELD_GRASSY_TERRAIN && usesDefStat)
|
|
{
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(1.5));
|
|
if (updateFlags)
|
|
RecordAbilityBattle(battlerDef, ABILITY_GRASS_PELT);
|
|
}
|
|
break;
|
|
case ABILITY_FLOWER_GIFT:
|
|
if (gBattleMons[battlerDef].species == SPECIES_CHERRIM_SUNSHINE && IsBattlerWeatherAffected(battlerDef, B_WEATHER_SUN) && !usesDefStat)
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(1.5));
|
|
break;
|
|
case ABILITY_PURIFYING_SALT:
|
|
if (gBattleMoves[move].type == TYPE_GHOST)
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(2.0));
|
|
break;
|
|
}
|
|
|
|
// ally's abilities
|
|
if (IsBattlerAlive(BATTLE_PARTNER(battlerDef)))
|
|
{
|
|
switch (GetBattlerAbility(BATTLE_PARTNER(battlerDef)))
|
|
{
|
|
case ABILITY_FLOWER_GIFT:
|
|
if (gBattleMons[BATTLE_PARTNER(battlerDef)].species == SPECIES_CHERRIM_SUNSHINE && IsBattlerWeatherAffected(BATTLE_PARTNER(battlerDef), B_WEATHER_SUN) && !usesDefStat)
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(1.5));
|
|
break;
|
|
}
|
|
}
|
|
|
|
// field abilities
|
|
if (IsAbilityOnField(ABILITY_SWORD_OF_RUIN) && defAbility != ABILITY_SWORD_OF_RUIN && usesDefStat)
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(0.75));
|
|
|
|
if (IsAbilityOnField(ABILITY_BEADS_OF_RUIN) && defAbility != ABILITY_BEADS_OF_RUIN && !usesDefStat)
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(0.75));
|
|
|
|
// target's hold effects
|
|
switch (holdEffectDef)
|
|
{
|
|
case HOLD_EFFECT_DEEP_SEA_SCALE:
|
|
if (gBattleMons[battlerDef].species == SPECIES_CLAMPERL && !usesDefStat)
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(2.0));
|
|
break;
|
|
case HOLD_EFFECT_METAL_POWDER:
|
|
if (gBattleMons[battlerDef].species == SPECIES_DITTO && usesDefStat && !(gBattleMons[battlerDef].status2 & STATUS2_TRANSFORMED))
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(2.0));
|
|
break;
|
|
case HOLD_EFFECT_EVIOLITE:
|
|
if (CanEvolve(gBattleMons[battlerDef].species))
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(1.5));
|
|
break;
|
|
case HOLD_EFFECT_ASSAULT_VEST:
|
|
if (!usesDefStat)
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(1.5));
|
|
break;
|
|
case HOLD_EFFECT_SOUL_DEW:
|
|
if (B_SOUL_DEW_BOOST < GEN_7
|
|
&& (gBattleMons[battlerDef].species == SPECIES_LATIAS || gBattleMons[battlerDef].species == SPECIES_LATIOS)
|
|
&& !(gBattleTypeFlags & BATTLE_TYPE_FRONTIER)
|
|
&& !usesDefStat)
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(1.5));
|
|
break;
|
|
}
|
|
|
|
// sandstorm sp.def boost for rock types
|
|
if (B_SANDSTORM_SPDEF_BOOST >= GEN_4 && IS_BATTLER_OF_TYPE(battlerDef, TYPE_ROCK) && IsBattlerWeatherAffected(battlerDef, B_WEATHER_SANDSTORM) && !usesDefStat)
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(1.5));
|
|
// snow def boost for ice types
|
|
if (IS_BATTLER_OF_TYPE(battlerDef, TYPE_ICE) && IsBattlerWeatherAffected(battlerDef, B_WEATHER_SNOW) && usesDefStat)
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(1.5));
|
|
|
|
// The defensive stats of a Player's Pokémon are boosted by x1.1 (+10%) if they have the 5th badge and 7th badges.
|
|
// Having the 5th badge boosts physical defense while having the 7th badge boosts special defense.
|
|
if (ShouldGetStatBadgeBoost(FLAG_BADGE05_GET, battlerDef) && IS_MOVE_PHYSICAL(move))
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(1.1));
|
|
if (ShouldGetStatBadgeBoost(FLAG_BADGE07_GET, battlerDef) && IS_MOVE_SPECIAL(move))
|
|
modifier = uq4_12_multiply_half_down(modifier, UQ_4_12(1.1));
|
|
|
|
return uq4_12_multiply_by_int_half_down(modifier, defStat);
|
|
}
|
|
|
|
// base damage formula before adding any modifiers
|
|
static inline s32 CalculateBaseDamage(u32 power, u32 userFinalAttack, u32 level, u32 targetFinalDefense)
|
|
{
|
|
return power * userFinalAttack * (2 * level / 5 + 2) / targetFinalDefense / 50 + 2;
|
|
}
|
|
|
|
static inline uq4_12_t GetTargetDamageModifier(u32 move, u32 battlerAtk, u32 battlerDef)
|
|
{
|
|
if (GetMoveTargetCount(move, battlerAtk, battlerDef) >= 2)
|
|
return B_MULTIPLE_TARGETS_DMG >= GEN_4 ? UQ_4_12(0.75) : UQ_4_12(0.5);
|
|
return UQ_4_12(1.0);
|
|
}
|
|
|
|
static inline uq4_12_t GetParentalBondModifier(u32 battlerAtk)
|
|
{
|
|
if (gSpecialStatuses[battlerAtk].parentalBondState != PARENTAL_BOND_2ND_HIT)
|
|
return UQ_4_12(1.0);
|
|
return B_PARENTAL_BOND_DMG >= GEN_7 ? UQ_4_12(0.25) : UQ_4_12(0.5);
|
|
}
|
|
|
|
static inline uq4_12_t GetSameTypeAttackBonusModifier(u32 battlerAtk, u32 moveType, u32 move, u32 abilityAtk)
|
|
{
|
|
if (gBattleStruct->pledgeMove && IS_BATTLER_OF_TYPE(BATTLE_PARTNER(battlerAtk), moveType))
|
|
return (abilityAtk == ABILITY_ADAPTABILITY) ? UQ_4_12(2.0) : UQ_4_12(1.5);
|
|
else if (!IS_BATTLER_OF_TYPE(battlerAtk, moveType) || move == MOVE_STRUGGLE || move == MOVE_NONE)
|
|
return UQ_4_12(1.0);
|
|
return (abilityAtk == ABILITY_ADAPTABILITY) ? UQ_4_12(2.0) : UQ_4_12(1.5);
|
|
}
|
|
|
|
// Utility Umbrella holders take normal damage from what would be rain- and sun-weakened attacks.
|
|
static uq4_12_t GetWeatherDamageModifier(u32 battlerAtk, u32 move, u32 moveType, u32 holdEffectAtk, u32 holdEffectDef, u32 weather)
|
|
{
|
|
if (weather == B_WEATHER_NONE)
|
|
return UQ_4_12(1.0);
|
|
if (gBattleMoves[move].effect == EFFECT_HYDRO_STEAM && (weather & B_WEATHER_SUN) && holdEffectAtk != HOLD_EFFECT_UTILITY_UMBRELLA)
|
|
return UQ_4_12(1.5);
|
|
if (holdEffectDef == HOLD_EFFECT_UTILITY_UMBRELLA)
|
|
return UQ_4_12(1.0);
|
|
|
|
if (weather & B_WEATHER_RAIN)
|
|
{
|
|
if (moveType != TYPE_FIRE && moveType != TYPE_WATER)
|
|
return UQ_4_12(1.0);
|
|
return (moveType == TYPE_FIRE) ? UQ_4_12(0.5) : UQ_4_12(1.5);
|
|
}
|
|
if (weather & B_WEATHER_SUN)
|
|
{
|
|
if (moveType != TYPE_FIRE && moveType != TYPE_WATER)
|
|
return UQ_4_12(1.0);
|
|
return (moveType == TYPE_WATER) ? UQ_4_12(0.5) : UQ_4_12(1.5);
|
|
}
|
|
return UQ_4_12(1.0);
|
|
}
|
|
|
|
static inline uq4_12_t GetBurnOrFrostBiteModifier(u32 battlerAtk, u32 move, u32 abilityAtk)
|
|
{
|
|
if (gBattleMons[battlerAtk].status1 & STATUS1_BURN
|
|
&& IS_MOVE_PHYSICAL(move)
|
|
&& (B_BURN_FACADE_DMG < GEN_6 || gBattleMoves[move].effect != EFFECT_FACADE)
|
|
&& abilityAtk != ABILITY_GUTS)
|
|
return UQ_4_12(0.5);
|
|
if (gBattleMons[battlerAtk].status1 & STATUS1_FROSTBITE
|
|
&& IS_MOVE_SPECIAL(move)
|
|
&& (B_BURN_FACADE_DMG < GEN_6 || gBattleMoves[move].effect != EFFECT_FACADE)
|
|
&& abilityAtk != ABILITY_GUTS)
|
|
return UQ_4_12(0.5);
|
|
return UQ_4_12(1.0);
|
|
}
|
|
|
|
static inline uq4_12_t GetCriticalModifier(bool32 isCrit)
|
|
{
|
|
if (isCrit)
|
|
return B_CRIT_MULTIPLIER >= GEN_6 ? UQ_4_12(1.5) : UQ_4_12(2.0);
|
|
return UQ_4_12(1.0);
|
|
}
|
|
|
|
static inline uq4_12_t GetGlaiveRushModifier(u32 battlerDef)
|
|
{
|
|
if (gStatuses4[battlerDef] & STATUS4_GLAIVE_RUSH)
|
|
return UQ_4_12(2.0);
|
|
return UQ_4_12(1.0);
|
|
}
|
|
|
|
static inline uq4_12_t GetZMaxMoveAgainstProtectionModifier(u32 battlerDef, u32 move)
|
|
{
|
|
if ((gBattleStruct->zmove.active || IsMaxMove(move)) && IS_BATTLER_PROTECTED(battlerDef))
|
|
return UQ_4_12(0.25);
|
|
return UQ_4_12(1.0);
|
|
}
|
|
|
|
static inline uq4_12_t GetMinimizeModifier(u32 move, u32 battlerDef)
|
|
{
|
|
if (gBattleMoves[move].minimizeDoubleDamage && gStatuses3[battlerDef] & STATUS3_MINIMIZED)
|
|
return UQ_4_12(2.0);
|
|
return UQ_4_12(1.0);
|
|
}
|
|
|
|
static inline uq4_12_t GetUndergroundModifier(u32 move, u32 battlerDef)
|
|
{
|
|
if (gBattleMoves[move].damagesUnderground && gStatuses3[battlerDef] & STATUS3_UNDERGROUND)
|
|
return UQ_4_12(2.0);
|
|
return UQ_4_12(1.0);
|
|
}
|
|
|
|
static inline uq4_12_t GetDiveModifier(u32 move, u32 battlerDef)
|
|
{
|
|
if (gBattleMoves[move].damagesUnderwater && gStatuses3[battlerDef] & STATUS3_UNDERWATER)
|
|
return UQ_4_12(2.0);
|
|
return UQ_4_12(1.0);
|
|
}
|
|
|
|
static inline uq4_12_t GetAirborneModifier(u32 move, u32 battlerDef)
|
|
{
|
|
if (gBattleMoves[move].damagesAirborneDoubleDamage && gStatuses3[battlerDef] & STATUS3_ON_AIR)
|
|
return UQ_4_12(2.0);
|
|
return UQ_4_12(1.0);
|
|
}
|
|
|
|
static inline uq4_12_t GetScreensModifier(u32 move, u32 battlerAtk, u32 battlerDef, bool32 isCrit, u32 abilityAtk)
|
|
{
|
|
u32 sideStatus = gSideStatuses[GetBattlerSide(battlerDef)];
|
|
bool32 lightScreen = (sideStatus & SIDE_STATUS_LIGHTSCREEN) && IS_MOVE_SPECIAL(move);
|
|
bool32 reflect = (sideStatus & SIDE_STATUS_REFLECT) && IS_MOVE_PHYSICAL(move);
|
|
bool32 auroraVeil = sideStatus & SIDE_STATUS_AURORA_VEIL;
|
|
|
|
if (isCrit || abilityAtk == ABILITY_INFILTRATOR || gProtectStructs[battlerAtk].confusionSelfDmg)
|
|
return UQ_4_12(1.0);
|
|
if (reflect || lightScreen || auroraVeil)
|
|
return (gBattleTypeFlags & BATTLE_TYPE_DOUBLE) ? UQ_4_12(0.667) : UQ_4_12(0.5);
|
|
return UQ_4_12(1.0);
|
|
}
|
|
|
|
static inline uq4_12_t GetCollisionCourseElectroDriftModifier(u32 move, uq4_12_t typeEffectivenessModifier)
|
|
{
|
|
if (gBattleMoves[move].effect == EFFECT_COLLISION_COURSE && typeEffectivenessModifier >= UQ_4_12(2.0))
|
|
return UQ_4_12(1.3333);
|
|
return UQ_4_12(1.0);
|
|
}
|
|
|
|
static inline uq4_12_t GetAttackerAbilitiesModifier(u32 battlerAtk, uq4_12_t typeEffectivenessModifier, bool32 isCrit, u32 abilityAtk)
|
|
{
|
|
switch (abilityAtk)
|
|
{
|
|
case ABILITY_NEUROFORCE:
|
|
if (typeEffectivenessModifier >= UQ_4_12(2.0))
|
|
return UQ_4_12(1.25);
|
|
break;
|
|
case ABILITY_SNIPER:
|
|
if (isCrit)
|
|
return UQ_4_12(1.5);
|
|
break;
|
|
case ABILITY_TINTED_LENS:
|
|
if (typeEffectivenessModifier <= UQ_4_12(0.5))
|
|
return UQ_4_12(2.0);
|
|
break;
|
|
}
|
|
return UQ_4_12(1.0);
|
|
}
|
|
|
|
static inline uq4_12_t GetDefenderAbilitiesModifier(u32 move, u32 moveType, u32 battlerAtk, u32 battlerDef, uq4_12_t typeEffectivenessModifier, u32 abilityDef)
|
|
{
|
|
switch (abilityDef)
|
|
{
|
|
case ABILITY_MULTISCALE:
|
|
case ABILITY_SHADOW_SHIELD:
|
|
if (BATTLER_MAX_HP(battlerDef))
|
|
return UQ_4_12(0.5);
|
|
break;
|
|
case ABILITY_FILTER:
|
|
case ABILITY_SOLID_ROCK:
|
|
case ABILITY_PRISM_ARMOR:
|
|
if (typeEffectivenessModifier >= UQ_4_12(2.0))
|
|
return UQ_4_12(0.75);
|
|
break;
|
|
case ABILITY_FLUFFY:
|
|
if (!IsMoveMakingContact(move, battlerAtk) && moveType == TYPE_FIRE)
|
|
return UQ_4_12(2.0);
|
|
if (IsMoveMakingContact(move, battlerAtk) && moveType != TYPE_FIRE)
|
|
return UQ_4_12(0.5);
|
|
break;
|
|
case ABILITY_PUNK_ROCK:
|
|
if (gBattleMoves[move].soundMove)
|
|
return UQ_4_12(0.5);
|
|
break;
|
|
case ABILITY_ICE_SCALES:
|
|
if (IS_MOVE_SPECIAL(move))
|
|
return UQ_4_12(0.5);
|
|
break;
|
|
}
|
|
return UQ_4_12(1.0);
|
|
}
|
|
|
|
static inline uq4_12_t GetDefenderPartnerAbilitiesModifier(u32 battlerPartnerDef)
|
|
{
|
|
if (!IsBattlerAlive(battlerPartnerDef))
|
|
return UQ_4_12(1.0);
|
|
|
|
switch (GetBattlerAbility(battlerPartnerDef))
|
|
{
|
|
case ABILITY_FRIEND_GUARD:
|
|
return UQ_4_12(0.75);
|
|
break;
|
|
}
|
|
return UQ_4_12(1.0);
|
|
}
|
|
|
|
static inline uq4_12_t GetAttackerItemsModifier(u32 battlerAtk, uq4_12_t typeEffectivenessModifier, u32 holdEffectAtk)
|
|
{
|
|
u32 percentBoost;
|
|
switch (holdEffectAtk)
|
|
{
|
|
case HOLD_EFFECT_METRONOME:
|
|
percentBoost = min((gBattleStruct->sameMoveTurns[battlerAtk] * GetBattlerHoldEffectParam(battlerAtk)), 100);
|
|
return uq4_12_add(sPercentToModifier[percentBoost], UQ_4_12(1.0));
|
|
break;
|
|
case HOLD_EFFECT_EXPERT_BELT:
|
|
if (typeEffectivenessModifier >= UQ_4_12(2.0))
|
|
return UQ_4_12(1.2);
|
|
break;
|
|
case HOLD_EFFECT_LIFE_ORB:
|
|
return UQ_4_12(1.3);
|
|
break;
|
|
}
|
|
return UQ_4_12(1.0);
|
|
}
|
|
|
|
static inline uq4_12_t GetDefenderItemsModifier(u32 moveType, u32 battlerDef, uq4_12_t typeEffectivenessModifier, bool32 updateFlags, u32 abilityDef, u32 holdEffectDef)
|
|
{
|
|
u32 holdEffectDefParam = GetBattlerHoldEffectParam(battlerDef);
|
|
u32 itemDef = gBattleMons[battlerDef].item;
|
|
|
|
switch (holdEffectDef)
|
|
{
|
|
case HOLD_EFFECT_RESIST_BERRY:
|
|
if (UnnerveOn(battlerDef, itemDef))
|
|
return UQ_4_12(1.0);
|
|
if (moveType == holdEffectDefParam && (moveType == TYPE_NORMAL || typeEffectivenessModifier >= UQ_4_12(2.0)))
|
|
{
|
|
if (updateFlags)
|
|
gSpecialStatuses[battlerDef].berryReduced = TRUE;
|
|
return (abilityDef == ABILITY_RIPEN) ? UQ_4_12(0.25) : UQ_4_12(0.5);
|
|
}
|
|
break;
|
|
}
|
|
return UQ_4_12(1.0);
|
|
}
|
|
|
|
#define DAMAGE_MULTIPLY_MODIFIER(modifier) do { \
|
|
finalModifier = uq4_12_multiply_half_down(modifier, finalModifier); \
|
|
} while (0)
|
|
|
|
// Calculates the "other" modifier which accounts for held items, abilities,
|
|
// or very specific interactions of moves that are not handled in the basic
|
|
// damage calculation. It is implemented as described by bulbapedia:
|
|
// https://bulbapedia.bulbagarden.net/wiki/Damage#Generation_V_onward
|
|
// Please Note: Fixed Point Multiplication is not associative.
|
|
// The order of operations is relevant.
|
|
static inline uq4_12_t GetOtherModifiers(u32 move, u32 moveType, u32 battlerAtk, u32 battlerDef, bool32 isCrit, uq4_12_t typeEffectivenessModifier, bool32 updateFlags,
|
|
u32 abilityAtk, u32 abilityDef, u32 holdEffectAtk, u32 holdEffectDef)
|
|
{
|
|
uq4_12_t finalModifier = UQ_4_12(1.0);
|
|
u32 battlerDefPartner = BATTLE_PARTNER(battlerDef);
|
|
u32 unmodifiedAttackerSpeed = gBattleMons[battlerAtk].speed;
|
|
u32 unmodifiedDefenderSpeed = gBattleMons[battlerDef].speed;
|
|
//TODO: Behemoth Blade, Behemoth Bash, Dynamax Cannon (Dynamax)
|
|
DAMAGE_MULTIPLY_MODIFIER(GetMinimizeModifier(move, battlerDef));
|
|
DAMAGE_MULTIPLY_MODIFIER(GetUndergroundModifier(move, battlerDef));
|
|
DAMAGE_MULTIPLY_MODIFIER(GetDiveModifier(move, battlerDef));
|
|
DAMAGE_MULTIPLY_MODIFIER(GetAirborneModifier(move, battlerDef));
|
|
DAMAGE_MULTIPLY_MODIFIER(GetScreensModifier(move, battlerAtk, battlerDef, isCrit, abilityAtk));
|
|
DAMAGE_MULTIPLY_MODIFIER(GetCollisionCourseElectroDriftModifier(move, typeEffectivenessModifier));
|
|
|
|
if (unmodifiedAttackerSpeed >= unmodifiedDefenderSpeed)
|
|
{
|
|
DAMAGE_MULTIPLY_MODIFIER(GetAttackerAbilitiesModifier(battlerAtk, typeEffectivenessModifier, isCrit, abilityAtk));
|
|
DAMAGE_MULTIPLY_MODIFIER(GetDefenderAbilitiesModifier(move, moveType, battlerAtk, battlerDef, typeEffectivenessModifier, abilityDef));
|
|
DAMAGE_MULTIPLY_MODIFIER(GetDefenderPartnerAbilitiesModifier(battlerDefPartner));
|
|
DAMAGE_MULTIPLY_MODIFIER(GetAttackerItemsModifier(battlerAtk, typeEffectivenessModifier, holdEffectAtk));
|
|
DAMAGE_MULTIPLY_MODIFIER(GetDefenderItemsModifier(moveType, battlerDef, typeEffectivenessModifier, updateFlags, abilityDef, holdEffectDef));
|
|
}
|
|
else
|
|
{
|
|
DAMAGE_MULTIPLY_MODIFIER(GetDefenderAbilitiesModifier(move, moveType, battlerAtk, battlerDef, typeEffectivenessModifier, abilityDef));
|
|
DAMAGE_MULTIPLY_MODIFIER(GetDefenderPartnerAbilitiesModifier(battlerDefPartner));
|
|
DAMAGE_MULTIPLY_MODIFIER(GetAttackerAbilitiesModifier(battlerAtk, typeEffectivenessModifier, isCrit, abilityAtk));
|
|
DAMAGE_MULTIPLY_MODIFIER(GetDefenderItemsModifier(moveType, battlerDef, typeEffectivenessModifier, updateFlags, abilityDef, holdEffectDef));
|
|
DAMAGE_MULTIPLY_MODIFIER(GetAttackerItemsModifier(battlerAtk, typeEffectivenessModifier, holdEffectAtk));
|
|
}
|
|
return finalModifier;
|
|
}
|
|
|
|
#undef DAMAGE_ACCUMULATE_MULTIPLIER
|
|
|
|
#define DAMAGE_APPLY_MODIFIER(modifier) do { \
|
|
dmg = uq4_12_multiply_by_int_half_down(modifier, dmg); \
|
|
} while (0)
|
|
|
|
static inline s32 DoMoveDamageCalcVars(u32 move, u32 battlerAtk, u32 battlerDef, u32 moveType, s32 fixedBasePower,
|
|
bool32 isCrit, bool32 randomFactor, bool32 updateFlags, uq4_12_t typeEffectivenessModifier, u32 weather,
|
|
u32 holdEffectAtk, u32 holdEffectDef, u32 abilityAtk, u32 abilityDef)
|
|
{
|
|
s32 dmg;
|
|
u32 userFinalAttack;
|
|
u32 targetFinalDefense;
|
|
|
|
if (fixedBasePower)
|
|
gBattleMovePower = fixedBasePower;
|
|
else
|
|
gBattleMovePower = CalcMoveBasePowerAfterModifiers(move, battlerAtk, battlerDef, moveType, updateFlags, abilityAtk, abilityDef, holdEffectAtk, weather);
|
|
|
|
userFinalAttack = CalcAttackStat(move, battlerAtk, battlerDef, moveType, isCrit, updateFlags, abilityAtk, abilityDef, holdEffectAtk);
|
|
targetFinalDefense = CalcDefenseStat(move, battlerAtk, battlerDef, moveType, isCrit, updateFlags, abilityAtk, abilityDef, holdEffectDef, weather);
|
|
|
|
dmg = CalculateBaseDamage(gBattleMovePower, userFinalAttack, gBattleMons[battlerAtk].level, targetFinalDefense);
|
|
DAMAGE_APPLY_MODIFIER(GetTargetDamageModifier(move, battlerAtk, battlerDef));
|
|
DAMAGE_APPLY_MODIFIER(GetParentalBondModifier(battlerAtk));
|
|
DAMAGE_APPLY_MODIFIER(GetWeatherDamageModifier(battlerAtk, move, moveType, holdEffectAtk, holdEffectDef, weather));
|
|
DAMAGE_APPLY_MODIFIER(GetCriticalModifier(isCrit));
|
|
DAMAGE_APPLY_MODIFIER(GetGlaiveRushModifier(battlerDef));
|
|
|
|
if (randomFactor)
|
|
{
|
|
dmg *= 100 - RandomUniform(RNG_DAMAGE_MODIFIER, 0, 15);
|
|
dmg /= 100;
|
|
}
|
|
|
|
DAMAGE_APPLY_MODIFIER(GetSameTypeAttackBonusModifier(battlerAtk, moveType, move, abilityAtk));
|
|
DAMAGE_APPLY_MODIFIER(typeEffectivenessModifier);
|
|
DAMAGE_APPLY_MODIFIER(GetBurnOrFrostBiteModifier(battlerAtk, move, abilityAtk));
|
|
DAMAGE_APPLY_MODIFIER(GetZMaxMoveAgainstProtectionModifier(battlerDef, move));
|
|
DAMAGE_APPLY_MODIFIER(GetOtherModifiers(move, moveType, battlerAtk, battlerDef, isCrit, typeEffectivenessModifier, updateFlags, abilityAtk, abilityDef, holdEffectAtk, holdEffectDef));
|
|
|
|
if (dmg == 0)
|
|
dmg = 1;
|
|
return dmg;
|
|
}
|
|
|
|
static inline s32 DoMoveDamageCalc(u32 move, u32 battlerAtk, u32 battlerDef, u32 moveType, s32 fixedBasePower,
|
|
bool32 isCrit, bool32 randomFactor, bool32 updateFlags, uq4_12_t typeEffectivenessModifier, u32 weather)
|
|
{
|
|
u32 holdEffectAtk, holdEffectDef, abilityAtk, abilityDef;
|
|
|
|
if (typeEffectivenessModifier == UQ_4_12(0.0))
|
|
return 0;
|
|
|
|
holdEffectAtk = GetBattlerHoldEffect(battlerAtk, TRUE);
|
|
holdEffectDef = GetBattlerHoldEffect(battlerDef, TRUE);
|
|
abilityAtk = GetBattlerAbility(battlerAtk);
|
|
abilityDef = GetBattlerAbility(battlerDef);
|
|
|
|
return DoMoveDamageCalcVars(move, battlerAtk, battlerDef, moveType, fixedBasePower, isCrit, randomFactor,
|
|
updateFlags, typeEffectivenessModifier, weather, holdEffectAtk, holdEffectDef, abilityAtk, abilityDef);
|
|
}
|
|
|
|
#undef DAMAGE_APPLY_MODIFIER
|
|
|
|
static u32 GetWeather(void)
|
|
{
|
|
if (gBattleWeather == B_WEATHER_NONE || !WEATHER_HAS_EFFECT)
|
|
return B_WEATHER_NONE;
|
|
else
|
|
return gBattleWeather;
|
|
}
|
|
|
|
s32 CalculateMoveDamage(u32 move, u32 battlerAtk, u32 battlerDef, u32 moveType, s32 fixedBasePower, bool32 isCrit, bool32 randomFactor, bool32 updateFlags)
|
|
{
|
|
return DoMoveDamageCalc(move, battlerAtk, battlerDef, moveType, fixedBasePower, isCrit, randomFactor,
|
|
updateFlags, CalcTypeEffectivenessMultiplier(move, moveType, battlerAtk, battlerDef, GetBattlerAbility(battlerDef), updateFlags),
|
|
GetWeather());
|
|
}
|
|
|
|
// for AI so that typeEffectivenessModifier, weather, abilities and holdEffects are calculated only once
|
|
s32 CalculateMoveDamageVars(u32 move, u32 battlerAtk, u32 battlerDef, u32 moveType, s32 fixedBasePower, uq4_12_t typeEffectivenessModifier,
|
|
u32 weather, bool32 isCrit, u32 holdEffectAtk, u32 holdEffectDef, u32 abilityAtk, u32 abilityDef)
|
|
{
|
|
return DoMoveDamageCalcVars(move, battlerAtk, battlerDef, moveType, fixedBasePower, isCrit, FALSE, FALSE,
|
|
typeEffectivenessModifier, weather, holdEffectAtk, holdEffectDef, abilityAtk, abilityDef);
|
|
}
|
|
|
|
static inline void MulByTypeEffectiveness(uq4_12_t *modifier, u32 move, u32 moveType, u32 battlerDef, u32 defType, u32 battlerAtk, bool32 recordAbilities)
|
|
{
|
|
uq4_12_t mod = GetTypeModifier(moveType, defType);
|
|
u32 abilityAtk = GetBattlerAbility(battlerAtk);
|
|
|
|
if (mod == UQ_4_12(0.0) && GetBattlerHoldEffect(battlerDef, TRUE) == HOLD_EFFECT_RING_TARGET)
|
|
{
|
|
mod = UQ_4_12(1.0);
|
|
if (recordAbilities)
|
|
RecordItemEffectBattle(battlerDef, HOLD_EFFECT_RING_TARGET);
|
|
}
|
|
else if ((moveType == TYPE_FIGHTING || moveType == TYPE_NORMAL) && defType == TYPE_GHOST && gBattleMons[battlerDef].status2 & STATUS2_FORESIGHT && mod == UQ_4_12(0.0))
|
|
{
|
|
mod = UQ_4_12(1.0);
|
|
}
|
|
else if ((moveType == TYPE_FIGHTING || moveType == TYPE_NORMAL) && defType == TYPE_GHOST
|
|
&& (abilityAtk == ABILITY_SCRAPPY || abilityAtk == ABILITY_MINDS_EYE)
|
|
&& mod == UQ_4_12(0.0))
|
|
{
|
|
mod = UQ_4_12(1.0);
|
|
if (recordAbilities)
|
|
RecordAbilityBattle(battlerAtk, abilityAtk);
|
|
}
|
|
|
|
if (moveType == TYPE_PSYCHIC && defType == TYPE_DARK && gStatuses3[battlerDef] & STATUS3_MIRACLE_EYED && mod == UQ_4_12(0.0))
|
|
mod = UQ_4_12(1.0);
|
|
if (gBattleMoves[move].effect == EFFECT_FREEZE_DRY && defType == TYPE_WATER)
|
|
mod = UQ_4_12(2.0);
|
|
if (moveType == TYPE_GROUND && defType == TYPE_FLYING && IsBattlerGrounded(battlerDef) && mod == UQ_4_12(0.0))
|
|
mod = UQ_4_12(1.0);
|
|
if (moveType == TYPE_FIRE && gDisableStructs[battlerDef].tarShot)
|
|
mod = UQ_4_12(2.0);
|
|
|
|
// B_WEATHER_STRONG_WINDS weakens Super Effective moves against Flying-type Pokémon
|
|
if (gBattleWeather & B_WEATHER_STRONG_WINDS && WEATHER_HAS_EFFECT)
|
|
{
|
|
if (defType == TYPE_FLYING && mod >= UQ_4_12(2.0))
|
|
mod = UQ_4_12(1.0);
|
|
}
|
|
|
|
*modifier = uq4_12_multiply(*modifier, mod);
|
|
}
|
|
|
|
static inline void TryNoticeIllusionInTypeEffectiveness(u32 move, u32 moveType, u32 battlerAtk, u32 battlerDef, uq4_12_t resultingModifier, u32 illusionSpecies)
|
|
{
|
|
// Check if the type effectiveness would've been different if the pokemon really had the types as the disguise.
|
|
uq4_12_t presumedModifier = UQ_4_12(1.0);
|
|
MulByTypeEffectiveness(&presumedModifier, move, moveType, battlerDef, gSpeciesInfo[illusionSpecies].types[0], battlerAtk, FALSE);
|
|
if (gSpeciesInfo[illusionSpecies].types[1] != gSpeciesInfo[illusionSpecies].types[0])
|
|
MulByTypeEffectiveness(&presumedModifier, move, moveType, battlerDef, gSpeciesInfo[illusionSpecies].types[1], battlerAtk, FALSE);
|
|
|
|
if (presumedModifier != resultingModifier)
|
|
RecordAbilityBattle(battlerDef, ABILITY_ILLUSION);
|
|
}
|
|
|
|
static void UpdateMoveResultFlags(uq4_12_t modifier)
|
|
{
|
|
if (modifier == UQ_4_12(0.0))
|
|
{
|
|
gMoveResultFlags |= MOVE_RESULT_DOESNT_AFFECT_FOE;
|
|
gMoveResultFlags &= ~(MOVE_RESULT_NOT_VERY_EFFECTIVE | MOVE_RESULT_SUPER_EFFECTIVE);
|
|
}
|
|
else if (modifier == UQ_4_12(1.0))
|
|
{
|
|
gMoveResultFlags &= ~(MOVE_RESULT_NOT_VERY_EFFECTIVE | MOVE_RESULT_SUPER_EFFECTIVE | MOVE_RESULT_DOESNT_AFFECT_FOE);
|
|
}
|
|
else if (modifier > UQ_4_12(1.0))
|
|
{
|
|
gMoveResultFlags |= MOVE_RESULT_SUPER_EFFECTIVE;
|
|
gMoveResultFlags &= ~(MOVE_RESULT_NOT_VERY_EFFECTIVE | MOVE_RESULT_DOESNT_AFFECT_FOE);
|
|
}
|
|
else //if (modifier < UQ_4_12(1.0))
|
|
{
|
|
gMoveResultFlags |= MOVE_RESULT_NOT_VERY_EFFECTIVE;
|
|
gMoveResultFlags &= ~(MOVE_RESULT_SUPER_EFFECTIVE | MOVE_RESULT_DOESNT_AFFECT_FOE);
|
|
}
|
|
}
|
|
|
|
static inline uq4_12_t CalcTypeEffectivenessMultiplierInternal(u32 move, u32 moveType, u32 battlerAtk, u32 battlerDef, bool32 recordAbilities, uq4_12_t modifier, u32 defAbility)
|
|
{
|
|
u32 illusionSpecies;
|
|
|
|
MulByTypeEffectiveness(&modifier, move, moveType, battlerDef, GetBattlerType(battlerDef, 0), battlerAtk, recordAbilities);
|
|
if (GetBattlerType(battlerDef, 1) != GetBattlerType(battlerDef, 0))
|
|
MulByTypeEffectiveness(&modifier, move, moveType, battlerDef, GetBattlerType(battlerDef, 1), battlerAtk, recordAbilities);
|
|
if (GetBattlerType(battlerDef, 2) != TYPE_MYSTERY && GetBattlerType(battlerDef, 2) != GetBattlerType(battlerDef, 1)
|
|
&& GetBattlerType(battlerDef, 2) != GetBattlerType(battlerDef, 0))
|
|
MulByTypeEffectiveness(&modifier, move, moveType, battlerDef, GetBattlerType(battlerDef, 2), battlerAtk, recordAbilities);
|
|
|
|
if (recordAbilities && (illusionSpecies = GetIllusionMonSpecies(battlerDef)))
|
|
TryNoticeIllusionInTypeEffectiveness(move, moveType, battlerAtk, battlerDef, modifier, illusionSpecies);
|
|
|
|
if (gBattleMoves[move].category == BATTLE_CATEGORY_STATUS && move != MOVE_THUNDER_WAVE)
|
|
{
|
|
modifier = UQ_4_12(1.0);
|
|
if (B_GLARE_GHOST < GEN_4 && move == MOVE_GLARE && IS_BATTLER_OF_TYPE(battlerDef, TYPE_GHOST))
|
|
modifier = UQ_4_12(0.0);
|
|
}
|
|
else if (moveType == TYPE_GROUND && !IsBattlerGrounded2(battlerDef, TRUE) && !(gBattleMoves[move].ignoreTypeIfFlyingAndUngrounded))
|
|
{
|
|
modifier = UQ_4_12(0.0);
|
|
if (recordAbilities && defAbility == ABILITY_LEVITATE)
|
|
{
|
|
gLastUsedAbility = ABILITY_LEVITATE;
|
|
gMoveResultFlags |= (MOVE_RESULT_MISSED | MOVE_RESULT_DOESNT_AFFECT_FOE);
|
|
gLastLandedMoves[battlerDef] = 0;
|
|
gBattleCommunication[MISS_TYPE] = B_MSG_GROUND_MISS;
|
|
RecordAbilityBattle(battlerDef, ABILITY_LEVITATE);
|
|
}
|
|
}
|
|
else if (B_SHEER_COLD_IMMUNITY >= GEN_7 && move == MOVE_SHEER_COLD && IS_BATTLER_OF_TYPE(battlerDef, TYPE_ICE))
|
|
{
|
|
modifier = UQ_4_12(0.0);
|
|
}
|
|
|
|
// Thousand Arrows ignores type modifiers for flying mons
|
|
if (!IsBattlerGrounded(battlerDef) && (gBattleMoves[move].ignoreTypeIfFlyingAndUngrounded)
|
|
&& (gBattleMons[battlerDef].type1 == TYPE_FLYING || gBattleMons[battlerDef].type2 == TYPE_FLYING || gBattleMons[battlerDef].type3 == TYPE_FLYING))
|
|
{
|
|
modifier = UQ_4_12(1.0);
|
|
}
|
|
|
|
if (((defAbility == ABILITY_WONDER_GUARD && modifier <= UQ_4_12(1.0))
|
|
|| (defAbility == ABILITY_TELEPATHY && battlerDef == BATTLE_PARTNER(battlerAtk)))
|
|
&& gBattleMoves[move].power)
|
|
{
|
|
modifier = UQ_4_12(0.0);
|
|
if (recordAbilities)
|
|
{
|
|
gLastUsedAbility = gBattleMons[battlerDef].ability;
|
|
gMoveResultFlags |= MOVE_RESULT_MISSED;
|
|
gLastLandedMoves[battlerDef] = 0;
|
|
gBattleCommunication[MISS_TYPE] = B_MSG_AVOIDED_DMG;
|
|
RecordAbilityBattle(battlerDef, gBattleMons[battlerDef].ability);
|
|
}
|
|
}
|
|
|
|
// Signal for the trainer slide-in system.
|
|
if (GetBattlerSide(battlerDef) != B_SIDE_PLAYER && modifier && gBattleStruct->trainerSlideFirstSTABMoveMsgState != 2)
|
|
gBattleStruct->trainerSlideFirstSTABMoveMsgState = 1;
|
|
|
|
return modifier;
|
|
}
|
|
|
|
uq4_12_t CalcTypeEffectivenessMultiplier(u32 move, u32 moveType, u32 battlerAtk, u32 battlerDef, u32 defAbility, bool32 recordAbilities)
|
|
{
|
|
uq4_12_t modifier = UQ_4_12(1.0);
|
|
|
|
if (move != MOVE_STRUGGLE && moveType != TYPE_MYSTERY)
|
|
{
|
|
modifier = CalcTypeEffectivenessMultiplierInternal(move, moveType, battlerAtk, battlerDef, recordAbilities, modifier, defAbility);
|
|
if (gBattleMoves[move].effect == EFFECT_TWO_TYPED_MOVE)
|
|
modifier = CalcTypeEffectivenessMultiplierInternal(move, gBattleMoves[move].argument, battlerAtk, battlerDef, recordAbilities, modifier, defAbility);
|
|
}
|
|
|
|
if (recordAbilities)
|
|
UpdateMoveResultFlags(modifier);
|
|
return modifier;
|
|
}
|
|
|
|
uq4_12_t CalcPartyMonTypeEffectivenessMultiplier(u16 move, u16 speciesDef, u16 abilityDef)
|
|
{
|
|
uq4_12_t modifier = UQ_4_12(1.0);
|
|
u8 moveType = gBattleMoves[move].type;
|
|
|
|
if (move != MOVE_STRUGGLE && moveType != TYPE_MYSTERY)
|
|
{
|
|
MulByTypeEffectiveness(&modifier, move, moveType, 0, gSpeciesInfo[speciesDef].types[0], 0, FALSE);
|
|
if (gSpeciesInfo[speciesDef].types[1] != gSpeciesInfo[speciesDef].types[0])
|
|
MulByTypeEffectiveness(&modifier, move, moveType, 0, gSpeciesInfo[speciesDef].types[1], 0, FALSE);
|
|
|
|
if (moveType == TYPE_GROUND && abilityDef == ABILITY_LEVITATE && !(gFieldStatuses & STATUS_FIELD_GRAVITY))
|
|
modifier = UQ_4_12(0.0);
|
|
if (abilityDef == ABILITY_WONDER_GUARD && modifier <= UQ_4_12(1.0) && gBattleMoves[move].power)
|
|
modifier = UQ_4_12(0.0);
|
|
}
|
|
|
|
UpdateMoveResultFlags(modifier);
|
|
return modifier;
|
|
}
|
|
|
|
static uq4_12_t GetInverseTypeMultiplier(uq4_12_t multiplier)
|
|
{
|
|
switch (multiplier)
|
|
{
|
|
case UQ_4_12(0.0):
|
|
case UQ_4_12(0.5):
|
|
return UQ_4_12(2.0);
|
|
case UQ_4_12(2.0):
|
|
return UQ_4_12(0.5);
|
|
case UQ_4_12(1.0):
|
|
default:
|
|
return UQ_4_12(1.0);
|
|
}
|
|
}
|
|
|
|
uq4_12_t GetTypeEffectiveness(struct Pokemon *mon, u8 moveType)
|
|
{
|
|
uq4_12_t modifier = UQ_4_12(1.0);
|
|
u16 abilityDef = GetMonAbility(mon);
|
|
u16 speciesDef = GetMonData(mon, MON_DATA_SPECIES);
|
|
u8 type1 = gSpeciesInfo[speciesDef].types[0];
|
|
u8 type2 = gSpeciesInfo[speciesDef].types[1];
|
|
|
|
if (moveType != TYPE_MYSTERY)
|
|
{
|
|
MulByTypeEffectiveness(&modifier, MOVE_POUND, moveType, 0, type1, 0, FALSE);
|
|
if (type2 != type1)
|
|
MulByTypeEffectiveness(&modifier, MOVE_POUND, moveType, 0, type2, 0, FALSE);
|
|
|
|
if (moveType == TYPE_GROUND && abilityDef == ABILITY_LEVITATE)
|
|
modifier = UQ_4_12(0.0);
|
|
if (abilityDef == ABILITY_WONDER_GUARD && modifier <= UQ_4_12(1.0))
|
|
modifier = UQ_4_12(0.0);
|
|
}
|
|
|
|
return modifier;
|
|
}
|
|
|
|
uq4_12_t GetTypeModifier(u32 atkType, u32 defType)
|
|
{
|
|
if (B_FLAG_INVERSE_BATTLE != 0 && FlagGet(B_FLAG_INVERSE_BATTLE))
|
|
return GetInverseTypeMultiplier(sTypeEffectivenessTable[atkType][defType]);
|
|
return sTypeEffectivenessTable[atkType][defType];
|
|
}
|
|
|
|
s32 GetStealthHazardDamageByTypesAndHP(u8 hazardType, u8 type1, u8 type2, u32 maxHp)
|
|
{
|
|
s32 dmg = 0;
|
|
uq4_12_t modifier = UQ_4_12(1.0);
|
|
|
|
modifier = uq4_12_multiply(modifier, GetTypeModifier(hazardType, type1));
|
|
if (type2 != type1)
|
|
modifier = uq4_12_multiply(modifier, GetTypeModifier(hazardType, type2));
|
|
|
|
switch (modifier)
|
|
{
|
|
case UQ_4_12(0.0):
|
|
dmg = 0;
|
|
break;
|
|
case UQ_4_12(0.25):
|
|
dmg = maxHp / 32;
|
|
if (dmg == 0)
|
|
dmg = 1;
|
|
break;
|
|
case UQ_4_12(0.5):
|
|
dmg = maxHp / 16;
|
|
if (dmg == 0)
|
|
dmg = 1;
|
|
break;
|
|
case UQ_4_12(1.0):
|
|
dmg = maxHp / 8;
|
|
if (dmg == 0)
|
|
dmg = 1;
|
|
break;
|
|
case UQ_4_12(2.0):
|
|
dmg = maxHp / 4;
|
|
if (dmg == 0)
|
|
dmg = 1;
|
|
break;
|
|
case UQ_4_12(4.0):
|
|
dmg = maxHp / 2;
|
|
if (dmg == 0)
|
|
dmg = 1;
|
|
break;
|
|
}
|
|
|
|
return dmg;
|
|
}
|
|
|
|
s32 GetStealthHazardDamage(u8 hazardType, u32 battler)
|
|
{
|
|
u8 type1 = gBattleMons[battler].type1;
|
|
u8 type2 = gBattleMons[battler].type2;
|
|
u32 maxHp = gBattleMons[battler].maxHP;
|
|
|
|
return GetStealthHazardDamageByTypesAndHP(hazardType, type1, type2, maxHp);
|
|
}
|
|
|
|
bool32 IsPartnerMonFromSameTrainer(u32 battler)
|
|
{
|
|
if (GetBattlerSide(battler) == B_SIDE_OPPONENT && gBattleTypeFlags & BATTLE_TYPE_TWO_OPPONENTS)
|
|
return FALSE;
|
|
else if (GetBattlerSide(battler) == B_SIDE_PLAYER && gBattleTypeFlags & BATTLE_TYPE_INGAME_PARTNER)
|
|
return FALSE;
|
|
else if (gBattleTypeFlags & BATTLE_TYPE_MULTI)
|
|
return FALSE;
|
|
else
|
|
return TRUE;
|
|
}
|
|
|
|
bool32 DoesSpeciesUseHoldItemToChangeForm(u16 species, u16 heldItemId)
|
|
{
|
|
u32 i;
|
|
const struct FormChange *formChanges = GetSpeciesFormChanges(species);
|
|
|
|
if (formChanges != NULL)
|
|
{
|
|
for (i = 0; formChanges[i].method != FORM_CHANGE_TERMINATOR; i++)
|
|
{
|
|
switch (formChanges[i].method)
|
|
{
|
|
case FORM_CHANGE_BATTLE_MEGA_EVOLUTION_ITEM:
|
|
case FORM_CHANGE_BATTLE_PRIMAL_REVERSION:
|
|
case FORM_CHANGE_BATTLE_ULTRA_BURST:
|
|
case FORM_CHANGE_ITEM_HOLD:
|
|
if (formChanges[i].param1 == heldItemId)
|
|
return TRUE;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
bool32 CanMegaEvolve(u32 battler)
|
|
{
|
|
u32 itemId, holdEffect;
|
|
struct Pokemon *mon;
|
|
u32 battlerPosition = GetBattlerPosition(battler);
|
|
u8 partnerPosition = GetBattlerPosition(BATTLE_PARTNER(battler));
|
|
struct MegaEvolutionData *mega = &(((struct ChooseMoveStruct *)(&gBattleResources->bufferA[battler][4]))->mega);
|
|
|
|
// Check if Player has a Mega Ring
|
|
if ((GetBattlerPosition(battler) == B_POSITION_PLAYER_LEFT || (!(gBattleTypeFlags & BATTLE_TYPE_MULTI) && GetBattlerPosition(battler) == B_POSITION_PLAYER_RIGHT))
|
|
&& !CheckBagHasItem(ITEM_MEGA_RING, 1))
|
|
return FALSE;
|
|
|
|
// Check if trainer already mega evolved a pokemon.
|
|
if (mega->alreadyEvolved[battlerPosition])
|
|
return FALSE;
|
|
|
|
// Cannot use z move and mega evolve on same turn
|
|
if (gBattleStruct->zmove.toBeUsed[battler])
|
|
return FALSE;
|
|
|
|
if (gBattleTypeFlags & BATTLE_TYPE_DOUBLE
|
|
&& IsPartnerMonFromSameTrainer(battler)
|
|
&& (mega->alreadyEvolved[partnerPosition] || (mega->toEvolve & gBitTable[BATTLE_PARTNER(battler)])))
|
|
return FALSE;
|
|
|
|
// Check if mon is currently held by Sky Drop
|
|
if (gStatuses3[battler] & STATUS3_SKY_DROPPED)
|
|
return FALSE;
|
|
|
|
// Gets mon data.
|
|
if (GetBattlerSide(battler) == B_SIDE_OPPONENT)
|
|
mon = &gEnemyParty[gBattlerPartyIndexes[battler]];
|
|
else
|
|
mon = &gPlayerParty[gBattlerPartyIndexes[battler]];
|
|
|
|
itemId = GetMonData(mon, MON_DATA_HELD_ITEM);
|
|
|
|
if (itemId == ITEM_ENIGMA_BERRY_E_READER)
|
|
holdEffect = gEnigmaBerries[battler].holdEffect;
|
|
else
|
|
holdEffect = ItemId_GetHoldEffect(itemId);
|
|
|
|
// Check if there is an entry in the evolution table for regular Mega Evolution.
|
|
if (GetBattleFormChangeTargetSpecies(battler, FORM_CHANGE_BATTLE_MEGA_EVOLUTION_ITEM) != SPECIES_NONE)
|
|
{
|
|
// Can Mega Evolve via Mega Stone.
|
|
if (holdEffect == HOLD_EFFECT_MEGA_STONE)
|
|
return TRUE;
|
|
}
|
|
|
|
// Check if there is an entry in the evolution table for Wish Mega Evolution.
|
|
if (GetBattleFormChangeTargetSpecies(battler, FORM_CHANGE_BATTLE_MEGA_EVOLUTION_MOVE) != SPECIES_NONE)
|
|
{
|
|
// Can't Wish Mega Evolve if holding a Z Crystal.
|
|
if (holdEffect != HOLD_EFFECT_Z_CRYSTAL)
|
|
return TRUE;
|
|
}
|
|
|
|
// No checks passed, the mon CAN'T mega evolve.
|
|
return FALSE;
|
|
}
|
|
|
|
bool32 CanUltraBurst(u32 battler)
|
|
{
|
|
u32 itemId, holdEffect;
|
|
struct Pokemon *mon;
|
|
u32 battlerPosition = GetBattlerPosition(battler);
|
|
u8 partnerPosition = GetBattlerPosition(BATTLE_PARTNER(battler));
|
|
|
|
// Check if Player has a Z Ring
|
|
if ((GetBattlerPosition(battler) == B_POSITION_PLAYER_LEFT || (!(gBattleTypeFlags & BATTLE_TYPE_MULTI) && GetBattlerPosition(battler) == B_POSITION_PLAYER_RIGHT))
|
|
&& !CheckBagHasItem(ITEM_Z_POWER_RING, 1))
|
|
return FALSE;
|
|
|
|
// Check if trainer already ultra bursted a pokemon.
|
|
if (gBattleStruct->burst.alreadyBursted[battlerPosition])
|
|
return FALSE;
|
|
|
|
// Cannot use z move and ultra burst on same turn
|
|
if (gBattleStruct->zmove.toBeUsed[battler])
|
|
return FALSE;
|
|
|
|
if (gBattleTypeFlags & BATTLE_TYPE_DOUBLE
|
|
&& IsPartnerMonFromSameTrainer(battler)
|
|
&& (gBattleStruct->burst.alreadyBursted[partnerPosition] || (gBattleStruct->burst.toBurst & gBitTable[BATTLE_PARTNER(battler)])))
|
|
return FALSE;
|
|
|
|
// Check if mon is currently held by Sky Drop
|
|
if (gStatuses3[battler] & STATUS3_SKY_DROPPED)
|
|
return FALSE;
|
|
|
|
// Gets mon data.
|
|
if (GetBattlerSide(battler) == B_SIDE_OPPONENT)
|
|
mon = &gEnemyParty[gBattlerPartyIndexes[battler]];
|
|
else
|
|
mon = &gPlayerParty[gBattlerPartyIndexes[battler]];
|
|
|
|
itemId = GetMonData(mon, MON_DATA_HELD_ITEM);
|
|
|
|
// Check if there is an entry in the evolution table for Ultra Burst.
|
|
if (GetBattleFormChangeTargetSpecies(battler, FORM_CHANGE_BATTLE_ULTRA_BURST) != SPECIES_NONE)
|
|
{
|
|
if (itemId == ITEM_ENIGMA_BERRY_E_READER)
|
|
holdEffect = gEnigmaBerries[battler].holdEffect;
|
|
else
|
|
holdEffect = ItemId_GetHoldEffect(itemId);
|
|
|
|
// Can Ultra Burst via Z Crystal.
|
|
if (holdEffect == HOLD_EFFECT_Z_CRYSTAL)
|
|
return TRUE;
|
|
}
|
|
|
|
// No checks passed, the mon CAN'T ultra burst.
|
|
return FALSE;
|
|
}
|
|
|
|
bool32 IsBattlerMegaEvolved(u32 battler)
|
|
{
|
|
// While Transform does copy stats and visuals, it shouldn't be counted as true Mega Evolution.
|
|
if (gBattleMons[battler].status2 & STATUS2_TRANSFORMED)
|
|
return FALSE;
|
|
return (gSpeciesInfo[gBattleMons[battler].species].isMegaEvolution);
|
|
}
|
|
|
|
bool32 IsBattlerPrimalReverted(u32 battler)
|
|
{
|
|
// While Transform does copy stats and visuals, it shouldn't be counted as true Primal Revesion.
|
|
if (gBattleMons[battler].status2 & STATUS2_TRANSFORMED)
|
|
return FALSE;
|
|
return (gSpeciesInfo[gBattleMons[battler].species].isPrimalReversion);
|
|
}
|
|
|
|
bool32 IsBattlerUltraBursted(u32 battler)
|
|
{
|
|
// While Transform does copy stats and visuals, it shouldn't be counted as true Ultra Burst.
|
|
if (gBattleMons[battler].status2 & STATUS2_TRANSFORMED)
|
|
return FALSE;
|
|
return (gSpeciesInfo[gBattleMons[battler].species].isUltraBurst);
|
|
}
|
|
|
|
// Returns SPECIES_NONE if no form change is possible
|
|
u16 GetBattleFormChangeTargetSpecies(u32 battler, u16 method)
|
|
{
|
|
u32 i;
|
|
u16 targetSpecies = SPECIES_NONE;
|
|
u16 species = gBattleMons[battler].species;
|
|
const struct FormChange *formChanges = GetSpeciesFormChanges(species);
|
|
struct Pokemon *mon = &GetBattlerParty(battler)[gBattlerPartyIndexes[battler]];
|
|
u16 heldItem;
|
|
|
|
if (formChanges != NULL)
|
|
{
|
|
heldItem = gBattleMons[battler].item;
|
|
|
|
for (i = 0; formChanges[i].method != FORM_CHANGE_TERMINATOR; i++)
|
|
{
|
|
if (method == formChanges[i].method && species != formChanges[i].targetSpecies)
|
|
{
|
|
switch (method)
|
|
{
|
|
case FORM_CHANGE_BATTLE_MEGA_EVOLUTION_ITEM:
|
|
case FORM_CHANGE_BATTLE_PRIMAL_REVERSION:
|
|
case FORM_CHANGE_BATTLE_ULTRA_BURST:
|
|
if (heldItem == formChanges[i].param1)
|
|
targetSpecies = formChanges[i].targetSpecies;
|
|
break;
|
|
case FORM_CHANGE_BATTLE_MEGA_EVOLUTION_MOVE:
|
|
if (gBattleMons[battler].moves[0] == formChanges[i].param1
|
|
|| gBattleMons[battler].moves[1] == formChanges[i].param1
|
|
|| gBattleMons[battler].moves[2] == formChanges[i].param1
|
|
|| gBattleMons[battler].moves[3] == formChanges[i].param1)
|
|
targetSpecies = formChanges[i].targetSpecies;
|
|
break;
|
|
case FORM_CHANGE_BATTLE_SWITCH:
|
|
targetSpecies = formChanges[i].targetSpecies;
|
|
break;
|
|
case FORM_CHANGE_BATTLE_HP_PERCENT:
|
|
if (formChanges[i].param1 == GetBattlerAbility(battler))
|
|
{
|
|
// We multiply by 100 to make sure that integer division doesn't mess with the health check.
|
|
u32 hpCheck = gBattleMons[battler].hp * 100 * 100 / gBattleMons[battler].maxHP;
|
|
switch(formChanges[i].param2)
|
|
{
|
|
case HP_HIGHER_THAN:
|
|
if (hpCheck > formChanges[i].param3 * 100)
|
|
targetSpecies = formChanges[i].targetSpecies;
|
|
break;
|
|
case HP_LOWER_EQ_THAN:
|
|
if (hpCheck <= formChanges[i].param3 * 100)
|
|
targetSpecies = formChanges[i].targetSpecies;
|
|
break;
|
|
}
|
|
}
|
|
break;
|
|
case FORM_CHANGE_BATTLE_GIGANTAMAX:
|
|
if (GetMonData(mon, MON_DATA_GIGANTAMAX_FACTOR))
|
|
targetSpecies = formChanges[i].targetSpecies;
|
|
break;
|
|
case FORM_CHANGE_BATTLE_WEATHER:
|
|
// Check if there is a required ability and if the battler's ability does not match it
|
|
// or is suppressed. If so, revert to the no weather form.
|
|
if (formChanges[i].param2
|
|
&& GetBattlerAbility(battler) != formChanges[i].param2
|
|
&& formChanges[i].param1 == B_WEATHER_NONE)
|
|
{
|
|
targetSpecies = formChanges[i].targetSpecies;
|
|
}
|
|
// We need to revert the weather form if the field is under Air Lock, too.
|
|
else if (!WEATHER_HAS_EFFECT && formChanges[i].param1 == B_WEATHER_NONE)
|
|
{
|
|
targetSpecies = formChanges[i].targetSpecies;
|
|
}
|
|
// Otherwise, just check for a match between the weather and the form change table.
|
|
else if (gBattleWeather & formChanges[i].param1
|
|
|| (gBattleWeather == B_WEATHER_NONE && formChanges[i].param1 == B_WEATHER_NONE))
|
|
{
|
|
targetSpecies = formChanges[i].targetSpecies;
|
|
}
|
|
break;
|
|
case FORM_CHANGE_BATTLE_TURN_END:
|
|
if (formChanges[i].param1 == GetBattlerAbility(battler))
|
|
targetSpecies = formChanges[i].targetSpecies;
|
|
break;
|
|
case FORM_CHANGE_STATUS:
|
|
if (gBattleMons[battler].status1 & formChanges[i].param1)
|
|
targetSpecies = formChanges[i].targetSpecies;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return targetSpecies;
|
|
}
|
|
|
|
bool32 CanBattlerFormChange(u32 battler, u16 method)
|
|
{
|
|
// Can't change form if transformed.
|
|
if (gBattleMons[battler].status2 & STATUS2_TRANSFORMED
|
|
&& B_TRANSFORM_FORM_CHANGES >= GEN_5)
|
|
return FALSE;
|
|
// Mega Evolved and Ultra Bursted Pokémon should always revert to normal upon fainting or ending the battle.
|
|
if ((IsBattlerMegaEvolved(battler) || IsBattlerUltraBursted(battler)) && (method == FORM_CHANGE_FAINT || method == FORM_CHANGE_END_BATTLE))
|
|
return TRUE;
|
|
else if (IsBattlerPrimalReverted(battler) && (method == FORM_CHANGE_END_BATTLE))
|
|
return TRUE;
|
|
// Gigantamaxed Pokemon should revert upon fainting, switching, or ending the battle.
|
|
else if (IsGigantamaxed(battler) && (method == FORM_CHANGE_FAINT || method == FORM_CHANGE_BATTLE_SWITCH || method == FORM_CHANGE_END_BATTLE))
|
|
return TRUE;
|
|
return DoesSpeciesHaveFormChangeMethod(gBattleMons[battler].species, method);
|
|
}
|
|
|
|
bool32 TryBattleFormChange(u32 battler, u16 method)
|
|
{
|
|
u8 monId = gBattlerPartyIndexes[battler];
|
|
u8 side = GetBattlerSide(battler);
|
|
struct Pokemon *party = GetBattlerParty(battler);
|
|
u16 targetSpecies;
|
|
|
|
if (!CanBattlerFormChange(battler, method))
|
|
return FALSE;
|
|
|
|
targetSpecies = GetBattleFormChangeTargetSpecies(battler, method);
|
|
if (targetSpecies == SPECIES_NONE)
|
|
targetSpecies = GetFormChangeTargetSpecies(&party[monId], method, 0);
|
|
if (targetSpecies != SPECIES_NONE)
|
|
{
|
|
// Saves the original species on the first form change.
|
|
if (gBattleStruct->changedSpecies[side][monId] == SPECIES_NONE)
|
|
gBattleStruct->changedSpecies[side][monId] = gBattleMons[battler].species;
|
|
|
|
TryToSetBattleFormChangeMoves(&party[monId], method);
|
|
SetMonData(&party[monId], MON_DATA_SPECIES, &targetSpecies);
|
|
gBattleMons[battler].species = targetSpecies;
|
|
RecalcBattlerStats(battler, &party[monId]);
|
|
return TRUE;
|
|
}
|
|
else if (gBattleStruct->changedSpecies[side][monId] != SPECIES_NONE)
|
|
{
|
|
bool32 restoreSpecies = FALSE;
|
|
|
|
// Mega Evolved and Ultra Bursted Pokémon should always revert to normal upon fainting or ending the battle, so no need to add it to the form change tables.
|
|
if ((IsBattlerMegaEvolved(battler) || IsBattlerUltraBursted(battler)) && (method == FORM_CHANGE_FAINT || method == FORM_CHANGE_END_BATTLE))
|
|
restoreSpecies = TRUE;
|
|
|
|
// Unlike Megas, Primal Reversion isn't canceled on fainting.
|
|
else if (IsBattlerPrimalReverted(battler) && (method == FORM_CHANGE_END_BATTLE))
|
|
restoreSpecies = TRUE;
|
|
|
|
// Gigantamax Pokemon have their forms reverted after fainting, switching, or ending the battle.
|
|
else if (IsGigantamaxed(battler) && (method == FORM_CHANGE_FAINT || method == FORM_CHANGE_BATTLE_SWITCH || method == FORM_CHANGE_END_BATTLE))
|
|
restoreSpecies = TRUE;
|
|
|
|
if (restoreSpecies)
|
|
{
|
|
// Reverts the original species
|
|
TryToSetBattleFormChangeMoves(&party[monId], method);
|
|
SetMonData(&party[monId], MON_DATA_SPECIES, &gBattleStruct->changedSpecies[side][monId]);
|
|
RecalcBattlerStats(battler, &party[monId]);
|
|
return TRUE;
|
|
}
|
|
}
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
bool32 DoBattlersShareType(u32 battler1, u32 battler2)
|
|
{
|
|
s32 i;
|
|
u8 types1[3] = {GetBattlerType(battler1, 0), GetBattlerType(battler1, 1), GetBattlerType(battler1, 2)};
|
|
u8 types2[3] = {GetBattlerType(battler2, 0), GetBattlerType(battler2, 1), GetBattlerType(battler2, 2)};
|
|
|
|
if (types1[2] == TYPE_MYSTERY)
|
|
types1[2] = types1[0];
|
|
if (types2[2] == TYPE_MYSTERY)
|
|
types2[2] = types2[0];
|
|
|
|
for (i = 0; i < 3; i++)
|
|
{
|
|
if (types1[i] == types2[0] || types1[i] == types2[1] || types1[i] == types2[2])
|
|
return TRUE;
|
|
}
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
bool32 CanBattlerGetOrLoseItem(u32 battler, u16 itemId)
|
|
{
|
|
u16 species = gBattleMons[battler].species;
|
|
u16 holdEffect = ItemId_GetHoldEffect(itemId);
|
|
|
|
// Mail can be stolen now
|
|
if (itemId == ITEM_ENIGMA_BERRY_E_READER)
|
|
return FALSE;
|
|
else if (DoesSpeciesUseHoldItemToChangeForm(species, itemId))
|
|
return FALSE;
|
|
else if (holdEffect == HOLD_EFFECT_Z_CRYSTAL)
|
|
return FALSE;
|
|
else
|
|
return TRUE;
|
|
}
|
|
|
|
struct Pokemon *GetIllusionMonPtr(u32 battler)
|
|
{
|
|
if (gBattleStruct->illusion[battler].broken)
|
|
return NULL;
|
|
if (!gBattleStruct->illusion[battler].set)
|
|
{
|
|
if (GetBattlerSide(battler) == B_SIDE_PLAYER)
|
|
SetIllusionMon(&gPlayerParty[gBattlerPartyIndexes[battler]], battler);
|
|
else
|
|
SetIllusionMon(&gEnemyParty[gBattlerPartyIndexes[battler]], battler);
|
|
}
|
|
if (!gBattleStruct->illusion[battler].on)
|
|
return NULL;
|
|
|
|
return gBattleStruct->illusion[battler].mon;
|
|
}
|
|
|
|
void ClearIllusionMon(u32 battler)
|
|
{
|
|
memset(&gBattleStruct->illusion[battler], 0, sizeof(gBattleStruct->illusion[battler]));
|
|
}
|
|
|
|
u32 GetIllusionMonSpecies(u32 battler)
|
|
{
|
|
struct Pokemon *illusionMon = GetIllusionMonPtr(battler);
|
|
if (illusionMon != NULL)
|
|
return GetMonData(illusionMon, MON_DATA_SPECIES);
|
|
return SPECIES_NONE;
|
|
}
|
|
|
|
bool32 SetIllusionMon(struct Pokemon *mon, u32 battler)
|
|
{
|
|
struct Pokemon *party, *partnerMon;
|
|
s32 i, id;
|
|
u8 side, partyCount;
|
|
|
|
gBattleStruct->illusion[battler].set = 1;
|
|
if (GetMonAbility(mon) != ABILITY_ILLUSION)
|
|
return FALSE;
|
|
|
|
party = GetBattlerParty(battler);
|
|
side = GetBattlerSide(battler);
|
|
partyCount = side == B_SIDE_PLAYER ? gPlayerPartyCount : gEnemyPartyCount;
|
|
|
|
// If this pokemon is last in the party, ignore Illusion.
|
|
if (&party[partyCount - 1] == mon)
|
|
return FALSE;
|
|
|
|
if (IsBattlerAlive(BATTLE_PARTNER(battler)))
|
|
partnerMon = &party[gBattlerPartyIndexes[BATTLE_PARTNER(battler)]];
|
|
else
|
|
partnerMon = mon;
|
|
|
|
// Find last alive non-egg pokemon.
|
|
for (i = PARTY_SIZE - 1; i >= 0; i--)
|
|
{
|
|
id = i;
|
|
if (GetMonData(&party[id], MON_DATA_SANITY_HAS_SPECIES)
|
|
&& GetMonData(&party[id], MON_DATA_HP)
|
|
&& !GetMonData(&party[id], MON_DATA_IS_EGG)
|
|
&& &party[id] != mon
|
|
&& &party[id] != partnerMon)
|
|
{
|
|
gBattleStruct->illusion[battler].on = 1;
|
|
gBattleStruct->illusion[battler].broken = 0;
|
|
gBattleStruct->illusion[battler].partyId = id;
|
|
gBattleStruct->illusion[battler].mon = &party[id];
|
|
return TRUE;
|
|
}
|
|
}
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
bool32 ShouldGetStatBadgeBoost(u16 badgeFlag, u32 battler)
|
|
{
|
|
if (B_BADGE_BOOST == GEN_3)
|
|
{
|
|
if (gBattleTypeFlags & (BATTLE_TYPE_LINK | BATTLE_TYPE_EREADER_TRAINER | BATTLE_TYPE_RECORDED_LINK | BATTLE_TYPE_FRONTIER))
|
|
return FALSE;
|
|
else if (GetBattlerSide(battler) != B_SIDE_PLAYER)
|
|
return FALSE;
|
|
else if (gBattleTypeFlags & BATTLE_TYPE_TRAINER && gTrainerBattleOpponent_A == TRAINER_SECRET_BASE)
|
|
return FALSE;
|
|
else if (FlagGet(badgeFlag))
|
|
return TRUE;
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
u8 GetBattleMoveCategory(u32 moveId)
|
|
{
|
|
if (gBattleStruct != NULL && gBattleStruct->zmove.active && !IS_MOVE_STATUS(moveId))
|
|
return gBattleStruct->zmove.activeCategory;
|
|
if (gBattleStruct != NULL && IsMaxMove(moveId)) // TODO: Might be buggy depending on when this is called.
|
|
return gBattleStruct->dynamax.activeCategory;
|
|
if (gBattleStruct != NULL && gBattleStruct->swapDamageCategory) // Photon Geyser, Shell Side Arm, Light That Burns the Sky
|
|
return BATTLE_CATEGORY_PHYSICAL;
|
|
if (B_PHYSICAL_SPECIAL_SPLIT >= GEN_4)
|
|
return gBattleMoves[moveId].category;
|
|
|
|
if (IS_MOVE_STATUS(moveId))
|
|
return BATTLE_CATEGORY_STATUS;
|
|
else if (gBattleMoves[moveId].type < TYPE_MYSTERY)
|
|
return BATTLE_CATEGORY_PHYSICAL;
|
|
else
|
|
return BATTLE_CATEGORY_SPECIAL;
|
|
}
|
|
|
|
static bool32 TryRemoveScreens(u32 battler)
|
|
{
|
|
bool32 removed = FALSE;
|
|
u32 battlerSide = GetBattlerSide(battler);
|
|
u8 enemySide = GetBattlerSide(BATTLE_OPPOSITE(battler));
|
|
|
|
// try to remove from battler's side
|
|
if (gSideStatuses[battlerSide] & (SIDE_STATUS_REFLECT | SIDE_STATUS_LIGHTSCREEN | SIDE_STATUS_AURORA_VEIL))
|
|
{
|
|
gSideStatuses[battlerSide] &= ~(SIDE_STATUS_REFLECT | SIDE_STATUS_LIGHTSCREEN | SIDE_STATUS_AURORA_VEIL);
|
|
gSideTimers[battlerSide].reflectTimer = 0;
|
|
gSideTimers[battlerSide].lightscreenTimer = 0;
|
|
gSideTimers[battlerSide].auroraVeilTimer = 0;
|
|
removed = TRUE;
|
|
}
|
|
|
|
// try to remove from battler opponent's side
|
|
if (gSideStatuses[enemySide] & (SIDE_STATUS_REFLECT | SIDE_STATUS_LIGHTSCREEN | SIDE_STATUS_AURORA_VEIL))
|
|
{
|
|
gSideStatuses[enemySide] &= ~(SIDE_STATUS_REFLECT | SIDE_STATUS_LIGHTSCREEN | SIDE_STATUS_AURORA_VEIL);
|
|
gSideTimers[enemySide].reflectTimer = 0;
|
|
gSideTimers[enemySide].lightscreenTimer = 0;
|
|
gSideTimers[enemySide].auroraVeilTimer = 0;
|
|
removed = TRUE;
|
|
}
|
|
|
|
return removed;
|
|
}
|
|
|
|
static bool32 IsUnnerveAbilityOnOpposingSide(u32 battler)
|
|
{
|
|
if (IsAbilityOnOpposingSide(battler, ABILITY_UNNERVE)
|
|
|| IsAbilityOnOpposingSide(battler, ABILITY_AS_ONE_ICE_RIDER)
|
|
|| IsAbilityOnOpposingSide(battler, ABILITY_AS_ONE_SHADOW_RIDER))
|
|
return TRUE;
|
|
return FALSE;
|
|
}
|
|
|
|
// Photon geyser & light that burns the sky
|
|
u8 GetCategoryBasedOnStats(u32 battler)
|
|
{
|
|
u32 attack = gBattleMons[battler].attack;
|
|
u32 spAttack = gBattleMons[battler].spAttack;
|
|
|
|
attack = attack * gStatStageRatios[gBattleMons[battler].statStages[STAT_ATK]][0];
|
|
attack = attack / gStatStageRatios[gBattleMons[battler].statStages[STAT_ATK]][1];
|
|
|
|
spAttack = spAttack * gStatStageRatios[gBattleMons[battler].statStages[STAT_SPATK]][0];
|
|
spAttack = spAttack / gStatStageRatios[gBattleMons[battler].statStages[STAT_SPATK]][1];
|
|
|
|
if (spAttack >= attack)
|
|
return BATTLE_CATEGORY_SPECIAL;
|
|
else
|
|
return BATTLE_CATEGORY_PHYSICAL;
|
|
}
|
|
|
|
static u32 GetFlingPowerFromItemId(u32 itemId)
|
|
{
|
|
if (itemId >= ITEM_TM01 && itemId <= ITEM_HM08)
|
|
{
|
|
u32 power = gBattleMoves[ItemIdToBattleMoveId(itemId)].power;
|
|
if (power > 1)
|
|
return power;
|
|
return 10; // Status moves and moves with variable power always return 10 power.
|
|
}
|
|
else
|
|
return ItemId_GetFlingPower(itemId);
|
|
}
|
|
|
|
bool32 CanFling(u32 battler)
|
|
{
|
|
u16 item = gBattleMons[battler].item;
|
|
|
|
if (item == ITEM_NONE
|
|
|| (B_KLUTZ_FLING_INTERACTION >= GEN_5 && GetBattlerAbility(battler) == ABILITY_KLUTZ)
|
|
|| gFieldStatuses & STATUS_FIELD_MAGIC_ROOM
|
|
|| gDisableStructs[battler].embargoTimer != 0
|
|
|| GetFlingPowerFromItemId(item) == 0
|
|
|| !CanBattlerGetOrLoseItem(battler, item))
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
// Sort an array of battlers by speed
|
|
// Useful for effects like pickpocket, eject button, red card, dancer
|
|
void SortBattlersBySpeed(u8 *battlers, bool32 slowToFast)
|
|
{
|
|
int i, j, currSpeed, currBattler;
|
|
u16 speeds[MAX_BATTLERS_COUNT] = {0};
|
|
|
|
for (i = 0; i < gBattlersCount; i++)
|
|
speeds[i] = GetBattlerTotalSpeedStat(battlers[i]);
|
|
|
|
for (i = 1; i < gBattlersCount; i++)
|
|
{
|
|
currBattler = battlers[i];
|
|
currSpeed = speeds[i];
|
|
j = i - 1;
|
|
|
|
if (slowToFast)
|
|
{
|
|
while (j >= 0 && speeds[j] > currSpeed)
|
|
{
|
|
battlers[j + 1] = battlers[j];
|
|
speeds[j + 1] = speeds[j];
|
|
j = j - 1;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
while (j >= 0 && speeds[j] < currSpeed)
|
|
{
|
|
battlers[j + 1] = battlers[j];
|
|
speeds[j + 1] = speeds[j];
|
|
j = j - 1;
|
|
}
|
|
}
|
|
|
|
battlers[j + 1] = currBattler;
|
|
speeds[j + 1] = currSpeed;
|
|
}
|
|
}
|
|
|
|
void TryRestoreHeldItems(void)
|
|
{
|
|
u32 i;
|
|
u16 lostItem = ITEM_NONE;
|
|
|
|
for (i = 0; i < PARTY_SIZE; i++)
|
|
{
|
|
if (B_RESTORE_HELD_BATTLE_ITEMS == TRUE || gBattleStruct->itemLost[i].stolen)
|
|
{
|
|
lostItem = gBattleStruct->itemLost[i].originalItem;
|
|
if (lostItem != ITEM_NONE && ItemId_GetPocket(lostItem) != POCKET_BERRIES)
|
|
SetMonData(&gPlayerParty[i], MON_DATA_HELD_ITEM, &lostItem); // Restore stolen non-berry items
|
|
}
|
|
}
|
|
}
|
|
|
|
bool32 CanStealItem(u32 battlerStealing, u32 battlerItem, u16 item)
|
|
{
|
|
u8 stealerSide = GetBattlerSide(battlerStealing);
|
|
|
|
if (gBattleTypeFlags & BATTLE_TYPE_TRAINER_HILL)
|
|
return FALSE;
|
|
|
|
// Check if the battler trying to steal should be able to
|
|
if (stealerSide == B_SIDE_OPPONENT
|
|
&& !(gBattleTypeFlags &
|
|
(BATTLE_TYPE_EREADER_TRAINER
|
|
| BATTLE_TYPE_FRONTIER
|
|
| BATTLE_TYPE_LINK
|
|
| BATTLE_TYPE_RECORDED_LINK
|
|
| BATTLE_TYPE_SECRET_BASE
|
|
| (B_TRAINERS_KNOCK_OFF_ITEMS == TRUE ? BATTLE_TYPE_TRAINER : 0)
|
|
)))
|
|
{
|
|
return FALSE;
|
|
}
|
|
else if (!(gBattleTypeFlags &
|
|
(BATTLE_TYPE_EREADER_TRAINER
|
|
| BATTLE_TYPE_FRONTIER
|
|
| BATTLE_TYPE_LINK
|
|
| BATTLE_TYPE_RECORDED_LINK
|
|
| BATTLE_TYPE_SECRET_BASE))
|
|
&& (gWishFutureKnock.knockedOffMons[stealerSide] & gBitTable[gBattlerPartyIndexes[battlerStealing]]))
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
if (!CanBattlerGetOrLoseItem(battlerItem, item) // Battler with item cannot have it stolen
|
|
||!CanBattlerGetOrLoseItem(battlerStealing, item)) // Stealer cannot take the item
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
void TrySaveExchangedItem(u32 battler, u16 stolenItem)
|
|
{
|
|
// Because BtlController_EmitSetMonData does SetMonData, we need to save the stolen item only if it matches the battler's original
|
|
// So, if the player steals an item during battle and has it stolen from it, it will not end the battle with it (naturally)
|
|
if (B_TRAINERS_KNOCK_OFF_ITEMS == FALSE)
|
|
return;
|
|
// If regular trainer battle and mon's original item matches what is being stolen, save it to be restored at end of battle
|
|
if (gBattleTypeFlags & BATTLE_TYPE_TRAINER
|
|
&& !(gBattleTypeFlags & BATTLE_TYPE_FRONTIER)
|
|
&& GetBattlerSide(battler) == B_SIDE_PLAYER
|
|
&& stolenItem == gBattleStruct->itemLost[gBattlerPartyIndexes[battler]].originalItem)
|
|
gBattleStruct->itemLost[gBattlerPartyIndexes[battler]].stolen = TRUE;
|
|
}
|
|
|
|
bool32 IsBattlerAffectedByHazards(u32 battler, bool32 toxicSpikes)
|
|
{
|
|
bool32 ret = TRUE;
|
|
u32 holdEffect = GetBattlerHoldEffect(battler, TRUE);
|
|
if (toxicSpikes && holdEffect == HOLD_EFFECT_HEAVY_DUTY_BOOTS && !IS_BATTLER_OF_TYPE(battler, TYPE_POISON))
|
|
{
|
|
ret = FALSE;
|
|
RecordItemEffectBattle(battler, holdEffect);
|
|
}
|
|
else if (holdEffect == HOLD_EFFECT_HEAVY_DUTY_BOOTS)
|
|
{
|
|
ret = FALSE;
|
|
RecordItemEffectBattle(battler, holdEffect);
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
bool32 TestSheerForceFlag(u32 battler, u16 move)
|
|
{
|
|
if (GetBattlerAbility(battler) == ABILITY_SHEER_FORCE && gBattleMoves[move].sheerForceBoost)
|
|
return TRUE;
|
|
else
|
|
return FALSE;
|
|
}
|
|
|
|
// This function is the body of "jumpifstat", but can be used dynamically in a function
|
|
bool32 CompareStat(u32 battler, u8 statId, u8 cmpTo, u8 cmpKind)
|
|
{
|
|
bool32 ret = FALSE;
|
|
u8 statValue = gBattleMons[battler].statStages[statId];
|
|
|
|
// Because this command is used as a way of checking if a stat can be lowered/raised,
|
|
// we need to do some modification at run-time.
|
|
if (GetBattlerAbility(battler) == ABILITY_CONTRARY)
|
|
{
|
|
if (cmpKind == CMP_GREATER_THAN)
|
|
cmpKind = CMP_LESS_THAN;
|
|
else if (cmpKind == CMP_LESS_THAN)
|
|
cmpKind = CMP_GREATER_THAN;
|
|
|
|
if (cmpTo == MIN_STAT_STAGE)
|
|
cmpTo = MAX_STAT_STAGE;
|
|
else if (cmpTo == MAX_STAT_STAGE)
|
|
cmpTo = MIN_STAT_STAGE;
|
|
}
|
|
|
|
switch (cmpKind)
|
|
{
|
|
case CMP_EQUAL:
|
|
if (statValue == cmpTo)
|
|
ret = TRUE;
|
|
break;
|
|
case CMP_NOT_EQUAL:
|
|
if (statValue != cmpTo)
|
|
ret = TRUE;
|
|
break;
|
|
case CMP_GREATER_THAN:
|
|
if (statValue > cmpTo)
|
|
ret = TRUE;
|
|
break;
|
|
case CMP_LESS_THAN:
|
|
if (statValue < cmpTo)
|
|
ret = TRUE;
|
|
break;
|
|
case CMP_COMMON_BITS:
|
|
if (statValue & cmpTo)
|
|
ret = TRUE;
|
|
break;
|
|
case CMP_NO_COMMON_BITS:
|
|
if (!(statValue & cmpTo))
|
|
ret = TRUE;
|
|
break;
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
void BufferStatChange(u32 battler, u8 statId, u8 stringId)
|
|
{
|
|
bool32 hasContrary = (GetBattlerAbility(battler) == ABILITY_CONTRARY);
|
|
|
|
PREPARE_STAT_BUFFER(gBattleTextBuff1, statId);
|
|
if (stringId == STRINGID_STATFELL)
|
|
{
|
|
if (hasContrary)
|
|
PREPARE_STRING_BUFFER(gBattleTextBuff2, STRINGID_STATROSE)
|
|
else
|
|
PREPARE_STRING_BUFFER(gBattleTextBuff2, STRINGID_STATFELL)
|
|
}
|
|
else if (stringId == STRINGID_STATROSE)
|
|
{
|
|
if (hasContrary)
|
|
PREPARE_STRING_BUFFER(gBattleTextBuff2, STRINGID_STATFELL)
|
|
else
|
|
PREPARE_STRING_BUFFER(gBattleTextBuff2, STRINGID_STATROSE)
|
|
}
|
|
else
|
|
{
|
|
PREPARE_STRING_BUFFER(gBattleTextBuff2, stringId)
|
|
}
|
|
}
|
|
|
|
bool32 TryRoomService(u32 battler)
|
|
{
|
|
if (gFieldStatuses & STATUS_FIELD_TRICK_ROOM && CompareStat(battler, STAT_SPEED, MIN_STAT_STAGE, CMP_GREATER_THAN))
|
|
{
|
|
BufferStatChange(battler, STAT_SPEED, STRINGID_STATFELL);
|
|
gEffectBattler = gBattleScripting.battler = battler;
|
|
SET_STATCHANGER(STAT_SPEED, 1, TRUE);
|
|
gBattleScripting.animArg1 = 14 + STAT_SPEED;
|
|
gBattleScripting.animArg2 = 0;
|
|
gLastUsedItem = gBattleMons[battler].item;
|
|
return TRUE;
|
|
}
|
|
else
|
|
{
|
|
return FALSE;
|
|
}
|
|
}
|
|
|
|
bool32 BlocksPrankster(u16 move, u32 battlerPrankster, u32 battlerDef, bool32 checkTarget)
|
|
{
|
|
if (B_PRANKSTER_DARK_TYPES < GEN_7)
|
|
return FALSE;
|
|
if (!gProtectStructs[battlerPrankster].pranksterElevated)
|
|
return FALSE;
|
|
if (GetBattlerSide(battlerPrankster) == GetBattlerSide(battlerDef))
|
|
return FALSE;
|
|
if (checkTarget && (GetBattlerMoveTargetType(battlerPrankster, move) & (MOVE_TARGET_OPPONENTS_FIELD | MOVE_TARGET_DEPENDS)))
|
|
return FALSE;
|
|
if (!IS_BATTLER_OF_TYPE(battlerDef, TYPE_DARK))
|
|
return FALSE;
|
|
if (gStatuses3[battlerDef] & STATUS3_SEMI_INVULNERABLE)
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
u16 GetUsedHeldItem(u32 battler)
|
|
{
|
|
return gBattleStruct->usedHeldItems[gBattlerPartyIndexes[battler]][GetBattlerSide(battler)];
|
|
}
|
|
|
|
bool32 IsBattlerWeatherAffected(u32 battler, u32 weatherFlags)
|
|
{
|
|
if (gBattleWeather & weatherFlags && WEATHER_HAS_EFFECT)
|
|
{
|
|
// given weather is active -> check if its sun, rain against utility umbrella ( since only 1 weather can be active at once)
|
|
if (gBattleWeather & (B_WEATHER_SUN | B_WEATHER_RAIN) && GetBattlerHoldEffect(battler, TRUE) == HOLD_EFFECT_UTILITY_UMBRELLA)
|
|
return FALSE; // utility umbrella blocks sun, rain effects
|
|
|
|
return TRUE;
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
// Gets move target before redirection effects etc. are applied
|
|
// Possible return values are defined in battle.h following MOVE_TARGET_SELECTED
|
|
u32 GetBattlerMoveTargetType(u32 battler, u32 move)
|
|
{
|
|
if (gBattleMoves[move].effect == EFFECT_EXPANDING_FORCE
|
|
&& IsBattlerTerrainAffected(battler, STATUS_FIELD_PSYCHIC_TERRAIN))
|
|
return MOVE_TARGET_BOTH;
|
|
else
|
|
return gBattleMoves[move].target;
|
|
}
|
|
|
|
bool32 CanTargetBattler(u32 battlerAtk, u32 battlerDef, u16 move)
|
|
{
|
|
if (gBattleMoves[move].effect == EFFECT_HIT_ENEMY_HEAL_ALLY
|
|
&& GetBattlerSide(battlerAtk) == GetBattlerSide(battlerDef)
|
|
&& gStatuses3[battlerAtk] & STATUS3_HEAL_BLOCK)
|
|
return FALSE; // Pokémon affected by Heal Block cannot target allies with Pollen Puff
|
|
if ((IsDynamaxed(battlerAtk) || gBattleStruct->dynamax.playerSelect)
|
|
&& GetBattlerSide(battlerAtk) == GetBattlerSide(battlerDef))
|
|
return FALSE;
|
|
return TRUE;
|
|
}
|
|
|
|
static void SetRandomMultiHitCounter()
|
|
{
|
|
if (GetBattlerHoldEffect(gBattlerAttacker, TRUE) == HOLD_EFFECT_LOADED_DICE)
|
|
gMultiHitCounter = RandomUniform(RNG_LOADED_DICE, 4, 5);
|
|
else if (B_MULTI_HIT_CHANCE >= GEN_5)
|
|
gMultiHitCounter = RandomWeighted(RNG_HITS, 0, 0, 7, 7, 3, 3); // 35%: 2 hits, 35%: 3 hits, 15% 4 hits, 15% 5 hits.
|
|
else
|
|
gMultiHitCounter = RandomWeighted(RNG_HITS, 0, 0, 3, 3, 1, 1); // 37.5%: 2 hits, 37.5%: 3 hits, 12.5% 4 hits, 12.5% 5 hits.
|
|
}
|
|
|
|
void CopyMonLevelAndBaseStatsToBattleMon(u32 battler, struct Pokemon *mon)
|
|
{
|
|
gBattleMons[battler].level = GetMonData(mon, MON_DATA_LEVEL);
|
|
gBattleMons[battler].hp = GetMonData(mon, MON_DATA_HP);
|
|
gBattleMons[battler].maxHP = GetMonData(mon, MON_DATA_MAX_HP);
|
|
gBattleMons[battler].attack = GetMonData(mon, MON_DATA_ATK);
|
|
gBattleMons[battler].defense = GetMonData(mon, MON_DATA_DEF);
|
|
gBattleMons[battler].speed = GetMonData(mon, MON_DATA_SPEED);
|
|
gBattleMons[battler].spAttack = GetMonData(mon, MON_DATA_SPATK);
|
|
gBattleMons[battler].spDefense = GetMonData(mon, MON_DATA_SPDEF);
|
|
}
|
|
|
|
void CopyMonAbilityAndTypesToBattleMon(u32 battler, struct Pokemon *mon)
|
|
{
|
|
gBattleMons[battler].ability = GetMonAbility(mon);
|
|
gBattleMons[battler].type1 = gSpeciesInfo[gBattleMons[battler].species].types[0];
|
|
gBattleMons[battler].type2 = gSpeciesInfo[gBattleMons[battler].species].types[1];
|
|
gBattleMons[battler].type3 = TYPE_MYSTERY;
|
|
}
|
|
|
|
void RecalcBattlerStats(u32 battler, struct Pokemon *mon)
|
|
{
|
|
CalculateMonStats(mon);
|
|
if (IsDynamaxed(battler) && gChosenActionByBattler[battler] != B_ACTION_SWITCH)
|
|
ApplyDynamaxHPMultiplier(battler, mon);
|
|
CopyMonLevelAndBaseStatsToBattleMon(battler, mon);
|
|
CopyMonAbilityAndTypesToBattleMon(battler, mon);
|
|
}
|
|
|
|
void RemoveConfusionStatus(u32 battler)
|
|
{
|
|
gBattleMons[battler].status2 &= ~STATUS2_CONFUSION;
|
|
gStatuses4[battler] &= ~STATUS4_INFINITE_CONFUSION;
|
|
}
|
|
|
|
static bool32 CanBeInfinitelyConfused(u32 battler)
|
|
{
|
|
if (gBattleMons[battler].ability == ABILITY_OWN_TEMPO
|
|
|| IsBattlerTerrainAffected(battler, STATUS_FIELD_MISTY_TERRAIN)
|
|
|| gSideStatuses[GetBattlerSide(battler)] & SIDE_STATUS_SAFEGUARD)
|
|
{
|
|
return FALSE;
|
|
}
|
|
return TRUE;
|
|
}
|
|
|
|
u8 GetBattlerGender(u32 battler)
|
|
{
|
|
return GetGenderFromSpeciesAndPersonality(gBattleMons[battler].species,
|
|
gBattleMons[battler].personality);
|
|
}
|
|
|
|
bool32 AreBattlersOfOppositeGender(u32 battler1, u32 battler2)
|
|
{
|
|
u8 gender1 = GetBattlerGender(battler1);
|
|
u8 gender2 = GetBattlerGender(battler2);
|
|
|
|
return (gender1 != MON_GENDERLESS && gender2 != MON_GENDERLESS && gender1 != gender2);
|
|
}
|
|
|
|
bool32 AreBattlersOfSameGender(u32 battler1, u32 battler2)
|
|
{
|
|
u8 gender1 = GetBattlerGender(battler1);
|
|
u8 gender2 = GetBattlerGender(battler2);
|
|
|
|
return (gender1 != MON_GENDERLESS && gender2 != MON_GENDERLESS && gender1 == gender2);
|
|
}
|
|
|
|
u32 CalcSecondaryEffectChance(u32 battler, u32 battlerAbility, const struct AdditionalEffect *additionalEffect)
|
|
{
|
|
bool8 hasSereneGrace = (battlerAbility == ABILITY_SERENE_GRACE);
|
|
bool8 hasRainbow = (gSideStatuses[GetBattlerSide(battler)] & SIDE_STATUS_RAINBOW) != 0;
|
|
u16 secondaryEffectChance = additionalEffect->chance;
|
|
|
|
if (hasRainbow && hasSereneGrace && additionalEffect->moveEffect == MOVE_EFFECT_FLINCH)
|
|
return secondaryEffectChance * 2;
|
|
|
|
if (hasSereneGrace)
|
|
secondaryEffectChance *= 2;
|
|
if (hasRainbow && additionalEffect->moveEffect != MOVE_EFFECT_SECRET_POWER)
|
|
secondaryEffectChance *= 2;
|
|
|
|
return secondaryEffectChance;
|
|
}
|
|
|
|
bool32 MoveEffectIsGuaranteed(u32 battler, u32 battlerAbility, const struct AdditionalEffect *additionalEffect)
|
|
{
|
|
return additionalEffect->chance == 0 || CalcSecondaryEffectChance(battler, battlerAbility, additionalEffect) >= 100;
|
|
}
|
|
|
|
bool32 IsAlly(u32 battlerAtk, u32 battlerDef)
|
|
{
|
|
return (GetBattlerSide(battlerAtk) == GetBattlerSide(battlerDef));
|
|
}
|
|
|
|
bool32 IsGen6ExpShareEnabled(void)
|
|
{
|
|
#if I_EXP_SHARE_FLAG <= TEMP_FLAGS_END
|
|
return FALSE;
|
|
#else
|
|
return FlagGet(I_EXP_SHARE_FLAG);
|
|
#endif
|
|
}
|
|
|
|
bool32 MoveHasMoveEffect(u32 move, u32 moveEffect)
|
|
{
|
|
u32 i;
|
|
for (i = 0; i < gBattleMoves[move].numAdditionalEffects; i++)
|
|
{
|
|
if (gBattleMoves[move].additionalEffects[i].moveEffect == moveEffect
|
|
&& gBattleMoves[move].additionalEffects[i].self == FALSE)
|
|
return TRUE;
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
bool32 MoveHasMoveEffectWithChance(u32 move, u32 moveEffect, u32 chance)
|
|
{
|
|
u32 i;
|
|
for (i = 0; i < gBattleMoves[move].numAdditionalEffects; i++)
|
|
{
|
|
if (gBattleMoves[move].additionalEffects[i].moveEffect == moveEffect
|
|
&& gBattleMoves[move].additionalEffects[i].chance == chance)
|
|
return TRUE;
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
bool32 MoveHasMoveEffectSelf(u32 move, u32 moveEffect)
|
|
{
|
|
u32 i;
|
|
for (i = 0; i < gBattleMoves[move].numAdditionalEffects; i++)
|
|
{
|
|
if (gBattleMoves[move].additionalEffects[i].moveEffect == moveEffect
|
|
&& gBattleMoves[move].additionalEffects[i].self == TRUE)
|
|
return TRUE;
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
bool32 MoveHasMoveEffectSelfArg(u32 move, u32 moveEffect, u32 argument)
|
|
{
|
|
return (gBattleMoves[move].argument == argument) && MoveHasMoveEffectSelf(move, moveEffect);
|
|
}
|
|
|
|
bool8 CanMonParticipateInSkyBattle(struct Pokemon *mon)
|
|
{
|
|
u16 species = GetMonData(mon, MON_DATA_SPECIES);
|
|
u16 monAbilityNum = GetMonData(mon, MON_DATA_ABILITY_NUM, NULL);
|
|
|
|
bool8 hasLevitateAbility = gSpeciesInfo[species].abilities[monAbilityNum] == ABILITY_LEVITATE;
|
|
bool8 isFlyingType = gSpeciesInfo[species].types[0] == TYPE_FLYING || gSpeciesInfo[species].types[1] == TYPE_FLYING;
|
|
bool8 monIsValidAndNotEgg = GetMonData(mon, MON_DATA_SANITY_HAS_SPECIES) && !GetMonData(mon, MON_DATA_IS_EGG);
|
|
|
|
if (monIsValidAndNotEgg)
|
|
{
|
|
if ((hasLevitateAbility || isFlyingType) && !IsMonBannedFromSkyBattles(species))
|
|
return TRUE;
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
bool8 IsMonBannedFromSkyBattles(u16 species)
|
|
{
|
|
switch (species)
|
|
{
|
|
#if B_SKY_BATTLE_STRICT_ELIGIBILITY == TRUE
|
|
case SPECIES_SPEAROW:
|
|
case SPECIES_FARFETCHD:
|
|
case SPECIES_DODUO:
|
|
case SPECIES_DODRIO:
|
|
case SPECIES_HOOTHOOT:
|
|
case SPECIES_NATU:
|
|
case SPECIES_MURKROW:
|
|
case SPECIES_DELIBIRD:
|
|
case SPECIES_TAILLOW:
|
|
case SPECIES_STARLY:
|
|
case SPECIES_CHATOT:
|
|
case SPECIES_SHAYMIN:
|
|
case SPECIES_PIDOVE:
|
|
case SPECIES_ARCHEN:
|
|
case SPECIES_DUCKLETT:
|
|
case SPECIES_RUFFLET:
|
|
case SPECIES_VULLABY:
|
|
case SPECIES_FLETCHLING:
|
|
case SPECIES_HAWLUCHA:
|
|
case SPECIES_ROWLET:
|
|
case SPECIES_PIKIPEK:
|
|
#endif
|
|
case SPECIES_EGG:
|
|
return TRUE;
|
|
default:
|
|
return FALSE;
|
|
}
|
|
}
|
|
|
|
u8 GetBattlerType(u32 battler, u8 typeIndex)
|
|
{
|
|
u16 types[3] = {0};
|
|
types[0] = gBattleMons[battler].type1;
|
|
types[1] = gBattleMons[battler].type2;
|
|
types[2] = gBattleMons[battler].type3;
|
|
|
|
// Handle Roost's Flying-type suppression
|
|
if (typeIndex == 0 || typeIndex == 1)
|
|
{
|
|
if (gBattleResources->flags->flags[battler] & RESOURCE_FLAG_ROOST)
|
|
{
|
|
if (types[0] == TYPE_FLYING && types[1] == TYPE_FLYING)
|
|
return B_ROOST_PURE_FLYING >= GEN_5 ? TYPE_NORMAL : TYPE_MYSTERY;
|
|
else
|
|
return types[typeIndex] == TYPE_FLYING ? TYPE_MYSTERY : types[typeIndex];
|
|
}
|
|
}
|
|
|
|
return types[typeIndex];
|
|
}
|
|
|
|
void RemoveBattlerType(u32 battler, u8 type)
|
|
{
|
|
u32 i;
|
|
for (i = 0; i < 3; i++)
|
|
{
|
|
if (*(u8 *)(&gBattleMons[battler].type1 + i) == type)
|
|
*(u8 *)(&gBattleMons[battler].type1 + i) = TYPE_MYSTERY;
|
|
}
|
|
}
|