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: "ex6-115", localId: 115, // Card informations name: { en: "Moltres ex", }, hp: 110, type: [ Type.FIRE, ], dexId: 146, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex6/115/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex6/115/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 1, name: "Ryo Ueda" }, attacks: [{ cost: [ Type.FIRE, Type.FIRE, Type.COLORLESS ], name: { en: "Crushing Flames", }, text: { en: "You may discard an Energy card attached to Moltres ex. If you do, the Defending Pokémon is now Confused.", }, damage: 60 }], weaknesses: [{ type: Type.WATER, value: "×2" }], rarity: Rarity.RareHoloEX, category: Category.POKEMON, set: { name: "FireRed & LeafGreen", code: "ex6" } } export default card