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: "pop7-13", localId: 13, // Card informations name: { en: "Corsola", }, hp: 70, type: [ Type.WATER, ], dexId: 222, image: { low: { en: "https://assets.tcgdex.net/en/pop/pop7/13/low", }, high: { en: "https://assets.tcgdex.net/en/pop/pop7/13/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Midori Harada", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Rally", }, text: { en: "Search your deck for up to 3 different types of Basic Pok��mon and put them onto your Bench. Shuffle your deck afterward.", }, },{ cost: [ Type.WATER, Type.COLORLESS ], name: { en: "Hook", }, damage: 30 }], weaknesses: [{ type: Type.GRASS, value: "+20" }], rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "POP Series 7", code: "pop7" } } export default card