Add second half of crab guy
This commit is contained in:
19
package.json
19
package.json
@@ -5,7 +5,7 @@
|
|||||||
"name": "maan-on-my-wrist-xl",
|
"name": "maan-on-my-wrist-xl",
|
||||||
"pebble": {
|
"pebble": {
|
||||||
"displayName": "Maan On My Wrist XL",
|
"displayName": "Maan On My Wrist XL",
|
||||||
"enableMultiJS": true,
|
"enableMultiJS": false,
|
||||||
"messageKeys": [],
|
"messageKeys": [],
|
||||||
"projectType": "native",
|
"projectType": "native",
|
||||||
"resources": {
|
"resources": {
|
||||||
@@ -335,6 +335,19 @@
|
|||||||
],
|
],
|
||||||
"type": "bitmap"
|
"type": "bitmap"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"file": "images/h026.png",
|
||||||
|
"memoryFormat": "Smallest",
|
||||||
|
"name": "H026",
|
||||||
|
"spaceOptimization": "storage",
|
||||||
|
"targetPlatforms": [
|
||||||
|
"basalt",
|
||||||
|
"chalk",
|
||||||
|
"emery",
|
||||||
|
"gabbro"
|
||||||
|
],
|
||||||
|
"type": "bitmap"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"file": "images/b001.png",
|
"file": "images/b001.png",
|
||||||
"memoryFormat": "Smallest",
|
"memoryFormat": "Smallest",
|
||||||
@@ -661,9 +674,9 @@
|
|||||||
"type": "bitmap"
|
"type": "bitmap"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"file": "images/xb001.png",
|
"file": "images/b026.png",
|
||||||
"memoryFormat": "Smallest",
|
"memoryFormat": "Smallest",
|
||||||
"name": "XB001",
|
"name": "B026",
|
||||||
"spaceOptimization": "storage",
|
"spaceOptimization": "storage",
|
||||||
"targetPlatforms": [
|
"targetPlatforms": [
|
||||||
"basalt",
|
"basalt",
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 706 B After Width: | Height: | Size: 706 B |
BIN
resources/images/h026.png
Normal file
BIN
resources/images/h026.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 448 B |
@@ -83,7 +83,7 @@ static const uint8_t s_ones_offset[] = {0, 3, 6, 9, 12};
|
|||||||
#else
|
#else
|
||||||
static const uint8_t s_ones_offset[] = {0, 4, 7, 11, 15};
|
static const uint8_t s_ones_offset[] = {0, 4, 7, 11, 15};
|
||||||
#endif
|
#endif
|
||||||
static const uint8_t s_head_count = 25;
|
static const uint8_t s_head_count = 26;
|
||||||
static const uint32_t s_random_heads[] = {
|
static const uint32_t s_random_heads[] = {
|
||||||
RESOURCE_ID_H001, RESOURCE_ID_H002, RESOURCE_ID_H003, RESOURCE_ID_H004,
|
RESOURCE_ID_H001, RESOURCE_ID_H002, RESOURCE_ID_H003, RESOURCE_ID_H004,
|
||||||
RESOURCE_ID_H005, RESOURCE_ID_H006, RESOURCE_ID_H007, RESOURCE_ID_H008,
|
RESOURCE_ID_H005, RESOURCE_ID_H006, RESOURCE_ID_H007, RESOURCE_ID_H008,
|
||||||
@@ -91,7 +91,7 @@ static const uint32_t s_random_heads[] = {
|
|||||||
RESOURCE_ID_H013, RESOURCE_ID_H014, RESOURCE_ID_H015, RESOURCE_ID_H016,
|
RESOURCE_ID_H013, RESOURCE_ID_H014, RESOURCE_ID_H015, RESOURCE_ID_H016,
|
||||||
RESOURCE_ID_H017, RESOURCE_ID_H018, RESOURCE_ID_H019, RESOURCE_ID_H020,
|
RESOURCE_ID_H017, RESOURCE_ID_H018, RESOURCE_ID_H019, RESOURCE_ID_H020,
|
||||||
RESOURCE_ID_H021, RESOURCE_ID_H022, RESOURCE_ID_H023, RESOURCE_ID_H024,
|
RESOURCE_ID_H021, RESOURCE_ID_H022, RESOURCE_ID_H023, RESOURCE_ID_H024,
|
||||||
RESOURCE_ID_H025};
|
RESOURCE_ID_H025, RESOURCE_ID_H026};
|
||||||
static const uint8_t s_butt_count = 26;
|
static const uint8_t s_butt_count = 26;
|
||||||
static const uint32_t s_random_butts[] = {
|
static const uint32_t s_random_butts[] = {
|
||||||
RESOURCE_ID_B001, RESOURCE_ID_B002, RESOURCE_ID_B003, RESOURCE_ID_B004,
|
RESOURCE_ID_B001, RESOURCE_ID_B002, RESOURCE_ID_B003, RESOURCE_ID_B004,
|
||||||
@@ -100,7 +100,7 @@ static const uint32_t s_random_butts[] = {
|
|||||||
RESOURCE_ID_B013, RESOURCE_ID_B014, RESOURCE_ID_B015, RESOURCE_ID_B016,
|
RESOURCE_ID_B013, RESOURCE_ID_B014, RESOURCE_ID_B015, RESOURCE_ID_B016,
|
||||||
RESOURCE_ID_B017, RESOURCE_ID_B018, RESOURCE_ID_B019, RESOURCE_ID_B020,
|
RESOURCE_ID_B017, RESOURCE_ID_B018, RESOURCE_ID_B019, RESOURCE_ID_B020,
|
||||||
RESOURCE_ID_B021, RESOURCE_ID_B022, RESOURCE_ID_B023, RESOURCE_ID_B024,
|
RESOURCE_ID_B021, RESOURCE_ID_B022, RESOURCE_ID_B023, RESOURCE_ID_B024,
|
||||||
RESOURCE_ID_B025, RESOURCE_ID_XB001};
|
RESOURCE_ID_B025, RESOURCE_ID_B026};
|
||||||
static const uint8_t s_color_count = 20;
|
static const uint8_t s_color_count = 20;
|
||||||
static const GColor8 s_dark_bg_colors[] = {
|
static const GColor8 s_dark_bg_colors[] = {
|
||||||
// Red
|
// Red
|
||||||
|
|||||||
Reference in New Issue
Block a user