import { Card } from '../../../interfaces' import Set from '../Neo Discovery' const card: Card = { name: { en: "Natu", }, illustrator: "Sumiyoshi Kizuki", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 177, ], hp: 40, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Psychic", ], name: { en: "Confuse Ray", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Confused.", }, damage: 10, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card