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' import set from '../../../sets/swsh/swsh3' const card: Card = { // Card Global Informations id: "swsh3-133", localId: 133, name: { en: "Kangaskhan", }, illustrator: "kawayoo", rarity: Rarity.RARE, category: Category.POKEMON, set, // Card Pokémon Informations hp: 130, type: [ Type.COLORLESS, ], attacks: [ { cost: [ Type.COLORLESS, Type.COLORLESS, ], name: { en: "Rally Back", }, text: { en: "If any of your Pokémon were Knocked Out by damage from an attack from your opponent’s Pokémon during their last turn, this attack does 90 more damage.", }, damage: "30+", }, { cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, ], name: { en: "Hammer In", }, damage: 100, }, ], weaknesses: [ { type: Type.FIGHTING, value: "×2", }, ], retreat: 2, // Card Trainer/Energy informations } export default card