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: "swsh1-97", localId: 97, // Card informations name: { en: "Rhyhorn", fr: "Rhinocorne", }, hp: 90, type: [ Type.FIGHTING, ], image: { low: { en: "https://assets.tcgdex.net/en/swsh/swsh1/97/low.png", fr: "https://assets.tcgdex.net/fr/swsh/swsh1/97/low.png", } }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 54, name: "sui" }, attacks: [{ cost: [ Type.FIGHTING, Type.COLORLESS ], name: { en: "Stomp Off", fr: "Tohu-Bohu", }, text: { en: "Discard the top 2 cards of your opponent’s deck.", fr: "Défaussez les 2 cartes du dessus du deck de votre adversaire.", }, },{ cost: [ Type.FIGHTING, Type.FIGHTING, Type.COLORLESS ], name: { en: "Land Crush", fr: "Écras’Terre", }, damage: 70 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], retreat: 2, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Sword & Shield", code: "swsh1" } } export default card