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: "ex15-40", localId: 40, // Card informations name: { en: "Swellow δ", }, hp: 70, type: [ Type.FIRE, ], dexId: 277, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex15/40/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex15/40/high.png", }, }, evolveFrom: { en: "Taillow", }, tags: [ Tag.STAGE1, ], illustrator: { id: 7, name: "Sumiyoshi Kizuki" }, abilities: [{ id: 114, type: AbilityType.POKEBODY, name: { en: "Extra Wing", }, text: { en: "The Retreat Cost for each of your Stage 2 Pokémon-ex is 0.", } }], attacks: [{ cost: [ Type.FIRE, 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.Uncommon, category: Category.POKEMON, set: { name: "Dragon Frontiers", code: "ex15" } } export default card