1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-24 17:09:55 +00:00

73 lines
908 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Promos'
const card: Card = {
name: {
en: "Pikachu",
},
illustrator: "Kanako Eo",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
25,
],
hp: 70,
types: [
"Lightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Recharge",
},
effect: {
en: "Flip a coin. If heads, search your deck for a Lightning Energy card and attach it to Pikachu. Shuffle your deck afterward.",
},
},
{
cost: [
"Lightning",
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Thunderbolt",
},
effect: {
en: "Discard all Energy attached to Pikachu.",
},
damage: 100,
},
],
weaknesses: [
{
type: "Fightning",
value: "+10"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
}
export default card