import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "pop1-15", localId: 15, // Card informations name: { en: "Swellow", }, hp: 70, type: [ Type.COLORLESS, ], dexId: 277, image: { low: { en: "https://assets.tcgdex.net/en/pop/pop1/15/low", }, high: { en: "https://assets.tcgdex.net/en/pop/pop1/15/high", }, }, evolveFrom: { en: "Tailow", }, tags: [ Tag.STAGE1, ], illustrator: "Kagemaru Himeno", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Focus Energy", }, text: { en: "During your next turn, base damage of Swellow's Agility is 70 instead of 30.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Agility", }, text: { en: "Flip a coin. If heads, prevent all effects of an attack, including damage, done to Swellow during your opponent's next turn.", }, damage: 30 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-30" }], rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "POP Series 1", code: "pop1" } } export default card