mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2025-01-18 01:14:19 +01:00
Review changes.
This commit is contained in:
parent
b5834b617d
commit
ae60ae8a2d
@ -631,6 +631,7 @@
|
||||
#define MOVE_THOUSAND_WAVES 615
|
||||
#define MOVE_LANDS_WRATH 616
|
||||
#define MOVE_LIGHT_OF_RUIN 617
|
||||
// ORAS Moves
|
||||
#define MOVE_ORIGIN_PULSE 618
|
||||
#define MOVE_PRECIPICE_BLADES 619
|
||||
#define MOVE_DRAGON_ASCENT 620
|
||||
@ -690,9 +691,11 @@
|
||||
#define MOVE_ZING_ZAP 670
|
||||
#define MOVE_NATURES_MADNESS 671
|
||||
#define MOVE_MULTI_ATTACK 672
|
||||
// USUM Moves
|
||||
#define MOVE_MIND_BLOWN 673
|
||||
#define MOVE_PLASMA_FISTS 674
|
||||
#define MOVE_PHOTON_GEYSER 675
|
||||
// LGPE Moves
|
||||
#define MOVE_ZIPPY_ZAP 676
|
||||
#define MOVE_SPLISHY_SPLASH 677
|
||||
#define MOVE_FLOATY_FALL 678
|
||||
@ -746,6 +749,7 @@
|
||||
#define MOVE_METEOR_ASSAULT 722
|
||||
#define MOVE_ETERNABEAM 723
|
||||
#define MOVE_STEEL_BEAM 724
|
||||
// Isle of Armor Moves
|
||||
#define MOVE_EXPANDING_FORCE 725
|
||||
#define MOVE_STEEL_ROLLER 726
|
||||
#define MOVE_SCALE_SHOT 727
|
||||
|
@ -10347,7 +10347,7 @@ const struct BattleMove gBattleMoves[MOVES_COUNT] =
|
||||
[MOVE_FLOATY_FALL] =
|
||||
{
|
||||
.effect = EFFECT_FLINCH_HIT,
|
||||
.power = 90,
|
||||
.power = 95,
|
||||
.type = TYPE_FLYING,
|
||||
.accuracy = 90,
|
||||
.pp = 15,
|
||||
@ -10500,7 +10500,7 @@ const struct BattleMove gBattleMoves[MOVES_COUNT] =
|
||||
|
||||
[MOVE_DOUBLE_IRON_BASH] =
|
||||
{
|
||||
.effect = EFFECT_FLINCH_HIT,
|
||||
.effect = EFFECT_PLACEHOLDER, //TODO (EFFECT_FLINCH_HIT + EFFECT_DOUBLE_HIT)
|
||||
.power = 60,
|
||||
.type = TYPE_STEEL,
|
||||
.accuracy = 100,
|
||||
|
@ -2823,8 +2823,8 @@ static const u8 sEXPANDING_FORCEDescription[] = _(
|
||||
"powerful in Psychic Terrain.");
|
||||
|
||||
static const u8 sSTEEL_ROLLERDescription[] = _(
|
||||
"Destroys the current terrain."
|
||||
"Otherwise, it fails.");
|
||||
"Destroys any active terrain.\n"
|
||||
"Without one, it fails.");
|
||||
|
||||
static const u8 sSCALE_SHOTDescription[] = _(
|
||||
"Shoots scales 2 to 5 times.\n"
|
||||
@ -2903,8 +2903,8 @@ static const u8 sWICKED_BLOWDescription[] = _(
|
||||
"always does a critical hit.");
|
||||
|
||||
static const u8 sSURGING_STRIKESDescription[] = _(
|
||||
"The Water style allows to\n"
|
||||
"do 3 critical hits in a row.");
|
||||
"By mastering the Water style\n"
|
||||
"it lands with 3 critical hits.");
|
||||
|
||||
static const u8 sNotDoneYetDescription[] = _(
|
||||
"Not done yet.");
|
||||
|
Loading…
x
Reference in New Issue
Block a user