import { Card } from '../../../interfaces' import Set from '../Wizards Black Star Promos' const card: Card = { name: { en: "Dragonite", }, illustrator: "Toshinao Aoki", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 149, ], hp: 90, types: [ "Colorless", ], evolveFrom: { en: "Dragonair", }, stage: "Stage2", abilities: [ { type: "Poke-POWER", name: { en: "Special Delivery", }, effect: { en: "Once during your turn (before your attack), you may draw a card. If you do, choose a card from your hand and put it on top of your deck. This power can't be used if Dragonite is Asleep, Confused, or Paralyzed.", }, }, ], attacks: [ { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Supersonic Flight", }, effect: { en: "Flip a coin. If tails, this attack does nothing.", }, }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card