import { Card } from '../../../interfaces' import Set from '../Darkness Ablaze' const card: Card = { name: { en: "Dartrix", fr: "Efflèche" }, illustrator: "Mitsuhiro Arita", rarity: "Uncommon", category: "Pokemon", set: Set, hp: 80, types: [ "Grass", ], evolveFrom: { en: "Rowlet", fr: "Brindibou" }, attacks: [ { cost: [ "Grass", ], name: { en: "Razor Leaf", fr: "Tranch’Herbe" }, damage: 40, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], retreat: 1, } export default card