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: "sm9-31", localId: 31, // Card informations name: { en: "Lapras", fr: "Lokhlass", }, hp: 130, type: [ Type.WATER, ], dexId: 131, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm9/31/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm9/31/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm9/31/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm9/31/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 5, name: "Ken Sugimori" }, attacks: [{ cost: [ Type.WATER ], name: { en: "Confuse Ray", fr: "Onde Folie", }, text: { en: "Your opponent's Active Pokémon is now Confused.", fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.", }, },{ cost: [ Type.COLORLESS ], name: { en: "Hydro Pump", fr: "Hydrocanon", }, text: { en: "This attack does 30 more damage times the amount of Water Energy attached to this Pokémon.", fr: "Cette attaque inflige 30 dégâts supplémentaires multipliés par le nombre d’Énergies Water attachées à ce Pokémon.", }, damage: 10 }], weaknesses: [{ type: Type.METAL, value: "×2" }], retreat: 3, rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Team Up", code: "sm9" } } export default card