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: "sm7-36", localId: 36, // Card informations name: { en: "Lotad", fr: "Nénupiot", }, hp: 60, type: [ Type.WATER, ], dexId: 270, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm7/36/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm7/36/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm7/36/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm7/36/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 32, name: "Atsuko Nishida" }, attacks: [{ cost: [ Type.WATER ], name: { en: "Surprise", fr: "Surprise", }, text: { en: "Choose a random card from your opponent's hand. Your opponent reveals that card and shuffles it into their deck.", fr: "Choisissez une carte au hasard de la main de votre adversaire. Votre adversaire montre la carte choisie et la mélange avec son deck.", }, damage: 10 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], retreat: 1, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Celestial Storm", code: "sm7" } } export default card