2019-09-06 15:53:11 +02:00
|
|
|
import { version } from '../package.json'
|
2019-07-07 13:33:53 +02:00
|
|
|
|
|
|
|
export default {
|
2019-09-06 15:53:11 +02:00
|
|
|
name: 'benjamin',
|
2019-07-07 13:33:53 +02:00
|
|
|
version: version,
|
2019-09-06 15:53:11 +02:00
|
|
|
design: 'Wouter Van Wageningen',
|
|
|
|
code: 'Wouter Van Wageningen',
|
|
|
|
department: 'accessories',
|
|
|
|
type: 'pattern',
|
2019-07-07 13:33:53 +02:00
|
|
|
difficulty: 3,
|
2019-09-06 15:53:11 +02:00
|
|
|
tags: ['top', 'basics'],
|
2019-07-07 13:33:53 +02:00
|
|
|
optionGroups: {
|
2019-10-01 12:43:10 -07:00
|
|
|
fit: ['collarEase', 'adjustmentRibbon'],
|
2021-04-24 10:16:31 +02:00
|
|
|
style: ['tipWidth', 'knotWidth', 'bowLength', 'bowStyle', 'endStyle'],
|
2019-07-07 13:33:53 +02:00
|
|
|
},
|
2020-06-30 15:16:30 +02:00
|
|
|
measurements: ['neck'],
|
2019-07-07 13:33:53 +02:00
|
|
|
dependencies: {},
|
2019-07-08 15:54:19 +02:00
|
|
|
inject: {
|
2019-09-06 15:53:11 +02:00
|
|
|
bow1: 'base',
|
|
|
|
bow2: 'base',
|
2021-04-24 10:16:31 +02:00
|
|
|
bow3: 'base',
|
2019-07-08 15:54:19 +02:00
|
|
|
},
|
2019-09-06 15:53:11 +02:00
|
|
|
hide: ['base'],
|
|
|
|
parts: ['ribbon'],
|
2019-07-07 13:33:53 +02:00
|
|
|
options: {
|
2019-10-01 12:43:10 -07:00
|
|
|
transitionLength: 2, //Twice the knot
|
|
|
|
bandLength: 0.17,
|
2019-07-08 11:54:47 +02:00
|
|
|
ribbonWidth: {
|
|
|
|
pct: 6,
|
2019-10-01 12:43:10 -07:00
|
|
|
min: 5,
|
2021-04-24 10:16:31 +02:00
|
|
|
max: 8,
|
2019-07-08 11:54:47 +02:00
|
|
|
},
|
2019-07-07 13:33:53 +02:00
|
|
|
tipWidth: {
|
2019-07-08 11:54:47 +02:00
|
|
|
pct: 15,
|
2019-10-01 12:43:10 -07:00
|
|
|
min: 0,
|
2021-04-24 10:16:31 +02:00
|
|
|
max: 20,
|
2019-07-07 13:33:53 +02:00
|
|
|
},
|
|
|
|
knotWidth: {
|
2019-07-08 11:54:47 +02:00
|
|
|
pct: 7,
|
2019-07-08 15:54:19 +02:00
|
|
|
min: 5,
|
2021-04-24 10:16:31 +02:00
|
|
|
max: 10,
|
2019-07-07 13:33:53 +02:00
|
|
|
},
|
|
|
|
bowLength: {
|
2019-07-08 11:54:47 +02:00
|
|
|
pct: 28,
|
|
|
|
min: 23,
|
2021-04-24 10:16:31 +02:00
|
|
|
max: 33,
|
2019-07-07 13:33:53 +02:00
|
|
|
},
|
|
|
|
collarEase: {
|
2019-07-08 11:54:47 +02:00
|
|
|
pct: 3,
|
2019-07-07 13:33:53 +02:00
|
|
|
min: 0,
|
2021-04-24 10:16:31 +02:00
|
|
|
max: 6,
|
2019-07-07 13:33:53 +02:00
|
|
|
},
|
|
|
|
bowStyle: {
|
2019-09-06 15:53:11 +02:00
|
|
|
dflt: 'butterfly',
|
2021-04-24 10:16:31 +02:00
|
|
|
list: ['diamond', 'butterfly', 'square', 'widesquare'],
|
2019-07-07 13:33:53 +02:00
|
|
|
},
|
|
|
|
endStyle: {
|
2019-09-06 15:53:11 +02:00
|
|
|
dflt: 'straight',
|
2021-04-24 10:16:31 +02:00
|
|
|
list: ['straight', 'pointed', 'rounded'],
|
2019-07-07 13:33:53 +02:00
|
|
|
},
|
2019-10-01 12:43:10 -07:00
|
|
|
adjustmentRibbon: {
|
2021-04-24 10:16:31 +02:00
|
|
|
bool: false,
|
2019-10-01 12:43:10 -07:00
|
|
|
},
|
2021-04-24 10:16:31 +02:00
|
|
|
adjustmentRibbonWidth: 20,
|
|
|
|
},
|
2019-09-06 15:53:11 +02:00
|
|
|
}
|