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", }, hp: 90, type: [ Type.FIGHTING, ], image: { low: { en: "https://assets.tcgdex.net/en/swsh/swsh1/97/low.png", }, high: { en: "https://assets.tcgdex.net/en/swsh/swsh1/97/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], attacks: [{ cost: [ Type.FIGHTING, Type.COLORLESS ], name: { en: "Stomp Off", }, text: { en: "Discard the top 2 cards of your opponent’s deck.", }, },{ cost: [ Type.FIGHTING, Type.FIGHTING, Type.COLORLESS ], name: { en: "Land Crush", }, 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