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: {
|
2022-06-08 13:36:23 -07:00
|
|
|
style: ['size','hungry','nosePointiness','aggressive'],
|
2022-06-07 17:14:51 -07:00
|
|
|
},
|
2022-06-09 16:04:18 -07:00
|
|
|
measurements: [],
|
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: {
|
2022-06-08 13:36:23 -07:00
|
|
|
size: {pct: 100, min: 5, max: 500 },
|
|
|
|
hungry: {pct: 50, min: 0, max: 100 },
|
2022-06-07 17:14:51 -07:00
|
|
|
nosePointiness: {pct: 0, min: -5,max: +10},
|
|
|
|
aggressive: {bool: false},
|
|
|
|
},
|
|
|
|
}
|