@almadar/std 16.153.0 → 16.155.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/behaviors/lolo/ui/game/molecules/std-crew-board-2d.lolo +4 -4
- package/behaviors/lolo/ui/game/molecules/std-dungeon-board-2d.lolo +6 -6
- package/behaviors/lolo/ui/game/molecules/std-tactics-board-2d.lolo +74 -28
- package/behaviors/lolo/ui/game/molecules/std-worldmap-board-2d.lolo +2 -2
- package/behaviors/lolo/ui/game/molecules/ui-canvas.lolo +5 -0
- package/behaviors/lolo/ui/game/organisms/ui-arena-board.lolo +2 -2
- package/behaviors/lolo/ui/game/organisms/ui-battle-board.lolo +159 -8
- package/behaviors/lolo/ui/game/organisms/ui-builder-board.lolo +5 -20
- package/behaviors/lolo/ui/game/organisms/ui-card-battler-board.lolo +2 -0
- package/behaviors/lolo/ui/game/organisms/ui-castle-board.lolo +3 -3
- package/behaviors/lolo/ui/game/organisms/ui-city-builder-board.lolo +9 -7
- package/behaviors/lolo/ui/game/organisms/ui-grid-tactics-demo-board.lolo +2 -2
- package/behaviors/lolo/ui/game/organisms/ui-hex-strategy-board.lolo +158 -10
- package/behaviors/lolo/ui/game/organisms/ui-holiday-runner-board.lolo +1 -1
- package/behaviors/lolo/ui/game/organisms/ui-minigolf-board.lolo +22 -22
- package/behaviors/lolo/ui/game/organisms/ui-pinball-board.lolo +7 -7
- package/behaviors/lolo/ui/game/organisms/ui-pirate-board.lolo +14 -14
- package/behaviors/lolo/ui/game/organisms/ui-platformer-board.lolo +4 -0
- package/behaviors/lolo/ui/game/organisms/ui-sports-board.lolo +10 -7
- package/behaviors/lolo/ui/game/organisms/ui-tactics-demo-2d.lolo +135 -9
- package/behaviors/lolo/ui/game/organisms/ui-tanks-board.lolo +152 -8
- package/behaviors/lolo/ui/game/organisms/ui-topdown-rts-board.lolo +293 -17
- package/behaviors/lolo/ui/game/organisms/ui-tower-defense-board.lolo +8 -8
- package/behaviors/lolo/ui/game/organisms/ui-uncontrolled-battle-board.lolo +5 -5
- package/behaviors/lolo/ui/game/organisms/ui-world-map-board.lolo +3 -3
- package/behaviors/registry/factory-signatures.json +1893 -2294
- package/behaviors/registry/ui/game/molecules/std-crew-board-2d.orb +10 -12
- package/behaviors/registry/ui/game/molecules/std-dungeon-board-2d.orb +15 -18
- package/behaviors/registry/ui/game/molecules/std-tactics-board-2d.orb +1726 -395
- package/behaviors/registry/ui/game/molecules/std-worldmap-board-2d.orb +7 -60
- package/behaviors/registry/ui/game/molecules/ui-canvas.orb +7 -0
- package/behaviors/registry/ui/game/organisms/ui-arena-board.orb +5 -6
- package/behaviors/registry/ui/game/organisms/ui-battle-board.orb +103 -100
- package/behaviors/registry/ui/game/organisms/ui-builder-board.orb +21 -226
- package/behaviors/registry/ui/game/organisms/ui-card-battler-board.orb +42 -0
- package/behaviors/registry/ui/game/organisms/ui-castle-board.orb +30 -9
- package/behaviors/registry/ui/game/organisms/ui-city-builder-board.orb +49 -0
- package/behaviors/registry/ui/game/organisms/ui-grid-tactics-demo-board.orb +5 -6
- package/behaviors/registry/ui/game/organisms/ui-hex-strategy-board.orb +95 -1187
- package/behaviors/registry/ui/game/organisms/ui-holiday-runner-board.orb +2 -3
- package/behaviors/registry/ui/game/organisms/ui-minigolf-board.orb +55 -11
- package/behaviors/registry/ui/game/organisms/ui-pinball-board.orb +8 -8
- package/behaviors/registry/ui/game/organisms/ui-pirate-board.orb +14 -0
- package/behaviors/registry/ui/game/organisms/ui-platformer-board.orb +72 -0
- package/behaviors/registry/ui/game/organisms/ui-sports-board.orb +60 -0
- package/behaviors/registry/ui/game/organisms/ui-tactics-demo-2d.orb +222 -332
- package/behaviors/registry/ui/game/organisms/ui-tanks-board.orb +127 -95
- package/behaviors/registry/ui/game/organisms/ui-topdown-rts-board.orb +1501 -264
- package/behaviors/registry/ui/game/organisms/ui-tower-defense-board.orb +8 -0
- package/behaviors/registry/ui/game/organisms/ui-uncontrolled-battle-board.orb +5 -0
- package/behaviors/registry/ui/game/organisms/ui-world-map-board.orb +8 -12
- package/dist/behaviors/behaviors-embeddings.json +244 -236
- package/dist/behaviors/behaviors-registry.json +193 -812
- package/dist/behaviors/exports-reader.js +1099 -2090
- package/dist/behaviors/functions/index.d.ts +33 -26
- package/dist/behaviors/functions/index.js +1099 -2091
- package/dist/behaviors/index.d.ts +1 -1
- package/dist/behaviors/index.js +1100 -2091
- package/dist/behaviors/knob-embeddings.json +1 -1
- package/dist/behaviors/query.js +1099 -2090
- package/dist/behaviors/registry/factory-signatures.json +1893 -2294
- package/dist/behaviors/registry/ui/game/molecules/std-crew-board-2d.orb +10 -12
- package/dist/behaviors/registry/ui/game/molecules/std-dungeon-board-2d.orb +15 -18
- package/dist/behaviors/registry/ui/game/molecules/std-tactics-board-2d.orb +1726 -395
- package/dist/behaviors/registry/ui/game/molecules/std-worldmap-board-2d.orb +7 -60
- package/dist/behaviors/registry/ui/game/molecules/ui-canvas.orb +7 -0
- package/dist/behaviors/registry/ui/game/organisms/ui-arena-board.orb +5 -6
- package/dist/behaviors/registry/ui/game/organisms/ui-battle-board.orb +103 -100
- package/dist/behaviors/registry/ui/game/organisms/ui-builder-board.orb +21 -226
- package/dist/behaviors/registry/ui/game/organisms/ui-card-battler-board.orb +42 -0
- package/dist/behaviors/registry/ui/game/organisms/ui-castle-board.orb +30 -9
- package/dist/behaviors/registry/ui/game/organisms/ui-city-builder-board.orb +49 -0
- package/dist/behaviors/registry/ui/game/organisms/ui-grid-tactics-demo-board.orb +5 -6
- package/dist/behaviors/registry/ui/game/organisms/ui-hex-strategy-board.orb +95 -1187
- package/dist/behaviors/registry/ui/game/organisms/ui-holiday-runner-board.orb +2 -3
- package/dist/behaviors/registry/ui/game/organisms/ui-minigolf-board.orb +55 -11
- package/dist/behaviors/registry/ui/game/organisms/ui-pinball-board.orb +8 -8
- package/dist/behaviors/registry/ui/game/organisms/ui-pirate-board.orb +14 -0
- package/dist/behaviors/registry/ui/game/organisms/ui-platformer-board.orb +72 -0
- package/dist/behaviors/registry/ui/game/organisms/ui-sports-board.orb +60 -0
- package/dist/behaviors/registry/ui/game/organisms/ui-tactics-demo-2d.orb +222 -332
- package/dist/behaviors/registry/ui/game/organisms/ui-tanks-board.orb +127 -95
- package/dist/behaviors/registry/ui/game/organisms/ui-topdown-rts-board.orb +1501 -264
- package/dist/behaviors/registry/ui/game/organisms/ui-tower-defense-board.orb +8 -0
- package/dist/behaviors/registry/ui/game/organisms/ui-uncontrolled-battle-board.orb +5 -0
- package/dist/behaviors/registry/ui/game/organisms/ui-world-map-board.orb +8 -12
- package/dist/behaviors-embeddings.json +244 -236
- package/dist/behaviors-registry.json +193 -812
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1100 -2091
- package/dist/knob-embeddings.json +1 -1
- package/dist/registry/factory-signatures.json +1893 -2294
- package/package.json +2 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"description": "Fantasy hex-tile grid-tactics combat board: thin organism composing the std-tactics-board-2d frame with fantasy unit/terrain assets supplied via config.",
|
|
2
|
+
"description": "Fantasy hex-tile grid-tactics combat board: thin organism composing the std-tactics-board-2d frame with fantasy unit/terrain assets supplied via config. Hand-authored hex svg theme supplied via config.",
|
|
3
3
|
"ledger": {
|
|
4
4
|
"entries": {
|
|
5
5
|
"ent_01KXG04XSJ1XMQ94BEZ52NPGMT": {
|
|
@@ -65,6 +65,14 @@
|
|
|
65
65
|
"kind": "trait",
|
|
66
66
|
"owner": "workspace",
|
|
67
67
|
"renames": []
|
|
68
|
+
},
|
|
69
|
+
"trt_01KYR91ZDQZ60M6SMNEHZC0VY1": {
|
|
70
|
+
"bakedName": "AnimClock",
|
|
71
|
+
"curName": "AnimClock",
|
|
72
|
+
"id": "trt_01KYR91ZDQZ60M6SMNEHZC0VY1",
|
|
73
|
+
"kind": "trait",
|
|
74
|
+
"owner": "workspace",
|
|
75
|
+
"renames": []
|
|
68
76
|
}
|
|
69
77
|
},
|
|
70
78
|
"schemaVersion": 1
|
|
@@ -94,15 +102,13 @@
|
|
|
94
102
|
"death"
|
|
95
103
|
],
|
|
96
104
|
"aspect": "1:1",
|
|
97
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-base-pack/units/aliens.json",
|
|
98
105
|
"category": "worker",
|
|
99
106
|
"dimension": "2d",
|
|
100
107
|
"name": "worker",
|
|
101
108
|
"role": "npc",
|
|
102
|
-
"sprite": "alienBeige.png",
|
|
103
109
|
"style": "",
|
|
104
110
|
"thumbnailUrl": "",
|
|
105
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/
|
|
111
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/svg/hex/units/worker.svg"
|
|
106
112
|
},
|
|
107
113
|
"name": "Miner",
|
|
108
114
|
"position": {
|
|
@@ -118,7 +124,7 @@
|
|
|
118
124
|
{
|
|
119
125
|
"health": 8.0,
|
|
120
126
|
"id": "u2",
|
|
121
|
-
"maxHealth":
|
|
127
|
+
"maxHealth": 8.0,
|
|
122
128
|
"modelUrl": {
|
|
123
129
|
"animations": [
|
|
124
130
|
"idle",
|
|
@@ -128,15 +134,13 @@
|
|
|
128
134
|
"death"
|
|
129
135
|
],
|
|
130
136
|
"aspect": "1:1",
|
|
131
|
-
"
|
|
132
|
-
"category": "ranger",
|
|
137
|
+
"category": "archer",
|
|
133
138
|
"dimension": "2d",
|
|
134
|
-
"name": "
|
|
139
|
+
"name": "archer",
|
|
135
140
|
"role": "npc",
|
|
136
|
-
"sprite": "alienGreen.png",
|
|
137
141
|
"style": "",
|
|
138
142
|
"thumbnailUrl": "",
|
|
139
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/
|
|
143
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/svg/hex/units/archer.svg"
|
|
140
144
|
},
|
|
141
145
|
"name": "Thornbow",
|
|
142
146
|
"position": {
|
|
@@ -144,7 +148,7 @@
|
|
|
144
148
|
"y": 3.0
|
|
145
149
|
},
|
|
146
150
|
"team": "player",
|
|
147
|
-
"unitType": "
|
|
151
|
+
"unitType": "archer",
|
|
148
152
|
"x": 2.0,
|
|
149
153
|
"y": 3.0,
|
|
150
154
|
"z": 0.0
|
|
@@ -162,15 +166,13 @@
|
|
|
162
166
|
"death"
|
|
163
167
|
],
|
|
164
168
|
"aspect": "1:1",
|
|
165
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-base-pack/units/aliens.json",
|
|
166
169
|
"category": "guardian",
|
|
167
170
|
"dimension": "2d",
|
|
168
171
|
"name": "guardian",
|
|
169
172
|
"role": "npc",
|
|
170
|
-
"sprite": "alienYellow.png",
|
|
171
173
|
"style": "",
|
|
172
174
|
"thumbnailUrl": "",
|
|
173
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/
|
|
175
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/svg/hex/units/guardian.svg"
|
|
174
176
|
},
|
|
175
177
|
"name": "Ironwall",
|
|
176
178
|
"position": {
|
|
@@ -196,15 +198,13 @@
|
|
|
196
198
|
"death"
|
|
197
199
|
],
|
|
198
200
|
"aspect": "1:1",
|
|
199
|
-
"
|
|
200
|
-
"category": "ranger",
|
|
201
|
+
"category": "archer",
|
|
201
202
|
"dimension": "2d",
|
|
202
|
-
"name": "
|
|
203
|
+
"name": "archer",
|
|
203
204
|
"role": "npc",
|
|
204
|
-
"sprite": "alienGreen.png",
|
|
205
205
|
"style": "",
|
|
206
206
|
"thumbnailUrl": "",
|
|
207
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/
|
|
207
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/svg/hex/units/archer.svg"
|
|
208
208
|
},
|
|
209
209
|
"name": "Foe",
|
|
210
210
|
"position": {
|
|
@@ -212,7 +212,7 @@
|
|
|
212
212
|
"y": 1.0
|
|
213
213
|
},
|
|
214
214
|
"team": "enemy",
|
|
215
|
-
"unitType": "
|
|
215
|
+
"unitType": "archer",
|
|
216
216
|
"x": 4.0,
|
|
217
217
|
"y": 1.0,
|
|
218
218
|
"z": 0.0
|
|
@@ -230,15 +230,13 @@
|
|
|
230
230
|
"death"
|
|
231
231
|
],
|
|
232
232
|
"aspect": "1:1",
|
|
233
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-base-pack/units/aliens.json",
|
|
234
233
|
"category": "guardian",
|
|
235
234
|
"dimension": "2d",
|
|
236
235
|
"name": "guardian",
|
|
237
236
|
"role": "npc",
|
|
238
|
-
"sprite": "alienYellow.png",
|
|
239
237
|
"style": "",
|
|
240
238
|
"thumbnailUrl": "",
|
|
241
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/
|
|
239
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/svg/hex/units/guardian.svg"
|
|
242
240
|
},
|
|
243
241
|
"name": "Foe",
|
|
244
242
|
"position": {
|
|
@@ -438,21 +436,6 @@
|
|
|
438
436
|
"id": "t-0-0",
|
|
439
437
|
"passable": false,
|
|
440
438
|
"terrain": "stone",
|
|
441
|
-
"terrainSprite": {
|
|
442
|
-
"animations": [
|
|
443
|
-
"static"
|
|
444
|
-
],
|
|
445
|
-
"aspect": "1:1",
|
|
446
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
447
|
-
"category": "stone",
|
|
448
|
-
"dimension": "2d",
|
|
449
|
-
"name": "stone",
|
|
450
|
-
"role": "tile",
|
|
451
|
-
"sprite": "stone_01.png",
|
|
452
|
-
"style": "",
|
|
453
|
-
"thumbnailUrl": "",
|
|
454
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
455
|
-
},
|
|
456
439
|
"x": 0.0,
|
|
457
440
|
"y": 0.0
|
|
458
441
|
},
|
|
@@ -460,21 +443,6 @@
|
|
|
460
443
|
"id": "t-1-0",
|
|
461
444
|
"passable": false,
|
|
462
445
|
"terrain": "stone",
|
|
463
|
-
"terrainSprite": {
|
|
464
|
-
"animations": [
|
|
465
|
-
"static"
|
|
466
|
-
],
|
|
467
|
-
"aspect": "1:1",
|
|
468
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
469
|
-
"category": "stone",
|
|
470
|
-
"dimension": "2d",
|
|
471
|
-
"name": "stone",
|
|
472
|
-
"role": "tile",
|
|
473
|
-
"sprite": "stone_01.png",
|
|
474
|
-
"style": "",
|
|
475
|
-
"thumbnailUrl": "",
|
|
476
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
477
|
-
},
|
|
478
446
|
"x": 1.0,
|
|
479
447
|
"y": 0.0
|
|
480
448
|
},
|
|
@@ -482,21 +450,6 @@
|
|
|
482
450
|
"id": "t-2-0",
|
|
483
451
|
"passable": false,
|
|
484
452
|
"terrain": "stone",
|
|
485
|
-
"terrainSprite": {
|
|
486
|
-
"animations": [
|
|
487
|
-
"static"
|
|
488
|
-
],
|
|
489
|
-
"aspect": "1:1",
|
|
490
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
491
|
-
"category": "stone",
|
|
492
|
-
"dimension": "2d",
|
|
493
|
-
"name": "stone",
|
|
494
|
-
"role": "tile",
|
|
495
|
-
"sprite": "stone_01.png",
|
|
496
|
-
"style": "",
|
|
497
|
-
"thumbnailUrl": "",
|
|
498
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
499
|
-
},
|
|
500
453
|
"x": 2.0,
|
|
501
454
|
"y": 0.0
|
|
502
455
|
},
|
|
@@ -504,21 +457,6 @@
|
|
|
504
457
|
"id": "t-3-0",
|
|
505
458
|
"passable": false,
|
|
506
459
|
"terrain": "stone",
|
|
507
|
-
"terrainSprite": {
|
|
508
|
-
"animations": [
|
|
509
|
-
"static"
|
|
510
|
-
],
|
|
511
|
-
"aspect": "1:1",
|
|
512
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
513
|
-
"category": "stone",
|
|
514
|
-
"dimension": "2d",
|
|
515
|
-
"name": "stone",
|
|
516
|
-
"role": "tile",
|
|
517
|
-
"sprite": "stone_01.png",
|
|
518
|
-
"style": "",
|
|
519
|
-
"thumbnailUrl": "",
|
|
520
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
521
|
-
},
|
|
522
460
|
"x": 3.0,
|
|
523
461
|
"y": 0.0
|
|
524
462
|
},
|
|
@@ -526,21 +464,6 @@
|
|
|
526
464
|
"id": "t-4-0",
|
|
527
465
|
"passable": false,
|
|
528
466
|
"terrain": "stone",
|
|
529
|
-
"terrainSprite": {
|
|
530
|
-
"animations": [
|
|
531
|
-
"static"
|
|
532
|
-
],
|
|
533
|
-
"aspect": "1:1",
|
|
534
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
535
|
-
"category": "stone",
|
|
536
|
-
"dimension": "2d",
|
|
537
|
-
"name": "stone",
|
|
538
|
-
"role": "tile",
|
|
539
|
-
"sprite": "stone_01.png",
|
|
540
|
-
"style": "",
|
|
541
|
-
"thumbnailUrl": "",
|
|
542
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
543
|
-
},
|
|
544
467
|
"x": 4.0,
|
|
545
468
|
"y": 0.0
|
|
546
469
|
},
|
|
@@ -548,21 +471,6 @@
|
|
|
548
471
|
"id": "t-5-0",
|
|
549
472
|
"passable": false,
|
|
550
473
|
"terrain": "stone",
|
|
551
|
-
"terrainSprite": {
|
|
552
|
-
"animations": [
|
|
553
|
-
"static"
|
|
554
|
-
],
|
|
555
|
-
"aspect": "1:1",
|
|
556
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
557
|
-
"category": "stone",
|
|
558
|
-
"dimension": "2d",
|
|
559
|
-
"name": "stone",
|
|
560
|
-
"role": "tile",
|
|
561
|
-
"sprite": "stone_01.png",
|
|
562
|
-
"style": "",
|
|
563
|
-
"thumbnailUrl": "",
|
|
564
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
565
|
-
},
|
|
566
474
|
"x": 5.0,
|
|
567
475
|
"y": 0.0
|
|
568
476
|
},
|
|
@@ -570,21 +478,6 @@
|
|
|
570
478
|
"id": "t-0-1",
|
|
571
479
|
"passable": false,
|
|
572
480
|
"terrain": "stone",
|
|
573
|
-
"terrainSprite": {
|
|
574
|
-
"animations": [
|
|
575
|
-
"static"
|
|
576
|
-
],
|
|
577
|
-
"aspect": "1:1",
|
|
578
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
579
|
-
"category": "stone",
|
|
580
|
-
"dimension": "2d",
|
|
581
|
-
"name": "stone",
|
|
582
|
-
"role": "tile",
|
|
583
|
-
"sprite": "stone_01.png",
|
|
584
|
-
"style": "",
|
|
585
|
-
"thumbnailUrl": "",
|
|
586
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
587
|
-
},
|
|
588
481
|
"x": 0.0,
|
|
589
482
|
"y": 1.0
|
|
590
483
|
},
|
|
@@ -592,21 +485,6 @@
|
|
|
592
485
|
"id": "t-1-1",
|
|
593
486
|
"passable": true,
|
|
594
487
|
"terrain": "grass",
|
|
595
|
-
"terrainSprite": {
|
|
596
|
-
"animations": [
|
|
597
|
-
"static"
|
|
598
|
-
],
|
|
599
|
-
"aspect": "1:1",
|
|
600
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
601
|
-
"category": "grass",
|
|
602
|
-
"dimension": "2d",
|
|
603
|
-
"name": "grass",
|
|
604
|
-
"role": "tile",
|
|
605
|
-
"sprite": "grass_01.png",
|
|
606
|
-
"style": "",
|
|
607
|
-
"thumbnailUrl": "",
|
|
608
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
609
|
-
},
|
|
610
488
|
"x": 1.0,
|
|
611
489
|
"y": 1.0
|
|
612
490
|
},
|
|
@@ -614,21 +492,6 @@
|
|
|
614
492
|
"id": "t-2-1",
|
|
615
493
|
"passable": true,
|
|
616
494
|
"terrain": "dirt",
|
|
617
|
-
"terrainSprite": {
|
|
618
|
-
"animations": [
|
|
619
|
-
"static"
|
|
620
|
-
],
|
|
621
|
-
"aspect": "1:1",
|
|
622
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
623
|
-
"category": "dirt",
|
|
624
|
-
"dimension": "2d",
|
|
625
|
-
"name": "dirt",
|
|
626
|
-
"role": "tile",
|
|
627
|
-
"sprite": "dirt_01.png",
|
|
628
|
-
"style": "",
|
|
629
|
-
"thumbnailUrl": "",
|
|
630
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
631
|
-
},
|
|
632
495
|
"x": 2.0,
|
|
633
496
|
"y": 1.0
|
|
634
497
|
},
|
|
@@ -636,21 +499,6 @@
|
|
|
636
499
|
"id": "t-3-1",
|
|
637
500
|
"passable": true,
|
|
638
501
|
"terrain": "grass",
|
|
639
|
-
"terrainSprite": {
|
|
640
|
-
"animations": [
|
|
641
|
-
"static"
|
|
642
|
-
],
|
|
643
|
-
"aspect": "1:1",
|
|
644
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
645
|
-
"category": "grass",
|
|
646
|
-
"dimension": "2d",
|
|
647
|
-
"name": "grass",
|
|
648
|
-
"role": "tile",
|
|
649
|
-
"sprite": "grass_01.png",
|
|
650
|
-
"style": "",
|
|
651
|
-
"thumbnailUrl": "",
|
|
652
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
653
|
-
},
|
|
654
502
|
"x": 3.0,
|
|
655
503
|
"y": 1.0
|
|
656
504
|
},
|
|
@@ -658,21 +506,6 @@
|
|
|
658
506
|
"id": "t-4-1",
|
|
659
507
|
"passable": true,
|
|
660
508
|
"terrain": "grass",
|
|
661
|
-
"terrainSprite": {
|
|
662
|
-
"animations": [
|
|
663
|
-
"static"
|
|
664
|
-
],
|
|
665
|
-
"aspect": "1:1",
|
|
666
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
667
|
-
"category": "grass",
|
|
668
|
-
"dimension": "2d",
|
|
669
|
-
"name": "grass",
|
|
670
|
-
"role": "tile",
|
|
671
|
-
"sprite": "grass_01.png",
|
|
672
|
-
"style": "",
|
|
673
|
-
"thumbnailUrl": "",
|
|
674
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
675
|
-
},
|
|
676
509
|
"x": 4.0,
|
|
677
510
|
"y": 1.0
|
|
678
511
|
},
|
|
@@ -680,21 +513,6 @@
|
|
|
680
513
|
"id": "t-5-1",
|
|
681
514
|
"passable": false,
|
|
682
515
|
"terrain": "stone",
|
|
683
|
-
"terrainSprite": {
|
|
684
|
-
"animations": [
|
|
685
|
-
"static"
|
|
686
|
-
],
|
|
687
|
-
"aspect": "1:1",
|
|
688
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
689
|
-
"category": "stone",
|
|
690
|
-
"dimension": "2d",
|
|
691
|
-
"name": "stone",
|
|
692
|
-
"role": "tile",
|
|
693
|
-
"sprite": "stone_01.png",
|
|
694
|
-
"style": "",
|
|
695
|
-
"thumbnailUrl": "",
|
|
696
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
697
|
-
},
|
|
698
516
|
"x": 5.0,
|
|
699
517
|
"y": 1.0
|
|
700
518
|
},
|
|
@@ -702,21 +520,6 @@
|
|
|
702
520
|
"id": "t-0-2",
|
|
703
521
|
"passable": false,
|
|
704
522
|
"terrain": "stone",
|
|
705
|
-
"terrainSprite": {
|
|
706
|
-
"animations": [
|
|
707
|
-
"static"
|
|
708
|
-
],
|
|
709
|
-
"aspect": "1:1",
|
|
710
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
711
|
-
"category": "stone",
|
|
712
|
-
"dimension": "2d",
|
|
713
|
-
"name": "stone",
|
|
714
|
-
"role": "tile",
|
|
715
|
-
"sprite": "stone_01.png",
|
|
716
|
-
"style": "",
|
|
717
|
-
"thumbnailUrl": "",
|
|
718
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
719
|
-
},
|
|
720
523
|
"x": 0.0,
|
|
721
524
|
"y": 2.0
|
|
722
525
|
},
|
|
@@ -724,21 +527,6 @@
|
|
|
724
527
|
"id": "t-1-2",
|
|
725
528
|
"passable": true,
|
|
726
529
|
"terrain": "grass",
|
|
727
|
-
"terrainSprite": {
|
|
728
|
-
"animations": [
|
|
729
|
-
"static"
|
|
730
|
-
],
|
|
731
|
-
"aspect": "1:1",
|
|
732
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
733
|
-
"category": "grass",
|
|
734
|
-
"dimension": "2d",
|
|
735
|
-
"name": "grass",
|
|
736
|
-
"role": "tile",
|
|
737
|
-
"sprite": "grass_01.png",
|
|
738
|
-
"style": "",
|
|
739
|
-
"thumbnailUrl": "",
|
|
740
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
741
|
-
},
|
|
742
530
|
"x": 1.0,
|
|
743
531
|
"y": 2.0
|
|
744
532
|
},
|
|
@@ -746,21 +534,6 @@
|
|
|
746
534
|
"id": "t-2-2",
|
|
747
535
|
"passable": true,
|
|
748
536
|
"terrain": "grass",
|
|
749
|
-
"terrainSprite": {
|
|
750
|
-
"animations": [
|
|
751
|
-
"static"
|
|
752
|
-
],
|
|
753
|
-
"aspect": "1:1",
|
|
754
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
755
|
-
"category": "grass",
|
|
756
|
-
"dimension": "2d",
|
|
757
|
-
"name": "grass",
|
|
758
|
-
"role": "tile",
|
|
759
|
-
"sprite": "grass_01.png",
|
|
760
|
-
"style": "",
|
|
761
|
-
"thumbnailUrl": "",
|
|
762
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
763
|
-
},
|
|
764
537
|
"x": 2.0,
|
|
765
538
|
"y": 2.0
|
|
766
539
|
},
|
|
@@ -768,21 +541,6 @@
|
|
|
768
541
|
"id": "t-3-2",
|
|
769
542
|
"passable": true,
|
|
770
543
|
"terrain": "dirt",
|
|
771
|
-
"terrainSprite": {
|
|
772
|
-
"animations": [
|
|
773
|
-
"static"
|
|
774
|
-
],
|
|
775
|
-
"aspect": "1:1",
|
|
776
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
777
|
-
"category": "dirt",
|
|
778
|
-
"dimension": "2d",
|
|
779
|
-
"name": "dirt",
|
|
780
|
-
"role": "tile",
|
|
781
|
-
"sprite": "dirt_01.png",
|
|
782
|
-
"style": "",
|
|
783
|
-
"thumbnailUrl": "",
|
|
784
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
785
|
-
},
|
|
786
544
|
"x": 3.0,
|
|
787
545
|
"y": 2.0
|
|
788
546
|
},
|
|
@@ -790,21 +548,6 @@
|
|
|
790
548
|
"id": "t-4-2",
|
|
791
549
|
"passable": true,
|
|
792
550
|
"terrain": "sand",
|
|
793
|
-
"terrainSprite": {
|
|
794
|
-
"animations": [
|
|
795
|
-
"static"
|
|
796
|
-
],
|
|
797
|
-
"aspect": "1:1",
|
|
798
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
799
|
-
"category": "sand",
|
|
800
|
-
"dimension": "2d",
|
|
801
|
-
"name": "sand",
|
|
802
|
-
"role": "tile",
|
|
803
|
-
"sprite": "sand_01.png",
|
|
804
|
-
"style": "",
|
|
805
|
-
"thumbnailUrl": "",
|
|
806
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
807
|
-
},
|
|
808
551
|
"x": 4.0,
|
|
809
552
|
"y": 2.0
|
|
810
553
|
},
|
|
@@ -812,21 +555,6 @@
|
|
|
812
555
|
"id": "t-5-2",
|
|
813
556
|
"passable": false,
|
|
814
557
|
"terrain": "stone",
|
|
815
|
-
"terrainSprite": {
|
|
816
|
-
"animations": [
|
|
817
|
-
"static"
|
|
818
|
-
],
|
|
819
|
-
"aspect": "1:1",
|
|
820
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
821
|
-
"category": "stone",
|
|
822
|
-
"dimension": "2d",
|
|
823
|
-
"name": "stone",
|
|
824
|
-
"role": "tile",
|
|
825
|
-
"sprite": "stone_01.png",
|
|
826
|
-
"style": "",
|
|
827
|
-
"thumbnailUrl": "",
|
|
828
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
829
|
-
},
|
|
830
558
|
"x": 5.0,
|
|
831
559
|
"y": 2.0
|
|
832
560
|
},
|
|
@@ -834,21 +562,6 @@
|
|
|
834
562
|
"id": "t-0-3",
|
|
835
563
|
"passable": false,
|
|
836
564
|
"terrain": "stone",
|
|
837
|
-
"terrainSprite": {
|
|
838
|
-
"animations": [
|
|
839
|
-
"static"
|
|
840
|
-
],
|
|
841
|
-
"aspect": "1:1",
|
|
842
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
843
|
-
"category": "stone",
|
|
844
|
-
"dimension": "2d",
|
|
845
|
-
"name": "stone",
|
|
846
|
-
"role": "tile",
|
|
847
|
-
"sprite": "stone_01.png",
|
|
848
|
-
"style": "",
|
|
849
|
-
"thumbnailUrl": "",
|
|
850
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
851
|
-
},
|
|
852
565
|
"x": 0.0,
|
|
853
566
|
"y": 3.0
|
|
854
567
|
},
|
|
@@ -856,21 +569,6 @@
|
|
|
856
569
|
"id": "t-1-3",
|
|
857
570
|
"passable": true,
|
|
858
571
|
"terrain": "dirt",
|
|
859
|
-
"terrainSprite": {
|
|
860
|
-
"animations": [
|
|
861
|
-
"static"
|
|
862
|
-
],
|
|
863
|
-
"aspect": "1:1",
|
|
864
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
865
|
-
"category": "dirt",
|
|
866
|
-
"dimension": "2d",
|
|
867
|
-
"name": "dirt",
|
|
868
|
-
"role": "tile",
|
|
869
|
-
"sprite": "dirt_01.png",
|
|
870
|
-
"style": "",
|
|
871
|
-
"thumbnailUrl": "",
|
|
872
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
873
|
-
},
|
|
874
572
|
"x": 1.0,
|
|
875
573
|
"y": 3.0
|
|
876
574
|
},
|
|
@@ -878,21 +576,6 @@
|
|
|
878
576
|
"id": "t-2-3",
|
|
879
577
|
"passable": true,
|
|
880
578
|
"terrain": "grass",
|
|
881
|
-
"terrainSprite": {
|
|
882
|
-
"animations": [
|
|
883
|
-
"static"
|
|
884
|
-
],
|
|
885
|
-
"aspect": "1:1",
|
|
886
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
887
|
-
"category": "grass",
|
|
888
|
-
"dimension": "2d",
|
|
889
|
-
"name": "grass",
|
|
890
|
-
"role": "tile",
|
|
891
|
-
"sprite": "grass_01.png",
|
|
892
|
-
"style": "",
|
|
893
|
-
"thumbnailUrl": "",
|
|
894
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
895
|
-
},
|
|
896
579
|
"x": 2.0,
|
|
897
580
|
"y": 3.0
|
|
898
581
|
},
|
|
@@ -900,21 +583,6 @@
|
|
|
900
583
|
"id": "t-3-3",
|
|
901
584
|
"passable": true,
|
|
902
585
|
"terrain": "grass",
|
|
903
|
-
"terrainSprite": {
|
|
904
|
-
"animations": [
|
|
905
|
-
"static"
|
|
906
|
-
],
|
|
907
|
-
"aspect": "1:1",
|
|
908
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
909
|
-
"category": "grass",
|
|
910
|
-
"dimension": "2d",
|
|
911
|
-
"name": "grass",
|
|
912
|
-
"role": "tile",
|
|
913
|
-
"sprite": "grass_01.png",
|
|
914
|
-
"style": "",
|
|
915
|
-
"thumbnailUrl": "",
|
|
916
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
917
|
-
},
|
|
918
586
|
"x": 3.0,
|
|
919
587
|
"y": 3.0
|
|
920
588
|
},
|
|
@@ -922,21 +590,6 @@
|
|
|
922
590
|
"id": "t-4-3",
|
|
923
591
|
"passable": true,
|
|
924
592
|
"terrain": "sand",
|
|
925
|
-
"terrainSprite": {
|
|
926
|
-
"animations": [
|
|
927
|
-
"static"
|
|
928
|
-
],
|
|
929
|
-
"aspect": "1:1",
|
|
930
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
931
|
-
"category": "sand",
|
|
932
|
-
"dimension": "2d",
|
|
933
|
-
"name": "sand",
|
|
934
|
-
"role": "tile",
|
|
935
|
-
"sprite": "sand_01.png",
|
|
936
|
-
"style": "",
|
|
937
|
-
"thumbnailUrl": "",
|
|
938
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
939
|
-
},
|
|
940
593
|
"x": 4.0,
|
|
941
594
|
"y": 3.0
|
|
942
595
|
},
|
|
@@ -944,21 +597,6 @@
|
|
|
944
597
|
"id": "t-5-3",
|
|
945
598
|
"passable": false,
|
|
946
599
|
"terrain": "stone",
|
|
947
|
-
"terrainSprite": {
|
|
948
|
-
"animations": [
|
|
949
|
-
"static"
|
|
950
|
-
],
|
|
951
|
-
"aspect": "1:1",
|
|
952
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
953
|
-
"category": "stone",
|
|
954
|
-
"dimension": "2d",
|
|
955
|
-
"name": "stone",
|
|
956
|
-
"role": "tile",
|
|
957
|
-
"sprite": "stone_01.png",
|
|
958
|
-
"style": "",
|
|
959
|
-
"thumbnailUrl": "",
|
|
960
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
961
|
-
},
|
|
962
600
|
"x": 5.0,
|
|
963
601
|
"y": 3.0
|
|
964
602
|
},
|
|
@@ -966,21 +604,6 @@
|
|
|
966
604
|
"id": "t-0-4",
|
|
967
605
|
"passable": false,
|
|
968
606
|
"terrain": "stone",
|
|
969
|
-
"terrainSprite": {
|
|
970
|
-
"animations": [
|
|
971
|
-
"static"
|
|
972
|
-
],
|
|
973
|
-
"aspect": "1:1",
|
|
974
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
975
|
-
"category": "stone",
|
|
976
|
-
"dimension": "2d",
|
|
977
|
-
"name": "stone",
|
|
978
|
-
"role": "tile",
|
|
979
|
-
"sprite": "stone_01.png",
|
|
980
|
-
"style": "",
|
|
981
|
-
"thumbnailUrl": "",
|
|
982
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
983
|
-
},
|
|
984
607
|
"x": 0.0,
|
|
985
608
|
"y": 4.0
|
|
986
609
|
},
|
|
@@ -988,21 +611,6 @@
|
|
|
988
611
|
"id": "t-1-4",
|
|
989
612
|
"passable": true,
|
|
990
613
|
"terrain": "grass",
|
|
991
|
-
"terrainSprite": {
|
|
992
|
-
"animations": [
|
|
993
|
-
"static"
|
|
994
|
-
],
|
|
995
|
-
"aspect": "1:1",
|
|
996
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
997
|
-
"category": "grass",
|
|
998
|
-
"dimension": "2d",
|
|
999
|
-
"name": "grass",
|
|
1000
|
-
"role": "tile",
|
|
1001
|
-
"sprite": "grass_01.png",
|
|
1002
|
-
"style": "",
|
|
1003
|
-
"thumbnailUrl": "",
|
|
1004
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
1005
|
-
},
|
|
1006
614
|
"x": 1.0,
|
|
1007
615
|
"y": 4.0
|
|
1008
616
|
},
|
|
@@ -1010,21 +618,6 @@
|
|
|
1010
618
|
"id": "t-2-4",
|
|
1011
619
|
"passable": true,
|
|
1012
620
|
"terrain": "grass",
|
|
1013
|
-
"terrainSprite": {
|
|
1014
|
-
"animations": [
|
|
1015
|
-
"static"
|
|
1016
|
-
],
|
|
1017
|
-
"aspect": "1:1",
|
|
1018
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
1019
|
-
"category": "grass",
|
|
1020
|
-
"dimension": "2d",
|
|
1021
|
-
"name": "grass",
|
|
1022
|
-
"role": "tile",
|
|
1023
|
-
"sprite": "grass_01.png",
|
|
1024
|
-
"style": "",
|
|
1025
|
-
"thumbnailUrl": "",
|
|
1026
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
1027
|
-
},
|
|
1028
621
|
"x": 2.0,
|
|
1029
622
|
"y": 4.0
|
|
1030
623
|
},
|
|
@@ -1032,21 +625,6 @@
|
|
|
1032
625
|
"id": "t-3-4",
|
|
1033
626
|
"passable": true,
|
|
1034
627
|
"terrain": "sand",
|
|
1035
|
-
"terrainSprite": {
|
|
1036
|
-
"animations": [
|
|
1037
|
-
"static"
|
|
1038
|
-
],
|
|
1039
|
-
"aspect": "1:1",
|
|
1040
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
1041
|
-
"category": "sand",
|
|
1042
|
-
"dimension": "2d",
|
|
1043
|
-
"name": "sand",
|
|
1044
|
-
"role": "tile",
|
|
1045
|
-
"sprite": "sand_01.png",
|
|
1046
|
-
"style": "",
|
|
1047
|
-
"thumbnailUrl": "",
|
|
1048
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
1049
|
-
},
|
|
1050
628
|
"x": 3.0,
|
|
1051
629
|
"y": 4.0
|
|
1052
630
|
},
|
|
@@ -1054,21 +632,6 @@
|
|
|
1054
632
|
"id": "t-4-4",
|
|
1055
633
|
"passable": true,
|
|
1056
634
|
"terrain": "sand",
|
|
1057
|
-
"terrainSprite": {
|
|
1058
|
-
"animations": [
|
|
1059
|
-
"static"
|
|
1060
|
-
],
|
|
1061
|
-
"aspect": "1:1",
|
|
1062
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
1063
|
-
"category": "sand",
|
|
1064
|
-
"dimension": "2d",
|
|
1065
|
-
"name": "sand",
|
|
1066
|
-
"role": "tile",
|
|
1067
|
-
"sprite": "sand_01.png",
|
|
1068
|
-
"style": "",
|
|
1069
|
-
"thumbnailUrl": "",
|
|
1070
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
1071
|
-
},
|
|
1072
635
|
"x": 4.0,
|
|
1073
636
|
"y": 4.0
|
|
1074
637
|
},
|
|
@@ -1076,21 +639,6 @@
|
|
|
1076
639
|
"id": "t-5-4",
|
|
1077
640
|
"passable": false,
|
|
1078
641
|
"terrain": "stone",
|
|
1079
|
-
"terrainSprite": {
|
|
1080
|
-
"animations": [
|
|
1081
|
-
"static"
|
|
1082
|
-
],
|
|
1083
|
-
"aspect": "1:1",
|
|
1084
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
1085
|
-
"category": "stone",
|
|
1086
|
-
"dimension": "2d",
|
|
1087
|
-
"name": "stone",
|
|
1088
|
-
"role": "tile",
|
|
1089
|
-
"sprite": "stone_01.png",
|
|
1090
|
-
"style": "",
|
|
1091
|
-
"thumbnailUrl": "",
|
|
1092
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
1093
|
-
},
|
|
1094
642
|
"x": 5.0,
|
|
1095
643
|
"y": 4.0
|
|
1096
644
|
},
|
|
@@ -1098,21 +646,6 @@
|
|
|
1098
646
|
"id": "t-0-5",
|
|
1099
647
|
"passable": false,
|
|
1100
648
|
"terrain": "stone",
|
|
1101
|
-
"terrainSprite": {
|
|
1102
|
-
"animations": [
|
|
1103
|
-
"static"
|
|
1104
|
-
],
|
|
1105
|
-
"aspect": "1:1",
|
|
1106
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
1107
|
-
"category": "stone",
|
|
1108
|
-
"dimension": "2d",
|
|
1109
|
-
"name": "stone",
|
|
1110
|
-
"role": "tile",
|
|
1111
|
-
"sprite": "stone_01.png",
|
|
1112
|
-
"style": "",
|
|
1113
|
-
"thumbnailUrl": "",
|
|
1114
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
1115
|
-
},
|
|
1116
649
|
"x": 0.0,
|
|
1117
650
|
"y": 5.0
|
|
1118
651
|
},
|
|
@@ -1120,21 +653,6 @@
|
|
|
1120
653
|
"id": "t-1-5",
|
|
1121
654
|
"passable": false,
|
|
1122
655
|
"terrain": "stone",
|
|
1123
|
-
"terrainSprite": {
|
|
1124
|
-
"animations": [
|
|
1125
|
-
"static"
|
|
1126
|
-
],
|
|
1127
|
-
"aspect": "1:1",
|
|
1128
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
1129
|
-
"category": "stone",
|
|
1130
|
-
"dimension": "2d",
|
|
1131
|
-
"name": "stone",
|
|
1132
|
-
"role": "tile",
|
|
1133
|
-
"sprite": "stone_01.png",
|
|
1134
|
-
"style": "",
|
|
1135
|
-
"thumbnailUrl": "",
|
|
1136
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
1137
|
-
},
|
|
1138
656
|
"x": 1.0,
|
|
1139
657
|
"y": 5.0
|
|
1140
658
|
},
|
|
@@ -1142,21 +660,6 @@
|
|
|
1142
660
|
"id": "t-2-5",
|
|
1143
661
|
"passable": false,
|
|
1144
662
|
"terrain": "stone",
|
|
1145
|
-
"terrainSprite": {
|
|
1146
|
-
"animations": [
|
|
1147
|
-
"static"
|
|
1148
|
-
],
|
|
1149
|
-
"aspect": "1:1",
|
|
1150
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
1151
|
-
"category": "stone",
|
|
1152
|
-
"dimension": "2d",
|
|
1153
|
-
"name": "stone",
|
|
1154
|
-
"role": "tile",
|
|
1155
|
-
"sprite": "stone_01.png",
|
|
1156
|
-
"style": "",
|
|
1157
|
-
"thumbnailUrl": "",
|
|
1158
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
1159
|
-
},
|
|
1160
663
|
"x": 2.0,
|
|
1161
664
|
"y": 5.0
|
|
1162
665
|
},
|
|
@@ -1164,21 +667,6 @@
|
|
|
1164
667
|
"id": "t-3-5",
|
|
1165
668
|
"passable": false,
|
|
1166
669
|
"terrain": "stone",
|
|
1167
|
-
"terrainSprite": {
|
|
1168
|
-
"animations": [
|
|
1169
|
-
"static"
|
|
1170
|
-
],
|
|
1171
|
-
"aspect": "1:1",
|
|
1172
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
1173
|
-
"category": "stone",
|
|
1174
|
-
"dimension": "2d",
|
|
1175
|
-
"name": "stone",
|
|
1176
|
-
"role": "tile",
|
|
1177
|
-
"sprite": "stone_01.png",
|
|
1178
|
-
"style": "",
|
|
1179
|
-
"thumbnailUrl": "",
|
|
1180
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
1181
|
-
},
|
|
1182
670
|
"x": 3.0,
|
|
1183
671
|
"y": 5.0
|
|
1184
672
|
},
|
|
@@ -1186,21 +674,6 @@
|
|
|
1186
674
|
"id": "t-4-5",
|
|
1187
675
|
"passable": false,
|
|
1188
676
|
"terrain": "stone",
|
|
1189
|
-
"terrainSprite": {
|
|
1190
|
-
"animations": [
|
|
1191
|
-
"static"
|
|
1192
|
-
],
|
|
1193
|
-
"aspect": "1:1",
|
|
1194
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
1195
|
-
"category": "stone",
|
|
1196
|
-
"dimension": "2d",
|
|
1197
|
-
"name": "stone",
|
|
1198
|
-
"role": "tile",
|
|
1199
|
-
"sprite": "stone_01.png",
|
|
1200
|
-
"style": "",
|
|
1201
|
-
"thumbnailUrl": "",
|
|
1202
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
1203
|
-
},
|
|
1204
677
|
"x": 4.0,
|
|
1205
678
|
"y": 5.0
|
|
1206
679
|
},
|
|
@@ -1208,21 +681,6 @@
|
|
|
1208
681
|
"id": "t-5-5",
|
|
1209
682
|
"passable": false,
|
|
1210
683
|
"terrain": "stone",
|
|
1211
|
-
"terrainSprite": {
|
|
1212
|
-
"animations": [
|
|
1213
|
-
"static"
|
|
1214
|
-
],
|
|
1215
|
-
"aspect": "1:1",
|
|
1216
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
1217
|
-
"category": "stone",
|
|
1218
|
-
"dimension": "2d",
|
|
1219
|
-
"name": "stone",
|
|
1220
|
-
"role": "tile",
|
|
1221
|
-
"sprite": "stone_01.png",
|
|
1222
|
-
"style": "",
|
|
1223
|
-
"thumbnailUrl": "",
|
|
1224
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
1225
|
-
},
|
|
1226
684
|
"x": 5.0,
|
|
1227
685
|
"y": 5.0
|
|
1228
686
|
}
|
|
@@ -1380,6 +838,22 @@
|
|
|
1380
838
|
"name": "attackTargets",
|
|
1381
839
|
"type": "array"
|
|
1382
840
|
},
|
|
841
|
+
{
|
|
842
|
+
"default": [],
|
|
843
|
+
"items": {
|
|
844
|
+
"type": "string"
|
|
845
|
+
},
|
|
846
|
+
"name": "movedIds",
|
|
847
|
+
"type": "array"
|
|
848
|
+
},
|
|
849
|
+
{
|
|
850
|
+
"default": [],
|
|
851
|
+
"items": {
|
|
852
|
+
"type": "string"
|
|
853
|
+
},
|
|
854
|
+
"name": "actedIds",
|
|
855
|
+
"type": "array"
|
|
856
|
+
},
|
|
1383
857
|
{
|
|
1384
858
|
"default": "observation",
|
|
1385
859
|
"name": "uiPhase",
|
|
@@ -1433,6 +907,10 @@
|
|
|
1433
907
|
{
|
|
1434
908
|
"ref": "Player",
|
|
1435
909
|
"refId": "trt_01KXZ4505QYVACS47MC455XRE5"
|
|
910
|
+
},
|
|
911
|
+
{
|
|
912
|
+
"ref": "AnimClock",
|
|
913
|
+
"refId": "trt_01KYR91ZDQZ60M6SMNEHZC0VY1"
|
|
1436
914
|
}
|
|
1437
915
|
]
|
|
1438
916
|
}
|
|
@@ -1462,21 +940,6 @@
|
|
|
1462
940
|
"id": "t-0-0",
|
|
1463
941
|
"passable": false,
|
|
1464
942
|
"terrain": "stone",
|
|
1465
|
-
"terrainSprite": {
|
|
1466
|
-
"animations": [
|
|
1467
|
-
"static"
|
|
1468
|
-
],
|
|
1469
|
-
"aspect": "1:1",
|
|
1470
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
1471
|
-
"category": "stone",
|
|
1472
|
-
"dimension": "2d",
|
|
1473
|
-
"name": "stone",
|
|
1474
|
-
"role": "tile",
|
|
1475
|
-
"sprite": "stone_01.png",
|
|
1476
|
-
"style": "",
|
|
1477
|
-
"thumbnailUrl": "",
|
|
1478
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
1479
|
-
},
|
|
1480
943
|
"x": 0.0,
|
|
1481
944
|
"y": 0.0
|
|
1482
945
|
},
|
|
@@ -1484,21 +947,6 @@
|
|
|
1484
947
|
"id": "t-1-0",
|
|
1485
948
|
"passable": false,
|
|
1486
949
|
"terrain": "stone",
|
|
1487
|
-
"terrainSprite": {
|
|
1488
|
-
"animations": [
|
|
1489
|
-
"static"
|
|
1490
|
-
],
|
|
1491
|
-
"aspect": "1:1",
|
|
1492
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
1493
|
-
"category": "stone",
|
|
1494
|
-
"dimension": "2d",
|
|
1495
|
-
"name": "stone",
|
|
1496
|
-
"role": "tile",
|
|
1497
|
-
"sprite": "stone_01.png",
|
|
1498
|
-
"style": "",
|
|
1499
|
-
"thumbnailUrl": "",
|
|
1500
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
1501
|
-
},
|
|
1502
950
|
"x": 1.0,
|
|
1503
951
|
"y": 0.0
|
|
1504
952
|
},
|
|
@@ -1506,21 +954,6 @@
|
|
|
1506
954
|
"id": "t-2-0",
|
|
1507
955
|
"passable": false,
|
|
1508
956
|
"terrain": "stone",
|
|
1509
|
-
"terrainSprite": {
|
|
1510
|
-
"animations": [
|
|
1511
|
-
"static"
|
|
1512
|
-
],
|
|
1513
|
-
"aspect": "1:1",
|
|
1514
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
1515
|
-
"category": "stone",
|
|
1516
|
-
"dimension": "2d",
|
|
1517
|
-
"name": "stone",
|
|
1518
|
-
"role": "tile",
|
|
1519
|
-
"sprite": "stone_01.png",
|
|
1520
|
-
"style": "",
|
|
1521
|
-
"thumbnailUrl": "",
|
|
1522
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
1523
|
-
},
|
|
1524
957
|
"x": 2.0,
|
|
1525
958
|
"y": 0.0
|
|
1526
959
|
},
|
|
@@ -1528,21 +961,6 @@
|
|
|
1528
961
|
"id": "t-3-0",
|
|
1529
962
|
"passable": false,
|
|
1530
963
|
"terrain": "stone",
|
|
1531
|
-
"terrainSprite": {
|
|
1532
|
-
"animations": [
|
|
1533
|
-
"static"
|
|
1534
|
-
],
|
|
1535
|
-
"aspect": "1:1",
|
|
1536
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
1537
|
-
"category": "stone",
|
|
1538
|
-
"dimension": "2d",
|
|
1539
|
-
"name": "stone",
|
|
1540
|
-
"role": "tile",
|
|
1541
|
-
"sprite": "stone_01.png",
|
|
1542
|
-
"style": "",
|
|
1543
|
-
"thumbnailUrl": "",
|
|
1544
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
1545
|
-
},
|
|
1546
964
|
"x": 3.0,
|
|
1547
965
|
"y": 0.0
|
|
1548
966
|
},
|
|
@@ -1550,21 +968,6 @@
|
|
|
1550
968
|
"id": "t-4-0",
|
|
1551
969
|
"passable": false,
|
|
1552
970
|
"terrain": "stone",
|
|
1553
|
-
"terrainSprite": {
|
|
1554
|
-
"animations": [
|
|
1555
|
-
"static"
|
|
1556
|
-
],
|
|
1557
|
-
"aspect": "1:1",
|
|
1558
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
1559
|
-
"category": "stone",
|
|
1560
|
-
"dimension": "2d",
|
|
1561
|
-
"name": "stone",
|
|
1562
|
-
"role": "tile",
|
|
1563
|
-
"sprite": "stone_01.png",
|
|
1564
|
-
"style": "",
|
|
1565
|
-
"thumbnailUrl": "",
|
|
1566
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
1567
|
-
},
|
|
1568
971
|
"x": 4.0,
|
|
1569
972
|
"y": 0.0
|
|
1570
973
|
},
|
|
@@ -1572,21 +975,6 @@
|
|
|
1572
975
|
"id": "t-5-0",
|
|
1573
976
|
"passable": false,
|
|
1574
977
|
"terrain": "stone",
|
|
1575
|
-
"terrainSprite": {
|
|
1576
|
-
"animations": [
|
|
1577
|
-
"static"
|
|
1578
|
-
],
|
|
1579
|
-
"aspect": "1:1",
|
|
1580
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
1581
|
-
"category": "stone",
|
|
1582
|
-
"dimension": "2d",
|
|
1583
|
-
"name": "stone",
|
|
1584
|
-
"role": "tile",
|
|
1585
|
-
"sprite": "stone_01.png",
|
|
1586
|
-
"style": "",
|
|
1587
|
-
"thumbnailUrl": "",
|
|
1588
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
1589
|
-
},
|
|
1590
978
|
"x": 5.0,
|
|
1591
979
|
"y": 0.0
|
|
1592
980
|
},
|
|
@@ -1594,21 +982,6 @@
|
|
|
1594
982
|
"id": "t-0-1",
|
|
1595
983
|
"passable": false,
|
|
1596
984
|
"terrain": "stone",
|
|
1597
|
-
"terrainSprite": {
|
|
1598
|
-
"animations": [
|
|
1599
|
-
"static"
|
|
1600
|
-
],
|
|
1601
|
-
"aspect": "1:1",
|
|
1602
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
1603
|
-
"category": "stone",
|
|
1604
|
-
"dimension": "2d",
|
|
1605
|
-
"name": "stone",
|
|
1606
|
-
"role": "tile",
|
|
1607
|
-
"sprite": "stone_01.png",
|
|
1608
|
-
"style": "",
|
|
1609
|
-
"thumbnailUrl": "",
|
|
1610
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
1611
|
-
},
|
|
1612
985
|
"x": 0.0,
|
|
1613
986
|
"y": 1.0
|
|
1614
987
|
},
|
|
@@ -1616,21 +989,6 @@
|
|
|
1616
989
|
"id": "t-1-1",
|
|
1617
990
|
"passable": true,
|
|
1618
991
|
"terrain": "grass",
|
|
1619
|
-
"terrainSprite": {
|
|
1620
|
-
"animations": [
|
|
1621
|
-
"static"
|
|
1622
|
-
],
|
|
1623
|
-
"aspect": "1:1",
|
|
1624
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
1625
|
-
"category": "grass",
|
|
1626
|
-
"dimension": "2d",
|
|
1627
|
-
"name": "grass",
|
|
1628
|
-
"role": "tile",
|
|
1629
|
-
"sprite": "grass_01.png",
|
|
1630
|
-
"style": "",
|
|
1631
|
-
"thumbnailUrl": "",
|
|
1632
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
1633
|
-
},
|
|
1634
992
|
"x": 1.0,
|
|
1635
993
|
"y": 1.0
|
|
1636
994
|
},
|
|
@@ -1638,21 +996,6 @@
|
|
|
1638
996
|
"id": "t-2-1",
|
|
1639
997
|
"passable": true,
|
|
1640
998
|
"terrain": "dirt",
|
|
1641
|
-
"terrainSprite": {
|
|
1642
|
-
"animations": [
|
|
1643
|
-
"static"
|
|
1644
|
-
],
|
|
1645
|
-
"aspect": "1:1",
|
|
1646
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
1647
|
-
"category": "dirt",
|
|
1648
|
-
"dimension": "2d",
|
|
1649
|
-
"name": "dirt",
|
|
1650
|
-
"role": "tile",
|
|
1651
|
-
"sprite": "dirt_01.png",
|
|
1652
|
-
"style": "",
|
|
1653
|
-
"thumbnailUrl": "",
|
|
1654
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
1655
|
-
},
|
|
1656
999
|
"x": 2.0,
|
|
1657
1000
|
"y": 1.0
|
|
1658
1001
|
},
|
|
@@ -1660,21 +1003,6 @@
|
|
|
1660
1003
|
"id": "t-3-1",
|
|
1661
1004
|
"passable": true,
|
|
1662
1005
|
"terrain": "grass",
|
|
1663
|
-
"terrainSprite": {
|
|
1664
|
-
"animations": [
|
|
1665
|
-
"static"
|
|
1666
|
-
],
|
|
1667
|
-
"aspect": "1:1",
|
|
1668
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
1669
|
-
"category": "grass",
|
|
1670
|
-
"dimension": "2d",
|
|
1671
|
-
"name": "grass",
|
|
1672
|
-
"role": "tile",
|
|
1673
|
-
"sprite": "grass_01.png",
|
|
1674
|
-
"style": "",
|
|
1675
|
-
"thumbnailUrl": "",
|
|
1676
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
1677
|
-
},
|
|
1678
1006
|
"x": 3.0,
|
|
1679
1007
|
"y": 1.0
|
|
1680
1008
|
},
|
|
@@ -1682,21 +1010,6 @@
|
|
|
1682
1010
|
"id": "t-4-1",
|
|
1683
1011
|
"passable": true,
|
|
1684
1012
|
"terrain": "grass",
|
|
1685
|
-
"terrainSprite": {
|
|
1686
|
-
"animations": [
|
|
1687
|
-
"static"
|
|
1688
|
-
],
|
|
1689
|
-
"aspect": "1:1",
|
|
1690
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
1691
|
-
"category": "grass",
|
|
1692
|
-
"dimension": "2d",
|
|
1693
|
-
"name": "grass",
|
|
1694
|
-
"role": "tile",
|
|
1695
|
-
"sprite": "grass_01.png",
|
|
1696
|
-
"style": "",
|
|
1697
|
-
"thumbnailUrl": "",
|
|
1698
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
1699
|
-
},
|
|
1700
1013
|
"x": 4.0,
|
|
1701
1014
|
"y": 1.0
|
|
1702
1015
|
},
|
|
@@ -1704,21 +1017,6 @@
|
|
|
1704
1017
|
"id": "t-5-1",
|
|
1705
1018
|
"passable": false,
|
|
1706
1019
|
"terrain": "stone",
|
|
1707
|
-
"terrainSprite": {
|
|
1708
|
-
"animations": [
|
|
1709
|
-
"static"
|
|
1710
|
-
],
|
|
1711
|
-
"aspect": "1:1",
|
|
1712
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
1713
|
-
"category": "stone",
|
|
1714
|
-
"dimension": "2d",
|
|
1715
|
-
"name": "stone",
|
|
1716
|
-
"role": "tile",
|
|
1717
|
-
"sprite": "stone_01.png",
|
|
1718
|
-
"style": "",
|
|
1719
|
-
"thumbnailUrl": "",
|
|
1720
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
1721
|
-
},
|
|
1722
1020
|
"x": 5.0,
|
|
1723
1021
|
"y": 1.0
|
|
1724
1022
|
},
|
|
@@ -1726,21 +1024,6 @@
|
|
|
1726
1024
|
"id": "t-0-2",
|
|
1727
1025
|
"passable": false,
|
|
1728
1026
|
"terrain": "stone",
|
|
1729
|
-
"terrainSprite": {
|
|
1730
|
-
"animations": [
|
|
1731
|
-
"static"
|
|
1732
|
-
],
|
|
1733
|
-
"aspect": "1:1",
|
|
1734
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
1735
|
-
"category": "stone",
|
|
1736
|
-
"dimension": "2d",
|
|
1737
|
-
"name": "stone",
|
|
1738
|
-
"role": "tile",
|
|
1739
|
-
"sprite": "stone_01.png",
|
|
1740
|
-
"style": "",
|
|
1741
|
-
"thumbnailUrl": "",
|
|
1742
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
1743
|
-
},
|
|
1744
1027
|
"x": 0.0,
|
|
1745
1028
|
"y": 2.0
|
|
1746
1029
|
},
|
|
@@ -1748,21 +1031,6 @@
|
|
|
1748
1031
|
"id": "t-1-2",
|
|
1749
1032
|
"passable": true,
|
|
1750
1033
|
"terrain": "grass",
|
|
1751
|
-
"terrainSprite": {
|
|
1752
|
-
"animations": [
|
|
1753
|
-
"static"
|
|
1754
|
-
],
|
|
1755
|
-
"aspect": "1:1",
|
|
1756
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
1757
|
-
"category": "grass",
|
|
1758
|
-
"dimension": "2d",
|
|
1759
|
-
"name": "grass",
|
|
1760
|
-
"role": "tile",
|
|
1761
|
-
"sprite": "grass_01.png",
|
|
1762
|
-
"style": "",
|
|
1763
|
-
"thumbnailUrl": "",
|
|
1764
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
1765
|
-
},
|
|
1766
1034
|
"x": 1.0,
|
|
1767
1035
|
"y": 2.0
|
|
1768
1036
|
},
|
|
@@ -1770,21 +1038,6 @@
|
|
|
1770
1038
|
"id": "t-2-2",
|
|
1771
1039
|
"passable": true,
|
|
1772
1040
|
"terrain": "grass",
|
|
1773
|
-
"terrainSprite": {
|
|
1774
|
-
"animations": [
|
|
1775
|
-
"static"
|
|
1776
|
-
],
|
|
1777
|
-
"aspect": "1:1",
|
|
1778
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
1779
|
-
"category": "grass",
|
|
1780
|
-
"dimension": "2d",
|
|
1781
|
-
"name": "grass",
|
|
1782
|
-
"role": "tile",
|
|
1783
|
-
"sprite": "grass_01.png",
|
|
1784
|
-
"style": "",
|
|
1785
|
-
"thumbnailUrl": "",
|
|
1786
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
1787
|
-
},
|
|
1788
1041
|
"x": 2.0,
|
|
1789
1042
|
"y": 2.0
|
|
1790
1043
|
},
|
|
@@ -1792,21 +1045,6 @@
|
|
|
1792
1045
|
"id": "t-3-2",
|
|
1793
1046
|
"passable": true,
|
|
1794
1047
|
"terrain": "dirt",
|
|
1795
|
-
"terrainSprite": {
|
|
1796
|
-
"animations": [
|
|
1797
|
-
"static"
|
|
1798
|
-
],
|
|
1799
|
-
"aspect": "1:1",
|
|
1800
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
1801
|
-
"category": "dirt",
|
|
1802
|
-
"dimension": "2d",
|
|
1803
|
-
"name": "dirt",
|
|
1804
|
-
"role": "tile",
|
|
1805
|
-
"sprite": "dirt_01.png",
|
|
1806
|
-
"style": "",
|
|
1807
|
-
"thumbnailUrl": "",
|
|
1808
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
1809
|
-
},
|
|
1810
1048
|
"x": 3.0,
|
|
1811
1049
|
"y": 2.0
|
|
1812
1050
|
},
|
|
@@ -1814,21 +1052,6 @@
|
|
|
1814
1052
|
"id": "t-4-2",
|
|
1815
1053
|
"passable": true,
|
|
1816
1054
|
"terrain": "sand",
|
|
1817
|
-
"terrainSprite": {
|
|
1818
|
-
"animations": [
|
|
1819
|
-
"static"
|
|
1820
|
-
],
|
|
1821
|
-
"aspect": "1:1",
|
|
1822
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
1823
|
-
"category": "sand",
|
|
1824
|
-
"dimension": "2d",
|
|
1825
|
-
"name": "sand",
|
|
1826
|
-
"role": "tile",
|
|
1827
|
-
"sprite": "sand_01.png",
|
|
1828
|
-
"style": "",
|
|
1829
|
-
"thumbnailUrl": "",
|
|
1830
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
1831
|
-
},
|
|
1832
1055
|
"x": 4.0,
|
|
1833
1056
|
"y": 2.0
|
|
1834
1057
|
},
|
|
@@ -1836,21 +1059,6 @@
|
|
|
1836
1059
|
"id": "t-5-2",
|
|
1837
1060
|
"passable": false,
|
|
1838
1061
|
"terrain": "stone",
|
|
1839
|
-
"terrainSprite": {
|
|
1840
|
-
"animations": [
|
|
1841
|
-
"static"
|
|
1842
|
-
],
|
|
1843
|
-
"aspect": "1:1",
|
|
1844
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
1845
|
-
"category": "stone",
|
|
1846
|
-
"dimension": "2d",
|
|
1847
|
-
"name": "stone",
|
|
1848
|
-
"role": "tile",
|
|
1849
|
-
"sprite": "stone_01.png",
|
|
1850
|
-
"style": "",
|
|
1851
|
-
"thumbnailUrl": "",
|
|
1852
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
1853
|
-
},
|
|
1854
1062
|
"x": 5.0,
|
|
1855
1063
|
"y": 2.0
|
|
1856
1064
|
},
|
|
@@ -1858,21 +1066,6 @@
|
|
|
1858
1066
|
"id": "t-0-3",
|
|
1859
1067
|
"passable": false,
|
|
1860
1068
|
"terrain": "stone",
|
|
1861
|
-
"terrainSprite": {
|
|
1862
|
-
"animations": [
|
|
1863
|
-
"static"
|
|
1864
|
-
],
|
|
1865
|
-
"aspect": "1:1",
|
|
1866
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
1867
|
-
"category": "stone",
|
|
1868
|
-
"dimension": "2d",
|
|
1869
|
-
"name": "stone",
|
|
1870
|
-
"role": "tile",
|
|
1871
|
-
"sprite": "stone_01.png",
|
|
1872
|
-
"style": "",
|
|
1873
|
-
"thumbnailUrl": "",
|
|
1874
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
1875
|
-
},
|
|
1876
1069
|
"x": 0.0,
|
|
1877
1070
|
"y": 3.0
|
|
1878
1071
|
},
|
|
@@ -1880,21 +1073,6 @@
|
|
|
1880
1073
|
"id": "t-1-3",
|
|
1881
1074
|
"passable": true,
|
|
1882
1075
|
"terrain": "dirt",
|
|
1883
|
-
"terrainSprite": {
|
|
1884
|
-
"animations": [
|
|
1885
|
-
"static"
|
|
1886
|
-
],
|
|
1887
|
-
"aspect": "1:1",
|
|
1888
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
1889
|
-
"category": "dirt",
|
|
1890
|
-
"dimension": "2d",
|
|
1891
|
-
"name": "dirt",
|
|
1892
|
-
"role": "tile",
|
|
1893
|
-
"sprite": "dirt_01.png",
|
|
1894
|
-
"style": "",
|
|
1895
|
-
"thumbnailUrl": "",
|
|
1896
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
1897
|
-
},
|
|
1898
1076
|
"x": 1.0,
|
|
1899
1077
|
"y": 3.0
|
|
1900
1078
|
},
|
|
@@ -1902,21 +1080,6 @@
|
|
|
1902
1080
|
"id": "t-2-3",
|
|
1903
1081
|
"passable": true,
|
|
1904
1082
|
"terrain": "grass",
|
|
1905
|
-
"terrainSprite": {
|
|
1906
|
-
"animations": [
|
|
1907
|
-
"static"
|
|
1908
|
-
],
|
|
1909
|
-
"aspect": "1:1",
|
|
1910
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
1911
|
-
"category": "grass",
|
|
1912
|
-
"dimension": "2d",
|
|
1913
|
-
"name": "grass",
|
|
1914
|
-
"role": "tile",
|
|
1915
|
-
"sprite": "grass_01.png",
|
|
1916
|
-
"style": "",
|
|
1917
|
-
"thumbnailUrl": "",
|
|
1918
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
1919
|
-
},
|
|
1920
1083
|
"x": 2.0,
|
|
1921
1084
|
"y": 3.0
|
|
1922
1085
|
},
|
|
@@ -1924,21 +1087,6 @@
|
|
|
1924
1087
|
"id": "t-3-3",
|
|
1925
1088
|
"passable": true,
|
|
1926
1089
|
"terrain": "grass",
|
|
1927
|
-
"terrainSprite": {
|
|
1928
|
-
"animations": [
|
|
1929
|
-
"static"
|
|
1930
|
-
],
|
|
1931
|
-
"aspect": "1:1",
|
|
1932
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
1933
|
-
"category": "grass",
|
|
1934
|
-
"dimension": "2d",
|
|
1935
|
-
"name": "grass",
|
|
1936
|
-
"role": "tile",
|
|
1937
|
-
"sprite": "grass_01.png",
|
|
1938
|
-
"style": "",
|
|
1939
|
-
"thumbnailUrl": "",
|
|
1940
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
1941
|
-
},
|
|
1942
1090
|
"x": 3.0,
|
|
1943
1091
|
"y": 3.0
|
|
1944
1092
|
},
|
|
@@ -1946,21 +1094,6 @@
|
|
|
1946
1094
|
"id": "t-4-3",
|
|
1947
1095
|
"passable": true,
|
|
1948
1096
|
"terrain": "sand",
|
|
1949
|
-
"terrainSprite": {
|
|
1950
|
-
"animations": [
|
|
1951
|
-
"static"
|
|
1952
|
-
],
|
|
1953
|
-
"aspect": "1:1",
|
|
1954
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
1955
|
-
"category": "sand",
|
|
1956
|
-
"dimension": "2d",
|
|
1957
|
-
"name": "sand",
|
|
1958
|
-
"role": "tile",
|
|
1959
|
-
"sprite": "sand_01.png",
|
|
1960
|
-
"style": "",
|
|
1961
|
-
"thumbnailUrl": "",
|
|
1962
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
1963
|
-
},
|
|
1964
1097
|
"x": 4.0,
|
|
1965
1098
|
"y": 3.0
|
|
1966
1099
|
},
|
|
@@ -1968,21 +1101,6 @@
|
|
|
1968
1101
|
"id": "t-5-3",
|
|
1969
1102
|
"passable": false,
|
|
1970
1103
|
"terrain": "stone",
|
|
1971
|
-
"terrainSprite": {
|
|
1972
|
-
"animations": [
|
|
1973
|
-
"static"
|
|
1974
|
-
],
|
|
1975
|
-
"aspect": "1:1",
|
|
1976
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
1977
|
-
"category": "stone",
|
|
1978
|
-
"dimension": "2d",
|
|
1979
|
-
"name": "stone",
|
|
1980
|
-
"role": "tile",
|
|
1981
|
-
"sprite": "stone_01.png",
|
|
1982
|
-
"style": "",
|
|
1983
|
-
"thumbnailUrl": "",
|
|
1984
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
1985
|
-
},
|
|
1986
1104
|
"x": 5.0,
|
|
1987
1105
|
"y": 3.0
|
|
1988
1106
|
},
|
|
@@ -1990,21 +1108,6 @@
|
|
|
1990
1108
|
"id": "t-0-4",
|
|
1991
1109
|
"passable": false,
|
|
1992
1110
|
"terrain": "stone",
|
|
1993
|
-
"terrainSprite": {
|
|
1994
|
-
"animations": [
|
|
1995
|
-
"static"
|
|
1996
|
-
],
|
|
1997
|
-
"aspect": "1:1",
|
|
1998
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
1999
|
-
"category": "stone",
|
|
2000
|
-
"dimension": "2d",
|
|
2001
|
-
"name": "stone",
|
|
2002
|
-
"role": "tile",
|
|
2003
|
-
"sprite": "stone_01.png",
|
|
2004
|
-
"style": "",
|
|
2005
|
-
"thumbnailUrl": "",
|
|
2006
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
2007
|
-
},
|
|
2008
1111
|
"x": 0.0,
|
|
2009
1112
|
"y": 4.0
|
|
2010
1113
|
},
|
|
@@ -2012,21 +1115,6 @@
|
|
|
2012
1115
|
"id": "t-1-4",
|
|
2013
1116
|
"passable": true,
|
|
2014
1117
|
"terrain": "grass",
|
|
2015
|
-
"terrainSprite": {
|
|
2016
|
-
"animations": [
|
|
2017
|
-
"static"
|
|
2018
|
-
],
|
|
2019
|
-
"aspect": "1:1",
|
|
2020
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
2021
|
-
"category": "grass",
|
|
2022
|
-
"dimension": "2d",
|
|
2023
|
-
"name": "grass",
|
|
2024
|
-
"role": "tile",
|
|
2025
|
-
"sprite": "grass_01.png",
|
|
2026
|
-
"style": "",
|
|
2027
|
-
"thumbnailUrl": "",
|
|
2028
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
2029
|
-
},
|
|
2030
1118
|
"x": 1.0,
|
|
2031
1119
|
"y": 4.0
|
|
2032
1120
|
},
|
|
@@ -2034,21 +1122,6 @@
|
|
|
2034
1122
|
"id": "t-2-4",
|
|
2035
1123
|
"passable": true,
|
|
2036
1124
|
"terrain": "grass",
|
|
2037
|
-
"terrainSprite": {
|
|
2038
|
-
"animations": [
|
|
2039
|
-
"static"
|
|
2040
|
-
],
|
|
2041
|
-
"aspect": "1:1",
|
|
2042
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
2043
|
-
"category": "grass",
|
|
2044
|
-
"dimension": "2d",
|
|
2045
|
-
"name": "grass",
|
|
2046
|
-
"role": "tile",
|
|
2047
|
-
"sprite": "grass_01.png",
|
|
2048
|
-
"style": "",
|
|
2049
|
-
"thumbnailUrl": "",
|
|
2050
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
2051
|
-
},
|
|
2052
1125
|
"x": 2.0,
|
|
2053
1126
|
"y": 4.0
|
|
2054
1127
|
},
|
|
@@ -2056,21 +1129,6 @@
|
|
|
2056
1129
|
"id": "t-3-4",
|
|
2057
1130
|
"passable": true,
|
|
2058
1131
|
"terrain": "sand",
|
|
2059
|
-
"terrainSprite": {
|
|
2060
|
-
"animations": [
|
|
2061
|
-
"static"
|
|
2062
|
-
],
|
|
2063
|
-
"aspect": "1:1",
|
|
2064
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
2065
|
-
"category": "sand",
|
|
2066
|
-
"dimension": "2d",
|
|
2067
|
-
"name": "sand",
|
|
2068
|
-
"role": "tile",
|
|
2069
|
-
"sprite": "sand_01.png",
|
|
2070
|
-
"style": "",
|
|
2071
|
-
"thumbnailUrl": "",
|
|
2072
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
2073
|
-
},
|
|
2074
1132
|
"x": 3.0,
|
|
2075
1133
|
"y": 4.0
|
|
2076
1134
|
},
|
|
@@ -2078,21 +1136,6 @@
|
|
|
2078
1136
|
"id": "t-4-4",
|
|
2079
1137
|
"passable": true,
|
|
2080
1138
|
"terrain": "sand",
|
|
2081
|
-
"terrainSprite": {
|
|
2082
|
-
"animations": [
|
|
2083
|
-
"static"
|
|
2084
|
-
],
|
|
2085
|
-
"aspect": "1:1",
|
|
2086
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
2087
|
-
"category": "sand",
|
|
2088
|
-
"dimension": "2d",
|
|
2089
|
-
"name": "sand",
|
|
2090
|
-
"role": "tile",
|
|
2091
|
-
"sprite": "sand_01.png",
|
|
2092
|
-
"style": "",
|
|
2093
|
-
"thumbnailUrl": "",
|
|
2094
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
2095
|
-
},
|
|
2096
1139
|
"x": 4.0,
|
|
2097
1140
|
"y": 4.0
|
|
2098
1141
|
},
|
|
@@ -2100,21 +1143,6 @@
|
|
|
2100
1143
|
"id": "t-5-4",
|
|
2101
1144
|
"passable": false,
|
|
2102
1145
|
"terrain": "stone",
|
|
2103
|
-
"terrainSprite": {
|
|
2104
|
-
"animations": [
|
|
2105
|
-
"static"
|
|
2106
|
-
],
|
|
2107
|
-
"aspect": "1:1",
|
|
2108
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
2109
|
-
"category": "stone",
|
|
2110
|
-
"dimension": "2d",
|
|
2111
|
-
"name": "stone",
|
|
2112
|
-
"role": "tile",
|
|
2113
|
-
"sprite": "stone_01.png",
|
|
2114
|
-
"style": "",
|
|
2115
|
-
"thumbnailUrl": "",
|
|
2116
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
2117
|
-
},
|
|
2118
1146
|
"x": 5.0,
|
|
2119
1147
|
"y": 4.0
|
|
2120
1148
|
},
|
|
@@ -2122,21 +1150,6 @@
|
|
|
2122
1150
|
"id": "t-0-5",
|
|
2123
1151
|
"passable": false,
|
|
2124
1152
|
"terrain": "stone",
|
|
2125
|
-
"terrainSprite": {
|
|
2126
|
-
"animations": [
|
|
2127
|
-
"static"
|
|
2128
|
-
],
|
|
2129
|
-
"aspect": "1:1",
|
|
2130
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
2131
|
-
"category": "stone",
|
|
2132
|
-
"dimension": "2d",
|
|
2133
|
-
"name": "stone",
|
|
2134
|
-
"role": "tile",
|
|
2135
|
-
"sprite": "stone_01.png",
|
|
2136
|
-
"style": "",
|
|
2137
|
-
"thumbnailUrl": "",
|
|
2138
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
2139
|
-
},
|
|
2140
1153
|
"x": 0.0,
|
|
2141
1154
|
"y": 5.0
|
|
2142
1155
|
},
|
|
@@ -2144,21 +1157,6 @@
|
|
|
2144
1157
|
"id": "t-1-5",
|
|
2145
1158
|
"passable": false,
|
|
2146
1159
|
"terrain": "stone",
|
|
2147
|
-
"terrainSprite": {
|
|
2148
|
-
"animations": [
|
|
2149
|
-
"static"
|
|
2150
|
-
],
|
|
2151
|
-
"aspect": "1:1",
|
|
2152
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
2153
|
-
"category": "stone",
|
|
2154
|
-
"dimension": "2d",
|
|
2155
|
-
"name": "stone",
|
|
2156
|
-
"role": "tile",
|
|
2157
|
-
"sprite": "stone_01.png",
|
|
2158
|
-
"style": "",
|
|
2159
|
-
"thumbnailUrl": "",
|
|
2160
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
2161
|
-
},
|
|
2162
1160
|
"x": 1.0,
|
|
2163
1161
|
"y": 5.0
|
|
2164
1162
|
},
|
|
@@ -2166,21 +1164,6 @@
|
|
|
2166
1164
|
"id": "t-2-5",
|
|
2167
1165
|
"passable": false,
|
|
2168
1166
|
"terrain": "stone",
|
|
2169
|
-
"terrainSprite": {
|
|
2170
|
-
"animations": [
|
|
2171
|
-
"static"
|
|
2172
|
-
],
|
|
2173
|
-
"aspect": "1:1",
|
|
2174
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
2175
|
-
"category": "stone",
|
|
2176
|
-
"dimension": "2d",
|
|
2177
|
-
"name": "stone",
|
|
2178
|
-
"role": "tile",
|
|
2179
|
-
"sprite": "stone_01.png",
|
|
2180
|
-
"style": "",
|
|
2181
|
-
"thumbnailUrl": "",
|
|
2182
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
2183
|
-
},
|
|
2184
1167
|
"x": 2.0,
|
|
2185
1168
|
"y": 5.0
|
|
2186
1169
|
},
|
|
@@ -2188,21 +1171,6 @@
|
|
|
2188
1171
|
"id": "t-3-5",
|
|
2189
1172
|
"passable": false,
|
|
2190
1173
|
"terrain": "stone",
|
|
2191
|
-
"terrainSprite": {
|
|
2192
|
-
"animations": [
|
|
2193
|
-
"static"
|
|
2194
|
-
],
|
|
2195
|
-
"aspect": "1:1",
|
|
2196
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
2197
|
-
"category": "stone",
|
|
2198
|
-
"dimension": "2d",
|
|
2199
|
-
"name": "stone",
|
|
2200
|
-
"role": "tile",
|
|
2201
|
-
"sprite": "stone_01.png",
|
|
2202
|
-
"style": "",
|
|
2203
|
-
"thumbnailUrl": "",
|
|
2204
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
2205
|
-
},
|
|
2206
1174
|
"x": 3.0,
|
|
2207
1175
|
"y": 5.0
|
|
2208
1176
|
},
|
|
@@ -2210,21 +1178,6 @@
|
|
|
2210
1178
|
"id": "t-4-5",
|
|
2211
1179
|
"passable": false,
|
|
2212
1180
|
"terrain": "stone",
|
|
2213
|
-
"terrainSprite": {
|
|
2214
|
-
"animations": [
|
|
2215
|
-
"static"
|
|
2216
|
-
],
|
|
2217
|
-
"aspect": "1:1",
|
|
2218
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
2219
|
-
"category": "stone",
|
|
2220
|
-
"dimension": "2d",
|
|
2221
|
-
"name": "stone",
|
|
2222
|
-
"role": "tile",
|
|
2223
|
-
"sprite": "stone_01.png",
|
|
2224
|
-
"style": "",
|
|
2225
|
-
"thumbnailUrl": "",
|
|
2226
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
2227
|
-
},
|
|
2228
1181
|
"x": 4.0,
|
|
2229
1182
|
"y": 5.0
|
|
2230
1183
|
},
|
|
@@ -2232,21 +1185,6 @@
|
|
|
2232
1185
|
"id": "t-5-5",
|
|
2233
1186
|
"passable": false,
|
|
2234
1187
|
"terrain": "stone",
|
|
2235
|
-
"terrainSprite": {
|
|
2236
|
-
"animations": [
|
|
2237
|
-
"static"
|
|
2238
|
-
],
|
|
2239
|
-
"aspect": "1:1",
|
|
2240
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
2241
|
-
"category": "stone",
|
|
2242
|
-
"dimension": "2d",
|
|
2243
|
-
"name": "stone",
|
|
2244
|
-
"role": "tile",
|
|
2245
|
-
"sprite": "stone_01.png",
|
|
2246
|
-
"style": "",
|
|
2247
|
-
"thumbnailUrl": "",
|
|
2248
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.png"
|
|
2249
|
-
},
|
|
2250
1188
|
"x": 5.0,
|
|
2251
1189
|
"y": 5.0
|
|
2252
1190
|
}
|
|
@@ -2268,15 +1206,13 @@
|
|
|
2268
1206
|
"death"
|
|
2269
1207
|
],
|
|
2270
1208
|
"aspect": "1:1",
|
|
2271
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-base-pack/units/aliens.json",
|
|
2272
1209
|
"category": "worker",
|
|
2273
1210
|
"dimension": "2d",
|
|
2274
1211
|
"name": "worker",
|
|
2275
1212
|
"role": "npc",
|
|
2276
|
-
"sprite": "alienBeige.png",
|
|
2277
1213
|
"style": "",
|
|
2278
1214
|
"thumbnailUrl": "",
|
|
2279
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/
|
|
1215
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/svg/hex/units/worker.svg"
|
|
2280
1216
|
},
|
|
2281
1217
|
"name": "Miner",
|
|
2282
1218
|
"position": {
|
|
@@ -2292,7 +1228,7 @@
|
|
|
2292
1228
|
{
|
|
2293
1229
|
"health": 8.0,
|
|
2294
1230
|
"id": "u2",
|
|
2295
|
-
"maxHealth":
|
|
1231
|
+
"maxHealth": 8.0,
|
|
2296
1232
|
"modelUrl": {
|
|
2297
1233
|
"animations": [
|
|
2298
1234
|
"idle",
|
|
@@ -2302,15 +1238,13 @@
|
|
|
2302
1238
|
"death"
|
|
2303
1239
|
],
|
|
2304
1240
|
"aspect": "1:1",
|
|
2305
|
-
"
|
|
2306
|
-
"category": "ranger",
|
|
1241
|
+
"category": "archer",
|
|
2307
1242
|
"dimension": "2d",
|
|
2308
|
-
"name": "
|
|
1243
|
+
"name": "archer",
|
|
2309
1244
|
"role": "npc",
|
|
2310
|
-
"sprite": "alienGreen.png",
|
|
2311
1245
|
"style": "",
|
|
2312
1246
|
"thumbnailUrl": "",
|
|
2313
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/
|
|
1247
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/svg/hex/units/archer.svg"
|
|
2314
1248
|
},
|
|
2315
1249
|
"name": "Thornbow",
|
|
2316
1250
|
"position": {
|
|
@@ -2318,7 +1252,7 @@
|
|
|
2318
1252
|
"y": 3.0
|
|
2319
1253
|
},
|
|
2320
1254
|
"team": "player",
|
|
2321
|
-
"unitType": "
|
|
1255
|
+
"unitType": "archer",
|
|
2322
1256
|
"x": 2.0,
|
|
2323
1257
|
"y": 3.0,
|
|
2324
1258
|
"z": 0.0
|
|
@@ -2336,15 +1270,13 @@
|
|
|
2336
1270
|
"death"
|
|
2337
1271
|
],
|
|
2338
1272
|
"aspect": "1:1",
|
|
2339
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-base-pack/units/aliens.json",
|
|
2340
1273
|
"category": "guardian",
|
|
2341
1274
|
"dimension": "2d",
|
|
2342
1275
|
"name": "guardian",
|
|
2343
1276
|
"role": "npc",
|
|
2344
|
-
"sprite": "alienYellow.png",
|
|
2345
1277
|
"style": "",
|
|
2346
1278
|
"thumbnailUrl": "",
|
|
2347
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/
|
|
1279
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/svg/hex/units/guardian.svg"
|
|
2348
1280
|
},
|
|
2349
1281
|
"name": "Ironwall",
|
|
2350
1282
|
"position": {
|
|
@@ -2370,15 +1302,13 @@
|
|
|
2370
1302
|
"death"
|
|
2371
1303
|
],
|
|
2372
1304
|
"aspect": "1:1",
|
|
2373
|
-
"
|
|
2374
|
-
"category": "ranger",
|
|
1305
|
+
"category": "archer",
|
|
2375
1306
|
"dimension": "2d",
|
|
2376
|
-
"name": "
|
|
1307
|
+
"name": "archer",
|
|
2377
1308
|
"role": "npc",
|
|
2378
|
-
"sprite": "alienGreen.png",
|
|
2379
1309
|
"style": "",
|
|
2380
1310
|
"thumbnailUrl": "",
|
|
2381
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/
|
|
1311
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/svg/hex/units/archer.svg"
|
|
2382
1312
|
},
|
|
2383
1313
|
"name": "Foe",
|
|
2384
1314
|
"position": {
|
|
@@ -2386,7 +1316,7 @@
|
|
|
2386
1316
|
"y": 1.0
|
|
2387
1317
|
},
|
|
2388
1318
|
"team": "enemy",
|
|
2389
|
-
"unitType": "
|
|
1319
|
+
"unitType": "archer",
|
|
2390
1320
|
"x": 4.0,
|
|
2391
1321
|
"y": 1.0,
|
|
2392
1322
|
"z": 0.0
|
|
@@ -2404,15 +1334,13 @@
|
|
|
2404
1334
|
"death"
|
|
2405
1335
|
],
|
|
2406
1336
|
"aspect": "1:1",
|
|
2407
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-base-pack/units/aliens.json",
|
|
2408
1337
|
"category": "guardian",
|
|
2409
1338
|
"dimension": "2d",
|
|
2410
1339
|
"name": "guardian",
|
|
2411
1340
|
"role": "npc",
|
|
2412
|
-
"sprite": "alienYellow.png",
|
|
2413
1341
|
"style": "",
|
|
2414
1342
|
"thumbnailUrl": "",
|
|
2415
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/
|
|
1343
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/svg/hex/units/guardian.svg"
|
|
2416
1344
|
},
|
|
2417
1345
|
"name": "Foe",
|
|
2418
1346
|
"position": {
|
|
@@ -2433,8 +1361,7 @@
|
|
|
2433
1361
|
"linkedEntity": "GameState",
|
|
2434
1362
|
"linkedEntityId": "ent_01KXG04XSJ1XMQ94BEZ52NPGMT",
|
|
2435
1363
|
"name": "Authority",
|
|
2436
|
-
"ref": "Frame.traits.TacticsAuthority"
|
|
2437
|
-
"refId": "trt_01KXZ44ZP0KNSR8SQTTEY7T0Q9"
|
|
1364
|
+
"ref": "Frame.traits.TacticsAuthority"
|
|
2438
1365
|
},
|
|
2439
1366
|
{
|
|
2440
1367
|
"config": {
|
|
@@ -2447,8 +1374,7 @@
|
|
|
2447
1374
|
"linkedEntity": "GameState",
|
|
2448
1375
|
"linkedEntityId": "ent_01KXG04XSJ1XMQ94BEZ52NPGMT",
|
|
2449
1376
|
"name": "FxDecay",
|
|
2450
|
-
"ref": "Frame.traits.FxDecay"
|
|
2451
|
-
"refId": "trt_01KXZ44ZP0CG60KCBCDDVTRS9Y"
|
|
1377
|
+
"ref": "Frame.traits.FxDecay"
|
|
2452
1378
|
},
|
|
2453
1379
|
{
|
|
2454
1380
|
"config": {
|
|
@@ -2461,8 +1387,7 @@
|
|
|
2461
1387
|
"linkedEntity": "GameState",
|
|
2462
1388
|
"linkedEntityId": "ent_01KXG04XSJ1XMQ94BEZ52NPGMT",
|
|
2463
1389
|
"name": "RoundLogic",
|
|
2464
|
-
"ref": "Frame.traits.RoundLogic"
|
|
2465
|
-
"refId": "trt_01KXZ44ZP0YXMQ6CPPZ21VRCS9"
|
|
1390
|
+
"ref": "Frame.traits.RoundLogic"
|
|
2466
1391
|
},
|
|
2467
1392
|
{
|
|
2468
1393
|
"config": {
|
|
@@ -2487,8 +1412,20 @@
|
|
|
2487
1412
|
"linkedEntity": "GameState",
|
|
2488
1413
|
"linkedEntityId": "ent_01KXG04XSJ1XMQ94BEZ52NPGMT",
|
|
2489
1414
|
"name": "ScoreKeeper",
|
|
2490
|
-
"ref": "Score.traits.ScoreKeeper"
|
|
2491
|
-
|
|
1415
|
+
"ref": "Score.traits.ScoreKeeper"
|
|
1416
|
+
},
|
|
1417
|
+
{
|
|
1418
|
+
"config": {
|
|
1419
|
+
"frames": {
|
|
1420
|
+
"default": [],
|
|
1421
|
+
"type": "unknown"
|
|
1422
|
+
}
|
|
1423
|
+
},
|
|
1424
|
+
"id": "trt_01KYR91ZDQZ60M6SMNEHZC0VY1",
|
|
1425
|
+
"linkedEntity": "GameState",
|
|
1426
|
+
"linkedEntityId": "ent_01KXG04XSJ1XMQ94BEZ52NPGMT",
|
|
1427
|
+
"name": "AnimClock",
|
|
1428
|
+
"ref": "Frame.traits.AnimClock"
|
|
2492
1429
|
},
|
|
2493
1430
|
{
|
|
2494
1431
|
"config": {
|
|
@@ -2499,16 +1436,14 @@
|
|
|
2499
1436
|
"animations": [
|
|
2500
1437
|
"static"
|
|
2501
1438
|
],
|
|
2502
|
-
"aspect": "
|
|
2503
|
-
"
|
|
2504
|
-
"category": "slash",
|
|
1439
|
+
"aspect": "1:1",
|
|
1440
|
+
"category": "hit",
|
|
2505
1441
|
"dimension": "2d",
|
|
2506
|
-
"name": "
|
|
1442
|
+
"name": "hit",
|
|
2507
1443
|
"role": "effect",
|
|
2508
|
-
"sprite": "icon_burst",
|
|
2509
1444
|
"style": "",
|
|
2510
1445
|
"thumbnailUrl": "",
|
|
2511
|
-
"url": "https://almadar-kflow-assets.web.app/shared/
|
|
1446
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/svg/hex/effects/hit.svg"
|
|
2512
1447
|
}
|
|
2513
1448
|
},
|
|
2514
1449
|
"features": {
|
|
@@ -2517,30 +1452,26 @@
|
|
|
2517
1452
|
"static"
|
|
2518
1453
|
],
|
|
2519
1454
|
"aspect": "1:1",
|
|
2520
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/features/hexagonObjects_sheet.json",
|
|
2521
1455
|
"category": "outpost",
|
|
2522
1456
|
"dimension": "2d",
|
|
2523
1457
|
"name": "outpost",
|
|
2524
1458
|
"role": "decoration",
|
|
2525
|
-
"sprite": "tower.png",
|
|
2526
1459
|
"style": "",
|
|
2527
1460
|
"thumbnailUrl": "",
|
|
2528
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/
|
|
1461
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/svg/hex/features/outpost.svg"
|
|
2529
1462
|
},
|
|
2530
1463
|
"resource": {
|
|
2531
1464
|
"animations": [
|
|
2532
1465
|
"static"
|
|
2533
1466
|
],
|
|
2534
1467
|
"aspect": "1:1",
|
|
2535
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/features/hexagonObjects_sheet.json",
|
|
2536
1468
|
"category": "resource",
|
|
2537
1469
|
"dimension": "2d",
|
|
2538
1470
|
"name": "resource",
|
|
2539
1471
|
"role": "decoration",
|
|
2540
|
-
"sprite": "crystals1.png",
|
|
2541
1472
|
"style": "",
|
|
2542
1473
|
"thumbnailUrl": "",
|
|
2543
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/
|
|
1474
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/svg/hex/features/resource.svg"
|
|
2544
1475
|
}
|
|
2545
1476
|
},
|
|
2546
1477
|
"terrains": {
|
|
@@ -2549,64 +1480,56 @@
|
|
|
2549
1480
|
"static"
|
|
2550
1481
|
],
|
|
2551
1482
|
"aspect": "1:1",
|
|
2552
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
2553
1483
|
"category": "dirt",
|
|
2554
1484
|
"dimension": "2d",
|
|
2555
1485
|
"name": "dirt",
|
|
2556
1486
|
"role": "tile",
|
|
2557
|
-
"sprite": "dirt_01.png",
|
|
2558
1487
|
"style": "",
|
|
2559
1488
|
"thumbnailUrl": "",
|
|
2560
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/
|
|
1489
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/svg/hex/terrain/dirt.svg"
|
|
2561
1490
|
},
|
|
2562
1491
|
"grass": {
|
|
2563
1492
|
"animations": [
|
|
2564
1493
|
"static"
|
|
2565
1494
|
],
|
|
2566
1495
|
"aspect": "1:1",
|
|
2567
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
2568
1496
|
"category": "grass",
|
|
2569
1497
|
"dimension": "2d",
|
|
2570
1498
|
"name": "grass",
|
|
2571
1499
|
"role": "tile",
|
|
2572
|
-
"sprite": "grass_01.png",
|
|
2573
1500
|
"style": "",
|
|
2574
1501
|
"thumbnailUrl": "",
|
|
2575
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/
|
|
1502
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/svg/hex/terrain/grass.svg"
|
|
2576
1503
|
},
|
|
2577
1504
|
"sand": {
|
|
2578
1505
|
"animations": [
|
|
2579
1506
|
"static"
|
|
2580
1507
|
],
|
|
2581
1508
|
"aspect": "1:1",
|
|
2582
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
2583
1509
|
"category": "sand",
|
|
2584
1510
|
"dimension": "2d",
|
|
2585
1511
|
"name": "sand",
|
|
2586
1512
|
"role": "tile",
|
|
2587
|
-
"sprite": "sand_01.png",
|
|
2588
1513
|
"style": "",
|
|
2589
1514
|
"thumbnailUrl": "",
|
|
2590
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/
|
|
1515
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/svg/hex/terrain/sand.svg"
|
|
2591
1516
|
},
|
|
2592
1517
|
"stone": {
|
|
2593
1518
|
"animations": [
|
|
2594
1519
|
"static"
|
|
2595
1520
|
],
|
|
2596
1521
|
"aspect": "1:1",
|
|
2597
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/terrain/hexagonTerrain_sheet.json",
|
|
2598
1522
|
"category": "stone",
|
|
2599
1523
|
"dimension": "2d",
|
|
2600
1524
|
"name": "stone",
|
|
2601
1525
|
"role": "tile",
|
|
2602
|
-
"sprite": "stone_01.png",
|
|
2603
1526
|
"style": "",
|
|
2604
1527
|
"thumbnailUrl": "",
|
|
2605
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/
|
|
1528
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/svg/hex/terrain/stone.svg"
|
|
2606
1529
|
}
|
|
2607
1530
|
},
|
|
2608
1531
|
"units": {
|
|
2609
|
-
"
|
|
1532
|
+
"archer": {
|
|
2610
1533
|
"animations": [
|
|
2611
1534
|
"idle",
|
|
2612
1535
|
"walk",
|
|
@@ -2615,17 +1538,15 @@
|
|
|
2615
1538
|
"death"
|
|
2616
1539
|
],
|
|
2617
1540
|
"aspect": "1:1",
|
|
2618
|
-
"
|
|
2619
|
-
"category": "guardian",
|
|
1541
|
+
"category": "archer",
|
|
2620
1542
|
"dimension": "2d",
|
|
2621
|
-
"name": "
|
|
1543
|
+
"name": "archer",
|
|
2622
1544
|
"role": "npc",
|
|
2623
|
-
"sprite": "alienYellow.png",
|
|
2624
1545
|
"style": "",
|
|
2625
1546
|
"thumbnailUrl": "",
|
|
2626
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/
|
|
1547
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/svg/hex/units/archer.svg"
|
|
2627
1548
|
},
|
|
2628
|
-
"
|
|
1549
|
+
"guardian": {
|
|
2629
1550
|
"animations": [
|
|
2630
1551
|
"idle",
|
|
2631
1552
|
"walk",
|
|
@@ -2634,15 +1555,13 @@
|
|
|
2634
1555
|
"death"
|
|
2635
1556
|
],
|
|
2636
1557
|
"aspect": "1:1",
|
|
2637
|
-
"
|
|
2638
|
-
"category": "ranger",
|
|
1558
|
+
"category": "guardian",
|
|
2639
1559
|
"dimension": "2d",
|
|
2640
|
-
"name": "
|
|
1560
|
+
"name": "guardian",
|
|
2641
1561
|
"role": "npc",
|
|
2642
|
-
"sprite": "alienGreen.png",
|
|
2643
1562
|
"style": "",
|
|
2644
1563
|
"thumbnailUrl": "",
|
|
2645
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/
|
|
1564
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/svg/hex/units/guardian.svg"
|
|
2646
1565
|
},
|
|
2647
1566
|
"worker": {
|
|
2648
1567
|
"animations": [
|
|
@@ -2653,15 +1572,13 @@
|
|
|
2653
1572
|
"death"
|
|
2654
1573
|
],
|
|
2655
1574
|
"aspect": "1:1",
|
|
2656
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-base-pack/units/aliens.json",
|
|
2657
1575
|
"category": "worker",
|
|
2658
1576
|
"dimension": "2d",
|
|
2659
1577
|
"name": "worker",
|
|
2660
1578
|
"role": "npc",
|
|
2661
|
-
"sprite": "alienBeige.png",
|
|
2662
1579
|
"style": "",
|
|
2663
1580
|
"thumbnailUrl": "",
|
|
2664
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/
|
|
1581
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/svg/hex/units/worker.svg"
|
|
2665
1582
|
}
|
|
2666
1583
|
}
|
|
2667
1584
|
},
|
|
@@ -2671,15 +1588,13 @@
|
|
|
2671
1588
|
"default": {
|
|
2672
1589
|
"animations": [],
|
|
2673
1590
|
"aspect": "1:1",
|
|
2674
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-ui-pack/ui/greySheet.json",
|
|
2675
1591
|
"category": "ui",
|
|
2676
1592
|
"dimension": "2d",
|
|
2677
1593
|
"name": "panel-frame",
|
|
2678
1594
|
"role": "ui",
|
|
2679
|
-
"sprite": "grey_panel.png",
|
|
2680
1595
|
"style": "fantasy-border",
|
|
2681
1596
|
"thumbnailUrl": "",
|
|
2682
|
-
"url": "https://almadar-kflow-assets.web.app/shared/
|
|
1597
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/svg/hex/ui/panel-frame.svg"
|
|
2683
1598
|
},
|
|
2684
1599
|
"type": "unknown"
|
|
2685
1600
|
},
|
|
@@ -2691,19 +1606,17 @@
|
|
|
2691
1606
|
"static"
|
|
2692
1607
|
],
|
|
2693
1608
|
"aspect": "1:1",
|
|
2694
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/features/hexagonObjects_sheet.json",
|
|
2695
1609
|
"category": "resource",
|
|
2696
1610
|
"dimension": "2d",
|
|
2697
1611
|
"name": "resource",
|
|
2698
1612
|
"role": "decoration",
|
|
2699
|
-
"sprite": "crystals1.png",
|
|
2700
1613
|
"style": "",
|
|
2701
1614
|
"thumbnailUrl": "",
|
|
2702
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/
|
|
1615
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/svg/hex/features/resource.svg"
|
|
2703
1616
|
},
|
|
2704
1617
|
"id": "f1",
|
|
2705
1618
|
"type": "resource",
|
|
2706
|
-
"x":
|
|
1619
|
+
"x": 1.0,
|
|
2707
1620
|
"y": 1.0,
|
|
2708
1621
|
"z": 0.0
|
|
2709
1622
|
},
|
|
@@ -2713,15 +1626,13 @@
|
|
|
2713
1626
|
"static"
|
|
2714
1627
|
],
|
|
2715
1628
|
"aspect": "1:1",
|
|
2716
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/kenney-hexagon-pack/features/hexagonObjects_sheet.json",
|
|
2717
1629
|
"category": "outpost",
|
|
2718
1630
|
"dimension": "2d",
|
|
2719
1631
|
"name": "outpost",
|
|
2720
1632
|
"role": "decoration",
|
|
2721
|
-
"sprite": "tower.png",
|
|
2722
1633
|
"style": "",
|
|
2723
1634
|
"thumbnailUrl": "",
|
|
2724
|
-
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/
|
|
1635
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/svg/hex/features/outpost.svg"
|
|
2725
1636
|
},
|
|
2726
1637
|
"id": "f2",
|
|
2727
1638
|
"type": "outpost",
|
|
@@ -2744,15 +1655,13 @@
|
|
|
2744
1655
|
"default": {
|
|
2745
1656
|
"animations": [],
|
|
2746
1657
|
"aspect": "1:1",
|
|
2747
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-ui-pack/ui/greySheet.json",
|
|
2748
1658
|
"category": "ui",
|
|
2749
1659
|
"dimension": "2d",
|
|
2750
1660
|
"name": "panel-frame",
|
|
2751
1661
|
"role": "ui",
|
|
2752
|
-
"sprite": "grey_panel.png",
|
|
2753
1662
|
"style": "fantasy-border",
|
|
2754
1663
|
"thumbnailUrl": "",
|
|
2755
|
-
"url": "https://almadar-kflow-assets.web.app/shared/
|
|
1664
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/svg/hex/ui/panel-frame.svg"
|
|
2756
1665
|
},
|
|
2757
1666
|
"type": "unknown"
|
|
2758
1667
|
},
|
|
@@ -2777,8 +1686,7 @@
|
|
|
2777
1686
|
"linkedEntity": "GameState",
|
|
2778
1687
|
"linkedEntityId": "ent_01KXG04XSJ1XMQ94BEZ52NPGMT",
|
|
2779
1688
|
"name": "Player",
|
|
2780
|
-
"ref": "Frame.traits.PlayerIntent"
|
|
2781
|
-
"refId": "trt_01KXG04VM7WQJEH8FBPFFPNHJV"
|
|
1689
|
+
"ref": "Frame.traits.PlayerIntent"
|
|
2782
1690
|
}
|
|
2783
1691
|
],
|
|
2784
1692
|
"uses": [
|