diff --git a/interfaces.d.ts b/interfaces.d.ts index 22af4dbfd..bbf927af1 100644 --- a/interfaces.d.ts +++ b/interfaces.d.ts @@ -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 diff --git a/meta/translations/de.json b/meta/translations/de.json index cd7f54f8c..952e42d2e 100644 --- a/meta/translations/de.json +++ b/meta/translations/de.json @@ -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", diff --git a/meta/translations/es.json b/meta/translations/es.json index b35bd0658..aeb080b0d 100644 --- a/meta/translations/es.json +++ b/meta/translations/es.json @@ -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", diff --git a/meta/translations/fr.json b/meta/translations/fr.json index bfaa46848..d7fa11d2f 100644 --- a/meta/translations/fr.json +++ b/meta/translations/fr.json @@ -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", diff --git a/meta/translations/it.json b/meta/translations/it.json index 80e1e1013..45781a085 100644 --- a/meta/translations/it.json +++ b/meta/translations/it.json @@ -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", diff --git a/meta/translations/pt.json b/meta/translations/pt.json index fedcf542d..c352dcb43 100644 --- a/meta/translations/pt.json +++ b/meta/translations/pt.json @@ -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", diff --git a/meta/translations/schema.json b/meta/translations/schema.json index a8b4ecef7..2ace6fec7 100644 --- a/meta/translations/schema.json +++ b/meta/translations/schema.json @@ -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": {