1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-09 02:37:50 +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
809 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Shining Fates'
const card: Card = {
set: Set,
name: {
fr: "Bannière de la Team Yell",
en: "Team Yell Towel",
es: "Toalla del Team Yell",
it: "Asciugamano del Team Yell",
pt: "Toalha da Equipe Yell",
de: "Tuch von Team Yell"
},
illustrator: "Studio Bora Inc.",
rarity: "Uncommon",
category: "Trainer",
effect: {
fr: "Soignez 50 dégâts des deux Pokémon Actifs.",
en: "Heal 50 damage from both Active Pokémon.",
es: "Cura 50 puntos de daño a ambos Pokémon Activos.",
it: "Cura entrambi i Pokémon attivi da 50 danni.",
pt: "Cure 50 pontos de dano de ambos os Pokémon Ativos.",
de: "Heile 50 Schadenspunkte bei beiden Aktiven Pokémon."
},
trainerType: "Item",
regulationMark: "D"
}
export default card