31 lines
743 B
JavaScript
31 lines
743 B
JavaScript
![]() |
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'],
|
||
|
parts: ['body','tail','aboveMouth','belly','topFin','bottomFin','mouth'],
|
||
|
dependencies: {
|
||
|
tail: 'body',
|
||
|
aboveMouth: ['body','mouth'],
|
||
|
topFin: 'body',
|
||
|
belly: ['body','aboveMouth'],
|
||
|
bottomFin: ['body','belly','aboveMouth'],
|
||
|
},
|
||
|
inject: {},
|
||
|
hide: [],
|
||
|
options: {
|
||
|
nosePointiness: {pct: 0, min: -5,max: +10},
|
||
|
aggressive: {bool: false},
|
||
|
size: {pct: 33, min: 5, max: 500 },
|
||
|
},
|
||
|
}
|