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: "sm12-28", localId: 28, // Card informations name: { en: "Entei", fr: "Entei", }, hp: 130, type: [ Type.FIRE, ], dexId: 244, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm12/28/low", fr: "https://assets.tcgdex.net/fr/sm/sm12/28/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm12/28/high", fr: "https://assets.tcgdex.net/fr/sm/sm12/28/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Shin Nagasawa", attacks: [{ cost: [ Type.FIRE, Type.COLORLESS ], name: { en: "Rally Back", fr: "Répercussions", }, text: { en: "If any of your Pokémon were Knocked Out by damage from an opponent's attack during their last turn, this attack does 90 more damage.", fr: "Si l’un de vos Pokémon a été mis K.O. par les dégâts d’une attaque de votre adversaire pendant son dernier tour, cette attaque inflige 90 dégâts supplémentaires.", }, damage: 30 },{ cost: [ Type.FIRE, Type.FIRE, Type.COLORLESS ], name: { en: "Fire Mane", fr: "Crinière de Feu", }, damage: 100 }], weaknesses: [{ type: Type.WATER, value: "×2" }], retreat: 2, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Cosmic Eclipse", code: "sm12" } } export default card