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: "bw11-RC3", localId: "RC3", // Card informations name: { en: "Serperior", }, hp: 140, type: [ Type.GRASS, ], dexId: 497, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw11/RC3/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw11/RC3/high", }, }, evolveFrom: { en: "Servine", }, tags: [ Tag.STAGE2, ], illustrator: "Shin Nagasawa", abilities: [{ id: 20, type: AbilityType.TALENT, name: { en: "Royal Garden", }, text: { en: "If this Pokémon has any Grass Energy attached to it, this Pokémon has no Retreat Cost.", } }], attacks: [{ cost: [ Type.GRASS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Solar Beam", }, damage: 80 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Legendary Treasures", code: "bw11" } } export default card