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: "sm8-38", localId: 38, // Card informations name: { en: "Moltres", fr: "Sulfura", }, hp: 120, type: [ Type.FIRE, ], dexId: 146, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm8/38/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm8/38/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm8/38/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm8/38/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 66, name: "Misa Tsutsui" }, attacks: [{ cost: [ Type.FIRE ], name: { en: "Assisting Heater", fr: "Assistant Thermique", }, text: { en: "You may attach a Fire Energy card from your hand to 1 of your Benched Pokémon.", fr: "Vous pouvez attacher une carte Énergie Fire de votre main à l’un de vos Pokémon de Banc.", }, damage: 30 },{ cost: [ Type.FIRE, Type.FIRE, Type.COLORLESS ], name: { en: "Fire Wing", fr: "Aile de Feu", }, damage: 90 }], weaknesses: [{ type: Type.WATER, value: "×2" }], retreat: 1, rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Lost Thunder", code: "sm8" } } export default card