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' import set from '../../../sets/swsh/swsh4' const card: Card = { // Card Global Informations id: "swsh4-145", localId: 145, name: { en: "Toucannon", }, illustrator: "Sekio", rarity: Rarity.RARE, category: Category.POKEMON, set, // Card Pokémon Informations evolveFrom: { en: "Trumbeak", }, hp: 150, type: [ Type.COLORLESS, ], attacks: [ { cost: [ Type.COLORLESS, Type.COLORLESS, ], name: { en: "Energy Cutoff", }, text: { en: "Discard an Energy from your opponent’s Active Pokémon.", }, damage: 60, }, { cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, ], name: { en: "Loop Cannon", }, text: { en: "Put 2 Energy attached to this Pokémon into your hand.", }, damage: 160, }, ], weaknesses: [ { type: Type.LIGHTNING, value: "×2", }, ], resistances: [ { type: Type.FIGHTING, value: "-30", }, ], retreat: 2, // Card Trainer/Energy informations } export default card