mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
66 lines
1.9 KiB
TypeScript
66 lines
1.9 KiB
TypeScript
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",
|
|
es: "Delphox",
|
|
it: "Delphox",
|
|
pt: "Delphox",
|
|
de: "Fennexis"
|
|
},
|
|
|
|
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 l'attacher à l'un 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
|