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: "sm9-129", localId: 129, // Card informations name: { en: "Tauros", fr: "Tauros", }, hp: 130, type: [ Type.COLORLESS, ], dexId: 128, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm9/129/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm9/129/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm9/129/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm9/129/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 36, name: "kodama" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Raging Herd", fr: "Troupeau Enragé", }, text: { en: "This attack does 10 more damage for each damage counter on all of your Tauros and Tauros-GX.", fr: "Cette attaque inflige 10 dégâts supplémentaires pour chaque marqueur de dégâts placé sur vos Tauros et Tauros-GX.", }, damage: 10 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 2, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Team Up", code: "sm9" } } export default card