import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "bw8-14", localId: 14, // Card informations name: { en: "Moltres-EX", fr: "Sulfura-EX", }, hp: 170, type: [ Type.FIRE, ], dexId: 146, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw8/14/low.png", fr: "https://assets.tcgdex.net/fr/bw/bw8/14/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw8/14/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw8/14/high.png", }, }, evolveFrom: {}, tags: [ Tag.EX, ], illustrator: { id: 38, name: "Eske Yoshinob" }, attacks: [{ cost: [ Type.FIRE, Type.COLORLESS ], name: { en: "Destructive Flame", fr: "Flamme Destructrice", }, text: { en: "Flip a coin. If heads, discard an Energy attached to the Defending Pokémon.", fr: "Lancez une pièce. Si c'est face, défaussez une Énergie attachée au Pokémon Défenseur.", }, damage: 30 },{ cost: [ Type.FIRE, Type.FIRE, Type.COLORLESS, Type.COLORLESS ], name: { en: "Power Flame", fr: "Flamme Vigoureuse", }, text: { en: "If this Pokémon has any Plasma Energy attached to it, this attack does 40 more damage.", fr: "Si de l'Énergie Plasma est attachée à ce Pokémon, cette attaque inflige 40 dégâts supplémentaires.", }, damage: 80 }], weaknesses: [{ type: Type.WATER, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], retreat: 1, rarity: Rarity.RareHoloEX, category: Category.POKEMON, set: { name: "Plasma Storm", code: "bw8" } } export default card