1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 142310c539
Most data added (#106)
Signed-off-by: Avior <github@avior.me>
2021-10-18 11:53:03 +02:00

35 lines
526 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../EX trainer Kit 2 (Ninun)'
const card: Card = {
set: Set,
name: {
en: "Charmeleon"
},
illustrator: "Kouki Saitou",
rarity: "None",
category: "Pokemon",
stage: "Stage1",
attacks: [{
name: {
en: "Flare"
},
damage: 30
}, {
name: {
en: "Damage Burn"
},
damage: "40+",
effect: {
en: "If the Defending Pokémon already has any damage counters on it, this attack does 40 damage plus 20 more damage."
}
}]
}
export default card