mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-01 07:12:08 +00:00
36 lines
1.0 KiB
TypeScript
36 lines
1.0 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Obsidian Flames"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
fr: "Sbire de la Team Star",
|
|
en: "Team Star Grunt",
|
|
es: "Recluta del Team Star",
|
|
it: "Recluta del Team Star",
|
|
pt: "Recruta da Equipe Star",
|
|
de: "Rüpel von Team Star"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
fr: "Placez une Énergie attachée au Pokémon Actif de votre adversaire sur le dessus de son deck.",
|
|
en: "Put an Energy attached to your opponent's Active Pokémon on top of their deck.",
|
|
es: "Pon 1 Energía unida al Pokémon Activo de tu rival en la parte superior de su baraja.",
|
|
it: "Prendi un'Energia assegnata al Pokémon attivo del tuo avversario e mettila in cima al suo mazzo.",
|
|
pt: "Coloque uma Energia ligada ao Pokémon Ativo do seu oponente como a carta de cima do baralho dele.",
|
|
de: "Lege 1 an das Aktive Pokémon deines Gegners angelegte Energie auf sein Deck."
|
|
},
|
|
|
|
trainerType: "Supporter",
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |