@trawlme/cli 3.4.0 → 3.4.1
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/dist/lib/pinch.js +17 -15
- package/package.json +1 -1
package/dist/lib/pinch.js
CHANGED
|
@@ -60,10 +60,12 @@ export const PINCH_STATES = [
|
|
|
60
60
|
* row 1 head top (+ claw at col 0/8 when RAISED)
|
|
61
61
|
* row 2 eyes (+ claw at col 0/8 when RAISED)
|
|
62
62
|
* row 3 head mid
|
|
63
|
-
* row 4 mouth + blush (+ claw at col 0/8 when RESTING)
|
|
64
|
-
* row 5 head bottom
|
|
63
|
+
* row 4 mouth corners + blush (+ claw at col 0/8 when RESTING)
|
|
64
|
+
* row 5 head bottom + mouth center (+ claw at col 0/8 when RESTING)
|
|
65
65
|
* Claws are the 1-wide 2-tall O blocks at cols 0/8. Eyes: left = W+K at
|
|
66
|
-
* cols 2-3, right = K+W at cols 5-6 (pupils inward).
|
|
66
|
+
* cols 2-3, right = K+W at cols 5-6 (pupils inward). The smile is a U (like
|
|
67
|
+
* the source 3D / AVGRID): the mouth CORNERS sit on row 4 and the CENTER
|
|
68
|
+
* dips to row 5 — never a flat single-row bar (#137).
|
|
67
69
|
*/
|
|
68
70
|
const GRIDS = {
|
|
69
71
|
// calm resting face, both claws down, normal smile.
|
|
@@ -72,8 +74,8 @@ const GRIDS = {
|
|
|
72
74
|
'.BBBBBBB.',
|
|
73
75
|
'.BWKBKWB.',
|
|
74
76
|
'.BBBBBBB.',
|
|
75
|
-
'
|
|
76
|
-
'
|
|
77
|
+
'OBPKBKPBO',
|
|
78
|
+
'OBBBKBBBO',
|
|
77
79
|
],
|
|
78
80
|
// idle pose + the cyan thinking-blip on the antenna tips (frame-toggled in
|
|
79
81
|
// `gridForState`) — the only animated static state.
|
|
@@ -82,8 +84,8 @@ const GRIDS = {
|
|
|
82
84
|
'.BBBBBBB.',
|
|
83
85
|
'.BWKBKWB.',
|
|
84
86
|
'.BBBBBBB.',
|
|
85
|
-
'
|
|
86
|
-
'
|
|
87
|
+
'OBPKBKPBO',
|
|
88
|
+
'OBBBKBBBO',
|
|
87
89
|
],
|
|
88
90
|
// both claws raised (rows 1-2) + a big open mouth.
|
|
89
91
|
celebrating: [
|
|
@@ -91,8 +93,8 @@ const GRIDS = {
|
|
|
91
93
|
'OBBBBBBBO',
|
|
92
94
|
'OBWKBKWBO',
|
|
93
95
|
'.BBBBBBB.',
|
|
94
|
-
'.
|
|
95
|
-
'.
|
|
96
|
+
'.BKBBBKB.',
|
|
97
|
+
'.BBKKKBB.',
|
|
96
98
|
],
|
|
97
99
|
// right claw raised (rows 1-2) + a thumb pixel poking up above it (row 0,
|
|
98
100
|
// col 8); left claw resting.
|
|
@@ -101,8 +103,8 @@ const GRIDS = {
|
|
|
101
103
|
'.BBBBBBBO',
|
|
102
104
|
'.BWKBKWBO',
|
|
103
105
|
'.BBBBBBB.',
|
|
104
|
-
'
|
|
105
|
-
'
|
|
106
|
+
'OBPKBKPB.',
|
|
107
|
+
'OBBBKBBB.',
|
|
106
108
|
],
|
|
107
109
|
// antennae drooped + spread, flat mouth (no K), claws resting. A '?' is
|
|
108
110
|
// appended beside the eye line by `renderPinch`.
|
|
@@ -120,8 +122,8 @@ const GRIDS = {
|
|
|
120
122
|
'.BBBBBBBO',
|
|
121
123
|
'.BWKBKWBO',
|
|
122
124
|
'.BBBBBBB.',
|
|
123
|
-
'
|
|
124
|
-
'
|
|
125
|
+
'OBPKBKPB.',
|
|
126
|
+
'OBBBKBBB.',
|
|
125
127
|
],
|
|
126
128
|
// pink heart-eyes (P replaces the W+K pupils), claws resting, normal smile.
|
|
127
129
|
heart: [
|
|
@@ -129,8 +131,8 @@ const GRIDS = {
|
|
|
129
131
|
'.BBBBBBB.',
|
|
130
132
|
'.BPPBPPB.',
|
|
131
133
|
'.BBBBBBB.',
|
|
132
|
-
'
|
|
133
|
-
'
|
|
134
|
+
'OBPKBKPBO',
|
|
135
|
+
'OBBBKBBBO',
|
|
134
136
|
],
|
|
135
137
|
// closed eyes (flat K line, no white), antennae drooped + spread, flat
|
|
136
138
|
// mouth, claws resting — like confused but eyes shut and no '?'.
|