2019-02-10 14:58:26 +01:00
|
|
|
import { version } from "../package.json";
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: "tamiko",
|
|
|
|
version,
|
2019-04-29 10:20:29 +02:00
|
|
|
design: "Joost De Cock",
|
|
|
|
code: "Joost De Cock",
|
|
|
|
department: "womenswear",
|
|
|
|
type: "pattern",
|
|
|
|
difficulty: 1,
|
|
|
|
tags: ["top"],
|
|
|
|
optionGroups: {
|
|
|
|
fit: ["armholeDepthFactor", "chestEase", "shoulderSlope"],
|
|
|
|
style: ["flare", "lengthBonus", "shoulderseamLength"]
|
|
|
|
},
|
2019-02-10 14:58:26 +01:00
|
|
|
measurements: [
|
|
|
|
"shoulderToShoulder",
|
|
|
|
"chestCircumference",
|
|
|
|
"centerBackNeckToWaist",
|
|
|
|
"naturalWaistToHip"
|
|
|
|
],
|
|
|
|
parts: ["top"],
|
|
|
|
options: {
|
2019-02-13 16:40:37 +01:00
|
|
|
armholeDepthFactor: {
|
|
|
|
pct: 50,
|
|
|
|
min: 40,
|
2019-02-10 14:58:26 +01:00
|
|
|
max: 60
|
2019-02-13 15:34:05 +01:00
|
|
|
},
|
|
|
|
chestEase: {
|
|
|
|
pct: 2,
|
|
|
|
min: 1,
|
|
|
|
max: 20
|
|
|
|
},
|
2019-02-13 16:40:37 +01:00
|
|
|
flare: {
|
|
|
|
deg: 15,
|
|
|
|
min: -10,
|
|
|
|
max: 30
|
|
|
|
},
|
|
|
|
lengthBonus: {
|
|
|
|
pct: 13,
|
|
|
|
min: 0,
|
2019-02-13 15:34:05 +01:00
|
|
|
max: 60
|
|
|
|
},
|
|
|
|
shoulderseamLength: {
|
|
|
|
pct: 10,
|
|
|
|
min: 5,
|
|
|
|
max: 25
|
|
|
|
},
|
2019-02-13 16:40:37 +01:00
|
|
|
shoulderSlope: {
|
2019-02-13 15:34:05 +01:00
|
|
|
deg: 15,
|
2019-02-13 16:40:37 +01:00
|
|
|
min: 0,
|
|
|
|
max: 25
|
2019-02-10 14:58:26 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|