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: "dpp-DP36", localId: "DP36", // Card informations name: { en: "Gliscor", }, hp: 90, type: [ Type.FIGHTING, ], dexId: 472, image: { low: { en: "https://assets.tcgdex.net/en/dp/dpp/DP36/low", }, high: { en: "https://assets.tcgdex.net/en/dp/dpp/DP36/high", }, }, evolveFrom: { en: "Gligar", }, tags: [ Tag.STAGE1, ], illustrator: "Kagemaru Himeno", abilities: [{ id: 848, type: AbilityType.POKEBODY, name: { en: "Bind Eye", }, text: { en: "As long as Gliscor is your Active Pokémon, your opponent can't remove any Special Conditions by evolving or devolving his or her Pokémon. (This also includes putting a Pokémon Level-Up card onto that Pokémon.)", } }], attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Cutting Turn", }, text: { en: "Flip a coin. If heads, put damage counters on the Defending Pokémon until it is 10HP away from being Knocked Out. If you do, shuffle Gliscor and all cards attached to it into your deck.", }, },{ cost: [ Type.FIGHTING ], name: { en: "Friction Heat", }, text: { en: "The Defending Pokémon is now Burned.", }, damage: 20 }], weaknesses: [{ type: Type.WATER, value: "+20" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "DP Black Star Promos", code: "dpp" } } export default card