1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-20 07:09:54 +00:00
Florian Bouillon 96f34fcafb
Added informations on more languages for Sword & Shield cards
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-29 17:20:26 +02:00

33 lines
896 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 '../Sword & Shield'
const card: Card = {
name: {
en: "Bede",
fr: "Travis",
es: "Berto",
it: "Beet",
pt: "Beda",
de: "Betys"
},
illustrator: "Naoki Saito",
rarity: "Secret Rare",
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"
}
export default card