import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "pl3-80", localId: 80, // Card informations name: { en: "Rhydon", fr: "Rhinoféros", }, hp: 90, type: [ Type.FIGHTING, ], dexId: 112, image: { low: { en: "https://assets.tcgdex.net/en/pl/pl3/80/low", fr: "https://assets.tcgdex.net/fr/pl/pl3/80/low", }, high: { en: "https://assets.tcgdex.net/en/pl/pl3/80/high", fr: "https://assets.tcgdex.net/fr/pl/pl3/80/high", }, }, evolveFrom: { en: "Rhyhorn", fr: "Rhinocorne", }, tags: [ Tag.STAGE1, ], illustrator: "Masakazu Fukuda", attacks: [{ cost: [ Type.FIGHTING ], name: { en: "Fury Attack", fr: "Furie", }, text: { en: "Flip 3 coins. This attack does 20 damage times the number of heads.", fr: "Lancez 3 pièces. Cette attaque inflige 20 dégâts multipliés par le nombre de faces.", }, damage: 20 },{ cost: [ Type.FIGHTING, Type.FIGHTING, Type.COLORLESS ], name: { en: "Rock Tumble", fr: "Roule-pierre", }, text: { en: "This attack's damage isn't affected by Resistance.", fr: "Les dégâts de cette attaque ne sont pas affectés par la Résistance.", }, damage: 60 }], weaknesses: [{ type: Type.WATER, value: "+20" }], resistances: [{ type: Type.LIGHTNING, value: "-20" }], retreat: 3, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Supreme Victors", code: "pl3" } } export default card