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: "ex8-39", localId: 39, // Card informations name: { en: "Masquerain", }, hp: 60, type: [ Type.GRASS, ], dexId: 284, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex8/39/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex8/39/high", }, }, evolveFrom: { en: "Surskit", }, tags: [ Tag.STAGE1, ], illustrator: "Mitsuhiro Arita", abilities: [{ id: 542, type: AbilityType.POKEBODY, name: { en: "Intimidating Pattern", }, text: { en: "As long as Masquerain is your Active Pokémon, any damage done by an opponent's attack is reduced by 20 (before applying Weakness and Resistance). You can't use more than 1 Intimidating Pattern Poké-Body each turn.", } }], attacks: [{ cost: [ Type.GRASS ], name: { en: "Stun Spore", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 20 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-30" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Deoxys", code: "ex8" } } export default card