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: "bw11-22", localId: 22, // Card informations name: { en: "Moltres", }, hp: 120, type: [ Type.FIRE, ], dexId: 146, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw11/22/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw11/22/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 9, name: "Mitsuhiro Arita" }, attacks: [{ cost: [ Type.FIRE, Type.COLORLESS, Type.COLORLESS ], name: { en: "Searing Flame", }, text: { en: "The Defending Pokémon is now Burned.", }, damage: 50 },{ cost: [ Type.FIRE, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Fire Blast", }, text: { en: "Discard a Fire Energy attached to this Pokémon.", }, damage: 90 }], weaknesses: [{ type: Type.WATER, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "Legendary Treasures", code: "bw11" } } export default card