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: "xy10-9", localId: 9, // Card informations name: { en: "Moltres", fr: "Sulfura", }, hp: 120, type: [ Type.FIRE, ], dexId: 146, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy10/9/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy10/9/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy10/9/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy10/9/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 35, name: "OOYAMA" }, attacks: [{ cost: [ Type.FIRE ], name: { en: "Combustion", fr: "Fournaise", }, damage: 20 },{ cost: [ Type.FIRE, Type.FIRE, Type.COLORLESS, Type.COLORLESS ], name: { en: "Flying Flare", fr: "Flamboiement Volant", }, text: { en: "You may do 40 more damage. If you do, this Pokémon does 20 damage to itself.", fr: "Vous pouvez infliger 40 dégâts supplémentaires. Dans ce cas, ce Pokémon s'inflige 20 dégâts.", }, damage: 80 }], weaknesses: [{ type: Type.WATER, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], retreat: 1, rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Fates Collide", code: "xy10" } } export default card