Review corrections
This commit is contained in:
parent
c5e04cf243
commit
ffa35a33c1
2 changed files with 8 additions and 8 deletions
|
@ -11425,7 +11425,7 @@ const struct BattleMove gBattleMoves[MOVES_COUNT] =
|
|||
.secondaryEffectChance = 10,
|
||||
.target = MOVE_TARGET_SELECTED,
|
||||
.priority = 0,
|
||||
.flags = FLAG_MIRROR_MOVE_AFFECTED | FLAG_KINGSROCK_AFFECTED,
|
||||
.flags = FLAG_PROTECT_AFFECTED | FLAG_MIRROR_MOVE_AFFECTED | FLAG_KINGSROCK_AFFECTED,
|
||||
.split = SPLIT_SPECIAL,
|
||||
},
|
||||
|
||||
|
@ -11437,9 +11437,9 @@ const struct BattleMove gBattleMoves[MOVES_COUNT] =
|
|||
.accuracy = 100,
|
||||
.pp = 10,
|
||||
.secondaryEffectChance = 20,
|
||||
.target = MOVE_TARGET_SELECTED,
|
||||
.target = MOVE_TARGET_BOTH,
|
||||
.priority = 0,
|
||||
.flags = FLAG_MIRROR_MOVE_AFFECTED | FLAG_KINGSROCK_AFFECTED,
|
||||
.flags = FLAG_PROTECT_AFFECTED | FLAG_MIRROR_MOVE_AFFECTED | FLAG_KINGSROCK_AFFECTED,
|
||||
.split = SPLIT_SPECIAL,
|
||||
},
|
||||
|
||||
|
@ -11465,7 +11465,7 @@ const struct BattleMove gBattleMoves[MOVES_COUNT] =
|
|||
.accuracy = 100,
|
||||
.pp = 5,
|
||||
.secondaryEffectChance = 0,
|
||||
.target = MOVE_TARGET_SELECTED,
|
||||
.target = MOVE_TARGET_BOTH,
|
||||
.priority = 0,
|
||||
.flags = FLAG_PROTECT_AFFECTED | FLAG_MIRROR_MOVE_AFFECTED | FLAG_KINGSROCK_AFFECTED,
|
||||
.split = SPLIT_PHYSICAL,
|
||||
|
@ -11479,7 +11479,7 @@ const struct BattleMove gBattleMoves[MOVES_COUNT] =
|
|||
.accuracy = 100,
|
||||
.pp = 5,
|
||||
.secondaryEffectChance = 0,
|
||||
.target = MOVE_TARGET_SELECTED,
|
||||
.target = MOVE_TARGET_BOTH,
|
||||
.priority = 0,
|
||||
.flags = FLAG_PROTECT_AFFECTED | FLAG_MIRROR_MOVE_AFFECTED | FLAG_KINGSROCK_AFFECTED,
|
||||
.split = SPLIT_SPECIAL,
|
||||
|
|
|
@ -2928,7 +2928,7 @@ static const u8 sFIERY_WRATHDescription[] = _(
|
|||
|
||||
static const u8 sTHUNDEROUS_KICKDescription[] = _(
|
||||
"Uses a lightning-like kick\n"
|
||||
"to hit. Lowers foe's DEFENSE.");
|
||||
"to hit. Lowers foe's Defense.");
|
||||
|
||||
static const u8 sGLACIAL_LANCEDescription[] = _(
|
||||
"Strikes by hurling a blizzard-\n"
|
||||
|
@ -2939,8 +2939,8 @@ static const u8 sASTRAL_BARRAGEDescription[] = _(
|
|||
"amount of ghosts at a foe.");
|
||||
|
||||
static const u8 sEERIE_SPELLDescription[] = _(
|
||||
"Eeriely inflicts damage and\n"
|
||||
"cuts a foe's las move's PP.");
|
||||
"Attacks with psychic power.\n"
|
||||
"Foe's last move has 3 PP cut.");
|
||||
|
||||
static const u8 sNotDoneYetDescription[] = _(
|
||||
"Not done yet.");
|
||||
|
|
Loading…
Reference in a new issue