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: "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.png", }, high: { en: "https://assets.tcgdex.net/en/pop/pop1/7/high.png", }, }, evolveFrom: { en: "Surskit", }, tags: [ Tag.STAGE1, ], illustrator: { id: 0, name: "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