1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 17:39:18 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Genetic Apex/035.ts
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