1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-04 20:59:55 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

75 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 '../Black & White'
const card: Card = {
dexId: [25],
name: {
fr: "Pikachu",
en: "Pikachu",
es: "Pikachu",
it: "Pikachu",
pt: "Pikachu",
de: "Pikachu"
},
illustrator: "Kouki Saitou",
rarity: "Secret Rare",
category: "Pokemon",
set: Set,
hp: 60,
types: [
"Lightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Lightning",
],
name: {
fr: "Énergisant",
en: "Energize",
},
effect: {
fr: "Attachez une carte Énergie Lightning de votre pile de défausse à ce Pokémon.",
en: "Attach a Lightning Energy card from your discard pile to this Pokémon."
},
},
{
cost: [
"Lightning",
"Colorless",
"Colorless",
],
name: {
fr: "Tonnerre",
en: "Thunderbolt",
},
effect: {
en: "Discard all Energy attached to this Pokémon.",
fr: "Défaussez toutes les Énergies attachées à ce Pokémon.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 1,
}
export default card