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: "bw6-65", localId: 65, // Card informations name: { en: "Roggenrola", fr: "Nodulithe", }, hp: 70, type: [ Type.FIGHTING, ], dexId: 524, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw6/65/low.png", fr: "https://assets.tcgdex.net/fr/bw/bw6/65/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw6/65/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw6/65/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 25, name: "Kyoko Umemoto" }, attacks: [{ cost: [ Type.FIGHTING, Type.COLORLESS ], name: { en: "Stone Edge", fr: "Lame de Roc", }, 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: 10 },{ cost: [ Type.FIGHTING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Hammer In", fr: "Enfoncer", }, damage: 40 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], retreat: 3, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Dragons Exalted", code: "bw6" } } export default card