Donc il les ignore pas sur false
Transferring
PrioritizeIVOverCP (Value)
When PrioritizeIVOverCP is set to true, the bot will sort by IV instead of CP when deciding which Pokemon to transfer out of a group of duplicate Pokemon. By default, the bot sorts by CP.
TransferDuplicatePokemon (Value)
When TransferDuplicatePokemon is set to true, any Pokemon that meets the below criteria is transferred:
- Total number of that Pokemon species in your inventory is greater thanKeepMinDuplicatePokemon
- Below the KeepMinIVPercentage value
- Below the KeepMinCP value
- Is not listed in your PokemonsNotToTransfer list
Note that any of the first three criteria are global values and they CAN be overwritten by the Pokemon-specific settings in the PokemonsTransferFilter list.
KeepMinDuplicatePokemon (Value)
NOTE: Only used if TransferDuplicatePokemon is set to true This is a global setting that applies to any Pokemon that has not been overridden by an entry in thePokemonsTransferFilter list.
This value specifies how many duplicates of each Pokemon to keep when deciding what Pokemon to transfer. This number can be Pokemon-specific by creating an entry in thePokemonsTransferFilter list. A Pokemon can also be excluded from transfer with thePokemonsNotToTransfer list.
KeepMinIVPercentage (Value)
NOTE: Only used if TransferDuplicatePokemon is set to true This is a global setting that applies to any Pokemon that has not been overridden by an entry in thePokemonsTransferFilter list.
This value specifies that a Pokemon that has an IV higher than this value will not be transferred. This number can be Pokemon-specific by creating an entry in thePokemonsTransferFilter list. A Pokemon can also be excluded from transfer with thePokemonsNotToTransfer list.
KeepMinCP (Value)
NOTE: Only used if TransferDuplicatePokemon is set to true This is a global setting that applies to any Pokemon that has not been overridden by an entry in thePokemonsTransferFilter list.
This value specifies that a Pokemon that has an CP higher than this value will not be transferred. This number can be Pokemon-specific by creating an entry in thePokemonsTransferFilter list. A Pokemon can also be excluded from transfer with thePokemonsNotToTransfer list.
PokemonsNotToTransfer (List)
Only used if TransferDuplicatePokemon is set to true Comma-seperated quote-wrapped list of Pokemon names that distinguish what Pokemon to keep regardless of their IV or CP so that they are not transferred. Pokemon in this list should never be transferred by NecroBot.
PokemonTransferFilter (List)
Only used if TransferDuplicatePokemon is set to true This list of Pokemon names lets you set the KeepMinDuplicatePokemon, KeepMinIVPercentage, and KeepMinCP values specific to each Pokemon. This lets you override the default global values for those.
Therefore, if you have an entry in PokemonTransferFilter like below:
"KeepMinCp": 1000,
"KeepMinDuplicatePokemon": 1,
"KeepMinIvPercentage": 90.0,
"PokemonsTransferFilter": {
"Pinsir": {
"KeepMinCp": 500,
"KeepMinIvPercentage": 70.0,
"KeepMinDuplicatePokemon": 2
}
}
then NecroBot will transfer any Pinsirs that are below 500 CP and below 70% IV while keeping 2 duplicates.