mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 12:52:13 +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
918 B
TypeScript
42 lines
918 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Plasma Blast'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Scoop Up Cyclone",
|
|
fr: "Rappel Cyclone",
|
|
es: "Ciclón de Levante",
|
|
it: "Mega Recupero",
|
|
pt: "Recolhida Ciclone",
|
|
de: "Aufwisch-Zyklon"
|
|
},
|
|
illustrator: "5ban Graphics",
|
|
rarity: "Rare",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
fr: "Placez 1 de vos Pokémon et toutes les cartes qui lui sont attachées dans votre main.",
|
|
en: "Put 1 of your Pokémon and all cards attached to it into your hand.",
|
|
es: "Pon 1 de tus Pokémon y todas las cartas unidas a él en tu mano.",
|
|
it: "Riprendi in mano uno dei tuoi Pokémon e tutte le carte a esso assegnate.",
|
|
pt: "Coloque 1 dos seus Pokémon e todas as cards ligadas a ele em sua mão.",
|
|
de: "Nimm 1 deiner Pokémon und alle an es angelegten Karten zurück auf deine Hand."
|
|
},
|
|
trainerType: "Item",
|
|
|
|
}
|
|
|
|
export default card
|