1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00
2024-12-19 11:52:36 +01:00

77 lines
1.1 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 '../Crystal Guardians'
const card: Card = {
name: {
en: "Charmeleon δ",
fr: "Reptincel δ",
de: "Glutexo"
},
illustrator: "Mitsuhiro Arita",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
5,
],
hp: 70,
types: [
"Lightning",
],
evolveFrom: {
en: "Charmander",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Slash",
fr: "Tranche",
de: "Schlitzer"
},
damage: 20,
},
{
cost: [
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Thunder Jolt",
fr: "Secousse tonnerre",
de: "Donnerrüttler"
},
effect: {
en: "Flip a coin. If tails, Charmeleon does 10 damage to itself.",
fr: "Lancez une pièce. Si c'est pile, Reptincel s'inflige 10 dégâts.",
de: "Wirf 1 Münze. Bei \"Zahl\" fügt sich Glutexo selbst 10 Schadenspunkte zu."
},
damage: 50,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card