1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 19:09:54 +00:00
2025-05-04 00:37:30 +02:00

62 lines
790 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../EX trainer Kit 2 (Minun).ts'
const card: Card = {
dexId: [5],
set: Set,
name: {
en: "Charmeleon"
},
illustrator: "Kouki Saitou",
rarity: "None",
category: "Pokemon",
stage: "Stage1",
hp: 70,
types: [
"Fire",
],
evolveFrom: {
en: "Charmander",
},
attacks: [{
cost: [
"Fire",
"Colorless"
],
name: {
en: "Flare"
},
damage: 30
}, {
cost: [
"Fire",
"Colorless",
"Colorless"
],
name: {
en: "Damage Burn"
},
effect: {
en: "If the Defending Pokémon already has any damage counters on it, this attack does 40 damage plus 20 more damage."
},
damage: "40+"
}],
weaknesses: [
{
type: "Water",
value: "2x"
},
],
retreat: 1,
}
export default card