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: "xyp-XY127", localId: "XY127", // Card informations name: { en: "Moltres", }, hp: 120, type: [ Type.FIRE, ], dexId: 146, image: { low: { en: "https://assets.tcgdex.net/en/xy/xyp/XY127/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xyp/XY127/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 35, name: "OOYAMA" }, attacks: [{ cost: [ Type.FIRE ], name: { en: "Combustion", }, damage: 20 },{ cost: [ Type.FIRE, Type.FIRE, Type.COLORLESS, Type.COLORLESS ], name: { en: "Flying Flare", }, text: { en: "You may do 40 more damage. If you do, this Pokémon does 20 damage to itself.", }, damage: 80 }], weaknesses: [{ type: Type.WATER, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "XY Black Star Promos", code: "xyp" } } export default card