1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* some fixes

Signed-off-by: Avior <github@avior.me>

* Some more changes

Signed-off-by: Avior <github@avior.me>

* u

Signed-off-by: Avior <github@avior.me>

* continuing update

Signed-off-by: Avior <github@avior.me>

* Finished ?

Signed-off-by: Avior <github@avior.me>

* Removed files that were not meant to be

* Remoed even more files
2021-10-26 10:40:03 +02:00

40 lines
1.1 KiB
TypeScript

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 opponent's Pokémon into their hand.",
fr: "Ajoutez à la main de votre adversaire une Énergie attachée à l'un de ses Pokémon.",
es: "Pon 1 Energía unida a 1 de los Pokémon de tu rival en su mano.",
it: "Prendi un'Energia 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",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card