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: "sm75-55", localId: 55, // Card informations name: { en: "Kangaskhan", fr: "Kangourex", }, hp: 120, type: [ Type.COLORLESS, ], dexId: 115, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm75/55/low", fr: "https://assets.tcgdex.net/fr/sm/sm75/55/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm75/55/high", fr: "https://assets.tcgdex.net/fr/sm/sm75/55/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Naoyo Kimura", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Fetch", fr: "Rapporte", }, text: { en: "Draw a card.", fr: "Piochez une carte.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Headbutt", fr: "Coup d’Boule", }, damage: 30 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "One-Two Punch", fr: "En Deux Punch", }, text: { en: "Flip a coin. If heads, this attack does 30 more damage.", fr: "Lancez une pièce. Si c’est face, cette attaque inflige 30 dégâts supplémentaires.", }, damage: 60 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 2, rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Dragon Majesty", code: "sm75" } } export default card