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: "ex5-46", localId: 46, // Card informations name: { en: "Rhydon", }, hp: 90, type: [ Type.FIGHTING, ], dexId: 112, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex5/46/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex5/46/high.png", }, }, evolveFrom: { en: "Rhyhorn", }, tags: [ Tag.STAGE1, ], illustrator: { id: 32, name: "Atsuko Nishida" }, abilities: [{ id: 1024, type: AbilityType.POKEBODY, name: { en: "Power Diffusion", }, text: { en: "As long as Rhydon is your Active Pokémon, prevent all damage done by attacks to all of your Benched Pokémon.", } }], attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Horn Drill", }, damage: 20 },{ cost: [ Type.FIGHTING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Hyper Tail", }, text: { en: "If the Defending Pokémon has any Poké-Powers or Poké-Bodies, this attack does 50 damage plus 20 more damage.", }, damage: 50 }], weaknesses: [{ type: Type.WATER, value: "×2" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Hidden Legends", code: "ex5" } } export default card