1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-27 14:29:18 +00:00
Files
cards-database/data/Scarlet & Violet/Scarlet & Violet/194.ts
TCGdex [Bot] 0475848425 editor: fix Scarlet & Violet variants (#508)
Co-authored-by: Avior <git@avior.me>
2024-07-03 15:53:00 +02:00

36 lines
821 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Scarlet & Violet"
const card: Card = {
set: Set,
name: {
en: "Switch",
fr: "Échange",
es: "Cambio",
it: "Scambio",
pt: "Substituição",
de: "Tausch"
},
rarity: "Common",
category: "Trainer",
effect: {
en: "Switch your Active Pokémon with 1 of your Benched Pokémon.",
fr: "Échangez votre Pokémon Actif contre l'un de vos Pokémon de Banc.",
es: "Cambia tu Pokémon Activo por uno de tus Pokémon en Banca.",
it: "Scambia il tuo Pokémon attivo con uno della tua panchina.",
pt: "Troque o seu Pokémon Ativo por 1 dos seus Pokémon no Banco.",
de: "Tausche dein Aktives Pokémon gegen 1 Pokémon auf deiner Bank aus."
},
trainerType: "Item",
regulationMark: "G",
variants: {
holo: false
}
}
export default card