1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 10:52:10 +00:00

feat: update format rotation to 2024 (#521)

This commit is contained in:
Florian Bouillon 2024-07-24 15:06:00 +02:00 committed by GitHub
parent 68e363bfaa
commit c8ec4c88a7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 3 deletions

View File

@ -13,7 +13,7 @@ const swsh4: Set = {
pt: "Voltagem Vívida"
},
tcgOnline: 'VIV'
tcgOnline: 'VIV',
serie: serie,

View File

@ -6,6 +6,8 @@ import { Filter } from '../interfaces'
* The main goal of this file is to update quickly the current list of authorized/banned cards in the standard and expanded formats
*
* For included cards/set/etc we are currently using the April post of each years (note: posts seems to be coming each April)
* - 2024: https://www.pokemon.com/us/pokemon-news/2024-pokemon-tcg-standard-format-rotation-announcement
* - 2023: https://www.pokemon.com/us/pokemon-news/2023-pokemon-tcg-standard-format-rotation-and-pokemon-tool-errata
* - 2022: https://www.pokemon.com/us/pokemon-news/2022-pokemon-tcg-championship-series-season-format-rotation/
* - 2021: https://www.pokemon.com/us/pokemon-news/2021-season-pokemon-tcg-format-rotation/
* - 2020: https://www.pokemon.com/us/pokemon-news/2020-season-pokemon-tcg-format-rotation/
@ -29,7 +31,7 @@ export const standard: Filter = {
includes: {
series: [],
sets: [],
regulationMark: ['E', 'F']
regulationMark: ['F', 'G', 'H']
},
excludes: {
sets: [],
@ -39,7 +41,7 @@ export const standard: Filter = {
export const expanded: Filter = {
includes: {
series: ['bw', 'xy', 'sm', 'swsh'],
series: ['bw', 'xy', 'sm', 'swsh', 'sv'],
sets: [],
regulationMark: []
},