import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../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.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex8/39/high.png", }, }, evolveFrom: { en: "Surskit", }, tags: [ Tag.STAGE1, ], illustrator: { id: 9, name: "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