import { Card } from '../../../interfaces' import Set from '../Legendary Treasures' const card: Card = { name: { en: "Druddigon", }, illustrator: "match", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 621, ], hp: 100, types: [ "Colorless", ], stage: "Basic", abilities: [ { type: "Ability", name: { en: "Rough Skin", }, effect: { en: "If this Pokémon is your Active Pokémon and is damaged by an opponent’s attack (even if this Pokémon is Knocked Out), put 2 damage counters on the Attacking Pokémon.", }, }, ], attacks: [ { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Clutch", }, effect: { en: "The Defending Pokémon can't retreat during your opponent's next turn.", }, damage: 60, }, ], retreat: 2 } export default card