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: "sm3-27", localId: 27, // Card informations name: { en: "Alolan Vulpix", fr: "Goupix d’Alola", }, hp: 60, type: [ Type.WATER, ], dexId: 37, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm3/27/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm3/27/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm3/27/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm3/27/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 62, name: "Saya Tsuruta" }, attacks: [{ name: { en: "Powder Snow", fr: "Poudreuse", }, text: { en: "Flip a coin. If heads, your opponent's Active Pokémon is now Asleep.", fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Endormi.", }, },{ cost: [ Type.WATER, Type.WATER ], name: { en: "Icy Snow", fr: "Verglas", }, damage: 30 }], weaknesses: [{ type: Type.METAL, value: "×2" }], retreat: 1, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Burning Shadows", code: "sm3" } } export default card