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

feat: Add Baby stage (#123)

Signed-off-by: Avior <github@avior.me>
This commit is contained in:
Florian Bouillon 2021-11-17 15:09:13 +01:00 committed by GitHub
parent 2f5f52b51c
commit ada32e3b20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 17 additions and 7 deletions

3
interfaces.d.ts vendored
View File

@ -142,8 +142,9 @@ export interface Card {
* - Stage1 https://www.tcgdex.net/database/xy/xy9/2
* - Stage2 https://www.tcgdex.net/database/xy/xy9/3
* - VMAX https://www.tcgdex.net/database/swsh/swsh1/50
* - Baby https://www.tcgdex.net/database/swsh/cel25/20A
*/
stage?: 'Basic' | 'BREAK' | 'LEVEL-UP' | 'MEGA' | 'RESTORED' | 'Stage1' | 'Stage2' | 'VMAX' | 'V-UNION'
stage?: 'Basic' | 'BREAK' | 'LEVEL-UP' | 'MEGA' | 'RESTORED' | 'Stage1' | 'Stage2' | 'VMAX' | 'V-UNION' | 'Baby'
/**
* Card Suffix

View File

@ -36,7 +36,8 @@
"Stage1": "Rang 1",
"Stage2": "Rang 2",
"VMAX": "VMAX",
"V-UNION": "V-UNION"
"V-UNION": "V-UNION",
"Baby": "Baby"
},
"suffix": {
"EX": "EX",

View File

@ -36,7 +36,8 @@
"Stage1": "Fase 1",
"Stage2": "Fase 2",
"VMAX": "VMAX",
"V-UNION": "V-UNION"
"V-UNION": "V-UNION",
"Baby": "Bebé"
},
"suffix": {
"EX": "EX",

View File

@ -34,7 +34,8 @@
"Stage1": "Niveau 1",
"Stage2": "Niveau 2",
"VMAX": "ESCOUADE",
"V-UNION": "V-UNION"
"V-UNION": "V-UNION",
"Baby": "Bébé"
},
"suffix": {
"EX": "EX",

View File

@ -36,7 +36,8 @@
"Stage1": "Livello 1",
"Stage2": "Livello 2",
"VMAX": "VMAX",
"V-UNION": "V-UNION"
"V-UNION": "V-UNION",
"Baby": "Bambino"
},
"suffix": {
"EX": "EX",

View File

@ -36,7 +36,8 @@
"Stage1": "Stage 1",
"Stage2": "Stage 2",
"VMAX": "VMAX",
"V-UNION": "V-UNION"
"V-UNION": "V-UNION",
"Baby": "Bebê"
},
"suffix": {
"EX": "EX",

View File

@ -127,6 +127,9 @@
},
"V-UNION": {
"type": "string"
},
"Baby": {
"type": "string"
}
},
"required": [
@ -138,7 +141,8 @@
"Stage1",
"Stage2",
"VMAX",
"V-UNION"
"V-UNION",
"Baby"
]
},
"suffix": {