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: "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.png", fr: "https://assets.tcgdex.net/fr/xy/xy9/28/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy9/28/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy9/28/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 95, name: "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