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

62 lines
960 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 '../Generations'
const card: Card = {
name: {
en: "M Charizard-EX",
fr: "M-Dracaufeu-EX",
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
6,
],
hp: 220,
types: [
"Fire",
],
evolveFrom: {
en: "Charizard-EX",
fr: "Dracaufeu-EX",
},
stage: "MEGA",
attacks: [
{
cost: [
"Fire",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Heat Typhoon",
fr: "Typhon Ardent",
},
effect: {
en: "Flip a coin for each Fire Energy attached to this Pokémon. This attack does 50 more damage for each heads.",
fr: "Lancez une pièce pour chaque Énergie Fire attachée à ce Pokémon. Cette attaque inflige 50 dégâts supplémentaires pour chaque côté face.",
},
damage: 100,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 3,
}
export default card