@almadar/std 16.154.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-tactics-board-2d.lolo +35 -21
- package/behaviors/lolo/ui/game/molecules/ui-canvas.lolo +5 -0
- package/behaviors/lolo/ui/game/organisms/ui-battle-board.lolo +122 -74
- package/behaviors/lolo/ui/game/organisms/ui-hex-strategy-board.lolo +153 -9
- package/behaviors/lolo/ui/game/organisms/ui-tactics-demo-2d.lolo +130 -8
- package/behaviors/lolo/ui/game/organisms/ui-tanks-board.lolo +147 -7
- package/behaviors/lolo/ui/game/organisms/ui-topdown-rts-board.lolo +291 -19
- package/behaviors/registry/factory-signatures.json +1893 -2294
- package/behaviors/registry/ui/game/molecules/std-tactics-board-2d.orb +798 -189
- package/behaviors/registry/ui/game/molecules/ui-canvas.orb +7 -0
- package/behaviors/registry/ui/game/organisms/ui-battle-board.orb +17 -1
- package/behaviors/registry/ui/game/organisms/ui-hex-strategy-board.orb +68 -1180
- package/behaviors/registry/ui/game/organisms/ui-tactics-demo-2d.orb +192 -322
- package/behaviors/registry/ui/game/organisms/ui-tanks-board.orb +97 -85
- package/behaviors/registry/ui/game/organisms/ui-topdown-rts-board.orb +1477 -259
- package/dist/behaviors/behaviors-embeddings.json +244 -236
- package/dist/behaviors/behaviors-registry.json +143 -772
- 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-tactics-board-2d.orb +798 -189
- package/dist/behaviors/registry/ui/game/molecules/ui-canvas.orb +7 -0
- package/dist/behaviors/registry/ui/game/organisms/ui-battle-board.orb +17 -1
- package/dist/behaviors/registry/ui/game/organisms/ui-hex-strategy-board.orb +68 -1180
- package/dist/behaviors/registry/ui/game/organisms/ui-tactics-demo-2d.orb +192 -322
- package/dist/behaviors/registry/ui/game/organisms/ui-tanks-board.orb +97 -85
- package/dist/behaviors/registry/ui/game/organisms/ui-topdown-rts-board.orb +1477 -259
- package/dist/behaviors-embeddings.json +244 -236
- package/dist/behaviors-registry.json +143 -772
- 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": "
|
|
2
|
+
"description": "Micro grid-tactics demo: thin organism composing the std-tactics-board-2d frame + std-score. Two soldiers vs one raider on a 3x3 flat grid — the minimal reference consumer of the tactics frame. Flat hand-authored svg theme supplied via config.",
|
|
3
3
|
"ledger": {
|
|
4
4
|
"entries": {
|
|
5
5
|
"ent_01KXG04ZND3BZV3J851BYAVEKK": {
|
|
@@ -95,18 +95,20 @@
|
|
|
95
95
|
"maxHealth": 3.0,
|
|
96
96
|
"modelUrl": {
|
|
97
97
|
"animations": [
|
|
98
|
-
"idle"
|
|
98
|
+
"idle",
|
|
99
|
+
"walk",
|
|
100
|
+
"attack",
|
|
101
|
+
"hit",
|
|
102
|
+
"death"
|
|
99
103
|
],
|
|
100
104
|
"aspect": "1:1",
|
|
101
|
-
"
|
|
102
|
-
"category": "unit",
|
|
105
|
+
"category": "soldier",
|
|
103
106
|
"dimension": "2d",
|
|
104
|
-
"name": "
|
|
105
|
-
"role": "
|
|
106
|
-
"
|
|
107
|
-
"style": "vector",
|
|
107
|
+
"name": "soldier",
|
|
108
|
+
"role": "npc",
|
|
109
|
+
"style": "",
|
|
108
110
|
"thumbnailUrl": "",
|
|
109
|
-
"url": "https://almadar-kflow-assets.web.app/shared/
|
|
111
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-tactics-demo-2d/svg/flat/units/soldier.svg"
|
|
110
112
|
},
|
|
111
113
|
"name": "Soldier A",
|
|
112
114
|
"position": {
|
|
@@ -125,18 +127,20 @@
|
|
|
125
127
|
"maxHealth": 3.0,
|
|
126
128
|
"modelUrl": {
|
|
127
129
|
"animations": [
|
|
128
|
-
"idle"
|
|
130
|
+
"idle",
|
|
131
|
+
"walk",
|
|
132
|
+
"attack",
|
|
133
|
+
"hit",
|
|
134
|
+
"death"
|
|
129
135
|
],
|
|
130
136
|
"aspect": "1:1",
|
|
131
|
-
"
|
|
132
|
-
"category": "unit",
|
|
137
|
+
"category": "soldier",
|
|
133
138
|
"dimension": "2d",
|
|
134
|
-
"name": "
|
|
135
|
-
"role": "
|
|
136
|
-
"
|
|
137
|
-
"style": "vector",
|
|
139
|
+
"name": "soldier",
|
|
140
|
+
"role": "npc",
|
|
141
|
+
"style": "",
|
|
138
142
|
"thumbnailUrl": "",
|
|
139
|
-
"url": "https://almadar-kflow-assets.web.app/shared/
|
|
143
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-tactics-demo-2d/svg/flat/units/soldier.svg"
|
|
140
144
|
},
|
|
141
145
|
"name": "Soldier B",
|
|
142
146
|
"position": {
|
|
@@ -155,18 +159,20 @@
|
|
|
155
159
|
"maxHealth": 2.0,
|
|
156
160
|
"modelUrl": {
|
|
157
161
|
"animations": [
|
|
158
|
-
"idle"
|
|
162
|
+
"idle",
|
|
163
|
+
"walk",
|
|
164
|
+
"attack",
|
|
165
|
+
"hit",
|
|
166
|
+
"death"
|
|
159
167
|
],
|
|
160
168
|
"aspect": "1:1",
|
|
161
|
-
"
|
|
162
|
-
"category": "unit",
|
|
169
|
+
"category": "raider",
|
|
163
170
|
"dimension": "2d",
|
|
164
|
-
"name": "
|
|
165
|
-
"role": "
|
|
166
|
-
"
|
|
167
|
-
"style": "vector",
|
|
171
|
+
"name": "raider",
|
|
172
|
+
"role": "npc",
|
|
173
|
+
"style": "",
|
|
168
174
|
"thumbnailUrl": "",
|
|
169
|
-
"url": "https://almadar-kflow-assets.web.app/shared/
|
|
175
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-tactics-demo-2d/svg/flat/units/raider.svg"
|
|
170
176
|
},
|
|
171
177
|
"name": "Raider",
|
|
172
178
|
"position": {
|
|
@@ -366,21 +372,6 @@
|
|
|
366
372
|
"id": "t-0-0",
|
|
367
373
|
"passable": true,
|
|
368
374
|
"terrain": "grass",
|
|
369
|
-
"terrainSprite": {
|
|
370
|
-
"animations": [
|
|
371
|
-
"static"
|
|
372
|
-
],
|
|
373
|
-
"aspect": "1:1",
|
|
374
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-shape-characters/units/spritesheet_default.json",
|
|
375
|
-
"category": "grass",
|
|
376
|
-
"dimension": "2d",
|
|
377
|
-
"name": "grass",
|
|
378
|
-
"role": "tile",
|
|
379
|
-
"sprite": "tile_grey.png",
|
|
380
|
-
"style": "vector",
|
|
381
|
-
"thumbnailUrl": "",
|
|
382
|
-
"url": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-shape-characters/units/spritesheet_default.png"
|
|
383
|
-
},
|
|
384
375
|
"x": 0.0,
|
|
385
376
|
"y": 0.0
|
|
386
377
|
},
|
|
@@ -388,21 +379,6 @@
|
|
|
388
379
|
"id": "t-1-0",
|
|
389
380
|
"passable": true,
|
|
390
381
|
"terrain": "grass",
|
|
391
|
-
"terrainSprite": {
|
|
392
|
-
"animations": [
|
|
393
|
-
"static"
|
|
394
|
-
],
|
|
395
|
-
"aspect": "1:1",
|
|
396
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-shape-characters/units/spritesheet_default.json",
|
|
397
|
-
"category": "grass",
|
|
398
|
-
"dimension": "2d",
|
|
399
|
-
"name": "grass",
|
|
400
|
-
"role": "tile",
|
|
401
|
-
"sprite": "tile_grey.png",
|
|
402
|
-
"style": "vector",
|
|
403
|
-
"thumbnailUrl": "",
|
|
404
|
-
"url": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-shape-characters/units/spritesheet_default.png"
|
|
405
|
-
},
|
|
406
382
|
"x": 1.0,
|
|
407
383
|
"y": 0.0
|
|
408
384
|
},
|
|
@@ -410,21 +386,6 @@
|
|
|
410
386
|
"id": "t-2-0",
|
|
411
387
|
"passable": true,
|
|
412
388
|
"terrain": "grass",
|
|
413
|
-
"terrainSprite": {
|
|
414
|
-
"animations": [
|
|
415
|
-
"static"
|
|
416
|
-
],
|
|
417
|
-
"aspect": "1:1",
|
|
418
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-shape-characters/units/spritesheet_default.json",
|
|
419
|
-
"category": "grass",
|
|
420
|
-
"dimension": "2d",
|
|
421
|
-
"name": "grass",
|
|
422
|
-
"role": "tile",
|
|
423
|
-
"sprite": "tile_grey.png",
|
|
424
|
-
"style": "vector",
|
|
425
|
-
"thumbnailUrl": "",
|
|
426
|
-
"url": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-shape-characters/units/spritesheet_default.png"
|
|
427
|
-
},
|
|
428
389
|
"x": 2.0,
|
|
429
390
|
"y": 0.0
|
|
430
391
|
},
|
|
@@ -432,21 +393,6 @@
|
|
|
432
393
|
"id": "t-0-1",
|
|
433
394
|
"passable": true,
|
|
434
395
|
"terrain": "grass",
|
|
435
|
-
"terrainSprite": {
|
|
436
|
-
"animations": [
|
|
437
|
-
"static"
|
|
438
|
-
],
|
|
439
|
-
"aspect": "1:1",
|
|
440
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-shape-characters/units/spritesheet_default.json",
|
|
441
|
-
"category": "grass",
|
|
442
|
-
"dimension": "2d",
|
|
443
|
-
"name": "grass",
|
|
444
|
-
"role": "tile",
|
|
445
|
-
"sprite": "tile_grey.png",
|
|
446
|
-
"style": "vector",
|
|
447
|
-
"thumbnailUrl": "",
|
|
448
|
-
"url": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-shape-characters/units/spritesheet_default.png"
|
|
449
|
-
},
|
|
450
396
|
"x": 0.0,
|
|
451
397
|
"y": 1.0
|
|
452
398
|
},
|
|
@@ -454,21 +400,6 @@
|
|
|
454
400
|
"id": "t-1-1",
|
|
455
401
|
"passable": true,
|
|
456
402
|
"terrain": "grass",
|
|
457
|
-
"terrainSprite": {
|
|
458
|
-
"animations": [
|
|
459
|
-
"static"
|
|
460
|
-
],
|
|
461
|
-
"aspect": "1:1",
|
|
462
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-shape-characters/units/spritesheet_default.json",
|
|
463
|
-
"category": "grass",
|
|
464
|
-
"dimension": "2d",
|
|
465
|
-
"name": "grass",
|
|
466
|
-
"role": "tile",
|
|
467
|
-
"sprite": "tile_grey.png",
|
|
468
|
-
"style": "vector",
|
|
469
|
-
"thumbnailUrl": "",
|
|
470
|
-
"url": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-shape-characters/units/spritesheet_default.png"
|
|
471
|
-
},
|
|
472
403
|
"x": 1.0,
|
|
473
404
|
"y": 1.0
|
|
474
405
|
},
|
|
@@ -476,21 +407,6 @@
|
|
|
476
407
|
"id": "t-2-1",
|
|
477
408
|
"passable": true,
|
|
478
409
|
"terrain": "grass",
|
|
479
|
-
"terrainSprite": {
|
|
480
|
-
"animations": [
|
|
481
|
-
"static"
|
|
482
|
-
],
|
|
483
|
-
"aspect": "1:1",
|
|
484
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-shape-characters/units/spritesheet_default.json",
|
|
485
|
-
"category": "grass",
|
|
486
|
-
"dimension": "2d",
|
|
487
|
-
"name": "grass",
|
|
488
|
-
"role": "tile",
|
|
489
|
-
"sprite": "tile_grey.png",
|
|
490
|
-
"style": "vector",
|
|
491
|
-
"thumbnailUrl": "",
|
|
492
|
-
"url": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-shape-characters/units/spritesheet_default.png"
|
|
493
|
-
},
|
|
494
410
|
"x": 2.0,
|
|
495
411
|
"y": 1.0
|
|
496
412
|
},
|
|
@@ -498,21 +414,6 @@
|
|
|
498
414
|
"id": "t-0-2",
|
|
499
415
|
"passable": true,
|
|
500
416
|
"terrain": "grass",
|
|
501
|
-
"terrainSprite": {
|
|
502
|
-
"animations": [
|
|
503
|
-
"static"
|
|
504
|
-
],
|
|
505
|
-
"aspect": "1:1",
|
|
506
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-shape-characters/units/spritesheet_default.json",
|
|
507
|
-
"category": "grass",
|
|
508
|
-
"dimension": "2d",
|
|
509
|
-
"name": "grass",
|
|
510
|
-
"role": "tile",
|
|
511
|
-
"sprite": "tile_grey.png",
|
|
512
|
-
"style": "vector",
|
|
513
|
-
"thumbnailUrl": "",
|
|
514
|
-
"url": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-shape-characters/units/spritesheet_default.png"
|
|
515
|
-
},
|
|
516
417
|
"x": 0.0,
|
|
517
418
|
"y": 2.0
|
|
518
419
|
},
|
|
@@ -520,21 +421,6 @@
|
|
|
520
421
|
"id": "t-1-2",
|
|
521
422
|
"passable": true,
|
|
522
423
|
"terrain": "grass",
|
|
523
|
-
"terrainSprite": {
|
|
524
|
-
"animations": [
|
|
525
|
-
"static"
|
|
526
|
-
],
|
|
527
|
-
"aspect": "1:1",
|
|
528
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-shape-characters/units/spritesheet_default.json",
|
|
529
|
-
"category": "grass",
|
|
530
|
-
"dimension": "2d",
|
|
531
|
-
"name": "grass",
|
|
532
|
-
"role": "tile",
|
|
533
|
-
"sprite": "tile_grey.png",
|
|
534
|
-
"style": "vector",
|
|
535
|
-
"thumbnailUrl": "",
|
|
536
|
-
"url": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-shape-characters/units/spritesheet_default.png"
|
|
537
|
-
},
|
|
538
424
|
"x": 1.0,
|
|
539
425
|
"y": 2.0
|
|
540
426
|
},
|
|
@@ -542,21 +428,6 @@
|
|
|
542
428
|
"id": "t-2-2",
|
|
543
429
|
"passable": true,
|
|
544
430
|
"terrain": "grass",
|
|
545
|
-
"terrainSprite": {
|
|
546
|
-
"animations": [
|
|
547
|
-
"static"
|
|
548
|
-
],
|
|
549
|
-
"aspect": "1:1",
|
|
550
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-shape-characters/units/spritesheet_default.json",
|
|
551
|
-
"category": "grass",
|
|
552
|
-
"dimension": "2d",
|
|
553
|
-
"name": "grass",
|
|
554
|
-
"role": "tile",
|
|
555
|
-
"sprite": "tile_grey.png",
|
|
556
|
-
"style": "vector",
|
|
557
|
-
"thumbnailUrl": "",
|
|
558
|
-
"url": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-shape-characters/units/spritesheet_default.png"
|
|
559
|
-
},
|
|
560
431
|
"x": 2.0,
|
|
561
432
|
"y": 2.0
|
|
562
433
|
}
|
|
@@ -714,6 +585,22 @@
|
|
|
714
585
|
"name": "attackTargets",
|
|
715
586
|
"type": "array"
|
|
716
587
|
},
|
|
588
|
+
{
|
|
589
|
+
"default": [],
|
|
590
|
+
"items": {
|
|
591
|
+
"type": "string"
|
|
592
|
+
},
|
|
593
|
+
"name": "movedIds",
|
|
594
|
+
"type": "array"
|
|
595
|
+
},
|
|
596
|
+
{
|
|
597
|
+
"default": [],
|
|
598
|
+
"items": {
|
|
599
|
+
"type": "string"
|
|
600
|
+
},
|
|
601
|
+
"name": "actedIds",
|
|
602
|
+
"type": "array"
|
|
603
|
+
},
|
|
717
604
|
{
|
|
718
605
|
"default": "observation",
|
|
719
606
|
"name": "uiPhase",
|
|
@@ -800,21 +687,6 @@
|
|
|
800
687
|
"id": "t-0-0",
|
|
801
688
|
"passable": true,
|
|
802
689
|
"terrain": "grass",
|
|
803
|
-
"terrainSprite": {
|
|
804
|
-
"animations": [
|
|
805
|
-
"static"
|
|
806
|
-
],
|
|
807
|
-
"aspect": "1:1",
|
|
808
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-shape-characters/units/spritesheet_default.json",
|
|
809
|
-
"category": "grass",
|
|
810
|
-
"dimension": "2d",
|
|
811
|
-
"name": "grass",
|
|
812
|
-
"role": "tile",
|
|
813
|
-
"sprite": "tile_grey.png",
|
|
814
|
-
"style": "vector",
|
|
815
|
-
"thumbnailUrl": "",
|
|
816
|
-
"url": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-shape-characters/units/spritesheet_default.png"
|
|
817
|
-
},
|
|
818
690
|
"x": 0.0,
|
|
819
691
|
"y": 0.0
|
|
820
692
|
},
|
|
@@ -822,21 +694,6 @@
|
|
|
822
694
|
"id": "t-1-0",
|
|
823
695
|
"passable": true,
|
|
824
696
|
"terrain": "grass",
|
|
825
|
-
"terrainSprite": {
|
|
826
|
-
"animations": [
|
|
827
|
-
"static"
|
|
828
|
-
],
|
|
829
|
-
"aspect": "1:1",
|
|
830
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-shape-characters/units/spritesheet_default.json",
|
|
831
|
-
"category": "grass",
|
|
832
|
-
"dimension": "2d",
|
|
833
|
-
"name": "grass",
|
|
834
|
-
"role": "tile",
|
|
835
|
-
"sprite": "tile_grey.png",
|
|
836
|
-
"style": "vector",
|
|
837
|
-
"thumbnailUrl": "",
|
|
838
|
-
"url": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-shape-characters/units/spritesheet_default.png"
|
|
839
|
-
},
|
|
840
697
|
"x": 1.0,
|
|
841
698
|
"y": 0.0
|
|
842
699
|
},
|
|
@@ -844,21 +701,6 @@
|
|
|
844
701
|
"id": "t-2-0",
|
|
845
702
|
"passable": true,
|
|
846
703
|
"terrain": "grass",
|
|
847
|
-
"terrainSprite": {
|
|
848
|
-
"animations": [
|
|
849
|
-
"static"
|
|
850
|
-
],
|
|
851
|
-
"aspect": "1:1",
|
|
852
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-shape-characters/units/spritesheet_default.json",
|
|
853
|
-
"category": "grass",
|
|
854
|
-
"dimension": "2d",
|
|
855
|
-
"name": "grass",
|
|
856
|
-
"role": "tile",
|
|
857
|
-
"sprite": "tile_grey.png",
|
|
858
|
-
"style": "vector",
|
|
859
|
-
"thumbnailUrl": "",
|
|
860
|
-
"url": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-shape-characters/units/spritesheet_default.png"
|
|
861
|
-
},
|
|
862
704
|
"x": 2.0,
|
|
863
705
|
"y": 0.0
|
|
864
706
|
},
|
|
@@ -866,21 +708,6 @@
|
|
|
866
708
|
"id": "t-0-1",
|
|
867
709
|
"passable": true,
|
|
868
710
|
"terrain": "grass",
|
|
869
|
-
"terrainSprite": {
|
|
870
|
-
"animations": [
|
|
871
|
-
"static"
|
|
872
|
-
],
|
|
873
|
-
"aspect": "1:1",
|
|
874
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-shape-characters/units/spritesheet_default.json",
|
|
875
|
-
"category": "grass",
|
|
876
|
-
"dimension": "2d",
|
|
877
|
-
"name": "grass",
|
|
878
|
-
"role": "tile",
|
|
879
|
-
"sprite": "tile_grey.png",
|
|
880
|
-
"style": "vector",
|
|
881
|
-
"thumbnailUrl": "",
|
|
882
|
-
"url": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-shape-characters/units/spritesheet_default.png"
|
|
883
|
-
},
|
|
884
711
|
"x": 0.0,
|
|
885
712
|
"y": 1.0
|
|
886
713
|
},
|
|
@@ -888,21 +715,6 @@
|
|
|
888
715
|
"id": "t-1-1",
|
|
889
716
|
"passable": true,
|
|
890
717
|
"terrain": "grass",
|
|
891
|
-
"terrainSprite": {
|
|
892
|
-
"animations": [
|
|
893
|
-
"static"
|
|
894
|
-
],
|
|
895
|
-
"aspect": "1:1",
|
|
896
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-shape-characters/units/spritesheet_default.json",
|
|
897
|
-
"category": "grass",
|
|
898
|
-
"dimension": "2d",
|
|
899
|
-
"name": "grass",
|
|
900
|
-
"role": "tile",
|
|
901
|
-
"sprite": "tile_grey.png",
|
|
902
|
-
"style": "vector",
|
|
903
|
-
"thumbnailUrl": "",
|
|
904
|
-
"url": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-shape-characters/units/spritesheet_default.png"
|
|
905
|
-
},
|
|
906
718
|
"x": 1.0,
|
|
907
719
|
"y": 1.0
|
|
908
720
|
},
|
|
@@ -910,21 +722,6 @@
|
|
|
910
722
|
"id": "t-2-1",
|
|
911
723
|
"passable": true,
|
|
912
724
|
"terrain": "grass",
|
|
913
|
-
"terrainSprite": {
|
|
914
|
-
"animations": [
|
|
915
|
-
"static"
|
|
916
|
-
],
|
|
917
|
-
"aspect": "1:1",
|
|
918
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-shape-characters/units/spritesheet_default.json",
|
|
919
|
-
"category": "grass",
|
|
920
|
-
"dimension": "2d",
|
|
921
|
-
"name": "grass",
|
|
922
|
-
"role": "tile",
|
|
923
|
-
"sprite": "tile_grey.png",
|
|
924
|
-
"style": "vector",
|
|
925
|
-
"thumbnailUrl": "",
|
|
926
|
-
"url": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-shape-characters/units/spritesheet_default.png"
|
|
927
|
-
},
|
|
928
725
|
"x": 2.0,
|
|
929
726
|
"y": 1.0
|
|
930
727
|
},
|
|
@@ -932,21 +729,6 @@
|
|
|
932
729
|
"id": "t-0-2",
|
|
933
730
|
"passable": true,
|
|
934
731
|
"terrain": "grass",
|
|
935
|
-
"terrainSprite": {
|
|
936
|
-
"animations": [
|
|
937
|
-
"static"
|
|
938
|
-
],
|
|
939
|
-
"aspect": "1:1",
|
|
940
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-shape-characters/units/spritesheet_default.json",
|
|
941
|
-
"category": "grass",
|
|
942
|
-
"dimension": "2d",
|
|
943
|
-
"name": "grass",
|
|
944
|
-
"role": "tile",
|
|
945
|
-
"sprite": "tile_grey.png",
|
|
946
|
-
"style": "vector",
|
|
947
|
-
"thumbnailUrl": "",
|
|
948
|
-
"url": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-shape-characters/units/spritesheet_default.png"
|
|
949
|
-
},
|
|
950
732
|
"x": 0.0,
|
|
951
733
|
"y": 2.0
|
|
952
734
|
},
|
|
@@ -954,21 +736,6 @@
|
|
|
954
736
|
"id": "t-1-2",
|
|
955
737
|
"passable": true,
|
|
956
738
|
"terrain": "grass",
|
|
957
|
-
"terrainSprite": {
|
|
958
|
-
"animations": [
|
|
959
|
-
"static"
|
|
960
|
-
],
|
|
961
|
-
"aspect": "1:1",
|
|
962
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-shape-characters/units/spritesheet_default.json",
|
|
963
|
-
"category": "grass",
|
|
964
|
-
"dimension": "2d",
|
|
965
|
-
"name": "grass",
|
|
966
|
-
"role": "tile",
|
|
967
|
-
"sprite": "tile_grey.png",
|
|
968
|
-
"style": "vector",
|
|
969
|
-
"thumbnailUrl": "",
|
|
970
|
-
"url": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-shape-characters/units/spritesheet_default.png"
|
|
971
|
-
},
|
|
972
739
|
"x": 1.0,
|
|
973
740
|
"y": 2.0
|
|
974
741
|
},
|
|
@@ -976,21 +743,6 @@
|
|
|
976
743
|
"id": "t-2-2",
|
|
977
744
|
"passable": true,
|
|
978
745
|
"terrain": "grass",
|
|
979
|
-
"terrainSprite": {
|
|
980
|
-
"animations": [
|
|
981
|
-
"static"
|
|
982
|
-
],
|
|
983
|
-
"aspect": "1:1",
|
|
984
|
-
"atlas": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-shape-characters/units/spritesheet_default.json",
|
|
985
|
-
"category": "grass",
|
|
986
|
-
"dimension": "2d",
|
|
987
|
-
"name": "grass",
|
|
988
|
-
"role": "tile",
|
|
989
|
-
"sprite": "tile_grey.png",
|
|
990
|
-
"style": "vector",
|
|
991
|
-
"thumbnailUrl": "",
|
|
992
|
-
"url": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-shape-characters/units/spritesheet_default.png"
|
|
993
|
-
},
|
|
994
746
|
"x": 2.0,
|
|
995
747
|
"y": 2.0
|
|
996
748
|
}
|
|
@@ -1005,18 +757,20 @@
|
|
|
1005
757
|
"maxHealth": 3.0,
|
|
1006
758
|
"modelUrl": {
|
|
1007
759
|
"animations": [
|
|
1008
|
-
"idle"
|
|
760
|
+
"idle",
|
|
761
|
+
"walk",
|
|
762
|
+
"attack",
|
|
763
|
+
"hit",
|
|
764
|
+
"death"
|
|
1009
765
|
],
|
|
1010
766
|
"aspect": "1:1",
|
|
1011
|
-
"
|
|
1012
|
-
"category": "unit",
|
|
767
|
+
"category": "soldier",
|
|
1013
768
|
"dimension": "2d",
|
|
1014
|
-
"name": "
|
|
1015
|
-
"role": "
|
|
1016
|
-
"
|
|
1017
|
-
"style": "vector",
|
|
769
|
+
"name": "soldier",
|
|
770
|
+
"role": "npc",
|
|
771
|
+
"style": "",
|
|
1018
772
|
"thumbnailUrl": "",
|
|
1019
|
-
"url": "https://almadar-kflow-assets.web.app/shared/
|
|
773
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-tactics-demo-2d/svg/flat/units/soldier.svg"
|
|
1020
774
|
},
|
|
1021
775
|
"name": "Soldier A",
|
|
1022
776
|
"position": {
|
|
@@ -1035,18 +789,20 @@
|
|
|
1035
789
|
"maxHealth": 3.0,
|
|
1036
790
|
"modelUrl": {
|
|
1037
791
|
"animations": [
|
|
1038
|
-
"idle"
|
|
792
|
+
"idle",
|
|
793
|
+
"walk",
|
|
794
|
+
"attack",
|
|
795
|
+
"hit",
|
|
796
|
+
"death"
|
|
1039
797
|
],
|
|
1040
798
|
"aspect": "1:1",
|
|
1041
|
-
"
|
|
1042
|
-
"category": "unit",
|
|
799
|
+
"category": "soldier",
|
|
1043
800
|
"dimension": "2d",
|
|
1044
|
-
"name": "
|
|
1045
|
-
"role": "
|
|
1046
|
-
"
|
|
1047
|
-
"style": "vector",
|
|
801
|
+
"name": "soldier",
|
|
802
|
+
"role": "npc",
|
|
803
|
+
"style": "",
|
|
1048
804
|
"thumbnailUrl": "",
|
|
1049
|
-
"url": "https://almadar-kflow-assets.web.app/shared/
|
|
805
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-tactics-demo-2d/svg/flat/units/soldier.svg"
|
|
1050
806
|
},
|
|
1051
807
|
"name": "Soldier B",
|
|
1052
808
|
"position": {
|
|
@@ -1065,18 +821,20 @@
|
|
|
1065
821
|
"maxHealth": 2.0,
|
|
1066
822
|
"modelUrl": {
|
|
1067
823
|
"animations": [
|
|
1068
|
-
"idle"
|
|
824
|
+
"idle",
|
|
825
|
+
"walk",
|
|
826
|
+
"attack",
|
|
827
|
+
"hit",
|
|
828
|
+
"death"
|
|
1069
829
|
],
|
|
1070
830
|
"aspect": "1:1",
|
|
1071
|
-
"
|
|
1072
|
-
"category": "unit",
|
|
831
|
+
"category": "raider",
|
|
1073
832
|
"dimension": "2d",
|
|
1074
|
-
"name": "
|
|
1075
|
-
"role": "
|
|
1076
|
-
"
|
|
1077
|
-
"style": "vector",
|
|
833
|
+
"name": "raider",
|
|
834
|
+
"role": "npc",
|
|
835
|
+
"style": "",
|
|
1078
836
|
"thumbnailUrl": "",
|
|
1079
|
-
"url": "https://almadar-kflow-assets.web.app/shared/
|
|
837
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-tactics-demo-2d/svg/flat/units/raider.svg"
|
|
1080
838
|
},
|
|
1081
839
|
"name": "Raider",
|
|
1082
840
|
"position": {
|
|
@@ -1131,9 +889,17 @@
|
|
|
1131
889
|
"default": 1.0,
|
|
1132
890
|
"type": "unknown"
|
|
1133
891
|
},
|
|
892
|
+
"pointsPerKill": {
|
|
893
|
+
"default": 10.0,
|
|
894
|
+
"type": "unknown"
|
|
895
|
+
},
|
|
1134
896
|
"running": {
|
|
1135
897
|
"default": true,
|
|
1136
898
|
"type": "unknown"
|
|
899
|
+
},
|
|
900
|
+
"startScore": {
|
|
901
|
+
"default": 0.0,
|
|
902
|
+
"type": "unknown"
|
|
1137
903
|
}
|
|
1138
904
|
},
|
|
1139
905
|
"id": "trt_01KXZ450RTCW6NEZR903FV1GX9",
|
|
@@ -1159,10 +925,100 @@
|
|
|
1159
925
|
"config": {
|
|
1160
926
|
"assetManifest": {
|
|
1161
927
|
"default": {
|
|
1162
|
-
"effects": {
|
|
928
|
+
"effects": {
|
|
929
|
+
"hit": {
|
|
930
|
+
"animations": [
|
|
931
|
+
"static"
|
|
932
|
+
],
|
|
933
|
+
"aspect": "1:1",
|
|
934
|
+
"category": "hit",
|
|
935
|
+
"dimension": "2d",
|
|
936
|
+
"name": "hit",
|
|
937
|
+
"role": "effect",
|
|
938
|
+
"style": "",
|
|
939
|
+
"thumbnailUrl": "",
|
|
940
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-tactics-demo-2d/svg/flat/effects/hit.svg"
|
|
941
|
+
}
|
|
942
|
+
},
|
|
1163
943
|
"features": {},
|
|
1164
|
-
"terrains": {
|
|
1165
|
-
|
|
944
|
+
"terrains": {
|
|
945
|
+
"grass": {
|
|
946
|
+
"animations": [
|
|
947
|
+
"static"
|
|
948
|
+
],
|
|
949
|
+
"aspect": "1:1",
|
|
950
|
+
"category": "grass",
|
|
951
|
+
"dimension": "2d",
|
|
952
|
+
"name": "grass",
|
|
953
|
+
"role": "tile",
|
|
954
|
+
"style": "",
|
|
955
|
+
"thumbnailUrl": "",
|
|
956
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-tactics-demo-2d/svg/flat/terrain/grass.svg"
|
|
957
|
+
}
|
|
958
|
+
},
|
|
959
|
+
"ui": {
|
|
960
|
+
"panel-frame": {
|
|
961
|
+
"animations": [],
|
|
962
|
+
"aspect": "1:1",
|
|
963
|
+
"category": "ui",
|
|
964
|
+
"dimension": "2d",
|
|
965
|
+
"name": "panel-frame",
|
|
966
|
+
"role": "ui",
|
|
967
|
+
"style": "adventure",
|
|
968
|
+
"thumbnailUrl": "",
|
|
969
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-tactics-demo-2d/svg/flat/ui/panel-frame.svg"
|
|
970
|
+
}
|
|
971
|
+
},
|
|
972
|
+
"units": {
|
|
973
|
+
"raider": {
|
|
974
|
+
"animations": [
|
|
975
|
+
"idle",
|
|
976
|
+
"walk",
|
|
977
|
+
"attack",
|
|
978
|
+
"hit",
|
|
979
|
+
"death"
|
|
980
|
+
],
|
|
981
|
+
"aspect": "1:1",
|
|
982
|
+
"category": "raider",
|
|
983
|
+
"dimension": "2d",
|
|
984
|
+
"name": "raider",
|
|
985
|
+
"role": "npc",
|
|
986
|
+
"style": "",
|
|
987
|
+
"thumbnailUrl": "",
|
|
988
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-tactics-demo-2d/svg/flat/units/raider.svg"
|
|
989
|
+
},
|
|
990
|
+
"soldier": {
|
|
991
|
+
"animations": [
|
|
992
|
+
"idle",
|
|
993
|
+
"walk",
|
|
994
|
+
"attack",
|
|
995
|
+
"hit",
|
|
996
|
+
"death"
|
|
997
|
+
],
|
|
998
|
+
"aspect": "1:1",
|
|
999
|
+
"category": "soldier",
|
|
1000
|
+
"dimension": "2d",
|
|
1001
|
+
"name": "soldier",
|
|
1002
|
+
"role": "npc",
|
|
1003
|
+
"style": "",
|
|
1004
|
+
"thumbnailUrl": "",
|
|
1005
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-tactics-demo-2d/svg/flat/units/soldier.svg"
|
|
1006
|
+
}
|
|
1007
|
+
}
|
|
1008
|
+
},
|
|
1009
|
+
"type": "unknown"
|
|
1010
|
+
},
|
|
1011
|
+
"backgroundAsset": {
|
|
1012
|
+
"default": {
|
|
1013
|
+
"animations": [],
|
|
1014
|
+
"aspect": "1:1",
|
|
1015
|
+
"category": "ui",
|
|
1016
|
+
"dimension": "2d",
|
|
1017
|
+
"name": "panel-frame",
|
|
1018
|
+
"role": "ui",
|
|
1019
|
+
"style": "adventure",
|
|
1020
|
+
"thumbnailUrl": "",
|
|
1021
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-tactics-demo-2d/svg/flat/ui/panel-frame.svg"
|
|
1166
1022
|
},
|
|
1167
1023
|
"type": "unknown"
|
|
1168
1024
|
},
|
|
@@ -1178,6 +1034,20 @@
|
|
|
1178
1034
|
"default": 3.0,
|
|
1179
1035
|
"type": "unknown"
|
|
1180
1036
|
},
|
|
1037
|
+
"hudBackgroundAsset": {
|
|
1038
|
+
"default": {
|
|
1039
|
+
"animations": [],
|
|
1040
|
+
"aspect": "1:1",
|
|
1041
|
+
"category": "ui",
|
|
1042
|
+
"dimension": "2d",
|
|
1043
|
+
"name": "panel-frame",
|
|
1044
|
+
"role": "ui",
|
|
1045
|
+
"style": "adventure",
|
|
1046
|
+
"thumbnailUrl": "",
|
|
1047
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-tactics-demo-2d/svg/flat/ui/panel-frame.svg"
|
|
1048
|
+
},
|
|
1049
|
+
"type": "unknown"
|
|
1050
|
+
},
|
|
1181
1051
|
"movementRange": {
|
|
1182
1052
|
"default": 2.0,
|
|
1183
1053
|
"type": "unknown"
|