import { Card } from '../../../interfaces' import Set from '../Neo Genesis' const card: Card = { name: { en: "Natu", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 177, ], hp: 30, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Peck", }, damage: 10, }, { cost: [ "Psychic", "Psychic", ], name: { en: "Telekinesis", }, effect: { en: "Choose 1 of your opponent's Pokémon. This attack does 20 damage to that Pokémon. Don't apply Weakness and Resistance for this attack. (Any other effects that would happen after applying Weakness and Resistance still happen.)", }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card