1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-28 22:02:15 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

42 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Guardians Rising'
const card: Card = {
name: {
en: "Field Blower",
fr: "Nettoyage de Terrain",
es: "Soplador de Campo",
it: "Spazzacampo",
pt: "Ventilador de Campo",
de: "Feldgebläse"
},
illustrator: "Toyste Beach",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Choisissez jusquà 2 cartes Outil Pokémon ou cartes Stade en jeu, (les vôtres ou celles de votre adversaire), quelle que soit la combinaison, et défaussez-les.",
en: "Choose up to 2 in any combination of Pokémon Tool cards and Stadium cards in play (yours or your opponents) and discard them.",
es: "Elige, en cualquier combinación, hasta 2 cartas de Herramienta Pokémon y cartas de Estadio en juego (tuyas o de tu rival) y descártalas.",
it: "Scegli fino a due carte Oggetto Pokémon o Stadio in gioco, in qualsiasi combinazione, tue o del tuo avversario, e scartale.",
pt: "Escolha até 2 cartas de Ferramenta Pokémon e de Estádio em jogo em qualquer combinação (suas e do seu oponente) e descarte-as.",
de: "Wähle eine beliebige Kombination aus bis zu 2 Pokémon-Ausrüstungen und Stadionkarten im Spiel (deine oder die deines Gegners) und lege sie auf den Ablagestapel."
},
trainerType: "Item",
}
export default card