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: "sm5-111", localId: 111, // Card informations name: { en: "Shaymin", fr: "Shaymin", }, hp: 70, type: [ Type.COLORLESS, ], dexId: 492, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm5/111/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm5/111/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm5/111/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm5/111/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 95, name: "kirisAki" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Call for Family", fr: "Appel à la Famille", }, text: { en: "Search your deck for up to 2 Basic Pokémon and put them onto your Bench. Then, shuffle your deck.", fr: "Cherchez jusqu’à 2 Pokémon de base dans votre deck et placez-les sur votre Banc. Mélangez ensuite votre deck.", }, },{ cost: [ Type.COLORLESS ], name: { en: "Glide", fr: "Glissement", }, damage: 20 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], retreat: 1, rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Ultra Prism", code: "sm5" } } export default card