import { Card } from '../../../interfaces' import Set from '../Unseen Forces' const card: Card = { name: { en: "Natu", }, illustrator: "Masakazu Fukuda", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 177, ], hp: 50, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Telekinesis", }, effect: { en: "Choose 1 of your opponent's Pokémon. This attack does 10 damage to that Pokémon. This attack's damage isn't affected by Weakness or Resistance.", }, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card