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: "ecard3-29", localId: 29, // Card informations name: { en: "Rhydon", }, hp: 90, type: [ Type.FIGHTING, ], dexId: 112, image: { low: { en: "https://assets.tcgdex.net/en/ecard/ecard3/29/low.png", }, high: { en: "https://assets.tcgdex.net/en/ecard/ecard3/29/high.png", }, }, evolveFrom: { en: "Rhyhorn", }, tags: [ Tag.STAGE1, ], illustrator: { id: 9, name: "Mitsuhiro Arita" }, attacks: [{ cost: [ Type.FIGHTING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Stomp", }, text: { en: "Flip a coin. If heads, this attack does 30 damage plus 20 more damage.", }, damage: 30 },{ cost: [ Type.FIGHTING, Type.FIGHTING, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Giant Tail", }, text: { en: "Flip a coin. If tails, this attack does nothing.", }, }], weaknesses: [{ type: Type.GRASS, value: "×2" }], resistances: [{ type: Type.LIGHTNING, value: "-30" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Skyridge", code: "ecard3" } } export default card