import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/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", }, high: { en: "https://assets.tcgdex.net/en/xy/xyp/XY127/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "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