mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
32 lines
411 B
TypeScript
32 lines
411 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Genetic Apex"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Charmeleon"
|
|
},
|
|
|
|
illustrator: "kantaro",
|
|
category: "Pokemon",
|
|
hp: 90,
|
|
types: ["Fire"],
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Fire", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Fire Claws"
|
|
},
|
|
|
|
damage: "60"
|
|
}],
|
|
|
|
retreat: 2,
|
|
rarity: "Two Diamond"
|
|
}
|
|
|
|
export default card
|