import { Card } from '../../../interfaces' import Set from '../Champion\'s Path' const card: Card = { name: { en: "Drednaw V", }, illustrator: "aky CG Works", rarity: "Ultra Rare", category: "Pokemon", set: Set, hp: 210, types: [ "Water", ], abilities: [ { type: "Ability", name: { en: "Solid Shell", }, effect: { en: "This Pokémon takes 30 less damage from attacks (after applying Weakness and Resistance).", }, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], retreat: 4, } export default card