1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-06 01:07:53 +00:00

81 lines
1.8 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Promos'
const card: Card = {
name: {
en: "Eevee-GX",
fr: "Évoli-GX",
},
illustrator: "PLANETA Otani",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
133,
],
hp: 160,
types: [
"Colorless",
],
suffix: "GX",
abilities: [
{
type: "Ability",
name: {
en: "Ascension DNA",
fr: "ADN dAscension",
},
effect: {
en: "Once during your turn (before your attack), if you have a Pokémon in your hand that evolves from Eevee, you may put that card onto this Pokémon to evolve it. Before evolving, heal all damage from this Pokémon. You can't use this Ability during your first turn or the turn this Pokémon was put into play.",
fr: "Une seule fois pendant votre tour (avant votre attaque), si vous avez dans votre main un Pokémon qui évolue dÉvoli, vous pouvez placer cette carte sur ce Pokémon pour le faire évoluer. Avant de le faire évoluer, soignez tous les dégâts de ce Pokémon. Vous ne pouvez utiliser ce talent ni pendant votre premier tour ni pendant le tour durant lequel ce Pokémon a été joué.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Boost Dash",
fr: "Ruée Propulsée",
},
damage: 100,
},
{
cost: [
"Colorless",
],
name: {
en: "Joy Maker GX",
fr: "Créateur de Joie-GX",
},
effect: {
en: "Put 3 cards from your discard pile into your hand. (You can't use more than 1 GX attack in a game.)",
fr: "Placez 3 cartes de votre pile de défausse dans votre main. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
retreat: 1,
}
export default card