mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-25 09:29:55 +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
907 B
TypeScript
42 lines
907 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Plasma Freeze'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Shadow Triad",
|
|
fr: "Trio des Ombres",
|
|
es: "Trío Sombrío",
|
|
it: "Trio Oscuro",
|
|
pt: "Tríade das Sombras",
|
|
de: "Finstrio"
|
|
},
|
|
illustrator: "Yusuke Ohmura",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
fr: "Ajoutez une carte de la Team Plasma de votre pile de défausse à votre main.",
|
|
en: "Put a Team Plasma card from your discard pile into your hand.",
|
|
es: "Pon una carta del Equipo Plasma de tu pila de descartes en tu mano.",
|
|
it: "Prendi una carta Team Plasma dalla tua pila degli scarti e aggiungila a quelle che hai in mano.",
|
|
pt: "Coloque um card da Equipe Plasma da sua pilha de descarte em sua mão.",
|
|
de: "Nimm 1 Team-Plasma-Karte von deinem Ablagestapel auf deine Hand."
|
|
},
|
|
trainerType: "Supporter",
|
|
|
|
}
|
|
|
|
export default card
|