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: "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.png", fr: "https://assets.tcgdex.net/fr/pl/pl1/98/low.png", }, high: { en: "https://assets.tcgdex.net/en/pl/pl1/98/high.png", fr: "https://assets.tcgdex.net/fr/pl/pl1/98/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 9, name: "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