1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00

59 lines
934 B
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 '../FireRed & LeafGreen'
const card: Card = {
name: {
en: "Pikachu",
fr: "Pikachu",
de: "Pikachu"
},
illustrator: "Midori Harada",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
25,
],
hp: 50,
types: [
"Lightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Plasma",
fr: "Plasma",
de: "Plasma"
},
effect: {
en: "Flip a coin. If heads, search your discard pile for a Lightning Energy card and attach it to Pikachu.",
fr: "Lancez une pièce. Si c'est face, cherchez une carte Énergie dans votre pile de défausse et attachez-la à Pikachu.",
de: "Flip a coin. If heads, search your discard pile for a Energy card and attach it to Pikachu."
},
damage: 10,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
}
export default card