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: "swsh1-98", localId: 98, // Card informations name: { en: "Rhydon", fr: "Rhinoféros", }, hp: 120, type: [ Type.FIGHTING, ], image: { low: { en: "https://assets.tcgdex.net/en/swsh/swsh1/98/low", fr: "https://assets.tcgdex.net/fr/swsh/swsh1/98/low", } }, evolveFrom: { en: "Rhyhorn", fr: "Rhinocorne", }, tags: [ Tag.STAGE1, ], illustrator: "KEIICHIRO ITO", attacks: [{ cost: [ Type.FIGHTING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Horn Drill", fr: "Empal’Korne", }, damage: 50 },{ cost: [ Type.FIGHTING, Type.FIGHTING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Rock Slide", fr: "Éboulement", }, text: { en: "This attack also does 10 damage to 2 of your opponent’s Benched Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)", fr: "Cette attaque inflige aussi 10 dégâts à 2 des Pokémon de Banc de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", }, damage: 100 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], retreat: 4, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Sword & Shield", code: "swsh1" } } export default card