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: "sm10-45", localId: 45, // Card informations name: { en: "Dewgong", fr: "Lamantine", }, hp: 120, type: [ Type.WATER, ], dexId: 87, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm10/45/low", fr: "https://assets.tcgdex.net/fr/sm/sm10/45/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm10/45/high", fr: "https://assets.tcgdex.net/fr/sm/sm10/45/high", }, }, evolveFrom: { en: "Seel", fr: "Otaria", }, tags: [ Tag.STAGE1, ], illustrator: "Kagemaru Himeno", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Tail Whap", fr: "Queue Battoir", }, damage: 60 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Dual Blizzard", fr: "Double Blizzard", }, text: { en: "Discard 2 Energy from this Pokémon. This attack does 60 damage to 2 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Défaussez 2 Énergies de ce Pokémon. Cette attaque inflige 60 dégâts à 2 des Pokémon de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", }, }], weaknesses: [{ type: Type.METAL, value: "×2" }], retreat: 2, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Unbroken Bonds", code: "sm10" } } export default card