1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-11 15:45:14 +00:00
Files
cards-database/data/Sun & Moon/Burning Shadows/19.ts

83 lines
1.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Burning Shadows'
const card: Card = {
name: {
en: "Charmeleon",
fr: "Reptincel",
es: "Charmeleon",
it: "Charmeleon",
pt: "Charmeleon",
de: "Glutexo"
},
illustrator: "kawayoo",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
5,
],
hp: 90,
types: [
"Fire",
],
evolveFrom: {
en: "Charmander",
fr: "Salamèche",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Claw Slash",
fr: "TranchGriffe",
es: "Cuchillada Garra",
it: "Lacerartiglio",
pt: "Golpe de Garra",
de: "Klauenschlitzer"
},
damage: 30,
},
{
cost: [
"Fire",
"Fire",
"Colorless",
],
name: {
en: "Heat Blast",
fr: "Explosion de Chaleur",
es: "Explosión de Calor",
it: "Caldobomba",
pt: "Raio de Calor",
de: "Hitzestoß"
},
damage: 70,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 2,
}
export default card