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-95", localId: 95, // Card informations name: { en: "Rhyperior", fr: "Rhinastoc", }, hp: 170, type: [ Type.FIGHTING, ], dexId: 464, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm10/95/low", fr: "https://assets.tcgdex.net/fr/sm/sm10/95/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm10/95/high", fr: "https://assets.tcgdex.net/fr/sm/sm10/95/high", }, }, evolveFrom: { en: "Rhydon", fr: "Rhinoféros", }, tags: [ Tag.STAGE2, ], illustrator: "kawayoo", attacks: [{ cost: [ Type.FIGHTING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Hefty Cannon", fr: "Gros Canon", }, text: { en: "If the Defending Pokémon is a Basic Pokémon, it can't attack during your opponent's next turn.", fr: "Si le Pokémon Défenseur est un Pokémon de base, il ne peut pas attaquer pendant le prochain tour de votre adversaire.", }, damage: 90 },{ cost: [ Type.FIGHTING, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Break Ground", fr: "Destructerre", }, text: { en: "This attack does 20 damage to each of your Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Cette attaque inflige 20 dégâts à chacun de vos Pokémon de Banc. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", }, damage: 160 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], retreat: 4, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Unbroken Bonds", code: "sm10" } } export default card