1
0
Fork 0
freesewing/packages/hi/config/index.js

32 lines
810 B
JavaScript
Raw Normal View History

2022-06-07 17:14:51 -07:00
import { version } from '../package.json'
export default {
name: 'hi',
version: version,
design: 'Wouter Van Wageningen',
code: 'Wouter Van Wageningen',
department: 'accessories',
type: 'pattern',
difficulty: 4,
optionGroups: {
style: ['size','nosePointiness','aggressive'],
},
measurements: ['neck'],
2022-06-08 07:50:05 -07:00
parts: ['body','tail','aboveMouth','belly','topFin','bottomFin','mouth','lowerTeeth','upperTeeth'],
2022-06-07 17:14:51 -07:00
dependencies: {
tail: 'body',
aboveMouth: ['body','mouth'],
topFin: 'body',
belly: ['body','aboveMouth'],
bottomFin: ['body','belly','aboveMouth'],
2022-06-08 07:50:05 -07:00
mouth: ['lowerTeeth', 'upperTeeth'],
2022-06-07 17:14:51 -07:00
},
inject: {},
hide: [],
options: {
nosePointiness: {pct: 0, min: -5,max: +10},
aggressive: {bool: false},
size: {pct: 33, min: 5, max: 500 },
},
}