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: "sm35-7", localId: 7, // Card informations name: { en: "Shaymin (Sky Forme)", fr: "Shaymin", }, hp: 70, type: [ Type.GRASS, ], dexId: 492, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm35/7/low", fr: "https://assets.tcgdex.net/fr/sm/sm35/7/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm35/7/high", fr: "https://assets.tcgdex.net/fr/sm/sm35/7/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Mizue", attacks: [{ cost: [ Type.GRASS ], name: { en: "Flippity Flap", fr: "Flip Flap", }, text: { en: "Shuffle your hand into your deck. Then, draw 6 cards.", fr: "Mélangez votre main avec votre deck. Ensuite, piochez 6 cartes.", }, },{ cost: [ Type.GRASS, 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 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], retreat: 1, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Shining Legends", code: "sm35" } } export default card