mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
31 lines
381 B
TypeScript
31 lines
381 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../EX trainer Kit (Latios)'
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Pikachu"
|
|
},
|
|
|
|
illustrator: "Mitsuhiro Arita",
|
|
rarity: "None",
|
|
category: "Pokemon",
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Scratch"
|
|
},
|
|
|
|
damage: 10
|
|
}, {
|
|
name: {
|
|
en: "Pika Bolt"
|
|
},
|
|
|
|
damage: 40
|
|
}]
|
|
}
|
|
|
|
export default card |