mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-06-21 17:12:44 +02:00
Update weird-dream-encounter.ts
Fix Banlist Add a fourth Nature Mint to the reward screen after choosing option 1
This commit is contained in:
parent
d2ace47e1e
commit
37f6e7075f
@ -49,6 +49,7 @@ const namespace = "mysteryEncounters/weirdDream";
|
|||||||
|
|
||||||
/** Exclude Ultra Beasts, Paradox, Eternatus, and all legendary/mythical/trio pokemon that are below 570 BST */
|
/** Exclude Ultra Beasts, Paradox, Eternatus, and all legendary/mythical/trio pokemon that are below 570 BST */
|
||||||
const EXCLUDED_TRANSFORMATION_SPECIES = [
|
const EXCLUDED_TRANSFORMATION_SPECIES = [
|
||||||
|
SpeciesId.ARCEUS,
|
||||||
SpeciesId.ETERNATUS,
|
SpeciesId.ETERNATUS,
|
||||||
/** UBs */
|
/** UBs */
|
||||||
SpeciesId.NIHILEGO,
|
SpeciesId.NIHILEGO,
|
||||||
@ -84,20 +85,19 @@ const EXCLUDED_TRANSFORMATION_SPECIES = [
|
|||||||
SpeciesId.IRON_BOULDER,
|
SpeciesId.IRON_BOULDER,
|
||||||
SpeciesId.IRON_CROWN,
|
SpeciesId.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 */
|
||||||
|
SpeciesId.PHIONE,
|
||||||
|
SpeciesId.TYPE_NULL,
|
||||||
SpeciesId.COSMOG,
|
SpeciesId.COSMOG,
|
||||||
|
SpeciesId.COSMOEM,
|
||||||
SpeciesId.MELTAN,
|
SpeciesId.MELTAN,
|
||||||
SpeciesId.KUBFU,
|
SpeciesId.KUBFU,
|
||||||
SpeciesId.COSMOEM,
|
|
||||||
SpeciesId.POIPOLE,
|
|
||||||
SpeciesId.TERAPAGOS,
|
|
||||||
SpeciesId.TYPE_NULL,
|
|
||||||
SpeciesId.CALYREX,
|
|
||||||
SpeciesId.NAGANADEL,
|
|
||||||
SpeciesId.URSHIFU,
|
SpeciesId.URSHIFU,
|
||||||
|
SpeciesId.CALYREX,
|
||||||
SpeciesId.OGERPON,
|
SpeciesId.OGERPON,
|
||||||
SpeciesId.OKIDOGI,
|
SpeciesId.OKIDOGI,
|
||||||
SpeciesId.MUNKIDORI,
|
SpeciesId.MUNKIDORI,
|
||||||
SpeciesId.FEZANDIPITI,
|
SpeciesId.FEZANDIPITI,
|
||||||
|
SpeciesId.TERAPAGOS,
|
||||||
];
|
];
|
||||||
|
|
||||||
const SUPER_LEGENDARY_BST_THRESHOLD = 600;
|
const SUPER_LEGENDARY_BST_THRESHOLD = 600;
|
||||||
@ -230,6 +230,7 @@ export const WeirdDreamEncounter: MysteryEncounter = MysteryEncounterBuilder.wit
|
|||||||
modifierTypes.MINT,
|
modifierTypes.MINT,
|
||||||
modifierTypes.MINT,
|
modifierTypes.MINT,
|
||||||
modifierTypes.MINT,
|
modifierTypes.MINT,
|
||||||
|
modifierTypes.MINT,
|
||||||
],
|
],
|
||||||
fillRemaining: false,
|
fillRemaining: false,
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user