1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-05 00:52:08 +00:00
Florian Bouillon 9138eedb16
Add swsh variants (#42)
* Updated Kalos Starter Set data

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed XY set

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed some more XY sets

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Added the rest of the SWSH variants

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-02 12:34:21 +00:00

40 lines
983 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Champion\'s Path'
const card: Card = {
name: {
en: "Bede",
fr: "Travis",
es: "Berto",
it: "Beet",
pt: "Beda",
de: "Betys"
},
illustrator: "Naoki Saito",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
en: "Attach a basic Energy card from your hand to 1 of your Benched Pokémon.",
fr: "Attachez une carte Énergie de base de votre main à lun de vos Pokémon de Banc.",
es: "Une 1 carta de Energía Básica de tu mano a 1 de tus Pokémon en Banca.",
it: "Assegna a uno dei tuoi Pokémon in panchina una carta Energia base dalla tua mano.",
pt: "Ligue 1 carta de Energia básica da sua mão a 1 dos seus Pokémon no Banco.",
de: "Lege 1 Basis-Energiekarte aus deiner Hand an 1 Pokémon auf deiner Bank an."
},
trainerType: "Supporter",
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card