From 1e6d9b1855f319ba6b215bdcd47391a6020ea776 Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 11 Dec 2023 19:25:26 +0100 Subject: [PATCH] wrong move power --- src/data/battle_moves.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/data/battle_moves.h b/src/data/battle_moves.h index fed757cdc5bc..64eb7cf6ae4f 100644 --- a/src/data/battle_moves.h +++ b/src/data/battle_moves.h @@ -6302,7 +6302,7 @@ const struct BattleMove gBattleMoves[MOVES_COUNT_Z] = [MOVE_METAL_BURST] = { .effect = EFFECT_METAL_BURST, - .power = 0, + .power = 1, .type = TYPE_STEEL, .accuracy = 100, .pp = 10, @@ -6428,7 +6428,7 @@ const struct BattleMove gBattleMoves[MOVES_COUNT_Z] = [MOVE_TRUMP_CARD] = { .effect = EFFECT_TRUMP_CARD, - .power = 0, + .power = 1, .type = TYPE_NORMAL, .accuracy = 0, .pp = 5, @@ -13656,7 +13656,7 @@ const struct BattleMove gBattleMoves[MOVES_COUNT_Z] = [MOVE_COMEUPPANCE] = { .effect = EFFECT_METAL_BURST, - .power = 0, + .power = 1, .type = TYPE_DARK, .accuracy = 100, .pp = 10,