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: "pop1-7", localId: 7, // Card informations name: { en: "Masquerain", }, hp: 70, type: [ Type.GRASS, ], dexId: 284, image: { low: { en: "https://assets.tcgdex.net/en/pop/pop1/7/low", }, high: { en: "https://assets.tcgdex.net/en/pop/pop1/7/high", }, }, evolveFrom: { en: "Surskit", }, tags: [ Tag.STAGE1, ], illustrator: "Kagemaru Himeno", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Quick Attack", }, text: { en: "Flip a coin. If heads, this attack does 10 damage plus 20 more damage.", }, damage: 10 },{ cost: [ Type.GRASS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Gust", }, damage: 50 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-30" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "POP Series 1", code: "pop1" } } export default card