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: "bw9-108", localId: 108, // Card informations name: { en: "Rock Guard", fr: "Garde Roche", }, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw9/108/low", fr: "https://assets.tcgdex.net/fr/bw/bw9/108/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw9/108/high", fr: "https://assets.tcgdex.net/fr/bw/bw9/108/high", }, }, evolveFrom: {}, tags: [ Tag.TOOL, ], illustrator: "5ban Graphics", attacks: [{ name: {}, text: { fr: "Si le Pokémon auquel cette carte est attachée est votre Pokémon Actif et qu'il subit les dégâts d'une attaque de votre adversaire (même si le Pokémon est mis K.O.), placez 6 marqueurs de dégâts sur le Pokémon Attaquant.", }, }], rarity: Rarity.RARE, category: Category.TRAINER, set: { name: "Plasma Freeze", code: "bw9" } } export default card