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: "xy6-12", localId: 12, // Card informations name: { en: "Tropius", fr: "Tropius", }, hp: 110, type: [ Type.GRASS, ], dexId: 357, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy6/12/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy6/12/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy6/12/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy6/12/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 25, name: "Kyoko Umemoto" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Stomp", fr: "Écrasement", }, text: { en: "Flip a coin. If heads, this attack does 20 more damage.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts supplémentaires.", }, damage: 50 },{ cost: [ Type.GRASS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Solar Beam", fr: "Lance-Soleil", }, damage: 80 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], retreat: 2, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Roaring Skies", code: "xy6" } } export default card