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: "bw4-25", localId: 25, // Card informations name: { en: "Lapras", fr: "Lokhlass", }, hp: 100, type: [ Type.WATER, ], dexId: 131, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw4/25/low.png", fr: "https://assets.tcgdex.net/fr/bw/bw4/25/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw4/25/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw4/25/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 10, name: "Kouki Saitou" }, attacks: [{ cost: [ Type.WATER ], name: { en: "Call for Family", fr: "Appel à la Famille", }, text: { en: "Search your deck for 2 Basic Pokémon and put them onto your Bench. Shuffle your deck afterward.", fr: "Cherchez 2 Pokémon de base dans votre deck et placez-les sur votre Banc. Mélangez ensuite votre deck.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Reckless Charge", fr: "Attaque Imprudente", }, text: { en: "This Pokémon does 20 damage to itself.", fr: "Ce Pokémon s'inflige 20 dégâts.", }, damage: 40 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], retreat: 2, rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Next Destinies", code: "bw4" } } export default card