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: "hgss4-79", localId: 79, // Card informations name: { en: "Swinub", fr: "Marcacrin", }, hp: 60, type: [ Type.WATER, ], dexId: 220, image: { low: { en: "https://assets.tcgdex.net/en/hgss/hgss4/79/low.png", fr: "https://assets.tcgdex.net/fr/hgss/hgss4/79/low.png", }, high: { en: "https://assets.tcgdex.net/en/hgss/hgss4/79/high.png", fr: "https://assets.tcgdex.net/fr/hgss/hgss4/79/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 0, name: "Kagemaru Himeno" }, attacks: [{ cost: [ Type.WATER ], name: { en: "Headbutt", fr: "Coup d'boule", }, damage: 10 },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Ice Ball", fr: "Ball'glace", }, damage: 20 }], weaknesses: [{ type: Type.METAL, value: "×2" }], retreat: 2, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "HS—Triumphant", code: "hgss4" } } export default card