small cleanup for winstrates
This commit is contained in:
parent
d2356a2ee8
commit
8826183777
|
@ -1067,10 +1067,6 @@ export default class BattleScene extends SceneBase {
|
||||||
newBattleType = battleType;
|
newBattleType = battleType;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (waveIndex === 64) {
|
|
||||||
newBattleType = BattleType.TRAINER;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (newBattleType === BattleType.TRAINER) {
|
if (newBattleType === BattleType.TRAINER) {
|
||||||
const trainerType = this.arena.randomTrainerType(newWaveIndex);
|
const trainerType = this.arena.randomTrainerType(newWaveIndex);
|
||||||
let doubleTrainer = false;
|
let doubleTrainer = false;
|
||||||
|
|
|
@ -1959,18 +1959,18 @@ export const trainerConfigs: TrainerConfigs = {
|
||||||
p.pokeball = PokeballType.MASTER_BALL;
|
p.pokeball = PokeballType.MASTER_BALL;
|
||||||
})),
|
})),
|
||||||
[TrainerType.VICTOR]: new TrainerConfig(++t).setName("Victor").setTitle("The Winstrates")
|
[TrainerType.VICTOR]: new TrainerConfig(++t).setName("Victor").setTitle("The Winstrates")
|
||||||
.setMoneyMultiplier(0.4) // The 5 Winstrate trainers have total money multiplier of 2.6
|
.setMoneyMultiplier(1) // The Winstrate trainers have total money multiplier of 6
|
||||||
.setPartyTemplates(trainerPartyTemplates.ONE_AVG_ONE_STRONG),
|
.setPartyTemplates(trainerPartyTemplates.ONE_AVG_ONE_STRONG),
|
||||||
[TrainerType.VICTORIA]: new TrainerConfig(++t).setName("Victoria").setTitle("The Winstrates")
|
[TrainerType.VICTORIA]: new TrainerConfig(++t).setName("Victoria").setTitle("The Winstrates")
|
||||||
.setMoneyMultiplier(0.4)
|
.setMoneyMultiplier(1)
|
||||||
.setPartyTemplates(trainerPartyTemplates.ONE_AVG_ONE_STRONG),
|
.setPartyTemplates(trainerPartyTemplates.ONE_AVG_ONE_STRONG),
|
||||||
[TrainerType.VIVI]: new TrainerConfig(++t).setName("Vivi").setTitle("The Winstrates")
|
[TrainerType.VIVI]: new TrainerConfig(++t).setName("Vivi").setTitle("The Winstrates")
|
||||||
.setMoneyMultiplier(0.4)
|
.setMoneyMultiplier(1)
|
||||||
.setPartyTemplates(trainerPartyTemplates.TWO_AVG_ONE_STRONG),
|
.setPartyTemplates(trainerPartyTemplates.TWO_AVG_ONE_STRONG),
|
||||||
[TrainerType.VICKY]: new TrainerConfig(++t).setName("Vicky").setTitle("The Winstrates")
|
[TrainerType.VICKY]: new TrainerConfig(++t).setName("Vicky").setTitle("The Winstrates")
|
||||||
.setMoneyMultiplier(0.4)
|
.setMoneyMultiplier(1)
|
||||||
.setPartyTemplates(trainerPartyTemplates.ONE_STRONG),
|
.setPartyTemplates(trainerPartyTemplates.ONE_STRONG),
|
||||||
[TrainerType.VITO]: new TrainerConfig(++t).setName("Vito").setTitle("The Winstrates")
|
[TrainerType.VITO]: new TrainerConfig(++t).setName("Vito").setTitle("The Winstrates")
|
||||||
.setMoneyMultiplier(1)
|
.setMoneyMultiplier(2)
|
||||||
.setPartyTemplates(new TrainerPartyCompoundTemplate(new TrainerPartyTemplate(3, PartyMemberStrength.AVERAGE), new TrainerPartyTemplate(2, PartyMemberStrength.STRONG)))
|
.setPartyTemplates(new TrainerPartyCompoundTemplate(new TrainerPartyTemplate(3, PartyMemberStrength.AVERAGE), new TrainerPartyTemplate(2, PartyMemberStrength.STRONG)))
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue