import { Card } from '../../../interfaces' import Set from '../Plasma Freeze' const card: Card = { name: { en: "Yamask", fr: "Tutafeh", }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 562, ], hp: 60, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Will-O-Wisp", fr: "Feu Follet", }, damage: 10, }, { cost: [ "Psychic", "Colorless", "Colorless", ], name: { en: "Ram", fr: "Collision", }, damage: 30, }, ], weaknesses: [ { type: "Darkness", value: "×2" }, ], retreat: 1, } export default card