1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00
Florian Bouillon 0ce5e62460
Added some XY translations (#63)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:18:16 +00:00

62 lines
1.8 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 '../Fates Collide'
const card: Card = {
name: {
en: "Delphox BREAK",
fr: "Goupelin TURBO",
es: "Delphox TURBO",
it: "Delphox TURBO",
pt: "Delphox TURBO",
de: "Fennexis-TURBO"
},
illustrator: "5ban Graphics",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
655,
],
hp: 180,
types: [
"Fire",
],
evolveFrom: {
en: "Delphox",
fr: "Goupelin",
},
stage: "BREAK",
abilities: [
{
type: "Ability",
name: {
en: "Flare Witch",
fr: "Sorcier Flamboyant",
es: "Brujería Ígnea",
it: "Strega Fiamma",
pt: "A Bruxa de Chamas",
de: "Hexenflackern"
},
effect: {
en: "Once during your turn (before your attack), you may search your deck for a Fire Energy card and attach it to 1 of your Pokémon. Shuffle your deck afterward.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez chercher une carte Énergie Fire dans votre deck et lattacher à lun de vos Pokémon. Mélangez ensuite votre deck.",
es: "Una vez durante tu turno (antes de tu ataque), puedes buscar en tu baraja 1 carta de Energía Fire y unirla a 1 de tus Pokémon. Baraja las cartas de tu baraja después.",
it: "Una sola volta durante il tuo turno, prima di attaccare, puoi cercare nel tuo mazzo una carta Energia Fire e assegnarla a uno dei tuoi Pokémon. Poi rimischia le carte del tuo mazzo.",
pt: "Uma vez durante sua vez de jogar (antes de atacar), você pode procurar em seu baralho um card de Energia Fire e o ligar a 1 dos seus Pokémon. Em seguida, embaralhe seus cards.",
de: "Einmal während deines Zuges (vor deinem Angriff) kannst du dein Deck nach 1 Fire-Energiekarte durchsuchen und sie an 1 deiner Pokémon anlegen. Mische anschließend dein Deck."
},
},
],
retreat: 0
}
export default card