mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-26 01:49:54 +00:00
* Added basic translation IT will need a second checkup by another source as attacks are not correcly ordered Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net> * Removed bugged file Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
42 lines
960 B
TypeScript
42 lines
960 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Plasma Freeze'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Team Plasma Badge",
|
|
fr: "Badge de la Team Plasma",
|
|
es: "Medalla del Equipo Plasma",
|
|
it: "Medaglia Team Plasma",
|
|
pt: "Insígnia da Equipe Plasma",
|
|
de: "Team-Plasma-Orden"
|
|
},
|
|
illustrator: "5ban Graphics",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
fr: "Le Pokémon auquel cette carte est attachée est un Pokémon de la Team Plasma.",
|
|
en: "The Pokémon this card is attached to is a Team Plasma Pokémon.",
|
|
es: "El Pokémon al que esté unida esta carta es un Pokémon del Equipo Plasma.",
|
|
it: "Il Pokémon a cui è assegnata questa carta è un Pokémon del Team Plasma.",
|
|
pt: "O Pokémon ao qual este card está ligado é um Pokémon da Equipe Plasma.",
|
|
de: "Das Pokémon, an das diese Karte angelegt ist, ist ein Team Plasma-Pokémon."
|
|
},
|
|
trainerType: "Tool",
|
|
|
|
}
|
|
|
|
export default card
|