mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +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
1.2 KiB
TypeScript
42 lines
1.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Plasma Storm'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Colress Machine",
|
|
fr: "Nikodule",
|
|
es: "Acromáquina",
|
|
it: "Acrocongegno",
|
|
pt: "Máquina Colress",
|
|
de: "Achromat"
|
|
},
|
|
illustrator: "Ryo Ueda",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
fr: "Cherchez une carte Énergie Plasma dans votre deck et attachez-la à 1 de vos Pokémon de la Team Plasma. Mélangez ensuite votre deck.",
|
|
en: "Search your deck for a Plasma Energy card and attach it to 1 of your Team Plasma Pokémon. Shuffle your deck afterward.",
|
|
es: "Busca en tu baraja una carta de Energía Plasma y únela a 1 de tus Pokémon del Equipo Plasma. Baraja las cartas de tu baraja después.",
|
|
it: "Cerca nel tuo mazzo una carta Energia Plasma e assegnala a uno dei tuoi Pokémon del Team Plasma. Poi rimischia le carte del tuo mazzo.",
|
|
pt: "Procure em seu baralho um card de Energia de Plasma e ligue-o a 1 dos seus Pokémon da Equipe Plasma. Em seguida, embaralhe seus cards.",
|
|
de: "Durchsuche dein Deck nach einer Plasma-Energiekarte und lege sie an 1 deiner Team-Plasma-Pokémon an. Mische anschließend dein Deck."
|
|
},
|
|
trainerType: "Item",
|
|
|
|
}
|
|
|
|
export default card
|