import { Card } from '../../../interfaces' import Set from '../Deoxys' const card: Card = { name: { en: "Nincada", }, illustrator: "Yukiko Baba", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 290, ], hp: 50, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Grass", ], name: { en: "Dig Under", }, 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.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Scratch", }, damage: 20, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], } export default card