import { Card } from '../../../interfaces' import Set from '../Team Rocket Returns' const card: Card = { name: { en: "Dark Dragonair", }, illustrator: "Tomoaki Imakuni", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 148, ], hp: 80, types: [ "Darkness", "Darkness", ], evolveFrom: { en: "Dratini", }, stage: "Stage1", attacks: [ { cost: [ "Water", "Colorless", ], name: { en: "Double Tackle", }, effect: { en: "Does 20 damage to each Defending Pokémon.", }, }, { cost: [ "Lightning", "Colorless", "Colorless", ], name: { en: "Crushing Blow", }, effect: { en: "Flip a coin. If heads, discard an Energy attached to the Defending Pokémon.", }, damage: 40, }, ], weaknesses: [ { type: "Colorless", value: "×2" }, { type: "Colorless", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, { type: "Fighting", value: "-30" }, ], } export default card