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: "ex9-19", localId: 19, // Card informations name: { en: "Rhydon", }, hp: 90, type: [ Type.FIGHTING, ], dexId: 112, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex9/19/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex9/19/high.png", }, }, evolveFrom: { en: "Rhyhorn", }, tags: [ Tag.STAGE1, ], illustrator: { id: 10, name: "Kouki Saitou" }, attacks: [{ cost: [ Type.FIGHTING, Type.COLORLESS ], name: { en: "Horn Attack", }, damage: 30 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Rock Tumble", }, text: { en: "This attack's damage isn't affected by Resistance.", }, damage: 60 }], weaknesses: [{ type: Type.WATER, value: "×2" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Emerald", code: "ex9" } } export default card