1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-28 13:52:13 +00:00

74 lines
1.1 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 '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Empoleon",
fr: "Pingoléon",
},
illustrator: "Masakazu Fukuda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
395,
],
hp: 160,
types: [
"Water",
],
evolveFrom: {
en: "Prinplup",
fr: "Prinplouf",
},
stage: "Stage2",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Recall",
fr: "Récupération",
},
effect: {
en: "Choose an attack from 1 of this Pokémon's previous Evolutions and use it as this attack.",
fr: "Choisissez une attaque de lune des précédentes Évolutions de ce Pokémon et utilisez-la en tant que cette attaque.",
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Aquafall",
fr: "Aquasplash",
},
effect: {
en: "Discard all Energy from this Pokémon.",
fr: "Défaussez toute lÉnergie de ce Pokémon.",
},
damage: 130,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 2,
}
export default card