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: "xy10-16", localId: 16, // Card informations name: { en: "Dewgong", fr: "Lamantine", }, hp: 120, type: [ Type.WATER, ], dexId: 87, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy10/16/low", fr: "https://assets.tcgdex.net/fr/xy/xy10/16/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy10/16/high", fr: "https://assets.tcgdex.net/fr/xy/xy10/16/high", }, }, evolveFrom: { en: "Seel", fr: "Otaria", }, tags: [ Tag.STAGE1, ], illustrator: "Naoyo Kimura", attacks: [{ cost: [ Type.WATER ], name: { en: "Freezing Breath", fr: "Souffle Glacial", }, text: { en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed. If tails, 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 Paralysé. Si c'est pile, le Pokémon Actif de votre adversaire est maintenant Endormi.", }, damage: 20 },{ cost: [ Type.WATER, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Aurora Beam", fr: "Onde Boréale", }, damage: 100 }], weaknesses: [{ type: Type.METAL, value: "×2" }], retreat: 3, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Fates Collide", code: "xy10" } } export default card