mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
68 lines
876 B
TypeScript
68 lines
876 B
TypeScript
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
|