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: "sm10-116", localId: 116, // Card informations name: { en: "Krookodile", fr: "Crocorible", }, hp: 150, type: [ Type.DARKNESS, ], dexId: 553, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm10/116/low", fr: "https://assets.tcgdex.net/fr/sm/sm10/116/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm10/116/high", fr: "https://assets.tcgdex.net/fr/sm/sm10/116/high", }, }, evolveFrom: { en: "Krokorok", fr: "Escroco", }, tags: [ Tag.STAGE2, ], illustrator: "Anesaki Dynamic", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Chomp Chomp Panic", fr: "Panique Mangeouille", }, text: { en: "This attack does 50 damage for each Colorless in your opponent's Active Pokémon's Retreat Cost.", fr: "Cette attaque inflige 50 dégâts pour chaque Colorless dans le Coût de Retraite du Pokémon Actif de votre adversaire.", }, damage: 50 },{ cost: [ Type.DARKNESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Crunch", fr: "Mâchouille", }, text: { en: "Discard an Energy from your opponent's Active Pokémon.", fr: "Défaussez une Énergie du Pokémon Actif de votre adversaire.", }, damage: 100 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], retreat: 3, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Unbroken Bonds", code: "sm10" } } export default card