Had the same problem, also Mono Ice.https://replay.pokemonshowdown.com/gen7monotyperandombattle-922087911
5 pokemon on one team?
Teclis : Replacing the battle link by the replay.
http://replay.pokemonshowdown.com/gen7monotyperandombattle-922533368
Had the same problem, also Mono Ice.https://replay.pokemonshowdown.com/gen7monotyperandombattle-922087911
5 pokemon on one team?
Teclis : Replacing the battle link by the replay.
https://replay.pokemonshowdown.com/gen1ou-922163873
RBY speed stats are weird Turn 16 my jynx is slower than lax and from turn 61 on my lax is slower than his paralyzed chansey. Or did we miss something?
Had the same problem, also Mono Ice.DanDaMan99 said:
https://replay.pokemonshowdown.com/gen7monotyperandombattle-922087911
5 pokemon on one team?
Teclis : Replacing the battle link by the replay.
http://replay.pokemonshowdown.com/gen7monotyperandombattle-922533368
//Limit two Pokemon per tier
if (!tierCount[tier]) {
tierCount[tier] = 1;
} else if (tierCount[tier] > 1) {
continue;
}
tierCount[tier]++;
//Limit two Pokemon per tier
if (!tierCount[tier]) {
tierCount[tier] = 0;
} else if (tierCount[tier] > 1) {
continue;
}
// Adjust rate for species with multiple formes
switch (template.baseSpecies) {
case 'Arceus': case 'Silvally':
if (this.randomChance(17, 18)) continue;
break;
case 'Rotom':
if (this.randomChance(5, 6)) continue;
break;
case 'Deoxys': case 'Gourgeist': case 'Oricorio':
if (this.randomChance(3, 4)) continue;
break;
case 'Castform': case 'Kyurem': case 'Lycanroc': case 'Necrozma': case 'Wormadam':
if (this.randomChance(2, 3)) continue;
break;
case 'Basculin': case 'Cherrim': case 'Floette': case 'Giratina': case 'Hoopa': case 'Landorus': case 'Meloetta': case 'Meowstic': case 'Shaymin': case 'Thundurus': case 'Tornadus':
if (this.randomChance(1, 2)) continue;
break;
case 'Dugtrio': case 'Exeggutor': case 'Golem': case 'Greninja': case 'Marowak': case 'Muk': case 'Ninetales': case 'Persian': case 'Raichu': case 'Sandslash': case 'Zygarde':
if (this.gen >= 7 && this.randomChance(1, 2)) continue;
break;
}
Ah yes, these were exactly the same problems I was encountering trying to make past gen Monotype work on ROM. (Worst was Gen 3, where there are very few type combos available for some types at all, so two of each type combo is not enough.) In particular, I wound up rewriting the code that selects the alternate formes to pick each species with at least one valid forme randomly and then pick a random valid forme from that species.Ice Monotype team generation can hit a bunch of edge cases which result in teams of 5 Pokemon, which can be fixed a few different ways. I don't think it's possible for any other type to have the same problem.
Ah yes, these were exactly the same problems I was encountering trying to make past gen Monotype work on ROM. (Worst was Gen 3, where there are very few type combos available for some types at all, so two of each type combo is not enough.) In particular, I wound up rewriting the code that selects the alternate formes to pick each species with at least one valid forme randomly and then pick a random valid forme from that species.
// Adjust rate for species with multiple formes
switch (template.baseSpecies) {
case 'Arceus': case 'Silvally':
if (this.randomChance(17, 18)) continue;
break;
case 'Rotom':
if (this.randomChance(5, 6)) continue;
break;
case 'Deoxys': case 'Gourgeist': case 'Oricorio':
if (this.randomChance(3, 4)) continue;
break;
case 'Castform': case 'Kyurem': case 'Lycanroc': case 'Necrozma': case 'Wormadam':
if (this.randomChance(2, 3)) continue;
break;
case 'Basculin': case 'Cherrim': case 'Floette': case 'Giratina': case 'Hoopa': case 'Landorus': case 'Meloetta': case 'Meowstic': case 'Shaymin': case 'Thundurus': case 'Tornadus':
if (this.randomChance(1, 2)) continue;
break;
case 'Dugtrio': case 'Exeggutor': case 'Golem': case 'Greninja': case 'Marowak': case 'Muk': case 'Ninetales': case 'Persian': case 'Raichu': case 'Sandslash': case 'Zygarde':
if (this.gen >= 7 && this.randomChance(1, 2)) continue;
break;
}
//Build list of Formes
/**@type {{[k: string]: number}} */
let formesSeen = {};
for (let i = 0; i < pokemonPool.length; i++) {
let species = this.getTemplate(pokemonPool[i]).baseSpecies;
if (formesSeen[species]) {
formesSeen[species]++;
} else {
formesSeen[species] = 1;
}
}
for (var species in formesSeen) {
if (formesSeen.hasOwnProperty(species)) {
formesSeen[species] = this.random(1,formesSeen[species]);
}
}
// Adjust rate for species with multiple formes
formesSeen[template.baseSpecies]--;
if (formesSeen[template.baseSpecies] != 0) continue;
View attachment 178824
My whimsicott fainted from a flame thrower while behind a substitute.
wasn't sure if it had something to do with the quick claw being used at the same time as my priority move.
"Damage dealt by Future Sight does not have a type; it is not affected by type effectiveness (so can hit Dark-type Pokémon), does not receive STAB, and can hit Pokémon with Wonder Guard" -bulbapediahttp://replay.pokemonshowdown.com/gen7customgame-925479121 so doom desire and future sight ignore wonder guard
Head smash ran out of PP due to Deoxys' ability Pressure.Head smash is stopped by taunt
http://replay.pokemonshowdown.com/gen71v1-926747954
| Format | Elo | GXE | Glicko-1 | W | L | Total |
|---|---|---|---|---|---|---|
| User: lto4mtfg | ||||||
| [Gen 7] OU | 1290 | 72.3% | 1685 ± 77 | 14 | 1 | 15 |
| Reset W/L |
| Format | Elo | GXE | Glicko-1 | W | L | Total |
|---|---|---|---|---|---|---|
| User: lto4mtfg | ||||||
| [Gen 7] OU | 1301 | 72.5% | 1687 ± 75 | 15 | 1 | 16 |
| Reset W/L |
| Format | Elo | GXE | Glicko-1 | W | L | Total |
|---|---|---|---|---|---|---|
| User: lto4mtfg | ||||||
| [Gen 7] OU | 1298 | 70.7% | 1669 ± 71 | 17 | 2 | 19 |
| Reset W/L |
| Format | Elo | GXE | Glicko-1 | W | L | Total |
|---|---|---|---|---|---|---|
| User: lto4mtfg | ||||||
| [Gen 7] OU | 1347 | 72.3% | 1684 ± 66 | 22 | 2 | 24 |
| Reset W/L |
| Format | Elo | GXE | Glicko-1 | W | L | Total |
|---|---|---|---|---|---|---|
| User: lto4mtfg | ||||||
| [Gen 7] OU | 1390 | 74.5% | 1704 ± 60 | 28 | 2 | 30 |
| Reset W/L |
| Format | Elo | GXE | Glicko-1 | W | L | Total |
|---|---|---|---|---|---|---|
| User: lto4mtfg | ||||||
| [Gen 7] OU | 1390 | 74.5% | 1704 ± 60 | 28 | 2 | 30 |
| Reset W/L |
| Format | Elo | GXE | Glicko-1 | W | L | Total |
|---|---|---|---|---|---|---|
| User: lto4mtfg | ||||||
| [Gen 7] OU | 1398 | 74.8% | 1708 ± 59 | 29 | 2 | 31 |
| Reset W/L |
| Format | Elo | GXE | Glicko-1 | W | L | Total |
|---|---|---|---|---|---|---|
| User: lto4mtfg | ||||||
| [Gen 7] OU | 1403 | 74.9% | 1709 ± 59 | 30 | 2 | 32 |
| Reset W/L |