1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 10:59:54 +00:00
2025-05-04 00:37:30 +02:00

54 lines
607 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../EX trainer Kit (Latios)'
const card: Card = {
dexId: [25],
set: Set,
name: {
en: "Pikachu"
},
illustrator: "Mitsuhiro Arita",
rarity: "None",
category: "Pokemon",
stage: "Basic",
hp: 50,
types: [
"Lightning",
],
attacks: [{
cost: [
"Colorless",
],
name: {
en: "Scratch"
},
damage: 10
}, {
cost: [
"Lightning",
"Colorless",
"Colorless"
],
name: {
en: "Pika Bolt"
},
damage: 40
}],
weaknesses: [
{
type: "Fighting",
value: "2x"
},
],
retreat: 1,
}
export default card