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: "xy9-28", localId: 28, // Card informations name: { en: "Lapras", fr: "Lokhlass", }, hp: 120, type: [ Type.WATER, ], dexId: 131, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy9/28/low", fr: "https://assets.tcgdex.net/fr/xy/xy9/28/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy9/28/high", fr: "https://assets.tcgdex.net/fr/xy/xy9/28/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "kirisAki", attacks: [{ cost: [ Type.WATER ], name: { en: "Errand-Running", fr: "Rendez-Vous", }, text: { en: "Search your deck for a Trainer card, reveal it, and put it into your hand. Shuffle your deck afterward.", fr: "Cherchez une carte Dresseur dans votre deck, montrez-la, puis ajoutez-la à votre main. Mélangez ensuite votre deck.", }, },{ cost: [ Type.WATER, Type.WATER, Type.COLORLESS ], name: { en: "Water Splash", fr: "Éclaboussure", }, text: { en: "Flip a coin. If heads, this attack does 20 more damage.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts supplémentaires.", }, damage: 80 }], weaknesses: [{ type: Type.METAL, value: "×2" }], retreat: 2, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "BREAKpoint", code: "xy9" } } export default card