Merge 29b7fcd9da into 1b751dddec
commit
eb96c3d2a9
|
|
@ -5782,7 +5782,7 @@ export function initMoves() {
|
||||||
new StatusMove(Moves.QUASH, Type.DARK, 100, 15, -1, 0, 5)
|
new StatusMove(Moves.QUASH, Type.DARK, 100, 15, -1, 0, 5)
|
||||||
.unimplemented(),
|
.unimplemented(),
|
||||||
new AttackMove(Moves.ACROBATICS, Type.FLYING, MoveCategory.PHYSICAL, 55, 100, 15, -1, 0, 5)
|
new AttackMove(Moves.ACROBATICS, Type.FLYING, MoveCategory.PHYSICAL, 55, 100, 15, -1, 0, 5)
|
||||||
.attr(MovePowerMultiplierAttr, (user, target, move) => Math.max(1, 2 - 0.2 * user.getHeldItems().reduce((v, m) => v + m.stackCount, 0))),
|
.attr(MovePowerMultiplierAttr, (user, target, move) => Math.max(1, 2 - 0.2 * user.getHeldItems().filter(i => i.getTransferrable(true)).reduce((v, m) => v + m.stackCount, 0))),
|
||||||
new StatusMove(Moves.REFLECT_TYPE, Type.NORMAL, -1, 15, -1, 0, 5)
|
new StatusMove(Moves.REFLECT_TYPE, Type.NORMAL, -1, 15, -1, 0, 5)
|
||||||
.attr(CopyTypeAttr),
|
.attr(CopyTypeAttr),
|
||||||
new AttackMove(Moves.RETALIATE, Type.NORMAL, MoveCategory.PHYSICAL, 70, 100, 5, -1, 0, 5)
|
new AttackMove(Moves.RETALIATE, Type.NORMAL, MoveCategory.PHYSICAL, 70, 100, 5, -1, 0, 5)
|
||||||
|
|
|
||||||
|
|
@ -2047,7 +2047,7 @@ export const move: MoveTranslationEntries = {
|
||||||
},
|
},
|
||||||
"acrobatics": {
|
"acrobatics": {
|
||||||
name: "Acrobatics",
|
name: "Acrobatics",
|
||||||
effect: "The user nimbly strikes the target. If the user is not holding an item, this attack inflicts massive damage."
|
effect: "The user nimbly strikes the target. The fewer held items, higher the damage."
|
||||||
},
|
},
|
||||||
"reflectType": {
|
"reflectType": {
|
||||||
name: "Reflect Type",
|
name: "Reflect Type",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue