mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-05 21:09: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
1.1 KiB
TypeScript
42 lines
1.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Black & White'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Super Scoop Up",
|
||
fr: "Super Rappel",
|
||
es: "Superlevante",
|
||
it: "Super Recupero",
|
||
pt: "Super Colherada",
|
||
de: "Super-Anziehungskraft"
|
||
},
|
||
illustrator: "Daisuke Iwamoto",
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
|
||
set: Set,
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
effect: {
|
||
fr: "Lancez une pièce. Si c’est face, placez l’un de vos Pokémon ainsi que toutes les cartes qui lui sont attachées dans votre main.",
|
||
en: "Flip a coin. If heads, put 1 of your Pokémon and all cards attached to it into your hand.",
|
||
es: "Lanza una moneda. Si sale cara, pon 1 de tus Pokémon y todas las cartas unidas a él en tu mano.",
|
||
it: "Lancia una moneta. Se esce testa, riprendi in mano uno dei tuoi Pokémon e tutte le carte a esso assegnate.",
|
||
pt: "Jogue uma moeda. Se sair cara, coloque 1 dos seus Pokémon e todos os cards ligados a ele em sua mão.",
|
||
de: "Wirf 1 Münze. Nimm bei „Kopf“ 1 deiner Pokémon und alle daran angelegten Karten zurück auf deine Hand."
|
||
},
|
||
trainerType: "Item",
|
||
|
||
}
|
||
|
||
export default card
|