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: "pop3-1", localId: 1, // Card informations name: { en: "Blastoise", }, hp: 120, type: [ Type.WATER, ], dexId: 9, image: { low: { en: "https://assets.tcgdex.net/en/pop/pop3/1/low", }, high: { en: "https://assets.tcgdex.net/en/pop/pop3/1/high", }, }, evolveFrom: { en: "Unown", }, tags: [ Tag.STAGE2, ], illustrator: "Mitsuhiro Arita", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Smash Turn", }, text: { en: "After your attack, you may switch Blastoise with 1 of your Benched Pokémon.", }, damage: 30 },{ cost: [ Type.WATER, Type.WATER, Type.COLORLESS, Type.COLORLESS ], name: { en: "Rocket Tackle", }, text: { en: "Blastoise does 10 damage to itself. Flip a coin. If heads, prevent all damage done to Blastoise by attacks during your opponent's next turn.", }, damage: 60 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "POP Series 3", code: "pop3" } } export default card