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: "hgss2-3", localId: 3, // Card informations name: { en: "Manaphy", fr: "Manaphy", }, hp: 60, type: [ Type.WATER, ], dexId: 490, image: { low: { en: "https://assets.tcgdex.net/en/hgss/hgss2/3/low", fr: "https://assets.tcgdex.net/fr/hgss/hgss2/3/low", }, high: { en: "https://assets.tcgdex.net/en/hgss/hgss2/3/high", fr: "https://assets.tcgdex.net/fr/hgss/hgss2/3/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Masakazu Fukuda", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Deep Sea Swirl", fr: "Remous abyssal", }, text: { en: "Shuffle your hand into your deck. Then, draw 5 cards.", fr: "Mélangez votre main avec votre deck. Ensuite, piochez 5 cartes.", }, },{ cost: [ Type.WATER ], name: { en: "Wave Splash", fr: "Grosse vague", }, damage: 20 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "HS—Unleashed", code: "hgss2" } } export default card