import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "swsh1-64", localId: 64, // Card informations name: { en: "Frosmoth", fr: "Beldeneige", }, hp: 90, type: [ Type.WATER, ], image: { low: { en: "https://assets.tcgdex.net/en/swsh/swsh1/64/low", fr: "https://assets.tcgdex.net/fr/swsh/swsh1/64/low", } }, evolveFrom: { en: "Snom", fr: "Frissonille", }, tags: [ Tag.STAGE1, ], illustrator: "Kagemaru Himeno", abilities: [{ id: -1, type: AbilityType.TALENT, name: { en: "Ice Dance", fr: "Danse de Glace", }, text: { en: "As often as you like during your turn, you may attach a Water Energy card from your hand to 1 of your Benched Water Pokémon.", fr: "Autant de fois que vous le voulez pendant votre tour, vous pouvez attacher une carte Énergie Eau de votre main à l’un de vos Pokémon Eay de Banc.", } }], attacks: [{ cost: [ Type.WATER, Type.COLORLESS ], name: { en: "Aurora Beam", fr: "Onde Boréale", }, damage: 30 }], weaknesses: [{ type: Type.METAL, value: "×2" }], retreat: 2, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Sword & Shield", code: "swsh1" } } export default card