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: "xyp-XY143", localId: "XY143", // Card informations name: { en: "Magikarp", fr: "Magicarpe", }, hp: 30, type: [ Type.WATER, ], dexId: 129, image: { low: { en: "https://assets.tcgdex.net/en/xy/xyp/XY143/low", fr: "https://assets.tcgdex.net/fr/xy/xyp/XY143/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xyp/XY143/high", fr: "https://assets.tcgdex.net/fr/xy/xyp/XY143/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Saya Tsuruta", attacks: [{ cost: [ Type.WATER ], name: { en: "Epic Splash", fr: "Trempette Épique", }, text: { en: "Flip 2 coins. If either of them is tails, this attack does nothing.", fr: "Lancez 2 pièces. Si vous obtenez au moins un côté pile, cette attaque ne fait rien.", }, damage: 30 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], retreat: 1, rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "XY Black Star Promos", code: "xyp" } } export default card