Compare commits

...

3 Commits

Author SHA1 Message Date
Bertie690
5ce73a0ba6
Merge 933450297c into dac9e202a0 2025-08-05 11:14:29 +00:00
Bertie690
933450297c
Update all-rewards.ts
Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>
2025-08-05 07:14:27 -04:00
Bertie690
704209d7a8
Update all-reward-type.ts
Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>
2025-08-05 07:14:20 -04:00
2 changed files with 0 additions and 11 deletions

View File

@ -79,12 +79,6 @@ export type allRewardsType = {
[RewardId.PP_UP]: () => PokemonPpUpReward;
[RewardId.PP_MAX]: () => PokemonPpUpReward;
/*
[RewardId.REPEL]: () => DoubleBattleChanceBoosterReward,
[RewardId.SUPER_REPEL]: () => DoubleBattleChanceBoosterReward,
[RewardId.MAX_REPEL]: () => DoubleBattleChanceBoosterReward,
*/
[RewardId.MINT]: () => MintRewardGenerator;
[RewardId.TERA_SHARD]: () => TeraTypeRewardGenerator;

View File

@ -132,11 +132,6 @@ export function initRewards() {
allRewards[RewardId.PP_MAX] = () =>
new PokemonPpUpReward("modifierType:ModifierType.PP_MAX", "pp_max", RewardId.PP_MAX, 3);
/*
REPEL] = () => new DoubleBattleChanceBoosterReward('Repel', 5),
SUPER_REPEL] = () => new DoubleBattleChanceBoosterReward('Super Repel', 10),
MAX_REPEL] = () => new DoubleBattleChanceBoosterReward('Max Repel', 25),*/
allRewards[RewardId.MINT] = () => new MintRewardGenerator();
allRewards[RewardId.TERA_SHARD] = () => new TeraTypeRewardGenerator();