Pokeclicker-Scripts
Pokeclicker-Scripts copied to clipboard
[Feature Request][Catch Filter Fantasia] Show Pokérus status in catch filter
Would it be possible to add a column showing Pokérus status in the Catch Filter Fantasia script?

The added nodes could be one of:
<img src="assets/images/breeding/pokerus/Infected.png" class="filter-pokerus" alt="Pokérus Infected">
<img src="assets/images/breeding/pokerus/Contagious.png" class="filter-pokerus" alt="Pokérus Contagious">
<img src="assets/images/breeding/pokerus/Resistant.png" class="filter-pokerus" alt="Pokérus Resistant">
With the CSS style:
.filter-pokerus{ position: absolute; right: 11%; }
Pokerus status can be gotten with one of:
App.game.party.getPokemon().pokerus
App.game.party.getPokemonByName().pokerus
Where:
0 is Uninfected
1 is Infected
2 is Contagious
3 is Resistant
It's a neat idea.
Definitely will be considering it.