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: "pop9-4", localId: 4, // Card informations name: { en: "Regigigas", }, hp: 100, type: [ Type.COLORLESS, ], dexId: 486, image: { low: { en: "https://assets.tcgdex.net/en/pop/pop9/4/low", }, high: { en: "https://assets.tcgdex.net/en/pop/pop9/4/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Kent Kanetsuna", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Body Slam", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 20 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Double Stomp", }, text: { en: "Flip 2 coins. This attack does 50 damage plus 20 more damage for each heads.", }, damage: 50 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "POP Series 9", code: "pop9" } } export default card