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: "bw8-2", localId: 2, // Card informations name: { en: "Grotle", fr: "Boskara", }, hp: 100, type: [ Type.GRASS, ], dexId: 388, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw8/2/low.png", fr: "https://assets.tcgdex.net/fr/bw/bw8/2/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw8/2/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw8/2/high.png", }, }, evolveFrom: { en: "Turtwig", fr: "Tortipouss", }, tags: [ Tag.STAGE1, ], illustrator: { id: 7, name: "Sumiyoshi Kizuki" }, attacks: [{ cost: [ Type.GRASS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Knock Away", fr: "Asticotage", }, 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: 40 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], resistances: [{ type: Type.WATER, value: "-20" }], retreat: 3, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Plasma Storm", code: "bw8" } } export default card