import { Card } from '../../../interfaces' import Set from '../Neo Discovery' const card: Card = { name: { en: "Sentret", }, illustrator: "Sumiyoshi Kizuki", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 161, ], hp: 50, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Scout", }, effect: { en: "Look at your opponent's hand.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Tackle", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-30" }, ], } export default card