mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-21 07:39:54 +00:00
27 lines
360 B
TypeScript
27 lines
360 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Promos-A"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Pikachu"
|
|
},
|
|
|
|
illustrator: "Atsushi Furusawa",
|
|
rarity: "One Star",
|
|
category: "Pokemon",
|
|
types: ["Lightning"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Gnaw"
|
|
},
|
|
|
|
cost: ["Lightning"],
|
|
damage: 20
|
|
}]
|
|
}
|
|
|
|
export default card |