1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-20 07:09:54 +00:00
Khaleeq Ahmad a597759d9d
fix: Pocket card data fixes (#659)
Co-authored-by: Khaleeq Ahmad <1710642+khaleeqahmad@users.noreply.github.com>
2025-02-19 21:52:42 +01:00

49 lines
713 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Charizard"
},
illustrator: "takuyoa",
category: "Pokemon",
hp: 150,
types: ["Fire"],
stage: "Stage2",
evolveFrom: {
en: "Charmeleon"
},
attacks: [{
cost: ["Fire", "Fire", "Colorless", "Colorless"],
name: {
en: "Fire Spin"
},
effect: {
en: "Discard 2 R Energy from this Pokémon."
},
damage: "150"
}],
weaknesses: [{
type: "Water",
value: "+20"
}],
retreat: 2,
rarity: "Three Diamond",
description: {
en: "It has a barbaric nature. In battle, it whips its fiery tail around and slashes away with sharp claws.",
}
}
export default card