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: "pl2-32", localId: 32, // Card informations name: { en: "Rhyperior 4", fr: "Rhinastoc Niv. 55", }, hp: 100, type: [ Type.FIGHTING, ], dexId: 464, image: { low: { en: "https://assets.tcgdex.net/en/pl/pl2/32/low", fr: "https://assets.tcgdex.net/fr/pl/pl2/32/low", }, high: { en: "https://assets.tcgdex.net/en/pl/pl2/32/high", fr: "https://assets.tcgdex.net/fr/pl/pl2/32/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Kagemaru Himeno", attacks: [{ cost: [ Type.FIGHTING, Type.COLORLESS ], name: { en: "Double Lariat", fr: "Double lasso", }, text: { en: "Flip 2 coins. This attack does 30 damage times the number of heads.", fr: "Lancez 2 pièces. Cette attaque inflige 30 dégâts multipliés par le nombre de faces.", }, damage: 30 },{ cost: [ Type.FIGHTING, Type.FIGHTING, Type.COLORLESS, 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: "×2" }], resistances: [{ type: Type.LIGHTNING, value: "-20" }], retreat: 3, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Rising Rivals", code: "pl2" } } export default card