1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

68 lines
876 B
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 '../Team Rocket'
const card: Card = {
name: {
en: "Dark Charmeleon",
},
illustrator: "Kagemaru Himeno",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
5,
],
hp: 50,
types: [
"Fire",
],
evolveFrom: {
en: "Charmander",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Tail Slap",
},
damage: 20,
},
{
cost: [
"Fire",
"Fire",
"Fire",
],
name: {
en: "Fireball",
},
effect: {
en: "Use this attack only if there are any Energy cards attached to Dark Charmeleon. Flip a coin. If heads, discard 1 of those Energy cards. If tails, this attack does nothing (not even damage).",
},
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card