import { Card } from '../../../interfaces' import Set from '../Fossil' const card: Card = { name: { en: "Dragonite", }, illustrator: "Kagemaru Himeno", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 149, ], hp: 100, types: [ "Colorless", ], evolveFrom: { en: "Dragonair", }, stage: "Stage2", abilities: [ { type: "Poke-POWER", name: { en: "Step In", }, effect: { en: "Once during your turn (before you attack) if Dragonite is on your Bench, you may switch it with your Active Pokémon.", }, }, ], attacks: [ { cost: [ "Colorless", "Colorless", "Colorless", "Colorless", ], name: { en: "Slam", }, effect: { en: "Flip 2 coins. This attack does 40 damage times the number of heads.", }, damage: 40, }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card