Assembles Mod Assets into full/collapsed mod images using warframe-items
Supported Mod Types:
- The four basic mods (common, uncommon, rare, primed)
- Rivens
You can find the documentation here
$ npm i -S mod-generatorimport { find } from 'warframe-items/utilities';
const mod = find.findItem('/Lotus/Powersuits/Dragon/DragonBreathAugmentCard');
const expanded = generate(mod, 3); // You can set rank to whatever rank you want by default is 0
const collapsed = generateCollapsed(mod, 3);
writeFileSync('directory/expanded.png', expanded);
writeFileSync('directory/collapsed.png', collpased);






