mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
74 lines
887 B
TypeScript
74 lines
887 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../POP Series 8'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Chimchar",
|
|
},
|
|
|
|
illustrator: "Kagemaru Himeno",
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
set: Set,
|
|
|
|
dexId: [
|
|
390,
|
|
],
|
|
|
|
hp: 50,
|
|
|
|
types: [
|
|
"Fire",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [
|
|
{
|
|
|
|
name: {
|
|
en: "Scratch",
|
|
},
|
|
|
|
damage: 10,
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Fire",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Ember",
|
|
},
|
|
effect: {
|
|
en: "Flip a coin. If tails, discard a Fire Energy attached to Chimchar.",
|
|
},
|
|
damage: 30,
|
|
|
|
},
|
|
],
|
|
|
|
weaknesses: [
|
|
{
|
|
type: "Water",
|
|
value: "+10"
|
|
},
|
|
],
|
|
|
|
description: {
|
|
en: "It agilely scales sheer cliffs to live atop craggy mountains. Its fire is put out when it sleeps."
|
|
},
|
|
|
|
retreat: 1,
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: false,
|
|
holo: true,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card
|