1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 01:37:52 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

36 lines
539 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../EX trainer Kit 2 (Ninun)'
const card: Card = {
dexId: [5],
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