clawhouse 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +171 -0
- package/bin/clawhouse.js +29 -0
- package/lib/usage.js +568 -0
- package/package.json +30 -0
- package/public/furniture.json +128 -0
- package/public/furniture.png +0 -0
- package/public/icon-180.png +0 -0
- package/public/icon-192.png +0 -0
- package/public/icon-512.png +0 -0
- package/public/icon-maskable-512.png +0 -0
- package/public/index.html +3335 -0
- package/public/manifest.webmanifest +16 -0
- package/public/monitors.json +20 -0
- package/public/monitors.png +0 -0
- package/public/props.json +20 -0
- package/public/props.png +0 -0
- package/public/sprites.json +27 -0
- package/public/sprites.png +0 -0
- package/scripts/build-furniture.js +762 -0
- package/scripts/build-monitors.js +496 -0
- package/scripts/build-props.js +675 -0
- package/scripts/build-sprites.js +1065 -0
- package/scripts/export-profile-pics.js +180 -0
- package/scripts/generate-icons.js +124 -0
- package/server.js +944 -0
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
{
|
|
2
|
+
"desk": {
|
|
3
|
+
"x": 0,
|
|
4
|
+
"y": 0,
|
|
5
|
+
"w": 32,
|
|
6
|
+
"h": 16,
|
|
7
|
+
"tileable": true
|
|
8
|
+
},
|
|
9
|
+
"monitor": {
|
|
10
|
+
"x": 0,
|
|
11
|
+
"y": 16,
|
|
12
|
+
"w": 32,
|
|
13
|
+
"h": 24
|
|
14
|
+
},
|
|
15
|
+
"windowWide": {
|
|
16
|
+
"x": 0,
|
|
17
|
+
"y": 40,
|
|
18
|
+
"w": 32,
|
|
19
|
+
"h": 32
|
|
20
|
+
},
|
|
21
|
+
"windowTall": {
|
|
22
|
+
"x": 0,
|
|
23
|
+
"y": 72,
|
|
24
|
+
"w": 32,
|
|
25
|
+
"h": 32
|
|
26
|
+
},
|
|
27
|
+
"door": {
|
|
28
|
+
"x": 0,
|
|
29
|
+
"y": 104,
|
|
30
|
+
"w": 32,
|
|
31
|
+
"h": 32
|
|
32
|
+
},
|
|
33
|
+
"windowEagle": {
|
|
34
|
+
"x": 0,
|
|
35
|
+
"y": 136,
|
|
36
|
+
"w": 32,
|
|
37
|
+
"h": 32
|
|
38
|
+
},
|
|
39
|
+
"windowMarket": {
|
|
40
|
+
"x": 0,
|
|
41
|
+
"y": 168,
|
|
42
|
+
"w": 32,
|
|
43
|
+
"h": 32
|
|
44
|
+
},
|
|
45
|
+
"windowSage": {
|
|
46
|
+
"x": 0,
|
|
47
|
+
"y": 200,
|
|
48
|
+
"w": 32,
|
|
49
|
+
"h": 32
|
|
50
|
+
},
|
|
51
|
+
"windowSenku": {
|
|
52
|
+
"x": 0,
|
|
53
|
+
"y": 232,
|
|
54
|
+
"w": 32,
|
|
55
|
+
"h": 32
|
|
56
|
+
},
|
|
57
|
+
"windowShikamaru": {
|
|
58
|
+
"x": 0,
|
|
59
|
+
"y": 264,
|
|
60
|
+
"w": 32,
|
|
61
|
+
"h": 32
|
|
62
|
+
},
|
|
63
|
+
"windowL": {
|
|
64
|
+
"x": 0,
|
|
65
|
+
"y": 296,
|
|
66
|
+
"w": 32,
|
|
67
|
+
"h": 32
|
|
68
|
+
},
|
|
69
|
+
"chair": {
|
|
70
|
+
"x": 0,
|
|
71
|
+
"y": 328,
|
|
72
|
+
"w": 32,
|
|
73
|
+
"h": 72
|
|
74
|
+
},
|
|
75
|
+
"floorTile": {
|
|
76
|
+
"x": 0,
|
|
77
|
+
"y": 400,
|
|
78
|
+
"w": 32,
|
|
79
|
+
"h": 16,
|
|
80
|
+
"tileable": true
|
|
81
|
+
},
|
|
82
|
+
"floorTilePale": {
|
|
83
|
+
"x": 0,
|
|
84
|
+
"y": 416,
|
|
85
|
+
"w": 32,
|
|
86
|
+
"h": 16,
|
|
87
|
+
"tileable": true
|
|
88
|
+
},
|
|
89
|
+
"floorTileCherry": {
|
|
90
|
+
"x": 0,
|
|
91
|
+
"y": 432,
|
|
92
|
+
"w": 32,
|
|
93
|
+
"h": 16,
|
|
94
|
+
"tileable": true
|
|
95
|
+
},
|
|
96
|
+
"floorTileGraphite": {
|
|
97
|
+
"x": 0,
|
|
98
|
+
"y": 448,
|
|
99
|
+
"w": 32,
|
|
100
|
+
"h": 16,
|
|
101
|
+
"tileable": true
|
|
102
|
+
},
|
|
103
|
+
"deskSteel": {
|
|
104
|
+
"x": 0,
|
|
105
|
+
"y": 464,
|
|
106
|
+
"w": 32,
|
|
107
|
+
"h": 16,
|
|
108
|
+
"tileable": true
|
|
109
|
+
},
|
|
110
|
+
"deskWalnut": {
|
|
111
|
+
"x": 0,
|
|
112
|
+
"y": 480,
|
|
113
|
+
"w": 32,
|
|
114
|
+
"h": 16,
|
|
115
|
+
"tileable": true
|
|
116
|
+
},
|
|
117
|
+
"deskWhite": {
|
|
118
|
+
"x": 0,
|
|
119
|
+
"y": 496,
|
|
120
|
+
"w": 32,
|
|
121
|
+
"h": 16,
|
|
122
|
+
"tileable": true
|
|
123
|
+
},
|
|
124
|
+
"sheet": {
|
|
125
|
+
"w": 32,
|
|
126
|
+
"h": 512
|
|
127
|
+
}
|
|
128
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|