import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../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.png", fr: "https://assets.tcgdex.net/fr/sm/sm10/95/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm10/95/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm10/95/high.png", }, }, evolveFrom: { en: "Rhydon", fr: "Rhinoféros", }, tags: [ Tag.STAGE2, ], illustrator: { id: 27, name: "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