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

87 lines
1.6 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: "Vaporeon-GX",
fr: "Aquali-GX",
},
illustrator: "PLANETA Otani",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
134,
],
hp: 210,
types: [
"Water",
],
evolveFrom: {
en: "Eevee",
fr: "Évoli",
},
suffix: "GX",
abilities: [
{
type: "Ability",
name: {
en: "Hydrating Drops",
fr: "Gouttes Hydratantes",
},
effect: {
en: "Once during your turn (before your attack), you may heal 30 damage from your Active Water Pokémon.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez soigner 30 dégâts à votre Pokémon Actif Water.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Hydro Pump",
fr: "Hydrocanon",
},
effect: {
en: "This attack does 30 more damage times the amount of Water Energy attached to this Pokémon.",
fr: "Cette attaque inflige 30 dégâts supplémentaires multipliés par le nombre dÉnergies Water attachées à ce Pokémon.",
},
damage: 40,
},
{
cost: [
"Water",
],
name: {
en: "Cure Shower GX",
fr: "Pluie Curative-GX",
},
effect: {
en: "Heal all damage from all of your Water Pokémon. (You can't use more than 1 GX attack in a game.)",
fr: "Soignez tous les dégâts de vos Pokémon Water. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 2,
}
export default card