import { Card } from '../../../interfaces' import Set from '../Dragon' const card: Card = { name: { en: "Ninjask", }, illustrator: "Toshinao Aoki", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 291, ], hp: 70, types: [ "Grass", ], evolveFrom: { en: "Nincada", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Supersonic", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Confused.", }, damage: 10, }, { cost: [ "Grass", "Colorless", ], name: { en: "Sonic Wing", }, effect: { en: "This attack's damage is not affected by Resistance.", }, damage: 30, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], } export default card