import { Card } from '../../../interfaces' import Set from '../Sandstorm' const card: Card = { name: { en: "Zangoose", }, illustrator: "Kagemaru Himeno", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 335, ], hp: 70, types: [ "Colorless", ], stage: "Basic", abilities: [ { type: "Poke-BODY", name: { en: "Poison Resistance", }, effect: { en: "Zangoose can't be Poisoned.", }, }, ], attacks: [ { cost: [ "Colorless", ], name: { en: "Target Slash", }, effect: { en: "If the Defending Pokémon is Seviper, this attack does 10 damage plus 30 more damage.", }, damage: 10, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Super Slash", }, effect: { en: "If the Defending Pokémon is an Evolved Pokémon, this attack does 30 damage plus 30 more damage.", }, damage: 30, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card