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: "xyp-XY115", localId: "XY115", // Card informations name: { en: "Shaymin", fr: "Shaymin", }, hp: 70, type: [ Type.GRASS, ], dexId: 492, image: { low: { en: "https://assets.tcgdex.net/en/xy/xyp/XY115/low.png", fr: "https://assets.tcgdex.net/fr/xy/xyp/XY115/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xyp/XY115/high.png", fr: "https://assets.tcgdex.net/fr/xy/xyp/XY115/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 70, name: "You Iribi" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Aromatherapy", fr: "Aromathérapie", }, text: { en: "Heal 30 damage from each of your Pokémon.", fr: "Soignez 30 dégâts à chacun de vos Pokémon.", }, },{ cost: [ Type.GRASS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Magical Leaf", fr: "Feuille Magik", }, text: { en: "Flip a coin. If heads, this attack does 20 more damage and heal 20 damage from this Pokémon.", fr: "Lancez une pièce. Si c’est face, cette attaque inflige 20 dégâts supplémentaires et vous soignez 20 dégâts à ce Pokémon.", }, damage: 40 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], retreat: 1, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "XY Black Star Promos", code: "xyp" } } export default card