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: "sm6-3", localId: 3, // Card informations name: { en: "Snover", fr: "Blizzi", }, hp: 80, type: [ Type.GRASS, ], dexId: 459, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm6/3/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm6/3/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm6/3/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm6/3/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 28, name: "match" }, attacks: [{ cost: [ Type.GRASS, Type.COLORLESS ], name: { en: "Ice Shard", fr: "Éclats Glace", }, text: { en: "If your opponent's Active Pokémon is a Fighting Pokémon, this attack does 40 more damage.", fr: "Si le Pokémon Actif de votre adversaire est un Pokémon Fighting, cette attaque inflige 40 dégâts supplémentaires.", }, damage: 20 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], retreat: 3, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Forbidden Light", code: "sm6" } } export default card