1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

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