1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-05 08:57:49 +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
1.1 KiB
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",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card