1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-24 00:49:55 +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
1007 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: "Team Yell Grunt",
fr: "Sbire de la Team Yell",
es: "Recluta del Team Yell",
it: "Recluta del Team Yell",
pt: "Recruta da Equipe Yell",
de: "Rüpel von Team Yell"
},
illustrator: "nagimiso",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
en: "Put an Energy attached to 1 of your opponents Pokémon into their hand.",
fr: "Ajoutez à la main de votre adversaire une Énergie attachée à lun de ses Pokémon.",
es: "Pon 1 Energía unida a 1 de los Pokémon de tu rival en su mano.",
it: "Prendi unEnergia assegnata a uno dei Pokémon del tuo avversario e aggiungila alle carte che ha in mano.",
pt: "Coloque 1 Energia ligada a 1 dos Pokémon do seu oponente na mão dele(a).",
de: "Gib deinem Gegner 1 an eins seiner Pokémon angelegte Energie auf seine Hand."
},
trainerType: "Supporter",
regulationMark: "D"
}
export default card