Commit Graph

4138 Commits

Author SHA1 Message Date
Guangcong Luo
c11dccb032
Rename and fix maxTeamSize (#8266)
`maxTeamSize` is a bad variable name (not that `teamLength.battle` is
any better, but that'll get fixed in a future refactor).

- Rename `maxTeamSize` to `chosenTeamSize`, to better indicate that
  this is the size after Team Preview, and that it is also the minimum
  size after Team Preview.

- Don't limit team sizes to 6 if `teamLength.battle` isn't specified.
  This removes an unnecessary `teamLength.battle` requirement in all
  Custom Game formats.

- Stop requiring `maxTeamSize` as a parameter for `battle.getRequests`.
  It's not even used except as a hint to the Preact client, and was
  never state in the first place.

- Stop supporting partial `side.chooseTeam`. This is an unused feature
  and removing it massively simplifies the code and fixes a bug in
  `cupLevelLimit` which definitely was not written with the
  understanding that `chooseTeam` could be partial.

- Fix a bug in #7929 which seemed to misunderstand what `teamsize` was
  for.
2021-05-04 00:31:05 -07:00
Kris Johnson
6ee011b0e5
Sketchmons: Update bans
again :|
2021-05-03 21:28:45 -06:00
Kris Johnson
26af3f3e2c
DPP OU: Update Viability Rankings link 2021-05-03 12:41:58 -06:00
Kris Johnson
b840cc663b
AAA: Add resources link 2021-05-03 12:41:03 -06:00
Kris Johnson
da1cb53002 1v1: Update bans 2021-05-03 11:21:43 -06:00
Instruct
7f5bebe75c
Sketchmons and Inverse: Update banlists (#8263)
* Inverse: Update Banlist

* [23:08] in the hills: sorry to bother but can u also add cinderace to the Sketchmons banlist, it was missed in the last update

* Update formats.ts

Co-authored-by: Kris Johnson <11083252+KrisXV@users.noreply.github.com>
2021-05-03 10:39:53 -06:00
Kris Johnson
80dce7047b Doubles LC: Add Sleep Clause Mod 2021-05-02 17:51:21 -06:00
Kris Johnson
97100ddf6a
Sketchmons: Update bans
https://www.smogon.com/forums/threads/sketchmons-om-of-the-month.3680298/page-3#post-8842675
2021-05-02 15:58:20 -06:00
Kris Johnson
e9a5bba42e
Sketchmons: Fix bans 2021-05-01 19:37:11 -06:00
Guangcong Luo
0eaa4cf630 Sketchmons does not need to be this complex 2021-05-01 15:40:04 -07:00
Kris Johnson
c83fdcad22 Inverse: Update bans 2021-05-01 14:48:39 -06:00
Kris Johnson
b38099e2b9
Sketchmons: Ban Swoobat and Wicked Blow
https://www.smogon.com/forums/threads/sketchmons-om-of-the-month.3680298/page-2#post-8841113
2021-05-01 12:16:00 -06:00
Leonard Craft III
2ad0281fed
Formats: Use the name VGC 2021 Series 9 (#8257) 2021-05-01 09:23:11 -06:00
Leonard Craft III
a1ca2f5302
Rename VGC 2021 ladder and upgrade Battle Stadium Singles to Series 9 (#8255)
* Battle Stadium Singles: Update to Series 9

* Update formats.ts

Co-authored-by: Kris Johnson <11083252+KrisXV@users.noreply.github.com>
2021-05-01 01:58:19 -06:00
Kris Johnson
497d3a6972 Add May 2021's OMotM, LCotM, and RoA Spotlight 2021-05-01 01:21:59 -06:00
Guangcong Luo
4d70b0a46a
Use data/tags for validator (#8218)
Previously, the validator had its own hardcoded tag system. This
removes the hardcoding and makes it so any pokemon tag in `tags.ts`
can be banned or unbanned.
2021-04-30 18:20:30 -07:00
Kris Johnson
ed8565a6db Free-For-All: Fix banlist and add alias 2021-04-30 11:18:46 -06:00
Marty-D
9651613c65
Mix & Mega: Ban Zacian
https://www.smogon.com/forums/threads/ss-m-m-zacian-voting.3683358/#post-8839666
2021-04-30 11:00:06 -04:00
May Evans
d2f9d52403
Gen 1: Fix Japanese OU and Tradebacks OU legality (#8242)
* [Gen 1] OU Standard rules, fix validator rule name

erm...

* Fix [Gen 1] Japanese OU & Tradebacks OU

- [Gen 1] Japanese OU shouldn't use the Nintendo Cup 1997 Legality unless you want it to be "RG OU" or something. If so, the name should be changed for accuracy.
- [Gen 1] Tradebacks OU shouldn't complex ban those combinations, the Stadium 2 relearner fixes them all.

* I really did do that huh
2021-04-30 01:44:56 -06:00
Kris Johnson
51d8a8a590 Add unrated Free-For-All ladder 2021-04-30 01:04:14 -06:00
Kris Johnson
31c0095088 Godly Gift: Ban Zacian 2021-04-27 20:58:33 -06:00
Kris Johnson
246b667c03 Add [Gen 1] Japanese OU 2021-04-27 20:48:48 -06:00
Kris Johnson
9730ae9b44 Stadium 2 OU: Ban Uber Pokemon 2021-04-27 20:34:34 -06:00
Kris Johnson
6d75966050 Move Glastrier to NU 2021-04-26 22:13:19 -06:00
Marty-D
f7734becf8
OU: Keep Zamazenta-Crowned banned
https://www.smogon.com/forums/threads/ss-ou-suspect-process-round-10-voting.3683046/page-8#post-8835168
2021-04-26 09:22:25 -04:00
Guangcong Luo
f9fdc73133
Support per-pokemon Residual handlers in Side/Field conditions (#8222)
For side conditions, `onStart`/`onRestart`/`onResidual`/`onEnd`
have been renamed `onSideStart`/`onSideRestart`/`onSideResidual`/`onSideEnd`,
with the `onResidualOrder` properties renamed `onSideResidualOrder`.

For field conditions, `onStart`/`onRestart`/`onResidual`/`onEnd`
have been renamed `onFieldStart`/`onFieldRestart`/`onFieldResidual`/`onFieldEnd`,
with the `onResidualOrder` properties renamed `onFieldResidualOrder`.

(The `onField` and `onSide` part helps make it clear to the type system
that the first argument is a Field or Side, not a Pokemon.)

Side and field conditions can now use `onResidual` to tick separately
on each pokemon in Speed order. `onResidualOrder` (the per-pokemon
tick) can be timed separate from `onSideResidualOrder` (the
per-condition tick), allowing conditions to end at a different priority
than they tick per-pokemon.

Relatedly, `onTeamPreview` and `onStart` in formats now need to be
`onFieldTeamPreview` and `onFieldStart`.

Unrelatedly, `effectData` has been renamed `effectState`, and the
corresponding state containers (`pokemon.statusData`,
`pokemon.speciesData`, `pokemon.itemData`, `pokemon.abilityData`,
`field.weatherData`, `field.terrainData`) have been similarly renamed. I
renamed the types a while ago, but I was holding off renaming the fields
because it would be a breaking change. But this is a breaking change
anyway, so we might as well do it now.

Note: `onResidual` will tick even on `onSideEnd` turns, although
`onSideResidual` won't. When refactoring weather, remember to
check `this.state.duration` so you don't deal weather damage on the
ending turn.

Intended as a better fix for #8216
2021-04-25 10:55:54 -07:00
Distrib
b60734ba8b
ZU: Add Sample Teams thread (#8223)
Requested by Apagogie ♡
2021-04-24 13:41:45 -06:00
Kris Johnson
a1bdafbfe8
Add room sections (#8205) 2021-04-23 22:39:56 -07:00
InAShellnut
9ab4c86fe3
Add Stadium 2, Nintendo Cup 1997, and Nintendo Cup 2000 (#8195)
An implementation of Nintendo Cup 1997, Nintendo Cup 2000, and Pokemon Stadium 2, for Pokemon Showdown. The only thing which has not been implemented was showing the exact health of both Pokemon in Pokemon Stadium 2, however implementing that requires changes to the showdown client. The Nintendo Cup 1997 code was done by Enigami, and the rest was by myself (Shellnuts).

This should fulfill the requirements asked by the following accepted suggestions:
https://www.smogon.com/forums/threads/please-add-a-pok%C3%A9mon-stadium-2-simulator-in-showdown.3679486/
https://www.smogon.com/forums/threads/add-nintendo-cup-1997-and-2000-as-challenge-only-formats.3653454/
2021-04-22 00:54:14 -07:00
Kris Johnson
1d27dfcc20
Doubles LC: Ban Vulpix
https://www.smogon.com/forums/threads/doubles-little-cup.3658672/#post-8829432
2021-04-21 02:08:17 -06:00
Instruct
ccb8bfc2a9
Fix build (#8212) 2021-04-18 15:18:23 -06:00
Kris Johnson
4dc1b18c74
National Dex: Ban Magearna
https://www.smogon.com/forums/threads/national-dex-magearna-voting.3682518/page-4#post-8825906
2021-04-18 14:45:42 -06:00
pacmanboss256
650d3868da
ZU: Ban Magneton (#8208)
https://www.smogon.com/forums/threads/np-zu-stage-5-1-new-bans-at-post-19-break-the-ice.3677885/page-2#post-8825334
2021-04-17 17:07:19 -07:00
Kris Johnson
b101df44cc Doubles LC: Enforce a max level of 5 2021-04-16 17:03:47 -06:00
Kris Johnson
b848bd5c9e Add a challengeable Doubles LC format 2021-04-16 17:01:18 -06:00
Leonard Craft III
489b49c1e4
Implement Series 9 VGC 2021 (#8203)
* Implement Series 9 VGC 2021

* Update aliases

* Keep Series 8 as VGC 2021 to preserve ladder

* Kris said this was ok
2021-04-15 19:20:56 -06:00
Kris Johnson
284b8f2df0 Shared Power: Fix bug 2021-04-15 18:58:07 -06:00
Kris Johnson
bfbec4bb50 NFE: Update links 2021-04-15 16:36:44 -06:00
Kris Johnson
568e99b0e5 Shared Power: Fix more abilities 2021-04-15 16:33:13 -06:00
Distrib
f6b5185011
Formats: Update threads (#8200) 2021-04-14 15:58:53 -04:00
Kris Johnson
fc60b76c48 Add new Pet Mod of the Season 2021-04-13 20:55:47 -06:00
Marty-D
4eee39cd4a Revert "Fix suspect test unbans"
This reverts commit 6c3615a6f8.
2021-04-12 17:03:40 -04:00
Marty-D
6c3615a6f8 Fix suspect test unbans 2021-04-12 16:00:53 -04:00
Kris Johnson
c3b46362d6 Move Entei and Glastrier to NUBL 2021-04-11 00:25:05 -06:00
Kris Johnson
e274aec02b Pokebilities: Ban Magearna 2021-04-10 19:06:10 -06:00
Kris Johnson
265d17a787 Fix CAP and Godly Gift 2021-04-10 19:05:06 -06:00
Annika
8099852fbd Fix Tier Shift banlist 2021-04-09 18:17:17 -07:00
Annika
986142a38f Unban Zamazenta-Crowned in OU only
Co-authored-by: Kris Johnson <11083252+KrisXV@users.noreply.github.com>
2021-04-09 16:58:15 -07:00
Kris Johnson
8d0b6788f3
Godly Gift: Ban Zacian-Crowned 2021-04-08 16:19:58 -06:00
Guangcong Luo
effedf6aa4 Fix unnecessary proxies.csv entry
It conflicts with our unit tests and I don't really know why it's
there...
2021-04-08 12:20:09 -07:00
Guangcong Luo
d63f5f610d Sync hosts/proxies 2021-04-08 14:48:03 -04:00
Guangcong Luo
13189fdb02
Update Dex API (#8181)
This is the change that renames:

- `Dex.getMove` -> `Dex.moves.get`
- `Dex.getAbility` -> `Dex.abilities.get`
- `Dex.getItem` -> `Dex.items.get`
- `Dex.getSpecies` -> `Dex.species.get`
- `Dex.getEffect` -> `Dex.conditions.get`
- `Dex.getNature` -> `Dex.natures.get`
- `Dex.getType` -> `Dex.types.get`
- `Dex.getFormat` -> `Dex.formats.get`

In addition, some other APIs have been updated:

- `getByID` methods have also been added to every other table.
- `Dex.moves.all()` now gets an array of all moves
  - Plus equivalent methods for `abilities`, `items`, `species`, `formats`, `natures`, `types`
  - Note: there's no `Dex.conditions.all()`
- new API: `Dex.stats` for naming/iterating stats
- `Dex.getEffectByID` -> `Dex.conditions.getByID`
- `Dex.getType` -> `Dex.types.get`
- `Dex.data.Formats` -> `Dex.data.Rulesets`
- `Dex.formats` -> now an array `Dex.formats.all()`
- `Dex.getRuleTable` -> `Dex.formats.getRuleTable`
- `Dex.validateFormat` -> `Dex.formats.validate`

Team functions have been split off into a new `sim/teams` package:

- `Dex.packTeam` -> `Teams.pack`
- `Dex.fastUnpackTeam` -> `Teams.unpack`
- `Dex.generateTeam` -> `Teams.generate`
- `Dex.stringifyTeam` -> `Teams.export`

`Teams.export` has also been rewritten to better match how it works in client.

This implements #8178
2021-04-08 03:00:37 -07:00
May Evans
1365091eed
Rename OU (Tradeback) to Tradebacks OU (#8185) 2021-04-07 11:27:27 -07:00
Kris Johnson
418b5dcbe8 Rename Gen 7 Mix and Mega's mod 2021-04-06 17:43:59 -06:00
Marty-D
6c07717703 Remove Spikemuth Cup 2021-04-05 13:25:47 -04:00
Kris Johnson
68d181146e
Godly Gift: Clarify description 2021-04-04 12:31:14 -06:00
Distrib
d781a823b2
LC: Ban Woobat (#8176)
* LC: Ban Woobat

PR for https://www.smogon.com/forums/threads/ss-lc-suspect-process-woobat-voting.3681457/post-8808892

* Update formats.ts

* Update formats.ts
2021-04-04 12:18:16 -06:00
VineST
8af7923d58
Pokebilities: update banlist (#8174)
* Pokébilities: update banlist

https://www.smogon.com/forums/threads/pok%C3%A9bilities.3679692/post-8808189

* proper spacing

Co-authored-by: Kris Johnson <11083252+KrisXV@users.noreply.github.com>
2021-04-03 17:32:35 -06:00
pyuk-bot
d66bae486d
Multi Random Battle has 3 Pokemon per player (#8169) 2021-04-03 01:46:30 -07:00
Guangcong Luo
368202605f Add Multi Random Battles 2021-04-02 23:00:30 -07:00
Guangcong Luo
8f001cc2ae Support challenges in 4-player games 2021-04-02 23:00:30 -07:00
Guangcong Luo
caf46800ee Rename format from "4 Player" to "Free-For-All"
Users seem to find the latter clearer.
2021-04-02 23:00:29 -07:00
Annika
459407fc6b Remove the Gen 8 Challenge Cup ladder 2021-04-02 18:39:05 -07:00
Kris Johnson
31cbbbcec9 Godly Gift: Properly limit to one god 2021-04-02 17:06:58 -06:00
Distrib
0aa673bfd1
Update ZU links (#8162)
Approved by Apagogie
2021-04-02 14:35:45 -07:00
Guangcong Luo
791ded0aa2 Rename FFA to "4 Player" for clarity 2021-04-01 23:37:47 -07:00
Kris Johnson
02d062bf7a Rename Completely Normal Random Battle 2021-04-01 23:39:26 -06:00
Kris Johnson
fc528a0e1f Remove AFD formats 2021-04-01 23:09:02 -06:00
Kris Johnson
41889de15e NU: Ban Snow Warning, Unban Arctozolt/Aurora Veil 2021-04-01 22:48:36 -06:00
Kris Johnson
ebf13740f4 Shared Power: Fix Trace and Mirror Armor 2021-04-01 19:42:32 -06:00
Kris Johnson
876b09b010 OMotM/LCotM: Update bans/fix bugs 2021-04-01 17:25:41 -06:00
Marty-D
e4dd3ce940 Update tiers for April shift 2021-04-01 17:30:37 -04:00
Mia
79d5359cd1 OMOTM: Fix stack overflow 2021-04-01 14:36:42 -05:00
VineST
665baec71a
Pokébilities: update banlist (#8158)
Fix Zamazenta ban (base forme only)
2021-04-01 13:10:26 -06:00
Guangcong Luo
44ef998ecc Implement free-for-all
This involves a huge refactor for how battles are constructed, but
it's totally worth it.

Currently, tournaments, challenges, and laddering are unsupported; only
unrated searches work. But it does work, and it's beautiful.
2021-04-01 04:44:16 -07:00
Kris Johnson
931b6caf8f Add April 2021 OMotM/RoA Spotlights 2021-04-01 03:52:36 -06:00
Kris Johnson
4318db6064 OU is actually suspecting Zamazenta-Crowned 2021-03-31 23:58:51 -06:00
Kris Johnson
b6645dbc31 Add more AFD formats 2021-03-31 23:54:57 -06:00
Guangcong Luo
2fc5ae0cbe Fix build error 2021-03-31 21:57:46 -07:00
Instruct
da3637404e
SSB4 Wii U; Standarize threads (#8156) 2021-03-31 22:24:21 -06:00
Kris Johnson
0db0b7f085 Add SSB 4 Wii U for real 2021-03-31 22:15:38 -06:00
Kris Johnson
62b214d802 UU: Fix suspect ladder 2021-03-31 22:04:32 -06:00
Kris Johnson
8f7277fce5 Add AFD suspect tests 2021-03-31 22:00:55 -06:00
Instruct
1f7bf2deed
Add Super Staff Bros 4 Wii U (April Fools' prank) (#8148)
* Add new SSB meta

* Update random-teams.ts

* Fix issues

* Complete the meta

* Fix links

* fix

Co-authored-by: Kris Johnson <11083252+KrisXV@users.noreply.github.com>

* Update data/mods/ssb/random-teams.ts

Co-authored-by: Kris Johnson <11083252+KrisXV@users.noreply.github.com>

* Update data/mods/ssb/random-teams.ts

Co-authored-by: Kris Johnson <11083252+KrisXV@users.noreply.github.com>

* Update data/mods/ssb/random-teams.ts

Co-authored-by: Kris Johnson <11083252+KrisXV@users.noreply.github.com>

* Update data/mods/ssb/random-teams.ts

Co-authored-by: Kris Johnson <11083252+KrisXV@users.noreply.github.com>

* review

* Update data/mods/ssb/moves.ts

Co-authored-by: Kris Johnson <11083252+KrisXV@users.noreply.github.com>

* Update data/mods/ssb/random-teams.ts

Co-authored-by: Kris Johnson <11083252+KrisXV@users.noreply.github.com>

* Update data/mods/ssb/moves.ts

Co-authored-by: Kris Johnson <11083252+KrisXV@users.noreply.github.com>

* Update data/mods/ssb/moves.ts

Co-authored-by: Kris Johnson <11083252+KrisXV@users.noreply.github.com>

* Update data/mods/ssb/moves.ts

Co-authored-by: Kris Johnson <11083252+KrisXV@users.noreply.github.com>

* Update data/mods/ssb/moves.ts

Co-authored-by: Kris Johnson <11083252+KrisXV@users.noreply.github.com>

* Update data/mods/ssb/moves.ts

Co-authored-by: Kris Johnson <11083252+KrisXV@users.noreply.github.com>

* Update data/mods/ssb/moves.ts

Co-authored-by: Kris Johnson <11083252+KrisXV@users.noreply.github.com>

* Update data/mods/ssb/moves.ts

Co-authored-by: Kris Johnson <11083252+KrisXV@users.noreply.github.com>

* Update data/mods/ssb/moves.ts

Co-authored-by: Kris Johnson <11083252+KrisXV@users.noreply.github.com>

* simplify code

Co-authored-by: Kris Johnson <11083252+KrisXV@users.noreply.github.com>
2021-03-31 20:21:43 -07:00
Kris Johnson
a527ed3e13
STABmons: Ban Spectrier, restrict Clangorous Soul
https://www.smogon.com/forums/threads/stabmons-spectrier-and-clangorous-soul-banned.3656429/page-7#post-8802880
2021-03-30 18:47:32 -06:00
Guangcong Luo
d18c0a4e1f Refactor more things to use pokemon.allies/foes
(This will make multi battles easier to implement.)
2021-03-28 20:06:18 -07:00
Guangcong Luo
ed454ef76a
Refactor scripts to battle-actions (#8138)
This introduces a new class, BattleActions, available as `battle.actions`,
moving all functions from `data/scripts.ts` to `sim/battle-actions.ts`.

This makes it so that "go to definition" will now work correctly for
functions previously in scripts; we no longer need UnimplementedError,
and there's now a clean conceptual separation between `battle` and
`battle-actions` (whereas the previous distinction between `battle` and
`scripts` was basically nonexistent).

This will be a difficult migration if you maintain a fork with custom
scripted mods. I'm sorry! Migration instructions are here:

https://github.com/smogon/pokemon-showdown/pull/8138
2021-03-28 12:01:38 -07:00
Kris Johnson
e42fa69c22
National Dex UU: Ban Zapdos-Galar 2021-03-28 02:48:14 -06:00
Kris Johnson
22f8b59f5a
National Dex Monotype: Ban Spectrier 2021-03-25 14:18:45 -06:00
urkerab
82b8b90038
Make Scalemons apply before Tier Shift when they are mashed up (#8051) 2021-03-23 23:17:08 -06:00
Kris Johnson
64d353706e Cross Evolution: Fix desc and allow CAP/NatDex 2021-03-23 13:24:49 -06:00
Kris Johnson
f4d53c0e37
Gen 3 OU: Ban Mr. Mime
I am doing a hardcode ban instead of moving it to Ubers per request of Hogg due to the fact it's currently in a locked lower tier. He will discuss whether or not it should be properly made Ubers and get back to either me or Marty.
2021-03-23 12:38:50 -06:00
Instruct
6c5a97e342
SSB4: Bugfixes and Balance changes (#8109) 2021-03-22 22:06:59 -04:00
Marty-D
9486a46676
Ubers: Ban Shadow Tag
https://www.smogon.com/forums/threads/ss-ubers-stage-6-shadow-tag-voting.3680301/page-5#post-8790663
2021-03-21 09:26:29 -04:00
Kris Johnson
af58caff10
Fix build 2021-03-20 13:18:25 -06:00
Kris Johnson
96563e282b
National Dex: Ban Cinderace 2021-03-20 12:41:11 -06:00
Kris Johnson
cc5c4a7c50 Add Overflow Stat Mod to Gen 7 Mix and Mega 2021-03-19 20:03:04 -06:00
Kris Johnson
81ff6c2f86 Add a URL for Gen 7 Mix and Mega 2021-03-19 19:59:45 -06:00
Kris Johnson
3f5ef2e510 Add more Retro OMs 2021-03-19 19:58:18 -06:00
Distrib
2709f441f4
AAA: Ban Poison Heal (#8123)
* AAA: Ban Poison Heal

https://www.smogon.com/forums/threads/ss-almost-any-ability-poison-heal-voting.3680043/#post-8786344

* Update formats.ts

Co-authored-by: Kris Johnson <11083252+KrisXV@users.noreply.github.com>
2021-03-17 14:07:27 -06:00
Kris Johnson
df0b1c1cf7
The Loser's Game: Ban Sandshrew-Alola
https://www.smogon.com/forums/threads/the-losers-game-leaders-choice.3657270/page-3#post-8786572
2021-03-17 13:52:30 -06:00
Marty-D
45e68da3d8
CAP: Update Viability Rankings link 2021-03-16 09:05:40 -04:00
Kris Johnson
99e7fdc74f
STABmons: Ban Landorus-Therian
https://www.smogon.com/forums/threads/stabmons-landorus-therian-banned.3656429/page-7#post-8783256
2021-03-14 16:37:59 -06:00
LegoFigure11
3447c90744
Add Spikemuth Cup (#8094) 2021-03-13 10:35:19 -05:00
Annika
6ceeed7e0b Add Carvanha to LCBL 2021-03-12 11:18:11 -08:00
Annika
1996614b16 Shorten name of [Gen 8] Random Battle (No Dynamax) 2021-03-10 17:45:17 -08:00
ACakeWearingAHat
333371b709
Add [Gen 8] Random Battle (No Dynamax) (#8111) 2021-03-10 17:19:50 -08:00
Kris Johnson
baa53dc845
Max Berries: Ban Spectrier, Bug Bite, Knock Off, and Pluck
https://www.smogon.com/forums/threads/max-berries-a-genetically-modified-metagame-om-of-the-month.3677136/page-2#post-8777748
2021-03-09 00:16:31 -07:00
Kris Johnson
3fbaa90ddd Add Gen 1 NU 2021-03-08 17:21:37 -07:00
Marty-D
8dd7b1e482 Fix UU suspect 2021-03-08 18:17:07 -05:00
Kris Johnson
f595675e27 UU: Unban Aegislash for suspect and ban Victini 2021-03-08 15:57:06 -07:00
Kris Johnson
291eddb99d
ZU: Ban Drampa, Magmortar, Omastar, and Silvally-Dragon
https://www.smogon.com/forums/threads/np-zu-stage-5-sneasel-suspect-test-break-the-ice.3677885/#post-8776209
2021-03-07 14:10:21 -07:00
Kris Johnson
b7f5820393
1v1: Ban Snorlax
https://www.smogon.com/forums/threads/ss-1v1-snorlax-voting.3679539/page-2#post-8774720
2021-03-06 11:46:47 -07:00
pyuk-bot
4e98f9db49
Actually show types at team preview in Gen 1 HC (#8084) 2021-03-03 21:13:03 -08:00
Kris Johnson
c070f3de94
Max Berries: Ban Magearna 2021-03-02 13:43:24 -07:00
Kris Johnson
bcf753520c Loser's Game: Fix abilities that call onAfterFaint 2021-03-01 18:26:29 -07:00
Kris Johnson
3ab1a17918 The Loser's Game: Update clauses 2021-03-01 14:39:05 -07:00
Kris Johnson
f7cd97ff3c The Loser's Game: Add a description 2021-03-01 11:15:54 -07:00
Kris Johnson
814626ea95 Fix build 2021-03-01 11:10:58 -07:00
Kris Johnson
a8369b779f Fix The Loser's Game 2021-03-01 11:08:57 -07:00
Kris Johnson
72650f7762 Add March 2021 OMotM/LCotM/RoA Spotlight 2021-02-28 21:54:10 -07:00
Kris Johnson
72bff8fa72
Balanced Hackmons: Ban Bolt Beak 2021-02-28 11:17:33 -07:00
Kris Johnson
6ce1e311ef
Add Gen 1 Hackmons Cup (#8077) 2021-02-27 20:20:21 -08:00
Instruct
f2b57b7641
CC1v1: Reban Dynamax (#8073)
Just assuming this was an accident.
2021-02-23 21:34:48 -07:00
Annika
9a37875c6d
Gen 8 Challenge Cup: Unban Dynamax 2021-02-23 16:59:27 -08:00
Kris Johnson
c9ff89fc66
ZU: Ban Sneasel
https://www.smogon.com/forums/threads/ss-zu-suspect-process-sneasel-voting.3678872/#post-8763316
2021-02-23 16:35:02 -07:00
Annika
8d63d44310 Display Gen 8 Challenge Cup in the challenge menu
Approved by Ransei
2021-02-23 14:59:45 -08:00
Kris Johnson
7010e07b9b Add Challenge Cup 6v6 2021-02-23 15:04:24 -07:00
HematiteH2O
64f5a02e1c
Megas for All: Add Mega Evolutions from slate 28 (#8065)
* Update formats.ts

Ban Dragonitite in Megas for All in line with latest update

* Update abilities.ts

Megas for All: add slate 28 Abilities (Everlasting Winter, Forgery, Clairvoyance and Sleight of Hand)

* Update items.ts

Megas for All: add slate 28 Mega Stones (Ninetalesite, Zoroarkite and Delphoxite)

* Update pokedex.ts

Megas for All: add slate 29 Mega Evolutions (Ninetales-Alola, Zoroark, Delphox); buff Thievul; add battleOnly for Mega Evolutions with multiple base forms (this was causing issues before)

* Update scripts.ts

Megas for All: add new moves to Thievul, Delphox; add form requirement for Mega Ninetales; add compatibility with Mega Zoroark to Mega Evolution and Z-Move scripts

* Update items.ts

Megas for All: rename Delphoxite -> Delphite

* Update pokedex.ts

Megas for All: rename Delphoxite -> Delphite

* Update abilities.ts

Megas for All: correct line length and trailing spaces

* Update items.ts

Megas for All: correcting species string (caught by npm test)

* Update abilities.ts

* Update scripts.ts

* Update abilities.ts

Megas for All: improve Everlasting Winter
(It feels remiss of me not to specify this - Ninetales gets Rain Dance itself, so it would be awkward if it was that easy to overwrite Everlasting Hail even if no one would do it in a serious environment)
I just tested and can confirm this fix works more properly!

* Update data/mods/megasforall/abilities.ts

Co-authored-by: Kris Johnson <11083252+KrisXV@users.noreply.github.com>

* Update data/mods/megasforall/abilities.ts

Co-authored-by: Kris Johnson <11083252+KrisXV@users.noreply.github.com>

* Update data/mods/megasforall/items.ts

Co-authored-by: Kris Johnson <11083252+KrisXV@users.noreply.github.com>

Co-authored-by: Kris Johnson <11083252+KrisXV@users.noreply.github.com>
2021-02-23 14:13:49 -07:00
Distrib
10d7678ee8
National Dex Monotype: Ban Dracovish (#8070)
* National Dex Monotype: Ban Dracovish

Pr for https://www.smogon.com/forums/threads/national-dex-monotype-dracovish-voting.3678843/post-8762955

* Update formats.ts

* Update formats.ts

Co-authored-by: Kris Johnson <11083252+KrisXV@users.noreply.github.com>
2021-02-23 13:57:06 -07:00
Kris Johnson
4cb541c67b
Inheritance: Ban Natu, Xatu, Zeraora, Contrary, and Unaware
https://www.smogon.com/forums/threads/inheritance-om-of-the-month.3656811/page-10#post-8762343
2021-02-22 15:44:17 -07:00
Annika
c2e97aaaed
Use optional chaining in more places (#8063) 2021-02-22 11:42:05 -08:00
Kris Johnson
048e121ffe
ADV UU: Ban Baton Pass
> [5:24 PM] Kris: do you want bp banned in adv uu on ps
> [5:24 PM] Kris: as like an official ban
> [5:24 PM] Kris: seeing how uupl is playing without it and now you're asking advpl to play without it
> [5:24 PM] Kevin: it should be yes
> [5:24 PM] Kevin: the entire adv uu playerbase agrees w me
> [5:24 PM] Kris: ok, ill do that in a few minutes
> [5:25 PM] Kris: is there an announcement for it being banned/can one be made
> [5:26 PM] Kevin: id pm bouff about it for sure
> [5:26 PM] Kris: ok
> [5:26 PM] Kris: ty
> [5:26 PM] Kevin: np
[5:28 PM] Safir: ya ban that shit
[5:28 PM] Kris: ok epic
[5:29 PM] Kris: should it be banned from nu as well or no
[5:29 PM] Kris: or should i ask someone else
[5:29 PM] Safir: ask someone else cause idk how
[5:29 PM] Safir: they feel about it
[5:29 PM] Kris: 👍
2021-02-20 17:33:30 -07:00
Kris Johnson
fab3f11214
STABmons: Ban Urshifu-S
https://www.smogon.com/forums/threads/stabmons-urshifu-single-strike-banned.3656429/page-7#post-8758848
2021-02-19 15:26:31 -07:00
Guangcong Luo
1b281650c6 Rename Stadium to Gen 1 Stadium
This is required to add support for Stadium in unit tests. A lot of the
codebase assumes that all mods start with "gen" followed by a number,
but I don't want to touch the others at the moment.
2021-02-15 21:03:47 -08:00
urkerab
d1a32d9d05
Really fix BST calculation for Tier Shift (#8041) 2021-02-15 17:38:19 -07:00
TheMezStrikes
f61963cbff
Update old gen CAP links (#8038) 2021-02-15 16:12:32 -08:00
Kris Johnson
55f972f34f
Inheritance: Ban Tapu Koko and Drizzle
https://www.smogon.com/forums/threads/inheritance-om-of-the-month.3656811/page-9#post-8754826
2021-02-15 14:39:02 -07:00
Instruct
e7695c4b78
Gen 3: Add Deoxys Forme Clause and Deoxys Camouflage Mod (#8024) 2021-02-15 01:37:58 -08:00
Kris Johnson
94190a708a
2v2 Doubles: Ban Ally Switch
https://www.smogon.com/forums/threads/ss-2v2-doubles-ally-switch-voting.3678125/page-3#post-8753889
2021-02-14 18:36:47 -07:00
Kris Johnson
6f9b762f5a
Gen 5 1v1: Ban Dragonite
https://www.smogon.com/forums/threads/1v1-old-gens.3646875/page-10#post-8753015
2021-02-14 13:23:43 -07:00
Kris Johnson
f36381377c Add Retro Other Metagames ladders 2021-02-13 01:21:07 -07:00
Kris Johnson
fab654a726
AG should be banned from OU 2021-02-11 19:36:35 -07:00
The Immortal
db8e713d36 AAA: Ban Victini 2021-02-10 00:37:30 +04:00
The Immortal
98b2ee3989 AAA: Ban Kyurem 2021-02-09 02:29:50 +04:00
The Immortal
80756b2b5f Inheritance: Ban Blacephalon and Sableye 2021-02-08 16:32:34 +04:00
The Immortal
90199a5b10 Update National Dex Monotype threads 2021-02-07 04:30:41 +04:00
The Immortal
4948a5d734 ZU: Ban Gallade and Turtonator 2021-02-07 04:28:53 +04:00
The Immortal
b65a22defb Update Nature Swap banlist 2021-02-06 16:59:05 +04:00
Kris Johnson
0c1c64836e Inheritance: Update bans and clauses 2021-02-03 16:43:58 -07:00
Guangcong Luo
c46ee360a7 Give Hosts the forcewin permission
This allows groupchat tournament hosts, as well as `/importinputlog`
users, to use the `/forcewin` and `/editbattle` commands.

This started as just wanting to give `/editbattle reseed` to users of
`/importinputlog`, but in hindsight, all these permissions could be
useful and allow for more creative tournaments, so I'm opening it up
fully, and we'll see how everyone does with them.
2021-02-02 14:01:00 -08:00
The Immortal
bac8d8a4f4 Nature Swap: Ban Lugia 2021-02-02 16:26:22 +04:00
The Immortal
6feb5b1658 Inheritance: Add new bans 2021-02-01 23:46:51 +04:00
Kris Johnson
c39fbb4338
Add February 2021 OMotM and RoA Spotlight (#7977) 2021-02-01 21:09:11 +04:00
The Immortal
9b5328d73b Shared Power: Update banlist 2021-01-27 01:00:09 +04:00
Leonard Craft III
e98ade77a6
Formats: Update VGC/BSS to Series 8 (#7940) 2021-01-26 16:55:22 +04:00
The Immortal
52e18def6a Formats: Update threads 2021-01-26 16:48:22 +04:00
The Immortal
48da8e92e8 Rename Gen-NEXT format
And link the old dev thread.
2021-01-26 01:22:02 +04:00
The Immortal
2a2929ad66 Update NU threads 2021-01-25 20:38:21 +04:00
The Immortal
35acb24a28 Gen 5 1v1: Ban Kyurem-Black 2021-01-24 19:19:33 +04:00
The Immortal
3f82cb637b Update past gens LC 2021-01-23 23:10:12 +04:00
Instruct
0d1c9fe098
SSB4: Bugfixes and Balance Patches (#7889) 2021-01-22 14:56:26 +04:00
The Immortal
97b53eaac3 LC UU: Fix Diglett ban 2021-01-21 23:14:10 +04:00
The Immortal
c104f71754 Shared Power: Ban Triage 2021-01-21 20:27:41 +04:00
Kris Johnson
a9c80ad358
Update National Dex tiers 2021-01-20 16:34:37 -07:00
The Immortal
1a6e259908 Add LC UU format 2021-01-20 05:16:13 +04:00
The Immortal
77eedc9885 National Dex UU: Ban Victini 2021-01-20 03:56:24 +04:00
HematiteH2O
1befd7fa31
Megas for All: slate 26 + various balance changes (#7922) 2021-01-20 03:54:00 +04:00
The Immortal
2e4a0b4405 National Dex: Ban Spectrier 2021-01-19 15:50:42 +04:00
The Immortal
7038d241a7 Update RU Viability Rankings thread 2021-01-19 06:05:33 +04:00
The Immortal
53dedaf686 ZU: Ban Exeggutor-Alola and Vikavolt 2021-01-18 15:13:29 +04:00
DarkPhoenix911
4a93b24884
ND Monotype: Ban Medicham-Mega (#7924) 2021-01-18 15:05:23 +04:00
Kris Johnson
698c2783f5
B2/W2 PU: Ban Gothorita, Throh, and Sleep Moves
https://www.smogon.com/forums/threads/bw-pu-discussion-and-development.3675651/#post-8717277
2021-01-17 18:18:44 -07:00
The Immortal
6465634af3 Update Ubers thread 2021-01-17 18:05:07 +04:00
The Immortal
b9c6620ebd Move Zacian-Crowned to AG 2021-01-17 16:42:40 +04:00
The Immortal
ed9021cadb Mix and Mega: Restrict Urshifu-S 2021-01-16 16:43:41 +04:00
Kris Johnson
6f059e83d0
Camomons: Ban Dracovish and Landorus-Incarnate
https://www.smogon.com/forums/threads/camomons.3656413/page-7#post-8717924
2021-01-14 16:05:00 -07:00
The Immortal
c33f5c530b BH: Ban Calyrex-Shadow 2021-01-13 02:05:43 +04:00
The Immortal
4841114060 Add latest ZU bans 2021-01-12 23:27:06 +04:00
The Immortal
c6dd5ea138 AAA: Ban Zeraora and Spectrier 2021-01-11 20:43:01 +04:00
The Immortal
0b71a0baed Inheritance: Update banlist 2021-01-11 00:31:41 +04:00
The Immortal
3ae56399bd Label Pokemon banned from LC as NFE 2021-01-11 00:29:18 +04:00
HematiteH2O
111ab3788f
Add Megas For All and Double Trouble (#7893)
Co-authored-by: Kris Johnson <11083252+KrisXV@users.noreply.github.com>
2021-01-09 00:41:06 -08:00
The Immortal
f2151ad3fd Shared Power: Unban Flare Boost 2021-01-06 23:31:24 +04:00
Guangcong Luo
368e510a28 Add tournaments permission to admins
Fixes #7872
2021-01-06 11:18:56 -08:00
The Immortal
9710834676 Update Shared Power bans 2021-01-06 01:38:00 +04:00
The Immortal
00d2711af5 Update Shared Power bans 2021-01-04 23:50:05 +04:00
Guangcong Luo
6b3a3070c9 Refactor team validator for readability
`checkLearnset` has been renamed `checkCanLearn`.

`reconcileLearnset` has been replaced with `validateMoves`, which
bundles the actual `checkCanLearn` calls with the old
`reconcileLearnset`, making for a better name.
2021-01-03 23:26:20 -08:00
The Immortal
39bb2cb180 Shared Power: Unban Leppa Berry 2021-01-03 19:15:22 +04:00
The Immortal
d146f19c1f Shared Power: Ban Magnet Pull 2021-01-03 15:11:58 +04:00
Kris Johnson
49e9b26454 Update NU, PU, and National Dex UU bans 2021-01-02 20:31:53 -07:00
The Immortal
bd4deecd69 Update ZU thread link 2021-01-02 14:36:12 +04:00
The Immortal
bc6c9f8b10 Shared Power: Ban Urshifu 2021-01-02 14:35:04 +04:00
Kris Johnson
4ef46f2688 Update Ubers links 2021-01-01 16:32:56 -07:00
The Immortal
fa39e89805 January tiers update 2021-01-01 21:10:17 +04:00
The Immortal
7ac482b439 Fix Tier Shift boosts 2021-01-01 18:27:30 +04:00
The Immortal
5ec1665ee3 Shared Power: Ban Pheromosa and Naganadel 2021-01-01 18:21:59 +04:00
The Immortal
5f19a0f3c7 Update Tier Shift and Shared Power 2021-01-01 14:32:44 +04:00
The Immortal
0b49d6d236 Add January RoA ladders 2021-01-01 03:51:11 +04:00
The Immortal
12bd85eefd Add January OM of the Month 2021-01-01 03:43:28 +04:00
LegoFigure11
cad1d25c4d
Add Gen 8 BSS Factory (#7843) 2020-12-31 02:09:29 +04:00
urkerab
5113cefa39
Document restriction rules (#7827)
* Document restriction rules

* Restriction rule examples
2020-12-29 08:31:20 -08:00
TheMezStrikes
827d1149cd
1v1: Ban Victini (#7842) 2020-12-27 19:46:15 +04:00
Instruct
901c1d8573
SSB: Fix Winter Hail decrease amt. Add discussion thread to format. small QC changes. (#7833) 2020-12-24 13:24:18 -05:00
Instruct
5b441c2013
Super Staff Bros 4 (#7793)
Collaborative Project lead by @xInstruct with many contributors.

See the Special Thanks section of https://www.smogon.com/articles/super-staff-bros-4
2020-12-24 11:21:02 -05:00
The Immortal
2398a915fe Update NU 2020-12-24 13:42:25 +04:00
The Immortal
7156fec779 StAAAbmons: Update banlist 2020-12-21 14:40:20 +04:00
The Immortal
23f7f2e185
Alphabet Cup: Restrict Belly Drum 2020-12-17 19:33:54 +04:00
Kris Johnson
aee7837af9 Update National Dex UU 2020-12-17 06:15:24 -07:00
The Immortal
98e2a34ebb Revert "ZU: Ban Combusken"
This reverts commit 81939d02e3.
2020-12-16 23:48:47 +04:00
The Immortal
81939d02e3 ZU: Ban Combusken 2020-12-16 22:54:01 +04:00
Kris Johnson
b1b9b9c2d1 Add December mid-month shifts 2020-12-16 10:32:32 -07:00
The Immortal
3c0eed7ce8 Remove Dragon King Cup 2020-12-14 19:45:04 +04:00
The Immortal
90f4e4a87e
Monotype: Ban Landorus-I 2020-12-14 11:50:26 +04:00
The Immortal
4e0ae030fe
STABmons: Ban Mamoswine 2020-12-14 02:01:28 +04:00
MacChaeger
0c6cfbd213
Metronome Battle: Ban Steel Memory (#7791) 2020-12-12 01:42:59 +04:00
The Immortal
682d647a75 Add new ND Monotype thread 2020-12-09 10:53:14 +04:00
Leonard Craft III
9b1e44bf30
Formats: Move legendary validation to Minimal GBU (#7774) 2020-12-08 09:57:05 +04:00
The Immortal
0214c306bb Remove Sw/Sh DLC 1 formats 2020-12-07 15:03:05 +04:00
The Immortal
750b9736a8 Implement latest NU bans 2020-12-07 14:20:27 +04:00
Kris Johnson
15de3bff0c
National Dex: Update tiering 2020-12-06 23:05:12 -07:00
The Immortal
544b4ddc48 Add NU sample teams link 2020-12-05 05:30:45 +04:00
The Immortal
29d3fbc6ab Update Monotype threads 2020-12-05 05:21:13 +04:00
The Immortal
32a5337a5e ZU: Ban Drednaw 2020-12-05 05:20:13 +04:00
The Immortal
0552afbd1f Alphabet Cup: Ban Blaziken and Scolipede 2020-12-02 14:06:23 +04:00
The Immortal
f86b625378 NU: Ban Reuniclus, Obstagoon, and Aurora Veil 2020-12-02 12:46:09 +04:00
Marty-D
b1fdfd9c36 Unban NUBL stuff 2020-12-01 11:43:13 -05:00
Kris Johnson
2be0a64270 Add December tier shifts 2020-12-01 09:25:48 -07:00
The Immortal
2a6e95097a Correct StAAAbmons rules 2020-12-01 15:53:44 +04:00
Kris Johnson
aebc62ee22
December OMs of the Month (#7752) 2020-12-01 08:12:10 +04:00
The Immortal
c76ec6fb97 Remove National Dex BH 2020-12-01 08:07:54 +04:00
The Immortal
5de22f826b Update RoA formats 2020-12-01 04:00:35 +04:00
The Immortal
bdae9efbc9 Balanced Hackmons: Ban Intrepid Sword 2020-11-28 15:13:18 +04:00
Kris Johnson
4df9eb309b Gen 5 Ubers: Add Evasion Moves Clause 2020-11-27 19:04:55 -07:00
The Immortal
450c54087a Trademarked: Restrict Fairy Lock 2020-11-27 12:12:45 +04:00
The Immortal
0101105802 AAA: Ban Zygarde and Naganadel 2020-11-27 11:17:27 +04:00
The Immortal
78a83a336f Add Dragon King Cup 2020-11-26 13:38:20 +04:00
The Immortal
9f3671d5b7 Trademarked: Ban Instruct 2020-11-25 13:02:47 +04:00
The Immortal
73098483e0 Formats: List Crowned formes in banlists
As they can be tiered seperately, this makes it clear if the Crowned forme is banned or not.
2020-11-24 13:21:57 +04:00
Kris Johnson
f1551412ac
National Dex: Ban Dragapult
https://www.smogon.com/forums/threads/national-dex-dragapult-voting.3673699/page-4#post-8665898
2020-11-24 01:28:07 -07:00
The Immortal
e7279737df STABmons: Ban Naganadel and Astral Barrage 2020-11-23 21:52:58 +04:00
urkerab
229a478742
Update BST after changing stats to allow Scalemons Mod mashup (#7698) 2020-11-23 01:46:45 -07:00
Kris Johnson
aca6c025b2
Mix and Mega: Restrict Gengar and Naganadel
https://www.smogon.com/forums/threads/mix-and-mega.3656469/page-5#post-8665103
2020-11-23 00:26:29 -07:00
The Immortal
dc6e217429 Update DOU VR link 2020-11-19 16:47:55 +04:00
May Evans
9b8e34bc48
Gen 1: Announce Desync Clause Mod, fix Stadium Sleep Clause (#7702) 2020-11-16 23:52:39 -08:00
Kris Johnson
66039de70b
Almost Any Ability: Ban Buzzwole
https://www.smogon.com/forums/threads/almost-any-ability.3656414/page-6#post-8659685
2020-11-16 21:38:40 -07:00
The Immortal
10a365b840 Update RU thread 2020-11-16 18:16:18 +04:00
Marty-D
dd75d54da2
Ubers: Ban Dynamax
https://www.smogon.com/forums/posts/8658893/
2020-11-16 08:48:31 -05:00
Kris Johnson
9e8b29148e
Monotype: Ban Kyurem-Black and Smooth Rock
https://www.smogon.com/forums/threads/ss-monotype-metagame-discussion-crown-tundra-damp-rock-and-kartana-banned-see-post-70.3672167/page-4#post-8658192
2020-11-15 16:40:37 -07:00
Kris Johnson
9c45af0163 National Dex UU: Tier unbans correctly 2020-11-15 15:49:00 -07:00
Kris Johnson
118b7e5459 Update National Dex tiers 2020-11-15 14:51:21 -07:00
The Immortal
bb9284af1d Formats: Make banlists consistent 2020-11-16 00:24:57 +04:00
The Immortal
7c2405a641 Correct Mix and Mega restrictions 2020-11-16 00:05:53 +04:00
The Immortal
b9c41ab1c2 Camomons: Ban Kyurem 2020-11-16 00:03:43 +04:00
The Immortal
e32385891a Usage-based tiers update 2020-11-15 23:58:34 +04:00
Marty-D
3fb07f8d42
Gen 3 OU: Ban Sand Veil
https://www.smogon.com/forums/posts/8655842/
2020-11-13 17:04:11 -05:00
Guangcong Luo
74098c25ae Sync hosts.csv/proxies.csv 2020-11-10 14:55:05 -05:00
VineST
f15662dda3
Metronome Battle: Re-ban Sturdy Shedinja (#7673) 2020-11-10 16:16:54 +04:00
DarkPhoenix911
f31d25883a
National Dex Monotype: Unban Aegislash (#7672)
Freeing the once-banned Sword and Shield Mon once more!  
https://www.smogon.com/forums/threads/monotype-om-mega-thread.3660464/post-8652440
2020-11-09 19:58:07 -08:00
The Immortal
9b99a7f503 Inheritance: Ban Spectrier and Unaware 2020-11-10 04:14:43 +04:00
Kris Johnson
50eedf0ae1
Balanced Hackmons: Ban Darmanitan-Galar-Zen
https://www.smogon.com/forums/threads/balanced-hackmons.3656408/page-19#post-8651714
2020-11-08 17:03:41 -07:00
Kris Johnson
9ccb2ae037 Trademarked: Restrict Corrosive Gas and Mat Block 2020-11-07 21:24:34 -07:00
Kris Johnson
efaec9b7b1 National Dex: Hippowdon is OU 2020-11-07 20:31:50 -07:00
Kris Johnson
1b6227d92a Trademarked: Hardban self-switching moves as well 2020-11-06 16:27:57 -07:00
Kris Johnson
f4635b007a Trademarked: Hardcode force-switching move bans 2020-11-06 16:17:17 -07:00
Kris Johnson
c46d4bda18 National Dex UU: Update UU Pokemon 2020-11-05 23:27:39 -07:00
The Immortal
499c5f8588 Monotype: Ban Kartana and Damp Rock 2020-11-05 23:11:55 +04:00
The Immortal
abd955974f Camomons: Ban Genesect and Zygarde 2020-11-05 23:11:20 +04:00
Guangcong Luo
9b5217ab70
Split up dex-data into more files (#7634)
* Split up dex-data over individual files

This commit introduces:
- `dex-abilities.ts`
- `dex-conditions.ts`
- `dex-formats.ts`
- `dex-items.ts`
- `dex-moves.ts`
- `dex-species.ts`

These files centralize definitions from `dex-data` and `global-types`.

* Inherit ItemData from Item etc

Previously, Condition inherited from ConditionData. Now, ConditionData
inherits from Condition. The advantage of the new approach is that now,
Condition and DataCondition no longer need to be separate types, and
there should be much less duplication of type definitions in general.

This has also been done for

- ItemData/Item/DataItem
- AbilityData/Ability/DataAbility
- FormatData/Format/DataFormat

Species and DataSpecies was already merged, but this also reverses
their inheritance (saving a lot of duplicated definitions in the
process!)

The only one left is MoveData, which is just super complicated and
will need its own commit.
2020-11-05 05:00:13 -08:00
Guangcong Luo
fbdda144eb
Support Config.noguestsecurity (#7625)
This Config option, intended purely for development test servers,
allows users to log in without a signed token, by using
`/trn [USERNAME]`. This allows logins without a login server.

The rest of the server has been changed to make sure unregistered
users never have any powers they shouldn't have.
2020-11-05 04:55:05 -08:00
Mia
71dbb2f466
Support Config.nothrottle (#7637) 2020-11-05 04:52:04 -08:00
The Immortal
0dd62444f5 Trademarked: Ban Urshifu-S 2020-11-05 04:34:08 +04:00
Kris Johnson
f91fb1bbc5
Skarmory is UU by usage in National Dex 2020-11-04 16:52:58 -07:00
Mia
67ee30f2fd
Introduce Config.noipchecks (#7626) 2020-11-04 15:14:30 -08:00
urkerab
a141c69f1a
Don't reveal Illusion in Camomons (#7639) 2020-11-05 03:09:24 +04:00
The Immortal
4e8b7674ba Update BSS thread 2020-11-04 06:54:03 +04:00
DarkPhoenix911
900f951d73
NatDex Mono: Correct banlist (#7631) 2020-11-04 06:01:25 +04:00
The Immortal
bc97a72662 Update National Dex UU 2020-11-03 19:42:10 +04:00
DarkPhoenix911
8260585498
NatDex Mono: Ban Baton Pass (#7629) 2020-11-03 19:03:36 +04:00
Kris Johnson
7406821327
Fix STABmons banlist 2020-11-02 13:27:45 -07:00
Kris Johnson
fcf9a41569
STABmons: Ban Thundurus, Zygarde, and Arena Trap
https://www.smogon.com/forums/threads/stabmons.3656429/page-6#post-8646463
2020-11-02 13:25:49 -07:00
DarkPhoenix911
7e34a82605
NatDex Mono: Ban Terrain Extender (#7627) 2020-11-02 23:40:20 +04:00
The Immortal
f0a62a8189 DPP OU: Ban Arena Trap 2020-11-02 22:41:47 +04:00
The Immortal
7dab0d766d Update Monotype ladders 2020-11-02 16:13:08 +04:00
Kris Johnson
d83118162b Update NU-legal Pokemon 2020-11-01 23:55:38 -07:00
The Immortal
88f8140d04 Update ZU-legal Pokemon 2020-11-02 04:38:13 +04:00
The Immortal
9a817f2180 NU: Unban Drought
Also updated tier threads.
2020-11-02 02:46:17 +04:00
The Immortal
43235fcfc4 Add new PU bans 2020-11-02 02:36:15 +04:00
Annika
38feadbbc2
Config: Move Bot rank below Driver (#7617) 2020-11-01 12:38:32 -08:00
Kris Johnson
e3c1814bbe Update National Dex tiers 2020-11-01 12:58:12 -07:00
The Immortal
985f701cde November tier update 2020-11-01 21:19:52 +04:00
The Immortal
832cf50144 Scalemons: Add Overflow Stat Mod 2020-11-01 20:41:45 +04:00
The Immortal
141a3d5004 Fix [Gen 3] Doubles OU 2020-11-01 20:36:22 +04:00
The Immortal
9d45c2a183 CAP: Fix Mega Crucibelle being allowed 2020-11-01 20:28:30 +04:00
The Immortal
6f655715ba NFE: Ban Haunter and Pawniard 2020-11-01 19:25:59 +04:00
Kris Johnson
ba4c9d7a2a
Add November's OMotM, LCotM and RoA Spotlight (#7615) 2020-11-01 15:36:24 +04:00
Kris Johnson
97ed534d64
Trademarked: Update bans 2020-10-31 19:43:45 -06:00
Leonard Craft
0300dadc9e DOU: Ban Marshadow, Shadow Tag
https://www.smogon.com/forums/threads/np-ss-dou-stage-5-one-more-time-jirachi-melmetal-urshifu-single-strike-swagger-quickbanned-marshadow-shadow-tag-quickbanned.3672010/post-8644210
2020-10-31 16:30:28 -05:00
Marty-D
79f2c80173
DOU DLC1: Fix banlist 2020-10-31 11:21:29 -04:00
HoeenHero
54c8035c7b Update OU Sample Teams link 2020-10-31 08:28:42 -04:00
The Immortal
af31d6292a Rename DLC 1 formats 2020-10-31 03:15:39 +04:00
The Immortal
388c94c15d Remove VGC 2020 ladder 2020-10-31 02:56:59 +04:00
Kris Johnson
319ce516f3
Inheritance: Ban Regieleki and restrict Butterfree 2020-10-30 16:26:34 -06:00
The Immortal
50ffe25ef6 AAA: Ban Dragapult, Dragonite, and Magearna 2020-10-31 02:01:19 +04:00
DarkPhoenix911
acaa7238b6
National Dex Monotype: New bans and unbans (#7608) 2020-10-31 01:28:16 +04:00
Kris Johnson
a641cfcce8
Fix Overflow Stat Clause and turn it into a mod (#7604) 2020-10-30 10:59:38 +04:00
Kris Johnson
751550ad5e
Monotype: Update bans
https://www.smogon.com/forums/threads/ss-monotype-metagame-discussion-crown-tundra.3672167/page-3#post-8642660
2020-10-29 23:18:24 -06:00
Kris Johnson
d4a2facb91
National Dex Monotype: Unban Arena Trap 2020-10-29 17:20:55 -06:00
The Immortal
4734c08edb BH: Add Dynamax Clause 2020-10-29 19:45:35 +04:00
The Immortal
13274e9a2c Add Doubles DLC 1 format 2020-10-29 19:35:42 +04:00
Kris Johnson
efded878fa
M&M: Update bans and restrictions 2020-10-28 17:03:20 -06:00
The Immortal
bf702a8e1c Update National Dex UU threads 2020-10-29 02:06:00 +04:00
Kris Johnson
2eb6e396ea
ZU: Ban Combusken
https://www.smogon.com/forums/threads/np-zu-stage-2-turn-it-again-combusken-quick-banned-77.3668115/page-4#post-8640782
2020-10-27 16:36:00 -06:00
Kris Johnson
543d36128c
National Dex BH: Ban Electrify
https://www.smogon.com/forums/threads/national-dex-bh.3658587/page-10#post-8640772
2020-10-27 16:15:19 -06:00
Guangcong Luo
c9759954b9 Remove sim/global-variables.d.ts
The sim no longer uses any global variables, so this can and should be
removed.

`server/global-variables` has also been cleaned up, since I'm working
on this.
2020-10-27 22:03:14 +00:00
The Immortal
86e4e527ea Mix and Mega: Restrict Zygarde-C 2020-10-27 20:47:38 +04:00
VineST
3b3b30ccee
Metronome Battle: Update ability banlist (#7587) 2020-10-27 16:21:19 +04:00
Kris Johnson
9ca3d545d5
1v1: Ban Dragonite 2020-10-27 00:13:28 -06:00
The Immortal
a859ab3fdb AAA: Ban Kartana & Pheromosa 2020-10-27 01:21:49 +04:00
The Immortal
317779e388 Camomons: Ban Dragonite & Kartana 2020-10-27 00:40:22 +04:00
The Immortal
4be8cc8355 Add Overflow Stat Clause 2020-10-27 00:35:51 +04:00
Kris Johnson
05a9822e76
Monotype: Ban Calyrex-Ice and Genesect 2020-10-25 23:45:17 -06:00
The Immortal
823277c6d1 NFE: Ban Sneasel 2020-10-26 06:02:02 +04:00
Kris Johnson
104df060ab
NatDex Monotype: Ban Calyrex formes and Dragapult 2020-10-25 16:11:26 -06:00
Kris Johnson
57e3d7c185
Add The Studio chat plugin (#7542) 2020-10-24 14:09:43 -07:00
The Immortal
4757d1eec8 Update Inheritance bans 2020-10-24 23:05:53 +04:00
The Immortal
85f2d9aeae Update metagame threads 2020-10-24 23:01:51 +04:00
Leonard Craft
700063e183 DOU: Ban Jirachi, Melmetal, Dark Urshifu, Swagger
https://www.smogon.com/forums/threads/np-ss-dou-stage-5-one-more-time-jirachi-melmetal-urshifu-single-strike-swagger-quickbanned.3672010/post-8636825
2020-10-24 13:47:05 -05:00
Kris Johnson
3248a888cb
Add Tundra Tourney (#7565) 2020-10-24 13:50:02 +04:00
Kris Johnson
b5b31ab1ca Monotype: Ban Zygarde 2020-10-24 00:31:27 -06:00
The Immortal
f7ffccf1bd Add thread for VGC 2021 2020-10-24 06:46:36 +04:00
The Immortal
b3bf958f0a Add temporary format for DLC 1 metagame 2020-10-24 06:15:00 +04:00
Kris Johnson
a1058ac29c
Convert VGC 2020's mod to a pre-DLC2 mod (#7564) 2020-10-24 06:00:29 +04:00
The Immortal
a8ab129c75 1v1: Ban Magearna and Marshadow 2020-10-24 05:55:13 +04:00
Kris Johnson
e4bff148e9 Monotype: Ban Calyrex-Shadow 2020-10-23 19:36:44 -06:00
The Immortal
261725c6d4 Add Anything Goes ladder 2020-10-24 03:48:48 +04:00
Marty-D
48b5dc1605
CAP: Unban Clefable
https://www.smogon.com/forums/posts/8635680/
2020-10-23 15:47:05 -04:00
The Immortal
152995c223 STABmons: Ban Lovely Kiss 2020-10-23 21:45:41 +04:00
The Immortal
fce2bbcef4 2v2: Unban Kyurem-Black 2020-10-23 17:17:29 +04:00
The Immortal
1ac3fb16d3 Update 2v2 Doubles 2020-10-23 13:43:04 +04:00
Kris Johnson
d7d4b5c4c5
Camomons: Ban Power Construct 2020-10-23 02:20:39 -06:00
Kris Johnson
509d3b6e75 National Dex: Ban Calyrex-Ice and Calyrex-Shadow 2020-10-23 02:10:34 -06:00
Kris Johnson
f576e65baa Monotype: Unban Calyrex-Ice and Calyrex-Shadow 2020-10-22 23:26:01 -06:00
Kris Johnson
cb129a5067 Update National Dex 2020-10-22 23:07:13 -06:00
The Immortal
b409a8ed8e Formats: Update banlists 2020-10-23 08:18:40 +04:00
Kris Johnson
41ed00002f
Fix oversights from adding Crown Tundra DLC (#7559) 2020-10-23 07:45:12 +04:00
The Immortal
e77304e56d Remove Dynamax Ubers Clause from Ubers 2020-10-23 07:40:47 +04:00
The Immortal
ad4fbb47f3 Add VGC 2021 format 2020-10-23 06:49:20 +04:00
The Immortal
42e918a781 Add VGC 2020 mod 2020-10-23 06:47:00 +04:00
The Immortal
2ea8aceac7 Remove Battle Stadium Series 6 2020-10-22 18:19:19 +04:00
The Immortal
43ec023fd6 Add legendaries to 1v1 & 2v2 banlists 2020-10-22 17:52:58 +04:00
The Immortal
86b94cdd67 Remove Battle of Legends 2020-10-22 17:38:37 +04:00
The Immortal
5d75ed9998 Update OM banlists 2020-10-21 21:02:04 +04:00
The Immortal
ff1fea0cbf Update OM threads 2020-10-20 16:32:32 +04:00
Guangcong Luo
9d87616176
Add more style linting rules (#7537)
* Lint arrow-body-style

* Lint prefer-object-spread

Object spread is faster _and_ more readable.

This also fixes a few unnecessary object clones.

* Enable no-parameter-properties

This isn't currently used, but this makes clear that it shouldn't be.

* Refactor more Promises to async/await

* Remove unnecessary code from getDataMoveHTML etc

* Lint prefer-string-starts-ends-with

* Stop using no-undef

According to the typescript-eslint FAQ, this is redundant with
TypeScript, and they're not wrong. This will save us from needing to
specify globals in two different places which will be nice.
2020-10-19 02:42:28 -07:00
The Immortal
ef217ccd18 Update National Dex Monotype 2020-10-16 11:14:45 +04:00
The Immortal
cfa56f66e6 Add Arceus EV Limit to DPP AG 2020-10-13 21:10:45 +04:00
Kris Johnson
4ea47cb308
Gen 4: Move Arceus to AG (#7511) 2020-10-12 03:01:50 +04:00
Kris Johnson
9b1668c4b7
National Dex: Split UU and non-UU Pokemon (#7503) 2020-10-11 17:23:11 +04:00
Kris Johnson
46db9a68bc
Fix build 2020-10-09 03:51:43 -06:00
Kris Johnson
a193e5aed7
National Dex: Ban Dracovish 2020-10-09 02:38:00 -06:00
The Immortal
c3693ada13
ZU: Ban Lycanroc-Midnight 2020-10-06 21:48:40 +04:00
Kris Johnson
05a226c6df
National Dex BH: Ban Belly Drum 2020-10-05 13:40:22 -06:00
Kris Johnson
bfa48a005e
National Dex BH: Ban Bolt Beak 2020-10-05 13:38:34 -06:00
LegoFigure11
c40e88d2d8
Add New Online Competition (#7473) 2020-10-05 04:39:28 +04:00
LegoFigure11
37888c1acb
Fix typo in header comment (#7467) 2020-10-03 23:36:03 -04:00
Kris Johnson
272b2868f9 National Dex and National Dex UU: Update bans 2020-10-03 15:55:48 -06:00
Kris Johnson
9f0b6d64d0
Add new Pet Mods of the Season (#7455) 2020-10-02 21:08:29 +04:00
Kris Johnson
4d354d582b
Remove repeated bans 2020-10-01 17:49:29 -06:00
Kris Johnson
d655d89cd3
Update National Dex UU ban order 2020-10-01 17:47:56 -06:00
The Immortal
369a7bb16c ZU: Ban Grapploct 2020-10-02 00:49:00 +04:00
Kris Johnson
f4a60db89f
Update 1v1 and National Dex UU bans 2020-10-01 14:39:08 -06:00
The Immortal
3f676ee504 Remove Inheritance ladder 2020-10-01 17:54:37 +04:00
Kris Johnson
f3cd8fbf9e
Update RoA Spotlight (#7448) 2020-10-01 07:51:14 +04:00
The Immortal
85771c73ac Update OM of the Month 2020-10-01 03:45:51 +04:00
The Immortal
13c163294d Remove suspect notices 2020-10-01 01:00:03 +04:00
The Immortal
beffbc5815 Update past gens LC 2020-09-30 17:35:16 +04:00
Kris Johnson
c6640866fe
CAP: Update Sample Teams link 2020-09-28 16:44:23 -06:00
The Immortal
ff864f976d Remove OU suspect 2020-09-28 16:06:21 +04:00
Marty-D
007e443774
RU: Add Sigilyph suspect notice 2020-09-25 21:55:13 -04:00
The Immortal
09549a0ab6 Remove UU suspect notice 2020-09-25 04:06:12 +04:00
Kris Johnson
8700d83b0f
National Dex: Add Dracovish suspect notice 2020-09-24 13:48:10 -06:00
The Immortal
98ce91e287 Update format threads 2020-09-22 11:12:21 +04:00
The Immortal
f96f9785cf Add ND Monotype 2020-09-20 18:32:36 +04:00
Guangcong Luo
0a117e2d68 Sync default permissions
config-example is now synced with the latest permissions in Main.
2020-09-18 21:04:31 -04:00
Kris Johnson
2ae0b3fce3
NFE: Add Raboot suspect notice 2020-09-18 15:02:52 -06:00
Kris Johnson
897ec75df9
Add the tournaments permission to bots
Bots need to manually have the tournaments permission because some rooms do not want drivers making tournaments, but there is currently no way to exclude driver while whitelisting bot with permissions.
2020-09-18 03:38:34 -06:00
Kris Johnson
a2295471ca
1v1: Add Togekiss suspect notice 2020-09-16 22:16:40 -06:00
Kris Johnson
dd494bb973
Tournaments: Modernize permission checking (#7375) 2020-09-16 03:40:15 -07:00
Kris Johnson
7b1ad67ccb
National Dex BH: Add Bolt Beak/Fishious Rend suspect notice 2020-09-15 13:29:54 -06:00
Marty-D
cd131baaf9 Ban OU suspect from formats inheriting from OU 2020-09-15 11:26:23 -04:00
Kris Johnson
0fd71d4bcb
OU: Add Cinderace suspect notice 2020-09-15 00:15:08 -06:00
Marty-D
0dffc42988
UU: Add Lycanroc-Dusk suspect notice 2020-09-12 19:45:48 -04:00
Annika
52aa7ece1e Fix Room Prize Winner rank 2020-09-10 19:22:51 -07:00
Kris Johnson
3c0d9f3d01 Allow Room Owners to promote users to Prize WInner 2020-09-09 21:41:49 -06:00
TheMezStrikes
b3e7ac1947
Let admins addhtml by default (#7342) 2020-09-09 17:47:20 -07:00
Annika
2f015dfd0e
Add a Room Prize Winner rank (#7256) 2020-09-09 12:25:48 -07:00
Kris Johnson
ab267ae2a1
Remove unnecessary import (#7335) 2020-09-08 00:18:17 -07:00
EvGym
b57b527f1c
Support custom-formats file (#7240) 2020-09-07 23:31:01 -07:00
Strahm, Jeffrey S.(S&T-Student)
188426490b Rename FormatsData to FormatData
(The name FormatsData is inconsistent with how we name other things;
especially since it's supposed to be data for a single format. It was
probably originally a typo. -Zarel)
2020-09-07 19:35:14 -07:00
The Immortal
23ec6e79f4 Trademarked: Revert complex ban from 98cd7f418 2020-09-06 17:02:34 +04:00
Kris Johnson
98cd7f4184
Trademarked: Update bans (#7318) 2020-09-05 19:28:14 -07:00
Kris Johnson
4c97120768
350 Cup: Ban Woobat (#7317)
https://www.smogon.com/forums/threads/350-cup-leaders-choice.3656554/page-2#post-8589091
2020-09-06 05:29:14 +04:00
Kris Johnson
c5d68ce16c
Megamax: Add newest updates (#7313)
https://www.smogon.com/forums/threads/megamax-pet-mod-of-the-season-ladder-tour-post-408.3658623/page-16#post-8571322
2020-09-04 21:44:42 -04:00
Kris Johnson
8c870e448b
Gen 5 2v2 Doubles: Add Accuracy Moves Clause (#7312)
https://www.smogon.com/forums/threads/old-gen-2v2-doubles-megathread.3663858/page-3#post-8588275
2020-09-04 21:44:19 -04:00
Kris Johnson
2e15b58e71
AAA: Ban Magearna (#7310)
https://www.smogon.com/forums/threads/ss-almost-any-ability-magearna-voting.3669814/#post-8588305
2020-09-05 03:16:15 +04:00
Kris Johnson
fb36d5275d
Remove Gen 7 Mix and Mega (#7298) 2020-09-03 01:15:59 +04:00
Kris Johnson
51a1a1325e
Fix typo (#7297) 2020-09-02 01:16:17 -04:00
Kris Johnson
b417b85e77
National Dex usage updates (#7293)
* National Dex usage updates

* Mega Gardevoir was JUST banned

* Update links
2020-09-02 01:23:19 +04:00
Kris Johnson
adad8ab9cc
350 Cup: Ban Abra and Gastly (#7294)
https://www.smogon.com/forums/threads/350-cup-leaders-choice.3656554/#post-8585930
2020-09-02 01:02:28 +04:00
The Immortal
bc89d070c6 Fix 350 Cup 2020-09-01 17:16:03 +04:00
The Immortal
444990014d Fix BW 2v2
And make the formats ordering consistent across gens.
2020-09-01 17:10:46 +04:00
Kris Johnson
a0611e774a
Add September 2020 RoA Spotlight formats (#7291) 2020-09-01 16:24:00 +04:00
The Immortal
1ee33f4ba2 Add September OMotMs 2020-09-01 01:31:44 +04:00
The Immortal
0ab31bc395 Doubles OU: Ban Volcarona 2020-09-01 01:22:39 +04:00
The Immortal
0a5b2e2ed9 Remove expired suspect notices 2020-08-31 17:26:47 +04:00
Kris Johnson
420676698c
ZU: Ban Swoobat (#7285)
https://www.smogon.com/forums/threads/np-zu-stage-2-turn-it-again-swoobat-quick-banned-42.3668115/page-2#post-8584032
2020-08-31 05:07:09 +04:00
Leonard Craft III
3d73ea5a44
Implement Battle Stadium Singles/Doubles Series 6 (#7257) 2020-08-27 21:16:07 +04:00
The Immortal
e65ba9fac0
Inheritance: Ban Magearna 2020-08-27 01:20:22 +04:00
The Immortal
192b25c269 Update National Dex UU 2020-08-26 19:20:20 +04:00
Kris Johnson
caf4cb2be7
STABmons: Restrict V-create (#7255)
https://www.smogon.com/forums/threads/ss-stabmons-v-create-voting.3669286/#post-8577943
2020-08-24 23:05:07 +04:00
The Immortal
1e92d68e39 Camomons: Ban Heracross 2020-08-24 16:47:59 +04:00
Marty-D
1fc4b8a664
DOU: Add Volcarona suspect notice 2020-08-21 14:28:27 -04:00
The Immortal
215c05431b Update suspect notices 2020-08-20 14:48:51 +04:00
The Immortal
05bb230ef8 Revert "Add LC suspect notice (#7119)"
This reverts commit f70864aefa.
2020-08-17 14:43:42 +04:00
Kris Johnson
25ee8f6d4c
Update bans and suspect notices (#7221) 2020-08-17 04:14:14 +04:00
Guangcong Luo
15b7c0ad9f Don't install node-oom-heapdump by default 2020-08-15 17:46:28 -07:00
Kris Johnson
afa104925e
Move Urshifu to DUber (#7208) 2020-08-14 13:45:03 +04:00
Kris Johnson
f758bad2a7
Add National Dex UU and STABmons suspect notices (#7205)
https://www.smogon.com/forums/threads/stabmons-v-create-suspect.3668395/
https://www.smogon.com/forums/threads/national-dex-uu-metagame-discussion-grimmsnarl-retest-160.3660920/page-7#post-8566347
2020-08-13 00:56:00 +04:00
Kris Johnson
5e255012bc
Add a 'bst' property to Species (#7138) 2020-08-12 12:06:09 -07:00
The Immortal
f5b46df7fe Add National Dex UU ladder 2020-08-10 18:32:18 +04:00
Kris Johnson
5519f37065
Megamax: Unban Cinderace (#7190)
https://www.smogon.com/forums/threads/megamax-pet-mod-of-the-season-retooling-slate-2.3658623/page-16#post-8558755
2020-08-10 14:24:14 +04:00
Kris Johnson
ff4394df9b
Fix formats crashes (#7192) 2020-08-09 21:58:38 -07:00
Kris Johnson
1e9b3a25a6
Inverse: Ban Rillaboom (#7185)
https://www.smogon.com/forums/threads/inverse-leaders-choice.3666858/page-2#post-8561585
2020-08-09 14:20:16 +04:00
Kris Johnson
ee69ccb745
Remove most OMs' reliability on OU (#7169) 2020-08-07 10:55:50 +04:00
Kris Johnson
02479517a3
Godly Gift: Ban Toxapex (#7167)
https://www.smogon.com/forums/threads/godly-gift-om-of-the-month.3660461/page-3#post-8559643
2020-08-07 01:11:15 +04:00
Kris Johnson
c0795ad8cf
Revert "Update LC suspect notice for new custom ladder (#7157)" (#7161)
This reverts commit 79dd42d955.
2020-08-06 18:09:25 +04:00
Kris Johnson
e900aaafa8
Inheritance: Actually fix validator (#7159) 2020-08-06 14:49:24 +04:00
Kris Johnson
79dd42d955
Update LC suspect notice for new custom ladder (#7157) 2020-08-06 01:04:21 -07:00
Annika
8287cbc7fb
Remove User#authAtLeast and add more sysop bypasses (#7046) 2020-08-06 00:12:30 -07:00
Kris Johnson
d74973b9e4
Inverse: Unban Cinderace (#7155)
https://www.smogon.com/forums/threads/inverse-leaders-choice.3666858/page-2#post-8558749
2020-08-05 23:22:54 -07:00
Kris Johnson
38a74d7a9e
Move Magearna and Cinderace to Ubers (#7154)
smogon.com/forums/threads/ss-ou-suspect-process-round-5-voting.3668286/page-7#post-8558727
smogon.com/forums/threads/cinderace-is-now-banned-from-ou.3668320
2020-08-05 17:16:34 -07:00
Kris Johnson
2c4668783a
Inheritance: Fix validation issue (#7124) 2020-08-04 01:30:50 -07:00
The Immortal
b5d7bf6c35 NFE: Ban Pikachu 2020-08-03 17:45:45 +04:00
Kris Johnson
ba945b733f
Moody should be banned from Godly Gift (#7132)
https://www.smogon.com/forums/threads/godly-gift-om-of-the-month.3660461/
2020-08-03 03:27:23 +04:00
Kris Johnson
f70864aefa
Add LC suspect notice (#7119) 2020-08-01 21:07:05 -07:00
Kris Johnson
00c312f475
Godly Gift: Fix interaction between various formes (#7115) 2020-08-01 18:15:50 -07:00
Kris Johnson
4776d729e1
Add remaining tier changes (#7113) 2020-08-01 22:25:56 +04:00
TheMezStrikes
0c54842ae3
Detach 2v2 banlist from doubles tiering (#7112) 2020-08-01 21:29:01 +04:00
Kris Johnson
274e5ef267
Add August OM and RoA Spotlight ladders (#7111) 2020-08-01 16:46:04 +04:00