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: "bw10-17", localId: 17, // Card informations name: { en: "Lapras", fr: "Lokhlass", }, hp: 100, type: [ Type.WATER, ], dexId: 131, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw10/17/low.png", fr: "https://assets.tcgdex.net/fr/bw/bw10/17/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw10/17/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw10/17/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 10, name: "Kouki Saitou" }, attacks: [{ cost: [ Type.WATER, Type.COLORLESS ], name: { en: "Cleanse Away", fr: "Soin Groupé", }, text: { en: "Heal 30 damage from each of your Benched Pokémon.", fr: "Soignez 30 dégâts à chacun de vos Pokémon de Banc.", }, },{ cost: [ Type.WATER, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Surf", fr: "Surf", }, damage: 70 }], weaknesses: [{ type: Type.METAL, value: "×2" }], retreat: 2, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Plasma Blast", code: "bw10" } } export default card