import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "ex11-32", localId: 32, // Card informations name: { en: "Swellow", }, hp: 70, type: [ Type.COLORLESS, ], dexId: 277, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex11/32/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex11/32/high.png", }, }, evolveFrom: { en: "Taillow", }, tags: [ Tag.STAGE1, ], illustrator: { id: 32, name: "Atsuko Nishida" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Steep Dive", }, text: { 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: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Glide", }, damage: 40 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-30" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Delta Species", code: "ex11" } } export default card