Merge branch 'mystery-battle-events' of https://github.com/InnocentGameDev/PokeRogue-Events into winstrate-challenge

update weird dream
This commit is contained in:
ImperialSympathizer 2024-08-19 10:55:02 -04:00
commit d2356a2ee8
2 changed files with 13 additions and 10 deletions

View File

@ -1,7 +1,7 @@
name: Mysterious Encounter name: Mysterious Encounter
description: Propose a new mysterious encounter description: Propose a new mysterious encounter
title: "[M.E.] (Rarity)" title: "[M.E.] NameOfM.E. (RarityProposed)"
labels: ["New Mystery Encounter", "Balance Adjustment"] labels: ["Mystery Encounter Proposal"]
projects: ["AsdarDevelops/MEs / Events Project"] projects: ["AsdarDevelops/MEs / Events Project"]
body: body:
- type: input - type: input

View File

@ -61,17 +61,20 @@ const excludedPokemon = [
Species.IRON_BOULDER, Species.IRON_BOULDER,
Species.IRON_CROWN, Species.IRON_CROWN,
/** These are banned so they don't appear in the < 570 BST pool */ /** These are banned so they don't appear in the < 570 BST pool */
Species.COSMOG,
Species.MELTAN,
Species.KUBFU,
Species.COSMOEM,
Species.POIPOLE,
Species.TERAPAGOS,
Species.TYPE_NULL,
Species.CALYREX,
Species.NAGANADEL,
Species.URSHIFU, Species.URSHIFU,
Species.CUBCHOO, Species.OGERPON,
Species.OKIDOGI, Species.OKIDOGI,
Species.MUNKIDORI, Species.MUNKIDORI,
Species.FEZANDIPITI, Species.FEZANDIPITI,
Species.OGERPON,
Species.CALYREX,
Species.TYPE_NULL,
Species.TERAPAGOS,
Species.COSMOG,
Species.COSMOEM,
]; ];
/** /**
@ -370,7 +373,7 @@ async function doNewTeamPostProcess(scene: BattleScene, transformations: Pokemon
} }
// Any pokemon that is at or below 450 BST gets +20 permanent BST to 3 stats: HP, lowest of Atk/SpAtk, and lowest of Def/SpDef // Any pokemon that is at or below 450 BST gets +20 permanent BST to 3 stats: HP, lowest of Atk/SpAtk, and lowest of Def/SpDef
if (newPokemon.getSpeciesForm().getBaseStatTotal() <= 600) { if (newPokemon.getSpeciesForm().getBaseStatTotal() <= 450) {
const stats: Stat[] = [Stat.HP]; const stats: Stat[] = [Stat.HP];
const baseStats = newPokemon.getSpeciesForm().baseStats.slice(0); const baseStats = newPokemon.getSpeciesForm().baseStats.slice(0);
// Attack or SpAtk // Attack or SpAtk