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: "pl1-98", localId: 98, // Card informations name: { en: "Tauros", fr: "Tauros", }, hp: 70, type: [ Type.COLORLESS, ], dexId: 128, image: { low: { en: "https://assets.tcgdex.net/en/pl/pl1/98/low", fr: "https://assets.tcgdex.net/fr/pl/pl1/98/low", }, high: { en: "https://assets.tcgdex.net/en/pl/pl1/98/high", fr: "https://assets.tcgdex.net/fr/pl/pl1/98/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Mitsuhiro Arita", attacks: [{ name: { en: "Show Off", fr: "Crâneur", }, text: { en: "Search your deck for a basic Energy card, show it to your opponent, and put it into your hand. Shuffle your deck afterward.", fr: "Choisissez dans votre deck une carte Énergie de base. Montrez-la à votre adversaire et placez-la dans votre main. Ensuite, mélangez votre deck.", }, },{ cost: [ Type.COLORLESS ], name: { en: "Take Down", fr: "Bélier", }, text: { en: "Flip a coin. If tails, Tauros does 10 damage to itself.", fr: "Lancez une pièce. Si c'est pile, Tauros s'inflige 10 dégâts.", }, damage: 20 }], weaknesses: [{ type: Type.FIGHTING, value: "+10" }], retreat: 1, rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Platinum", code: "pl1" } } export default card