1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42:10 +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.2 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 '../Unbroken Bonds'
const card: Card = {
name: {
en: "Giovannis Exile",
fr: "Exil de Giovanni",
es: "Exilio de Giovanni",
it: "Esilio di Giovanni",
pt: "Exílio do Giovanni",
de: "Giovannis Exil"
},
illustrator: "Megumi Mizutani",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Défaussez jusquà 2 de vos Pokémon de Banc qui nont pas de marqueurs de dégâts, ainsi que toutes les cartes qui leur sont attachées.",
en: "Discard up to 2 of your Benched Pokémon that have no damage counters on them and all cards attached to them.",
es: "Descarta hasta 2 de tus Pokémon en Banca que no tengan contadores de daño sobre ellos y todas las cartas unidas a ellos.",
it: "Scarta fino a due dei tuoi Pokémon in panchina che non hanno segnalini danno insieme a tutte le carte a essi assegnate.",
pt: "Descarte até 2 dos seus Pokémon no Banco que não tenham contadores de dano neles e todas as cartas ligadas a eles.",
de: "Lege bis zu 2 Pokémon auf deiner Bank, auf denen keine Schadensmarken liegen, und alle an sie angelegten Karten auf deinen Ablagestapel."
},
trainerType: "Supporter",
}
export default card