mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-05 16:02:20 +02:00
Update learnsets
Since the move was removed post gen 8, I used the levels from gen 7 learnsets. Also marked as partial complete because it's supposed to fully disable moves that can heal like drain punch, etc but that's too much work for now
This commit is contained in:
parent
263aae7eec
commit
28cdc10ff3
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "pokemon-rogue-battle",
|
"name": "pokemon-rogue-battle",
|
||||||
"version": "1.0.2",
|
"version": "1.0.1",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "pokemon-rogue-battle",
|
"name": "pokemon-rogue-battle",
|
||||||
"version": "1.0.2",
|
"version": "1.0.1",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@material/material-color-utilities": "^0.2.7",
|
"@material/material-color-utilities": "^0.2.7",
|
||||||
"crypto-js": "^4.2.0",
|
"crypto-js": "^4.2.0",
|
||||||
|
@ -4727,7 +4727,8 @@ export function initMoves() {
|
|||||||
.unimplemented(),
|
.unimplemented(),
|
||||||
new StatusMove(Moves.HEAL_BLOCK, Type.PSYCHIC, 100, 15, -1, 0, 4)
|
new StatusMove(Moves.HEAL_BLOCK, Type.PSYCHIC, 100, 15, -1, 0, 4)
|
||||||
.target(MoveTarget.ALL_NEAR_ENEMIES)
|
.target(MoveTarget.ALL_NEAR_ENEMIES)
|
||||||
.attr(AddBattlerTagAttr, BattlerTagType.HEAL_BLOCKED, false, true, 5),
|
.attr(AddBattlerTagAttr, BattlerTagType.HEAL_BLOCKED, false, true, 5)
|
||||||
|
.partial(),
|
||||||
new AttackMove(Moves.WRING_OUT, Type.NORMAL, MoveCategory.SPECIAL, -1, 100, 5, -1, 0, 4)
|
new AttackMove(Moves.WRING_OUT, Type.NORMAL, MoveCategory.SPECIAL, -1, 100, 5, -1, 0, 4)
|
||||||
.attr(OpponentHighHpPowerAttr)
|
.attr(OpponentHighHpPowerAttr)
|
||||||
.makesContact(),
|
.makesContact(),
|
||||||
@ -6320,7 +6321,8 @@ export function initMoves() {
|
|||||||
.attr(NoEffectAttr, crashDamageFunc),
|
.attr(NoEffectAttr, crashDamageFunc),
|
||||||
new AttackMove(Moves.PSYCHIC_NOISE, Type.PSYCHIC, MoveCategory.SPECIAL, 75, 100, 10, -1, 0, 9)
|
new AttackMove(Moves.PSYCHIC_NOISE, Type.PSYCHIC, MoveCategory.SPECIAL, 75, 100, 10, -1, 0, 9)
|
||||||
.soundBased()
|
.soundBased()
|
||||||
.attr(AddBattlerTagAttr, BattlerTagType.HEAL_BLOCKED, false, true, 2),
|
.attr(AddBattlerTagAttr, BattlerTagType.HEAL_BLOCKED, false, true, 2)
|
||||||
|
.partial(),
|
||||||
new AttackMove(Moves.UPPER_HAND, Type.FIGHTING, MoveCategory.PHYSICAL, 65, 100, 15, -1, 3, 9)
|
new AttackMove(Moves.UPPER_HAND, Type.FIGHTING, MoveCategory.PHYSICAL, 65, 100, 15, -1, 3, 9)
|
||||||
.partial(),
|
.partial(),
|
||||||
new AttackMove(Moves.MALIGNANT_CHAIN, Type.POISON, MoveCategory.SPECIAL, 100, 100, 5, 50, 0, 9)
|
new AttackMove(Moves.MALIGNANT_CHAIN, Type.POISON, MoveCategory.SPECIAL, 100, 100, 5, 50, 0, 9)
|
||||||
|
@ -4269,6 +4269,7 @@ export const pokemonSpeciesLevelMoves: PokemonSpeciesLevelMoves = {
|
|||||||
[ 30, Moves.ANCIENT_POWER ],
|
[ 30, Moves.ANCIENT_POWER ],
|
||||||
[ 40, Moves.LIFE_DEW ],
|
[ 40, Moves.LIFE_DEW ],
|
||||||
[ 50, Moves.LEECH_SEED ],
|
[ 50, Moves.LEECH_SEED ],
|
||||||
|
[ 55, Moves.HEAL_BLOCK ],
|
||||||
[ 60, Moves.RECOVER ],
|
[ 60, Moves.RECOVER ],
|
||||||
[ 70, Moves.FUTURE_SIGHT ],
|
[ 70, Moves.FUTURE_SIGHT ],
|
||||||
[ 80, Moves.HEALING_WISH ],
|
[ 80, Moves.HEALING_WISH ],
|
||||||
@ -4967,6 +4968,7 @@ export const pokemonSpeciesLevelMoves: PokemonSpeciesLevelMoves = {
|
|||||||
[ 23, Moves.ABSORB ],
|
[ 23, Moves.ABSORB ],
|
||||||
[ 29, Moves.SHADOW_SNEAK ],
|
[ 29, Moves.SHADOW_SNEAK ],
|
||||||
[ 36, Moves.FURY_SWIPES ],
|
[ 36, Moves.FURY_SWIPES ],
|
||||||
|
[ 41, Moves.HEAL_BLOCK ],
|
||||||
[ 43, Moves.MIND_READER ],
|
[ 43, Moves.MIND_READER ],
|
||||||
[ 50, Moves.SHADOW_BALL ],
|
[ 50, Moves.SHADOW_BALL ],
|
||||||
[ 57, Moves.SPITE ],
|
[ 57, Moves.SPITE ],
|
||||||
@ -5787,6 +5789,7 @@ export const pokemonSpeciesLevelMoves: PokemonSpeciesLevelMoves = {
|
|||||||
[ 20, Moves.PSYSHOCK ],
|
[ 20, Moves.PSYSHOCK ],
|
||||||
[ 25, Moves.COSMIC_POWER ],
|
[ 25, Moves.COSMIC_POWER ],
|
||||||
[ 30, Moves.PSYCHIC ],
|
[ 30, Moves.PSYCHIC ],
|
||||||
|
[ 33, Moves.HEAL_BLOCK ],
|
||||||
[ 35, Moves.STONE_EDGE ],
|
[ 35, Moves.STONE_EDGE ],
|
||||||
[ 40, Moves.FUTURE_SIGHT ],
|
[ 40, Moves.FUTURE_SIGHT ],
|
||||||
[ 45, Moves.MAGIC_ROOM ],
|
[ 45, Moves.MAGIC_ROOM ],
|
||||||
@ -5805,6 +5808,7 @@ export const pokemonSpeciesLevelMoves: PokemonSpeciesLevelMoves = {
|
|||||||
[ 20, Moves.ZEN_HEADBUTT ],
|
[ 20, Moves.ZEN_HEADBUTT ],
|
||||||
[ 25, Moves.COSMIC_POWER ],
|
[ 25, Moves.COSMIC_POWER ],
|
||||||
[ 30, Moves.PSYCHIC ],
|
[ 30, Moves.PSYCHIC ],
|
||||||
|
[ 33, Moves.HEAL_BLOCK ],
|
||||||
[ 35, Moves.STONE_EDGE ],
|
[ 35, Moves.STONE_EDGE ],
|
||||||
[ 40, Moves.SOLAR_BEAM ],
|
[ 40, Moves.SOLAR_BEAM ],
|
||||||
[ 45, Moves.WONDER_ROOM ],
|
[ 45, Moves.WONDER_ROOM ],
|
||||||
@ -5881,6 +5885,7 @@ export const pokemonSpeciesLevelMoves: PokemonSpeciesLevelMoves = {
|
|||||||
[ 3, Moves.RAPID_SPIN ],
|
[ 3, Moves.RAPID_SPIN ],
|
||||||
[ 6, Moves.CONFUSION ],
|
[ 6, Moves.CONFUSION ],
|
||||||
[ 9, Moves.ROCK_TOMB ],
|
[ 9, Moves.ROCK_TOMB ],
|
||||||
|
[ 10, Moves.HEAL_BLOCK ],
|
||||||
[ 12, Moves.POWER_TRICK ],
|
[ 12, Moves.POWER_TRICK ],
|
||||||
[ 15, Moves.PSYBEAM ],
|
[ 15, Moves.PSYBEAM ],
|
||||||
[ 18, Moves.ANCIENT_POWER ],
|
[ 18, Moves.ANCIENT_POWER ],
|
||||||
@ -5902,6 +5907,7 @@ export const pokemonSpeciesLevelMoves: PokemonSpeciesLevelMoves = {
|
|||||||
[ 1, Moves.MUD_SLAP ],
|
[ 1, Moves.MUD_SLAP ],
|
||||||
[ 1, Moves.RAPID_SPIN ],
|
[ 1, Moves.RAPID_SPIN ],
|
||||||
[ 9, Moves.ROCK_TOMB ],
|
[ 9, Moves.ROCK_TOMB ],
|
||||||
|
[ 10, Moves.HEAL_BLOCK ],
|
||||||
[ 12, Moves.POWER_TRICK ],
|
[ 12, Moves.POWER_TRICK ],
|
||||||
[ 15, Moves.PSYBEAM ],
|
[ 15, Moves.PSYBEAM ],
|
||||||
[ 18, Moves.ANCIENT_POWER ],
|
[ 18, Moves.ANCIENT_POWER ],
|
||||||
@ -6497,6 +6503,7 @@ export const pokemonSpeciesLevelMoves: PokemonSpeciesLevelMoves = {
|
|||||||
[Species.LATIOS]: [
|
[Species.LATIOS]: [
|
||||||
[ 1, Moves.DRAGON_DANCE ],
|
[ 1, Moves.DRAGON_DANCE ],
|
||||||
[ 1, Moves.STORED_POWER ],
|
[ 1, Moves.STORED_POWER ],
|
||||||
|
[ 1, Moves.HEAL_BLOCK ],
|
||||||
[ 5, Moves.HELPING_HAND ],
|
[ 5, Moves.HELPING_HAND ],
|
||||||
[ 10, Moves.RECOVER ],
|
[ 10, Moves.RECOVER ],
|
||||||
[ 15, Moves.CONFUSION ],
|
[ 15, Moves.CONFUSION ],
|
||||||
@ -7355,6 +7362,7 @@ export const pokemonSpeciesLevelMoves: PokemonSpeciesLevelMoves = {
|
|||||||
[ 36, Moves.IRON_DEFENSE ],
|
[ 36, Moves.IRON_DEFENSE ],
|
||||||
[ 40, Moves.METAL_SOUND ],
|
[ 40, Moves.METAL_SOUND ],
|
||||||
[ 44, Moves.FUTURE_SIGHT ],
|
[ 44, Moves.FUTURE_SIGHT ],
|
||||||
|
[ 45, Moves.HEAL_BLOCK ],
|
||||||
],
|
],
|
||||||
[Species.BRONZONG]: [
|
[Species.BRONZONG]: [
|
||||||
[ 0, Moves.BLOCK ],
|
[ 0, Moves.BLOCK ],
|
||||||
@ -7373,6 +7381,7 @@ export const pokemonSpeciesLevelMoves: PokemonSpeciesLevelMoves = {
|
|||||||
[ 38, Moves.IRON_DEFENSE ],
|
[ 38, Moves.IRON_DEFENSE ],
|
||||||
[ 44, Moves.METAL_SOUND ],
|
[ 44, Moves.METAL_SOUND ],
|
||||||
[ 50, Moves.FUTURE_SIGHT ],
|
[ 50, Moves.FUTURE_SIGHT ],
|
||||||
|
[ 52, Moves.HEAL_BLOCK ],
|
||||||
[ 56, Moves.RAIN_DANCE ],
|
[ 56, Moves.RAIN_DANCE ],
|
||||||
],
|
],
|
||||||
[Species.BONSLY]: [
|
[Species.BONSLY]: [
|
||||||
@ -9709,6 +9718,7 @@ export const pokemonSpeciesLevelMoves: PokemonSpeciesLevelMoves = {
|
|||||||
[ 24, Moves.HYPNOSIS ],
|
[ 24, Moves.HYPNOSIS ],
|
||||||
[ 28, Moves.FAKE_TEARS ],
|
[ 28, Moves.FAKE_TEARS ],
|
||||||
[ 33, Moves.PSYCH_UP ],
|
[ 33, Moves.PSYCH_UP ],
|
||||||
|
[ 33, Moves.HEAL_BLOCK ],
|
||||||
[ 36, Moves.PSYCHIC ],
|
[ 36, Moves.PSYCHIC ],
|
||||||
[ 40, Moves.FLATTER ],
|
[ 40, Moves.FLATTER ],
|
||||||
[ 44, Moves.FUTURE_SIGHT ],
|
[ 44, Moves.FUTURE_SIGHT ],
|
||||||
@ -9724,6 +9734,7 @@ export const pokemonSpeciesLevelMoves: PokemonSpeciesLevelMoves = {
|
|||||||
[ 20, Moves.PSYSHOCK ],
|
[ 20, Moves.PSYSHOCK ],
|
||||||
[ 24, Moves.HYPNOSIS ],
|
[ 24, Moves.HYPNOSIS ],
|
||||||
[ 28, Moves.FAKE_TEARS ],
|
[ 28, Moves.FAKE_TEARS ],
|
||||||
|
[ 34, Moves.HEAL_BLOCK ],
|
||||||
[ 35, Moves.PSYCH_UP ],
|
[ 35, Moves.PSYCH_UP ],
|
||||||
[ 46, Moves.FLATTER ],
|
[ 46, Moves.FLATTER ],
|
||||||
[ 52, Moves.FUTURE_SIGHT ],
|
[ 52, Moves.FUTURE_SIGHT ],
|
||||||
@ -9739,6 +9750,7 @@ export const pokemonSpeciesLevelMoves: PokemonSpeciesLevelMoves = {
|
|||||||
[ 20, Moves.PSYSHOCK ],
|
[ 20, Moves.PSYSHOCK ],
|
||||||
[ 24, Moves.HYPNOSIS ],
|
[ 24, Moves.HYPNOSIS ],
|
||||||
[ 28, Moves.FAKE_TEARS ],
|
[ 28, Moves.FAKE_TEARS ],
|
||||||
|
[ 34, Moves.HEAL_BLOCK ],
|
||||||
[ 35, Moves.PSYCH_UP ],
|
[ 35, Moves.PSYCH_UP ],
|
||||||
[ 40, Moves.PSYCHIC ],
|
[ 40, Moves.PSYCHIC ],
|
||||||
[ 48, Moves.FLATTER ],
|
[ 48, Moves.FLATTER ],
|
||||||
@ -9760,6 +9772,7 @@ export const pokemonSpeciesLevelMoves: PokemonSpeciesLevelMoves = {
|
|||||||
[ 36, Moves.PSYCHIC ],
|
[ 36, Moves.PSYCHIC ],
|
||||||
[ 40, Moves.SKILL_SWAP ],
|
[ 40, Moves.SKILL_SWAP ],
|
||||||
[ 44, Moves.FUTURE_SIGHT ],
|
[ 44, Moves.FUTURE_SIGHT ],
|
||||||
|
[ 46, Moves.HEAL_BLOCK ],
|
||||||
[ 48, Moves.WONDER_ROOM ],
|
[ 48, Moves.WONDER_ROOM ],
|
||||||
],
|
],
|
||||||
[Species.DUOSION]: [
|
[Species.DUOSION]: [
|
||||||
@ -9776,6 +9789,7 @@ export const pokemonSpeciesLevelMoves: PokemonSpeciesLevelMoves = {
|
|||||||
[ 35, Moves.PAIN_SPLIT ],
|
[ 35, Moves.PAIN_SPLIT ],
|
||||||
[ 40, Moves.PSYCHIC ],
|
[ 40, Moves.PSYCHIC ],
|
||||||
[ 46, Moves.SKILL_SWAP ],
|
[ 46, Moves.SKILL_SWAP ],
|
||||||
|
[ 50, Moves.HEAL_BLOCK ],
|
||||||
[ 52, Moves.FUTURE_SIGHT ],
|
[ 52, Moves.FUTURE_SIGHT ],
|
||||||
[ 58, Moves.WONDER_ROOM ],
|
[ 58, Moves.WONDER_ROOM ],
|
||||||
],
|
],
|
||||||
@ -9794,6 +9808,7 @@ export const pokemonSpeciesLevelMoves: PokemonSpeciesLevelMoves = {
|
|||||||
[ 35, Moves.PAIN_SPLIT ],
|
[ 35, Moves.PAIN_SPLIT ],
|
||||||
[ 40, Moves.PSYCHIC ],
|
[ 40, Moves.PSYCHIC ],
|
||||||
[ 48, Moves.SKILL_SWAP ],
|
[ 48, Moves.SKILL_SWAP ],
|
||||||
|
[ 54, Moves.HEAL_BLOCK ],
|
||||||
[ 56, Moves.FUTURE_SIGHT ],
|
[ 56, Moves.FUTURE_SIGHT ],
|
||||||
[ 64, Moves.WONDER_ROOM ],
|
[ 64, Moves.WONDER_ROOM ],
|
||||||
],
|
],
|
||||||
@ -10198,6 +10213,7 @@ export const pokemonSpeciesLevelMoves: PokemonSpeciesLevelMoves = {
|
|||||||
[ 1, Moves.GROWL ],
|
[ 1, Moves.GROWL ],
|
||||||
[ 1, Moves.CONFUSION ],
|
[ 1, Moves.CONFUSION ],
|
||||||
[ 6, Moves.IMPRISON ],
|
[ 6, Moves.IMPRISON ],
|
||||||
|
[ 8, Moves.HEAL_BLOCK ],
|
||||||
[ 12, Moves.TELEPORT ],
|
[ 12, Moves.TELEPORT ],
|
||||||
[ 18, Moves.PSYBEAM ],
|
[ 18, Moves.PSYBEAM ],
|
||||||
[ 24, Moves.GUARD_SPLIT ],
|
[ 24, Moves.GUARD_SPLIT ],
|
||||||
@ -10215,6 +10231,7 @@ export const pokemonSpeciesLevelMoves: PokemonSpeciesLevelMoves = {
|
|||||||
[ 1, Moves.TELEPORT ],
|
[ 1, Moves.TELEPORT ],
|
||||||
[ 1, Moves.IMPRISON ],
|
[ 1, Moves.IMPRISON ],
|
||||||
[ 1, Moves.PSYCHIC_TERRAIN ],
|
[ 1, Moves.PSYCHIC_TERRAIN ],
|
||||||
|
[ 8, Moves.HEAL_BLOCK ],
|
||||||
[ 18, Moves.PSYBEAM ],
|
[ 18, Moves.PSYBEAM ],
|
||||||
[ 24, Moves.GUARD_SPLIT ],
|
[ 24, Moves.GUARD_SPLIT ],
|
||||||
[ 24, Moves.POWER_SPLIT ],
|
[ 24, Moves.POWER_SPLIT ],
|
||||||
@ -10872,6 +10889,7 @@ export const pokemonSpeciesLevelMoves: PokemonSpeciesLevelMoves = {
|
|||||||
[ 15, Moves.BITE ],
|
[ 15, Moves.BITE ],
|
||||||
[ 20, Moves.SHOCK_WAVE ],
|
[ 20, Moves.SHOCK_WAVE ],
|
||||||
[ 25, Moves.AGILITY ],
|
[ 25, Moves.AGILITY ],
|
||||||
|
[ 25, Moves.HEAL_BLOCK ],
|
||||||
[ 30, Moves.CHARGE ],
|
[ 30, Moves.CHARGE ],
|
||||||
[ 35, Moves.VOLT_SWITCH ],
|
[ 35, Moves.VOLT_SWITCH ],
|
||||||
[ 40, Moves.CRUNCH ],
|
[ 40, Moves.CRUNCH ],
|
||||||
@ -11960,6 +11978,7 @@ export const pokemonSpeciesLevelMoves: PokemonSpeciesLevelMoves = {
|
|||||||
[ 40, Moves.PLAY_ROUGH ],
|
[ 40, Moves.PLAY_ROUGH ],
|
||||||
[ 44, Moves.MAGIC_ROOM ],
|
[ 44, Moves.MAGIC_ROOM ],
|
||||||
[ 48, Moves.FOUL_PLAY ],
|
[ 48, Moves.FOUL_PLAY ],
|
||||||
|
[ 50, Moves.HEAL_BLOCK ],
|
||||||
[ 52, Moves.LAST_RESORT ],
|
[ 52, Moves.LAST_RESORT ],
|
||||||
],
|
],
|
||||||
[Species.PHANTUMP]: [
|
[Species.PHANTUMP]: [
|
||||||
@ -13033,6 +13052,7 @@ export const pokemonSpeciesLevelMoves: PokemonSpeciesLevelMoves = {
|
|||||||
[ 45, Moves.IRON_HEAD ],
|
[ 45, Moves.IRON_HEAD ],
|
||||||
[ 50, Moves.TAKE_DOWN ],
|
[ 50, Moves.TAKE_DOWN ],
|
||||||
[ 55, Moves.DOUBLE_EDGE ],
|
[ 55, Moves.DOUBLE_EDGE ],
|
||||||
|
[ 85, Moves.HEAL_BLOCK ],
|
||||||
],
|
],
|
||||||
[Species.SILVALLY]: [
|
[Species.SILVALLY]: [
|
||||||
[ 0, Moves.MULTI_ATTACK ],
|
[ 0, Moves.MULTI_ATTACK ],
|
||||||
@ -13041,6 +13061,7 @@ export const pokemonSpeciesLevelMoves: PokemonSpeciesLevelMoves = {
|
|||||||
[ 1, Moves.EXPLOSION ],
|
[ 1, Moves.EXPLOSION ],
|
||||||
[ 1, Moves.SCARY_FACE ],
|
[ 1, Moves.SCARY_FACE ],
|
||||||
[ 1, Moves.IMPRISON ],
|
[ 1, Moves.IMPRISON ],
|
||||||
|
[ 1, Moves.HEAL_BLOCK ],
|
||||||
[ 1, Moves.POISON_FANG ],
|
[ 1, Moves.POISON_FANG ],
|
||||||
[ 1, Moves.AERIAL_ACE ],
|
[ 1, Moves.AERIAL_ACE ],
|
||||||
[ 1, Moves.THUNDER_FANG ],
|
[ 1, Moves.THUNDER_FANG ],
|
||||||
|
Loading…
Reference in New Issue
Block a user