@wfcd/mod-generator
v1.0.2
Published
Assembles [Mod Assets](https://wiki.warframe.com/w/Mod/Assets) into full/collapsed mod images using warframe-items
Readme
mod-generator
Assembles Mod Assets into full/collapsed mod images using warframe-items
Supported Mod Types:
- The four basic mods (common, uncommon, rare, primed)
- Rivens
Collapsed

Expanded

Documentation
You can find the documentation here
Installation
$ npm i -S mod-generatorExample usage
import { 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);