import { Card } from '../../../interfaces' import Set from '../Delta Species' const card: Card = { name: { en: "Swellow", }, illustrator: "Atsuko Nishida", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 277, ], hp: 70, types: [ "Colorless", ], evolveFrom: { en: "Taillow", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Steep Dive", }, effect: { en: "Flip a coin. If heads, prevent all effects of an attack, including damage, done to Swellow during your opponent's next turn. If tails, during your next turn, Swellow's Glide attack's base damage is 100.", }, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Glide", }, damage: 40, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card