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: "sm1-83", localId: 83, // Card informations name: { en: "Sandile", fr: "Mascaïman", }, hp: 70, type: [ Type.DARKNESS, ], dexId: 551, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm1/83/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm1/83/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm1/83/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm1/83/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 32, name: "Atsuko Nishida" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Gnaw", fr: "Ronge", }, damage: 20 },{ cost: [ Type.DARKNESS, Type.DARKNESS, Type.COLORLESS ], name: { en: "Crunch", fr: "Mâchouille", }, text: { en: "Flip a coin. If heads, discard an Energy from your opponent's Active Pokémon.", fr: "Lancez une pièce. Si c'est face, défaussez une Énergie du Pokémon Actif de votre adversaire.", }, damage: 30 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], retreat: 2, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Sun & Moon", code: "sm1" } } export default card