This repository has been archived by the owner on Oct 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcarryable.json
91 lines (87 loc) · 2.65 KB
/
carryable.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[
{ file: "game:blocktypes/wood/chest", op: "add", path: "/behaviors/-", value: {
name: "Carryable",
properties: {
translation: [ 0.0625, 0, 0 ],
rotation: [ 0, 180, 0 ],
slots: {
"Hands": { },
"Back": { },
}
}
} },
{ file: "game:blocktypes/wood/chest-labeled", op: "add", path: "/behaviors/-", value: {
name: "Carryable",
properties: {
translation: [ 0.0625, 0, 0 ],
rotation: [ 0, 180, 0 ],
slots: {
"Hands": { },
"Back": { },
}
}
} },
{ file: "game:blocktypes/stationarybasket", op: "add", path: "/behaviors/-", value: {
name: "Carryable",
properties: {
interactDelay: 0.4,
slots: {
"Hands": {
animation: "carrycapacity:holdlight",
walkSpeedModifier: -0.15,
},
"Back": {
walkSpeedModifier: 0.0,
translation: [ 0.09375, 0, 0.03125 ],
rotation: [ 0, 0, -90 ],
scale: 0.6,
},
}
}
} },
{ file: "game:blocktypes/wood/barrel", op: "add", path: "/behaviors/-", value: {
name: "Carryable", properties: {
translation: [ -0.0625, 0, 0 ],
slots: { "Hands": { }, "Back": { } },
}
} },
{ file: "game:blocktypes/wood/woodtyped/crate", op: "add", path: "/behaviors/-", value: {
name: "Carryable", properties: {
translation: [ -0.0625, 0, 0 ],
slots: { "Hands": { } },
}
} },
{ file: "game:blocktypes/clay/lootvessel", op: "add", path: "/behaviors/-", value: {
name: "Carryable", properties: {
translation: [ -0.125, 0, 0 ],
slots: { "Hands": { }, "Back": { } },
}
} },
{ file: "game:blocktypes/clay/storagevessel", op: "add", path: "/behaviorsByType/*/-", value: {
name: "Carryable", properties: {
translation: [ -0.125, 0, 0 ],
slots: { "Hands": { }, "Back": { } },
}
} },
{ file: "game:blocktypes/metal/anvil", op: "add", path: "/behaviors/-", value: {
name: "Carryable",
properties: {
interactDelay: 1.5,
translation: [ 0.05, -0.1, -0.25 ],
rotation: [ 0, 90, 10 ],
scale: 0.8,
slots: { "Hands": { walkSpeedModifier: -0.5 } }
}
} },
{ file: "game:blocktypes/stone/quern", op: "add", path: "/behaviors/-", value: {
name: "Carryable",
properties: {
interactDelay: 1.0,
slots: { "Hands": { walkSpeedModifier: -0.4 } }
}
} },
{ file: "game:blocktypes/clay/planter", op: "add", path: "/behaviorsByType/*/-",
value: { name: "Carryable", properties: { scale: 0.6 } } },
{ file: "game:blocktypes/wood/crate-legacy", op: "add", path: "/behaviors",
value: [ { name: "Carryable" } ] },
]