@almadar/std 16.84.0 → 16.86.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/registry/ui/game/2d/organisms/ui-battle-board.orb +144 -12
- package/behaviors/registry/ui/game/2d/organisms/ui-boardgame-board.orb +420 -7
- package/behaviors/registry/ui/game/2d/organisms/ui-card-battler-board.orb +60 -0
- package/behaviors/registry/ui/game/2d/organisms/ui-city-builder-board.orb +588 -14
- package/behaviors/registry/ui/game/2d/organisms/ui-fishing-board.orb +300 -5
- package/behaviors/registry/ui/game/2d/organisms/ui-hex-strategy-board.orb +864 -12
- package/behaviors/registry/ui/game/2d/organisms/ui-holiday-runner-board.orb +300 -5
- package/behaviors/registry/ui/game/2d/organisms/ui-match-puzzle-board.orb +240 -4
- package/behaviors/registry/ui/game/2d/organisms/ui-minigolf-board.orb +288 -0
- package/behaviors/registry/ui/game/2d/organisms/ui-pinball-board.orb +432 -0
- package/behaviors/registry/ui/game/2d/organisms/ui-pirate-board.orb +780 -13
- package/behaviors/registry/ui/game/2d/organisms/ui-platformer-board.orb +440 -4
- package/behaviors/registry/ui/game/2d/organisms/ui-racing-board.orb +480 -0
- package/behaviors/registry/ui/game/2d/organisms/ui-roguelike-board.orb +576 -16
- package/behaviors/registry/ui/game/2d/organisms/ui-sokoban-board.orb +288 -8
- package/behaviors/registry/ui/game/2d/organisms/ui-space-shmup-board.orb +792 -22
- package/behaviors/registry/ui/game/2d/organisms/ui-space-station-board.orb +360 -6
- package/behaviors/registry/ui/game/2d/organisms/ui-sports-board.orb +504 -14
- package/behaviors/registry/ui/game/2d/organisms/ui-tanks-board.orb +864 -12
- package/behaviors/registry/ui/game/2d/organisms/ui-top-down-shooter-board.orb +648 -9
- package/behaviors/registry/ui/game/2d/organisms/ui-tower-defense-board.orb +108 -9
- package/behaviors/registry/ui/game/2d/organisms/ui-uncontrolled-battle-board.orb +24 -2
- package/behaviors/registry/ui/game/2d/organisms/ui-visual-novel-board.orb +178 -88
- package/behaviors/registry/ui/game/2d/organisms/ui-world-map-board.orb +792 -11
- package/behaviors/registry/ui/game/2d/templates/ui-battle-template.orb +60 -5
- package/behaviors/registry/ui/game/2d/templates/ui-card-battler-template.orb +60 -0
- package/behaviors/registry/ui/game/2d/templates/ui-city-builder-template.orb +420 -10
- package/behaviors/registry/ui/game/2d/templates/ui-platformer-template.orb +770 -7
- package/behaviors/registry/ui/game/2d/templates/ui-roguelike-template.orb +288 -8
- package/behaviors/registry/ui/game/2d/templates/ui-top-down-shooter-template.orb +60 -5
- package/behaviors/registry/ui/game/2d/templates/ui-tower-defense-template.orb +60 -5
- package/behaviors/registry/ui/game/2d/templates/ui-world-map-template.orb +60 -5
- package/dist/behaviors/registry/ui/game/2d/organisms/ui-battle-board.orb +144 -12
- package/dist/behaviors/registry/ui/game/2d/organisms/ui-boardgame-board.orb +420 -7
- package/dist/behaviors/registry/ui/game/2d/organisms/ui-card-battler-board.orb +60 -0
- package/dist/behaviors/registry/ui/game/2d/organisms/ui-city-builder-board.orb +588 -14
- package/dist/behaviors/registry/ui/game/2d/organisms/ui-fishing-board.orb +300 -5
- package/dist/behaviors/registry/ui/game/2d/organisms/ui-hex-strategy-board.orb +864 -12
- package/dist/behaviors/registry/ui/game/2d/organisms/ui-holiday-runner-board.orb +300 -5
- package/dist/behaviors/registry/ui/game/2d/organisms/ui-match-puzzle-board.orb +240 -4
- package/dist/behaviors/registry/ui/game/2d/organisms/ui-minigolf-board.orb +288 -0
- package/dist/behaviors/registry/ui/game/2d/organisms/ui-pinball-board.orb +432 -0
- package/dist/behaviors/registry/ui/game/2d/organisms/ui-pirate-board.orb +780 -13
- package/dist/behaviors/registry/ui/game/2d/organisms/ui-platformer-board.orb +440 -4
- package/dist/behaviors/registry/ui/game/2d/organisms/ui-racing-board.orb +480 -0
- package/dist/behaviors/registry/ui/game/2d/organisms/ui-roguelike-board.orb +576 -16
- package/dist/behaviors/registry/ui/game/2d/organisms/ui-sokoban-board.orb +288 -8
- package/dist/behaviors/registry/ui/game/2d/organisms/ui-space-shmup-board.orb +792 -22
- package/dist/behaviors/registry/ui/game/2d/organisms/ui-space-station-board.orb +360 -6
- package/dist/behaviors/registry/ui/game/2d/organisms/ui-sports-board.orb +504 -14
- package/dist/behaviors/registry/ui/game/2d/organisms/ui-tanks-board.orb +864 -12
- package/dist/behaviors/registry/ui/game/2d/organisms/ui-top-down-shooter-board.orb +648 -9
- package/dist/behaviors/registry/ui/game/2d/organisms/ui-tower-defense-board.orb +108 -9
- package/dist/behaviors/registry/ui/game/2d/organisms/ui-uncontrolled-battle-board.orb +24 -2
- package/dist/behaviors/registry/ui/game/2d/organisms/ui-visual-novel-board.orb +178 -88
- package/dist/behaviors/registry/ui/game/2d/organisms/ui-world-map-board.orb +792 -11
- package/dist/behaviors/registry/ui/game/2d/templates/ui-battle-template.orb +60 -5
- package/dist/behaviors/registry/ui/game/2d/templates/ui-card-battler-template.orb +60 -0
- package/dist/behaviors/registry/ui/game/2d/templates/ui-city-builder-template.orb +420 -10
- package/dist/behaviors/registry/ui/game/2d/templates/ui-platformer-template.orb +770 -7
- package/dist/behaviors/registry/ui/game/2d/templates/ui-roguelike-template.orb +288 -8
- package/dist/behaviors/registry/ui/game/2d/templates/ui-top-down-shooter-template.orb +60 -5
- package/dist/behaviors/registry/ui/game/2d/templates/ui-tower-defense-template.orb +60 -5
- package/dist/behaviors/registry/ui/game/2d/templates/ui-world-map-template.orb +60 -5
- package/dist/registry/ui/game/2d/organisms/ui-battle-board.orb +144 -12
- package/dist/registry/ui/game/2d/organisms/ui-boardgame-board.orb +420 -7
- package/dist/registry/ui/game/2d/organisms/ui-card-battler-board.orb +60 -0
- package/dist/registry/ui/game/2d/organisms/ui-city-builder-board.orb +588 -14
- package/dist/registry/ui/game/2d/organisms/ui-fishing-board.orb +300 -5
- package/dist/registry/ui/game/2d/organisms/ui-hex-strategy-board.orb +864 -12
- package/dist/registry/ui/game/2d/organisms/ui-holiday-runner-board.orb +300 -5
- package/dist/registry/ui/game/2d/organisms/ui-match-puzzle-board.orb +240 -4
- package/dist/registry/ui/game/2d/organisms/ui-minigolf-board.orb +288 -0
- package/dist/registry/ui/game/2d/organisms/ui-pinball-board.orb +432 -0
- package/dist/registry/ui/game/2d/organisms/ui-pirate-board.orb +780 -13
- package/dist/registry/ui/game/2d/organisms/ui-platformer-board.orb +440 -4
- package/dist/registry/ui/game/2d/organisms/ui-racing-board.orb +480 -0
- package/dist/registry/ui/game/2d/organisms/ui-roguelike-board.orb +576 -16
- package/dist/registry/ui/game/2d/organisms/ui-sokoban-board.orb +288 -8
- package/dist/registry/ui/game/2d/organisms/ui-space-shmup-board.orb +792 -22
- package/dist/registry/ui/game/2d/organisms/ui-space-station-board.orb +360 -6
- package/dist/registry/ui/game/2d/organisms/ui-sports-board.orb +504 -14
- package/dist/registry/ui/game/2d/organisms/ui-tanks-board.orb +864 -12
- package/dist/registry/ui/game/2d/organisms/ui-top-down-shooter-board.orb +648 -9
- package/dist/registry/ui/game/2d/organisms/ui-tower-defense-board.orb +108 -9
- package/dist/registry/ui/game/2d/organisms/ui-uncontrolled-battle-board.orb +24 -2
- package/dist/registry/ui/game/2d/organisms/ui-visual-novel-board.orb +178 -88
- package/dist/registry/ui/game/2d/organisms/ui-world-map-board.orb +792 -11
- package/dist/registry/ui/game/2d/templates/ui-battle-template.orb +60 -5
- package/dist/registry/ui/game/2d/templates/ui-card-battler-template.orb +60 -0
- package/dist/registry/ui/game/2d/templates/ui-city-builder-template.orb +420 -10
- package/dist/registry/ui/game/2d/templates/ui-platformer-template.orb +770 -7
- package/dist/registry/ui/game/2d/templates/ui-roguelike-template.orb +288 -8
- package/dist/registry/ui/game/2d/templates/ui-top-down-shooter-template.orb +60 -5
- package/dist/registry/ui/game/2d/templates/ui-tower-defense-template.orb +60 -5
- package/dist/registry/ui/game/2d/templates/ui-world-map-template.orb +60 -5
- package/package.json +1 -1
|
@@ -3329,6 +3329,18 @@
|
|
|
3329
3329
|
"render-ui",
|
|
3330
3330
|
"main",
|
|
3331
3331
|
{
|
|
3332
|
+
"backgroundAsset": {
|
|
3333
|
+
"animations": [],
|
|
3334
|
+
"aspect": "1:1",
|
|
3335
|
+
"category": "ui",
|
|
3336
|
+
"dimension": "2d",
|
|
3337
|
+
"name": "panel-frame",
|
|
3338
|
+
"role": "ui",
|
|
3339
|
+
"style": "adventure",
|
|
3340
|
+
"thumbnailUrl": "",
|
|
3341
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/panel-frame.png",
|
|
3342
|
+
"variant": ""
|
|
3343
|
+
},
|
|
3332
3344
|
"children": [
|
|
3333
3345
|
{
|
|
3334
3346
|
"assetManifest": "@config.assetManifest",
|
|
@@ -3351,10 +3363,34 @@
|
|
|
3351
3363
|
{
|
|
3352
3364
|
"stats": [
|
|
3353
3365
|
{
|
|
3366
|
+
"iconUrl": {
|
|
3367
|
+
"animations": [],
|
|
3368
|
+
"aspect": "1:1",
|
|
3369
|
+
"category": "ui",
|
|
3370
|
+
"dimension": "2d",
|
|
3371
|
+
"name": "coin",
|
|
3372
|
+
"role": "ui",
|
|
3373
|
+
"style": "adventure",
|
|
3374
|
+
"thumbnailUrl": "",
|
|
3375
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/coin.png",
|
|
3376
|
+
"variant": ""
|
|
3377
|
+
},
|
|
3354
3378
|
"label": "Gold",
|
|
3355
3379
|
"value": "@entity.gold"
|
|
3356
3380
|
},
|
|
3357
3381
|
{
|
|
3382
|
+
"iconUrl": {
|
|
3383
|
+
"animations": [],
|
|
3384
|
+
"aspect": "1:1",
|
|
3385
|
+
"category": "ui",
|
|
3386
|
+
"dimension": "2d",
|
|
3387
|
+
"name": "icon-star",
|
|
3388
|
+
"role": "ui",
|
|
3389
|
+
"style": "adventure",
|
|
3390
|
+
"thumbnailUrl": "",
|
|
3391
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/icon-star.png",
|
|
3392
|
+
"variant": ""
|
|
3393
|
+
},
|
|
3358
3394
|
"label": "Turn",
|
|
3359
3395
|
"value": "@entity.turn"
|
|
3360
3396
|
}
|
|
@@ -3363,7 +3399,18 @@
|
|
|
3363
3399
|
},
|
|
3364
3400
|
{
|
|
3365
3401
|
"action": "END_TURN",
|
|
3366
|
-
"
|
|
3402
|
+
"iconAsset": {
|
|
3403
|
+
"animations": [],
|
|
3404
|
+
"aspect": "1:1",
|
|
3405
|
+
"category": "ui",
|
|
3406
|
+
"dimension": "2d",
|
|
3407
|
+
"name": "icon-end-turn",
|
|
3408
|
+
"role": "ui",
|
|
3409
|
+
"style": "adventure",
|
|
3410
|
+
"thumbnailUrl": "",
|
|
3411
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/icon-end-turn.png",
|
|
3412
|
+
"variant": ""
|
|
3413
|
+
},
|
|
3367
3414
|
"label": "End Turn",
|
|
3368
3415
|
"type": "button",
|
|
3369
3416
|
"variant": "secondary"
|
|
@@ -3374,6 +3421,18 @@
|
|
|
3374
3421
|
"justify": "between",
|
|
3375
3422
|
"type": "stack"
|
|
3376
3423
|
},
|
|
3424
|
+
"hudBackgroundAsset": {
|
|
3425
|
+
"animations": [],
|
|
3426
|
+
"aspect": "1:1",
|
|
3427
|
+
"category": "ui",
|
|
3428
|
+
"dimension": "2d",
|
|
3429
|
+
"name": "panel-frame",
|
|
3430
|
+
"role": "ui",
|
|
3431
|
+
"style": "adventure",
|
|
3432
|
+
"thumbnailUrl": "",
|
|
3433
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/panel-frame.png",
|
|
3434
|
+
"variant": ""
|
|
3435
|
+
},
|
|
3377
3436
|
"type": "game-shell"
|
|
3378
3437
|
}
|
|
3379
3438
|
]
|
|
@@ -3448,6 +3507,18 @@
|
|
|
3448
3507
|
"render-ui",
|
|
3449
3508
|
"main",
|
|
3450
3509
|
{
|
|
3510
|
+
"backgroundAsset": {
|
|
3511
|
+
"animations": [],
|
|
3512
|
+
"aspect": "1:1",
|
|
3513
|
+
"category": "ui",
|
|
3514
|
+
"dimension": "2d",
|
|
3515
|
+
"name": "panel-frame",
|
|
3516
|
+
"role": "ui",
|
|
3517
|
+
"style": "adventure",
|
|
3518
|
+
"thumbnailUrl": "",
|
|
3519
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/panel-frame.png",
|
|
3520
|
+
"variant": ""
|
|
3521
|
+
},
|
|
3451
3522
|
"children": [
|
|
3452
3523
|
{
|
|
3453
3524
|
"assetManifest": "@config.assetManifest",
|
|
@@ -3470,10 +3541,34 @@
|
|
|
3470
3541
|
{
|
|
3471
3542
|
"stats": [
|
|
3472
3543
|
{
|
|
3544
|
+
"iconUrl": {
|
|
3545
|
+
"animations": [],
|
|
3546
|
+
"aspect": "1:1",
|
|
3547
|
+
"category": "ui",
|
|
3548
|
+
"dimension": "2d",
|
|
3549
|
+
"name": "coin",
|
|
3550
|
+
"role": "ui",
|
|
3551
|
+
"style": "adventure",
|
|
3552
|
+
"thumbnailUrl": "",
|
|
3553
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/coin.png",
|
|
3554
|
+
"variant": ""
|
|
3555
|
+
},
|
|
3473
3556
|
"label": "Gold",
|
|
3474
3557
|
"value": "@entity.gold"
|
|
3475
3558
|
},
|
|
3476
3559
|
{
|
|
3560
|
+
"iconUrl": {
|
|
3561
|
+
"animations": [],
|
|
3562
|
+
"aspect": "1:1",
|
|
3563
|
+
"category": "ui",
|
|
3564
|
+
"dimension": "2d",
|
|
3565
|
+
"name": "icon-star",
|
|
3566
|
+
"role": "ui",
|
|
3567
|
+
"style": "adventure",
|
|
3568
|
+
"thumbnailUrl": "",
|
|
3569
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/icon-star.png",
|
|
3570
|
+
"variant": ""
|
|
3571
|
+
},
|
|
3477
3572
|
"label": "Turn",
|
|
3478
3573
|
"value": "@entity.turn"
|
|
3479
3574
|
}
|
|
@@ -3482,7 +3577,18 @@
|
|
|
3482
3577
|
},
|
|
3483
3578
|
{
|
|
3484
3579
|
"action": "END_TURN",
|
|
3485
|
-
"
|
|
3580
|
+
"iconAsset": {
|
|
3581
|
+
"animations": [],
|
|
3582
|
+
"aspect": "1:1",
|
|
3583
|
+
"category": "ui",
|
|
3584
|
+
"dimension": "2d",
|
|
3585
|
+
"name": "icon-end-turn",
|
|
3586
|
+
"role": "ui",
|
|
3587
|
+
"style": "adventure",
|
|
3588
|
+
"thumbnailUrl": "",
|
|
3589
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/icon-end-turn.png",
|
|
3590
|
+
"variant": ""
|
|
3591
|
+
},
|
|
3486
3592
|
"label": "End Turn",
|
|
3487
3593
|
"type": "button",
|
|
3488
3594
|
"variant": "secondary"
|
|
@@ -3493,6 +3599,18 @@
|
|
|
3493
3599
|
"justify": "between",
|
|
3494
3600
|
"type": "stack"
|
|
3495
3601
|
},
|
|
3602
|
+
"hudBackgroundAsset": {
|
|
3603
|
+
"animations": [],
|
|
3604
|
+
"aspect": "1:1",
|
|
3605
|
+
"category": "ui",
|
|
3606
|
+
"dimension": "2d",
|
|
3607
|
+
"name": "panel-frame",
|
|
3608
|
+
"role": "ui",
|
|
3609
|
+
"style": "adventure",
|
|
3610
|
+
"thumbnailUrl": "",
|
|
3611
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/panel-frame.png",
|
|
3612
|
+
"variant": ""
|
|
3613
|
+
},
|
|
3496
3614
|
"type": "game-shell"
|
|
3497
3615
|
}
|
|
3498
3616
|
]
|
|
@@ -3517,6 +3635,18 @@
|
|
|
3517
3635
|
"render-ui",
|
|
3518
3636
|
"main",
|
|
3519
3637
|
{
|
|
3638
|
+
"backgroundAsset": {
|
|
3639
|
+
"animations": [],
|
|
3640
|
+
"aspect": "1:1",
|
|
3641
|
+
"category": "ui",
|
|
3642
|
+
"dimension": "2d",
|
|
3643
|
+
"name": "panel-frame",
|
|
3644
|
+
"role": "ui",
|
|
3645
|
+
"style": "adventure",
|
|
3646
|
+
"thumbnailUrl": "",
|
|
3647
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/panel-frame.png",
|
|
3648
|
+
"variant": ""
|
|
3649
|
+
},
|
|
3520
3650
|
"children": [
|
|
3521
3651
|
{
|
|
3522
3652
|
"assetManifest": "@config.assetManifest",
|
|
@@ -3539,10 +3669,34 @@
|
|
|
3539
3669
|
{
|
|
3540
3670
|
"stats": [
|
|
3541
3671
|
{
|
|
3672
|
+
"iconUrl": {
|
|
3673
|
+
"animations": [],
|
|
3674
|
+
"aspect": "1:1",
|
|
3675
|
+
"category": "ui",
|
|
3676
|
+
"dimension": "2d",
|
|
3677
|
+
"name": "coin",
|
|
3678
|
+
"role": "ui",
|
|
3679
|
+
"style": "adventure",
|
|
3680
|
+
"thumbnailUrl": "",
|
|
3681
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/coin.png",
|
|
3682
|
+
"variant": ""
|
|
3683
|
+
},
|
|
3542
3684
|
"label": "Gold",
|
|
3543
3685
|
"value": "@entity.gold"
|
|
3544
3686
|
},
|
|
3545
3687
|
{
|
|
3688
|
+
"iconUrl": {
|
|
3689
|
+
"animations": [],
|
|
3690
|
+
"aspect": "1:1",
|
|
3691
|
+
"category": "ui",
|
|
3692
|
+
"dimension": "2d",
|
|
3693
|
+
"name": "icon-star",
|
|
3694
|
+
"role": "ui",
|
|
3695
|
+
"style": "adventure",
|
|
3696
|
+
"thumbnailUrl": "",
|
|
3697
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/icon-star.png",
|
|
3698
|
+
"variant": ""
|
|
3699
|
+
},
|
|
3546
3700
|
"label": "Turn",
|
|
3547
3701
|
"value": "@entity.turn"
|
|
3548
3702
|
}
|
|
@@ -3551,7 +3705,18 @@
|
|
|
3551
3705
|
},
|
|
3552
3706
|
{
|
|
3553
3707
|
"action": "END_TURN",
|
|
3554
|
-
"
|
|
3708
|
+
"iconAsset": {
|
|
3709
|
+
"animations": [],
|
|
3710
|
+
"aspect": "1:1",
|
|
3711
|
+
"category": "ui",
|
|
3712
|
+
"dimension": "2d",
|
|
3713
|
+
"name": "icon-end-turn",
|
|
3714
|
+
"role": "ui",
|
|
3715
|
+
"style": "adventure",
|
|
3716
|
+
"thumbnailUrl": "",
|
|
3717
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/icon-end-turn.png",
|
|
3718
|
+
"variant": ""
|
|
3719
|
+
},
|
|
3555
3720
|
"label": "End Turn",
|
|
3556
3721
|
"type": "button",
|
|
3557
3722
|
"variant": "secondary"
|
|
@@ -3562,6 +3727,18 @@
|
|
|
3562
3727
|
"justify": "between",
|
|
3563
3728
|
"type": "stack"
|
|
3564
3729
|
},
|
|
3730
|
+
"hudBackgroundAsset": {
|
|
3731
|
+
"animations": [],
|
|
3732
|
+
"aspect": "1:1",
|
|
3733
|
+
"category": "ui",
|
|
3734
|
+
"dimension": "2d",
|
|
3735
|
+
"name": "panel-frame",
|
|
3736
|
+
"role": "ui",
|
|
3737
|
+
"style": "adventure",
|
|
3738
|
+
"thumbnailUrl": "",
|
|
3739
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/panel-frame.png",
|
|
3740
|
+
"variant": ""
|
|
3741
|
+
},
|
|
3565
3742
|
"type": "game-shell"
|
|
3566
3743
|
}
|
|
3567
3744
|
]
|
|
@@ -3757,6 +3934,18 @@
|
|
|
3757
3934
|
"render-ui",
|
|
3758
3935
|
"main",
|
|
3759
3936
|
{
|
|
3937
|
+
"backgroundAsset": {
|
|
3938
|
+
"animations": [],
|
|
3939
|
+
"aspect": "1:1",
|
|
3940
|
+
"category": "ui",
|
|
3941
|
+
"dimension": "2d",
|
|
3942
|
+
"name": "panel-frame",
|
|
3943
|
+
"role": "ui",
|
|
3944
|
+
"style": "adventure",
|
|
3945
|
+
"thumbnailUrl": "",
|
|
3946
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/panel-frame.png",
|
|
3947
|
+
"variant": ""
|
|
3948
|
+
},
|
|
3760
3949
|
"children": [
|
|
3761
3950
|
{
|
|
3762
3951
|
"assetManifest": "@config.assetManifest",
|
|
@@ -3779,10 +3968,34 @@
|
|
|
3779
3968
|
{
|
|
3780
3969
|
"stats": [
|
|
3781
3970
|
{
|
|
3971
|
+
"iconUrl": {
|
|
3972
|
+
"animations": [],
|
|
3973
|
+
"aspect": "1:1",
|
|
3974
|
+
"category": "ui",
|
|
3975
|
+
"dimension": "2d",
|
|
3976
|
+
"name": "coin",
|
|
3977
|
+
"role": "ui",
|
|
3978
|
+
"style": "adventure",
|
|
3979
|
+
"thumbnailUrl": "",
|
|
3980
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/coin.png",
|
|
3981
|
+
"variant": ""
|
|
3982
|
+
},
|
|
3782
3983
|
"label": "Gold",
|
|
3783
3984
|
"value": "@entity.gold"
|
|
3784
3985
|
},
|
|
3785
3986
|
{
|
|
3987
|
+
"iconUrl": {
|
|
3988
|
+
"animations": [],
|
|
3989
|
+
"aspect": "1:1",
|
|
3990
|
+
"category": "ui",
|
|
3991
|
+
"dimension": "2d",
|
|
3992
|
+
"name": "icon-star",
|
|
3993
|
+
"role": "ui",
|
|
3994
|
+
"style": "adventure",
|
|
3995
|
+
"thumbnailUrl": "",
|
|
3996
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/icon-star.png",
|
|
3997
|
+
"variant": ""
|
|
3998
|
+
},
|
|
3786
3999
|
"label": "Turn",
|
|
3787
4000
|
"value": "@entity.turn"
|
|
3788
4001
|
}
|
|
@@ -3791,7 +4004,18 @@
|
|
|
3791
4004
|
},
|
|
3792
4005
|
{
|
|
3793
4006
|
"action": "END_TURN",
|
|
3794
|
-
"
|
|
4007
|
+
"iconAsset": {
|
|
4008
|
+
"animations": [],
|
|
4009
|
+
"aspect": "1:1",
|
|
4010
|
+
"category": "ui",
|
|
4011
|
+
"dimension": "2d",
|
|
4012
|
+
"name": "icon-end-turn",
|
|
4013
|
+
"role": "ui",
|
|
4014
|
+
"style": "adventure",
|
|
4015
|
+
"thumbnailUrl": "",
|
|
4016
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/icon-end-turn.png",
|
|
4017
|
+
"variant": ""
|
|
4018
|
+
},
|
|
3795
4019
|
"label": "End Turn",
|
|
3796
4020
|
"type": "button",
|
|
3797
4021
|
"variant": "secondary"
|
|
@@ -3802,6 +4026,18 @@
|
|
|
3802
4026
|
"justify": "between",
|
|
3803
4027
|
"type": "stack"
|
|
3804
4028
|
},
|
|
4029
|
+
"hudBackgroundAsset": {
|
|
4030
|
+
"animations": [],
|
|
4031
|
+
"aspect": "1:1",
|
|
4032
|
+
"category": "ui",
|
|
4033
|
+
"dimension": "2d",
|
|
4034
|
+
"name": "panel-frame",
|
|
4035
|
+
"role": "ui",
|
|
4036
|
+
"style": "adventure",
|
|
4037
|
+
"thumbnailUrl": "",
|
|
4038
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/panel-frame.png",
|
|
4039
|
+
"variant": ""
|
|
4040
|
+
},
|
|
3805
4041
|
"type": "game-shell"
|
|
3806
4042
|
}
|
|
3807
4043
|
]
|
|
@@ -3884,6 +4120,18 @@
|
|
|
3884
4120
|
"render-ui",
|
|
3885
4121
|
"main",
|
|
3886
4122
|
{
|
|
4123
|
+
"backgroundAsset": {
|
|
4124
|
+
"animations": [],
|
|
4125
|
+
"aspect": "1:1",
|
|
4126
|
+
"category": "ui",
|
|
4127
|
+
"dimension": "2d",
|
|
4128
|
+
"name": "panel-frame",
|
|
4129
|
+
"role": "ui",
|
|
4130
|
+
"style": "adventure",
|
|
4131
|
+
"thumbnailUrl": "",
|
|
4132
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/panel-frame.png",
|
|
4133
|
+
"variant": ""
|
|
4134
|
+
},
|
|
3887
4135
|
"children": [
|
|
3888
4136
|
{
|
|
3889
4137
|
"assetManifest": "@config.assetManifest",
|
|
@@ -3906,10 +4154,34 @@
|
|
|
3906
4154
|
{
|
|
3907
4155
|
"stats": [
|
|
3908
4156
|
{
|
|
4157
|
+
"iconUrl": {
|
|
4158
|
+
"animations": [],
|
|
4159
|
+
"aspect": "1:1",
|
|
4160
|
+
"category": "ui",
|
|
4161
|
+
"dimension": "2d",
|
|
4162
|
+
"name": "coin",
|
|
4163
|
+
"role": "ui",
|
|
4164
|
+
"style": "adventure",
|
|
4165
|
+
"thumbnailUrl": "",
|
|
4166
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/coin.png",
|
|
4167
|
+
"variant": ""
|
|
4168
|
+
},
|
|
3909
4169
|
"label": "Gold",
|
|
3910
4170
|
"value": "@entity.gold"
|
|
3911
4171
|
},
|
|
3912
4172
|
{
|
|
4173
|
+
"iconUrl": {
|
|
4174
|
+
"animations": [],
|
|
4175
|
+
"aspect": "1:1",
|
|
4176
|
+
"category": "ui",
|
|
4177
|
+
"dimension": "2d",
|
|
4178
|
+
"name": "icon-star",
|
|
4179
|
+
"role": "ui",
|
|
4180
|
+
"style": "adventure",
|
|
4181
|
+
"thumbnailUrl": "",
|
|
4182
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/icon-star.png",
|
|
4183
|
+
"variant": ""
|
|
4184
|
+
},
|
|
3913
4185
|
"label": "Turn",
|
|
3914
4186
|
"value": "@entity.turn"
|
|
3915
4187
|
}
|
|
@@ -3918,7 +4190,18 @@
|
|
|
3918
4190
|
},
|
|
3919
4191
|
{
|
|
3920
4192
|
"action": "END_TURN",
|
|
3921
|
-
"
|
|
4193
|
+
"iconAsset": {
|
|
4194
|
+
"animations": [],
|
|
4195
|
+
"aspect": "1:1",
|
|
4196
|
+
"category": "ui",
|
|
4197
|
+
"dimension": "2d",
|
|
4198
|
+
"name": "icon-end-turn",
|
|
4199
|
+
"role": "ui",
|
|
4200
|
+
"style": "adventure",
|
|
4201
|
+
"thumbnailUrl": "",
|
|
4202
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/icon-end-turn.png",
|
|
4203
|
+
"variant": ""
|
|
4204
|
+
},
|
|
3922
4205
|
"label": "End Turn",
|
|
3923
4206
|
"type": "button",
|
|
3924
4207
|
"variant": "secondary"
|
|
@@ -3929,6 +4212,18 @@
|
|
|
3929
4212
|
"justify": "between",
|
|
3930
4213
|
"type": "stack"
|
|
3931
4214
|
},
|
|
4215
|
+
"hudBackgroundAsset": {
|
|
4216
|
+
"animations": [],
|
|
4217
|
+
"aspect": "1:1",
|
|
4218
|
+
"category": "ui",
|
|
4219
|
+
"dimension": "2d",
|
|
4220
|
+
"name": "panel-frame",
|
|
4221
|
+
"role": "ui",
|
|
4222
|
+
"style": "adventure",
|
|
4223
|
+
"thumbnailUrl": "",
|
|
4224
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/panel-frame.png",
|
|
4225
|
+
"variant": ""
|
|
4226
|
+
},
|
|
3932
4227
|
"type": "game-shell"
|
|
3933
4228
|
}
|
|
3934
4229
|
]
|
|
@@ -4193,6 +4488,18 @@
|
|
|
4193
4488
|
"render-ui",
|
|
4194
4489
|
"main",
|
|
4195
4490
|
{
|
|
4491
|
+
"backgroundAsset": {
|
|
4492
|
+
"animations": [],
|
|
4493
|
+
"aspect": "1:1",
|
|
4494
|
+
"category": "ui",
|
|
4495
|
+
"dimension": "2d",
|
|
4496
|
+
"name": "panel-frame",
|
|
4497
|
+
"role": "ui",
|
|
4498
|
+
"style": "adventure",
|
|
4499
|
+
"thumbnailUrl": "",
|
|
4500
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/panel-frame.png",
|
|
4501
|
+
"variant": ""
|
|
4502
|
+
},
|
|
4196
4503
|
"children": [
|
|
4197
4504
|
{
|
|
4198
4505
|
"assetManifest": "@config.assetManifest",
|
|
@@ -4215,10 +4522,34 @@
|
|
|
4215
4522
|
{
|
|
4216
4523
|
"stats": [
|
|
4217
4524
|
{
|
|
4525
|
+
"iconUrl": {
|
|
4526
|
+
"animations": [],
|
|
4527
|
+
"aspect": "1:1",
|
|
4528
|
+
"category": "ui",
|
|
4529
|
+
"dimension": "2d",
|
|
4530
|
+
"name": "coin",
|
|
4531
|
+
"role": "ui",
|
|
4532
|
+
"style": "adventure",
|
|
4533
|
+
"thumbnailUrl": "",
|
|
4534
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/coin.png",
|
|
4535
|
+
"variant": ""
|
|
4536
|
+
},
|
|
4218
4537
|
"label": "Gold",
|
|
4219
4538
|
"value": "@entity.gold"
|
|
4220
4539
|
},
|
|
4221
4540
|
{
|
|
4541
|
+
"iconUrl": {
|
|
4542
|
+
"animations": [],
|
|
4543
|
+
"aspect": "1:1",
|
|
4544
|
+
"category": "ui",
|
|
4545
|
+
"dimension": "2d",
|
|
4546
|
+
"name": "icon-star",
|
|
4547
|
+
"role": "ui",
|
|
4548
|
+
"style": "adventure",
|
|
4549
|
+
"thumbnailUrl": "",
|
|
4550
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/icon-star.png",
|
|
4551
|
+
"variant": ""
|
|
4552
|
+
},
|
|
4222
4553
|
"label": "Turn",
|
|
4223
4554
|
"value": "@entity.turn"
|
|
4224
4555
|
}
|
|
@@ -4227,7 +4558,18 @@
|
|
|
4227
4558
|
},
|
|
4228
4559
|
{
|
|
4229
4560
|
"action": "END_TURN",
|
|
4230
|
-
"
|
|
4561
|
+
"iconAsset": {
|
|
4562
|
+
"animations": [],
|
|
4563
|
+
"aspect": "1:1",
|
|
4564
|
+
"category": "ui",
|
|
4565
|
+
"dimension": "2d",
|
|
4566
|
+
"name": "icon-end-turn",
|
|
4567
|
+
"role": "ui",
|
|
4568
|
+
"style": "adventure",
|
|
4569
|
+
"thumbnailUrl": "",
|
|
4570
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/icon-end-turn.png",
|
|
4571
|
+
"variant": ""
|
|
4572
|
+
},
|
|
4231
4573
|
"label": "End Turn",
|
|
4232
4574
|
"type": "button",
|
|
4233
4575
|
"variant": "secondary"
|
|
@@ -4238,6 +4580,18 @@
|
|
|
4238
4580
|
"justify": "between",
|
|
4239
4581
|
"type": "stack"
|
|
4240
4582
|
},
|
|
4583
|
+
"hudBackgroundAsset": {
|
|
4584
|
+
"animations": [],
|
|
4585
|
+
"aspect": "1:1",
|
|
4586
|
+
"category": "ui",
|
|
4587
|
+
"dimension": "2d",
|
|
4588
|
+
"name": "panel-frame",
|
|
4589
|
+
"role": "ui",
|
|
4590
|
+
"style": "adventure",
|
|
4591
|
+
"thumbnailUrl": "",
|
|
4592
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/panel-frame.png",
|
|
4593
|
+
"variant": ""
|
|
4594
|
+
},
|
|
4241
4595
|
"type": "game-shell"
|
|
4242
4596
|
}
|
|
4243
4597
|
]
|
|
@@ -4357,6 +4711,18 @@
|
|
|
4357
4711
|
"render-ui",
|
|
4358
4712
|
"main",
|
|
4359
4713
|
{
|
|
4714
|
+
"backgroundAsset": {
|
|
4715
|
+
"animations": [],
|
|
4716
|
+
"aspect": "1:1",
|
|
4717
|
+
"category": "ui",
|
|
4718
|
+
"dimension": "2d",
|
|
4719
|
+
"name": "panel-frame",
|
|
4720
|
+
"role": "ui",
|
|
4721
|
+
"style": "adventure",
|
|
4722
|
+
"thumbnailUrl": "",
|
|
4723
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/panel-frame.png",
|
|
4724
|
+
"variant": ""
|
|
4725
|
+
},
|
|
4360
4726
|
"children": [
|
|
4361
4727
|
{
|
|
4362
4728
|
"assetManifest": "@config.assetManifest",
|
|
@@ -4379,10 +4745,34 @@
|
|
|
4379
4745
|
{
|
|
4380
4746
|
"stats": [
|
|
4381
4747
|
{
|
|
4748
|
+
"iconUrl": {
|
|
4749
|
+
"animations": [],
|
|
4750
|
+
"aspect": "1:1",
|
|
4751
|
+
"category": "ui",
|
|
4752
|
+
"dimension": "2d",
|
|
4753
|
+
"name": "coin",
|
|
4754
|
+
"role": "ui",
|
|
4755
|
+
"style": "adventure",
|
|
4756
|
+
"thumbnailUrl": "",
|
|
4757
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/coin.png",
|
|
4758
|
+
"variant": ""
|
|
4759
|
+
},
|
|
4382
4760
|
"label": "Gold",
|
|
4383
4761
|
"value": "@entity.gold"
|
|
4384
4762
|
},
|
|
4385
4763
|
{
|
|
4764
|
+
"iconUrl": {
|
|
4765
|
+
"animations": [],
|
|
4766
|
+
"aspect": "1:1",
|
|
4767
|
+
"category": "ui",
|
|
4768
|
+
"dimension": "2d",
|
|
4769
|
+
"name": "icon-star",
|
|
4770
|
+
"role": "ui",
|
|
4771
|
+
"style": "adventure",
|
|
4772
|
+
"thumbnailUrl": "",
|
|
4773
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/icon-star.png",
|
|
4774
|
+
"variant": ""
|
|
4775
|
+
},
|
|
4386
4776
|
"label": "Turn",
|
|
4387
4777
|
"value": "@entity.turn"
|
|
4388
4778
|
}
|
|
@@ -4391,7 +4781,18 @@
|
|
|
4391
4781
|
},
|
|
4392
4782
|
{
|
|
4393
4783
|
"action": "END_TURN",
|
|
4394
|
-
"
|
|
4784
|
+
"iconAsset": {
|
|
4785
|
+
"animations": [],
|
|
4786
|
+
"aspect": "1:1",
|
|
4787
|
+
"category": "ui",
|
|
4788
|
+
"dimension": "2d",
|
|
4789
|
+
"name": "icon-end-turn",
|
|
4790
|
+
"role": "ui",
|
|
4791
|
+
"style": "adventure",
|
|
4792
|
+
"thumbnailUrl": "",
|
|
4793
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/icon-end-turn.png",
|
|
4794
|
+
"variant": ""
|
|
4795
|
+
},
|
|
4395
4796
|
"label": "End Turn",
|
|
4396
4797
|
"type": "button",
|
|
4397
4798
|
"variant": "secondary"
|
|
@@ -4402,6 +4803,18 @@
|
|
|
4402
4803
|
"justify": "between",
|
|
4403
4804
|
"type": "stack"
|
|
4404
4805
|
},
|
|
4806
|
+
"hudBackgroundAsset": {
|
|
4807
|
+
"animations": [],
|
|
4808
|
+
"aspect": "1:1",
|
|
4809
|
+
"category": "ui",
|
|
4810
|
+
"dimension": "2d",
|
|
4811
|
+
"name": "panel-frame",
|
|
4812
|
+
"role": "ui",
|
|
4813
|
+
"style": "adventure",
|
|
4814
|
+
"thumbnailUrl": "",
|
|
4815
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/panel-frame.png",
|
|
4816
|
+
"variant": ""
|
|
4817
|
+
},
|
|
4405
4818
|
"type": "game-shell"
|
|
4406
4819
|
}
|
|
4407
4820
|
]
|
|
@@ -4445,6 +4858,18 @@
|
|
|
4445
4858
|
"render-ui",
|
|
4446
4859
|
"main",
|
|
4447
4860
|
{
|
|
4861
|
+
"backgroundAsset": {
|
|
4862
|
+
"animations": [],
|
|
4863
|
+
"aspect": "1:1",
|
|
4864
|
+
"category": "ui",
|
|
4865
|
+
"dimension": "2d",
|
|
4866
|
+
"name": "panel-frame",
|
|
4867
|
+
"role": "ui",
|
|
4868
|
+
"style": "adventure",
|
|
4869
|
+
"thumbnailUrl": "",
|
|
4870
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/panel-frame.png",
|
|
4871
|
+
"variant": ""
|
|
4872
|
+
},
|
|
4448
4873
|
"children": [
|
|
4449
4874
|
{
|
|
4450
4875
|
"assetManifest": "@config.assetManifest",
|
|
@@ -4467,10 +4892,34 @@
|
|
|
4467
4892
|
{
|
|
4468
4893
|
"stats": [
|
|
4469
4894
|
{
|
|
4895
|
+
"iconUrl": {
|
|
4896
|
+
"animations": [],
|
|
4897
|
+
"aspect": "1:1",
|
|
4898
|
+
"category": "ui",
|
|
4899
|
+
"dimension": "2d",
|
|
4900
|
+
"name": "coin",
|
|
4901
|
+
"role": "ui",
|
|
4902
|
+
"style": "adventure",
|
|
4903
|
+
"thumbnailUrl": "",
|
|
4904
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/coin.png",
|
|
4905
|
+
"variant": ""
|
|
4906
|
+
},
|
|
4470
4907
|
"label": "Gold",
|
|
4471
4908
|
"value": "@entity.gold"
|
|
4472
4909
|
},
|
|
4473
4910
|
{
|
|
4911
|
+
"iconUrl": {
|
|
4912
|
+
"animations": [],
|
|
4913
|
+
"aspect": "1:1",
|
|
4914
|
+
"category": "ui",
|
|
4915
|
+
"dimension": "2d",
|
|
4916
|
+
"name": "icon-star",
|
|
4917
|
+
"role": "ui",
|
|
4918
|
+
"style": "adventure",
|
|
4919
|
+
"thumbnailUrl": "",
|
|
4920
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/icon-star.png",
|
|
4921
|
+
"variant": ""
|
|
4922
|
+
},
|
|
4474
4923
|
"label": "Turn",
|
|
4475
4924
|
"value": "@entity.turn"
|
|
4476
4925
|
}
|
|
@@ -4479,7 +4928,18 @@
|
|
|
4479
4928
|
},
|
|
4480
4929
|
{
|
|
4481
4930
|
"action": "END_TURN",
|
|
4482
|
-
"
|
|
4931
|
+
"iconAsset": {
|
|
4932
|
+
"animations": [],
|
|
4933
|
+
"aspect": "1:1",
|
|
4934
|
+
"category": "ui",
|
|
4935
|
+
"dimension": "2d",
|
|
4936
|
+
"name": "icon-end-turn",
|
|
4937
|
+
"role": "ui",
|
|
4938
|
+
"style": "adventure",
|
|
4939
|
+
"thumbnailUrl": "",
|
|
4940
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/icon-end-turn.png",
|
|
4941
|
+
"variant": ""
|
|
4942
|
+
},
|
|
4483
4943
|
"label": "End Turn",
|
|
4484
4944
|
"type": "button",
|
|
4485
4945
|
"variant": "secondary"
|
|
@@ -4490,6 +4950,18 @@
|
|
|
4490
4950
|
"justify": "between",
|
|
4491
4951
|
"type": "stack"
|
|
4492
4952
|
},
|
|
4953
|
+
"hudBackgroundAsset": {
|
|
4954
|
+
"animations": [],
|
|
4955
|
+
"aspect": "1:1",
|
|
4956
|
+
"category": "ui",
|
|
4957
|
+
"dimension": "2d",
|
|
4958
|
+
"name": "panel-frame",
|
|
4959
|
+
"role": "ui",
|
|
4960
|
+
"style": "adventure",
|
|
4961
|
+
"thumbnailUrl": "",
|
|
4962
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/panel-frame.png",
|
|
4963
|
+
"variant": ""
|
|
4964
|
+
},
|
|
4493
4965
|
"type": "game-shell"
|
|
4494
4966
|
}
|
|
4495
4967
|
]
|
|
@@ -4524,6 +4996,18 @@
|
|
|
4524
4996
|
"render-ui",
|
|
4525
4997
|
"main",
|
|
4526
4998
|
{
|
|
4999
|
+
"backgroundAsset": {
|
|
5000
|
+
"animations": [],
|
|
5001
|
+
"aspect": "1:1",
|
|
5002
|
+
"category": "ui",
|
|
5003
|
+
"dimension": "2d",
|
|
5004
|
+
"name": "panel-frame",
|
|
5005
|
+
"role": "ui",
|
|
5006
|
+
"style": "adventure",
|
|
5007
|
+
"thumbnailUrl": "",
|
|
5008
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/panel-frame.png",
|
|
5009
|
+
"variant": ""
|
|
5010
|
+
},
|
|
4527
5011
|
"children": [
|
|
4528
5012
|
{
|
|
4529
5013
|
"assetManifest": "@config.assetManifest",
|
|
@@ -4546,10 +5030,34 @@
|
|
|
4546
5030
|
{
|
|
4547
5031
|
"stats": [
|
|
4548
5032
|
{
|
|
5033
|
+
"iconUrl": {
|
|
5034
|
+
"animations": [],
|
|
5035
|
+
"aspect": "1:1",
|
|
5036
|
+
"category": "ui",
|
|
5037
|
+
"dimension": "2d",
|
|
5038
|
+
"name": "coin",
|
|
5039
|
+
"role": "ui",
|
|
5040
|
+
"style": "adventure",
|
|
5041
|
+
"thumbnailUrl": "",
|
|
5042
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/coin.png",
|
|
5043
|
+
"variant": ""
|
|
5044
|
+
},
|
|
4549
5045
|
"label": "Gold",
|
|
4550
5046
|
"value": "@entity.gold"
|
|
4551
5047
|
},
|
|
4552
5048
|
{
|
|
5049
|
+
"iconUrl": {
|
|
5050
|
+
"animations": [],
|
|
5051
|
+
"aspect": "1:1",
|
|
5052
|
+
"category": "ui",
|
|
5053
|
+
"dimension": "2d",
|
|
5054
|
+
"name": "icon-star",
|
|
5055
|
+
"role": "ui",
|
|
5056
|
+
"style": "adventure",
|
|
5057
|
+
"thumbnailUrl": "",
|
|
5058
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/icon-star.png",
|
|
5059
|
+
"variant": ""
|
|
5060
|
+
},
|
|
4553
5061
|
"label": "Turn",
|
|
4554
5062
|
"value": "@entity.turn"
|
|
4555
5063
|
}
|
|
@@ -4558,7 +5066,18 @@
|
|
|
4558
5066
|
},
|
|
4559
5067
|
{
|
|
4560
5068
|
"action": "END_TURN",
|
|
4561
|
-
"
|
|
5069
|
+
"iconAsset": {
|
|
5070
|
+
"animations": [],
|
|
5071
|
+
"aspect": "1:1",
|
|
5072
|
+
"category": "ui",
|
|
5073
|
+
"dimension": "2d",
|
|
5074
|
+
"name": "icon-end-turn",
|
|
5075
|
+
"role": "ui",
|
|
5076
|
+
"style": "adventure",
|
|
5077
|
+
"thumbnailUrl": "",
|
|
5078
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/icon-end-turn.png",
|
|
5079
|
+
"variant": ""
|
|
5080
|
+
},
|
|
4562
5081
|
"label": "End Turn",
|
|
4563
5082
|
"type": "button",
|
|
4564
5083
|
"variant": "secondary"
|
|
@@ -4569,6 +5088,18 @@
|
|
|
4569
5088
|
"justify": "between",
|
|
4570
5089
|
"type": "stack"
|
|
4571
5090
|
},
|
|
5091
|
+
"hudBackgroundAsset": {
|
|
5092
|
+
"animations": [],
|
|
5093
|
+
"aspect": "1:1",
|
|
5094
|
+
"category": "ui",
|
|
5095
|
+
"dimension": "2d",
|
|
5096
|
+
"name": "panel-frame",
|
|
5097
|
+
"role": "ui",
|
|
5098
|
+
"style": "adventure",
|
|
5099
|
+
"thumbnailUrl": "",
|
|
5100
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/panel-frame.png",
|
|
5101
|
+
"variant": ""
|
|
5102
|
+
},
|
|
4572
5103
|
"type": "game-shell"
|
|
4573
5104
|
}
|
|
4574
5105
|
]
|
|
@@ -4634,6 +5165,18 @@
|
|
|
4634
5165
|
"render-ui",
|
|
4635
5166
|
"main",
|
|
4636
5167
|
{
|
|
5168
|
+
"backgroundAsset": {
|
|
5169
|
+
"animations": [],
|
|
5170
|
+
"aspect": "1:1",
|
|
5171
|
+
"category": "ui",
|
|
5172
|
+
"dimension": "2d",
|
|
5173
|
+
"name": "panel-frame",
|
|
5174
|
+
"role": "ui",
|
|
5175
|
+
"style": "adventure",
|
|
5176
|
+
"thumbnailUrl": "",
|
|
5177
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/panel-frame.png",
|
|
5178
|
+
"variant": ""
|
|
5179
|
+
},
|
|
4637
5180
|
"children": [
|
|
4638
5181
|
{
|
|
4639
5182
|
"assetManifest": "@config.assetManifest",
|
|
@@ -4656,10 +5199,34 @@
|
|
|
4656
5199
|
{
|
|
4657
5200
|
"stats": [
|
|
4658
5201
|
{
|
|
5202
|
+
"iconUrl": {
|
|
5203
|
+
"animations": [],
|
|
5204
|
+
"aspect": "1:1",
|
|
5205
|
+
"category": "ui",
|
|
5206
|
+
"dimension": "2d",
|
|
5207
|
+
"name": "coin",
|
|
5208
|
+
"role": "ui",
|
|
5209
|
+
"style": "adventure",
|
|
5210
|
+
"thumbnailUrl": "",
|
|
5211
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/coin.png",
|
|
5212
|
+
"variant": ""
|
|
5213
|
+
},
|
|
4659
5214
|
"label": "Gold",
|
|
4660
5215
|
"value": "@entity.gold"
|
|
4661
5216
|
},
|
|
4662
5217
|
{
|
|
5218
|
+
"iconUrl": {
|
|
5219
|
+
"animations": [],
|
|
5220
|
+
"aspect": "1:1",
|
|
5221
|
+
"category": "ui",
|
|
5222
|
+
"dimension": "2d",
|
|
5223
|
+
"name": "icon-star",
|
|
5224
|
+
"role": "ui",
|
|
5225
|
+
"style": "adventure",
|
|
5226
|
+
"thumbnailUrl": "",
|
|
5227
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/icon-star.png",
|
|
5228
|
+
"variant": ""
|
|
5229
|
+
},
|
|
4663
5230
|
"label": "Turn",
|
|
4664
5231
|
"value": "@entity.turn"
|
|
4665
5232
|
}
|
|
@@ -4668,7 +5235,18 @@
|
|
|
4668
5235
|
},
|
|
4669
5236
|
{
|
|
4670
5237
|
"action": "END_TURN",
|
|
4671
|
-
"
|
|
5238
|
+
"iconAsset": {
|
|
5239
|
+
"animations": [],
|
|
5240
|
+
"aspect": "1:1",
|
|
5241
|
+
"category": "ui",
|
|
5242
|
+
"dimension": "2d",
|
|
5243
|
+
"name": "icon-end-turn",
|
|
5244
|
+
"role": "ui",
|
|
5245
|
+
"style": "adventure",
|
|
5246
|
+
"thumbnailUrl": "",
|
|
5247
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/icon-end-turn.png",
|
|
5248
|
+
"variant": ""
|
|
5249
|
+
},
|
|
4672
5250
|
"label": "End Turn",
|
|
4673
5251
|
"type": "button",
|
|
4674
5252
|
"variant": "secondary"
|
|
@@ -4679,6 +5257,18 @@
|
|
|
4679
5257
|
"justify": "between",
|
|
4680
5258
|
"type": "stack"
|
|
4681
5259
|
},
|
|
5260
|
+
"hudBackgroundAsset": {
|
|
5261
|
+
"animations": [],
|
|
5262
|
+
"aspect": "1:1",
|
|
5263
|
+
"category": "ui",
|
|
5264
|
+
"dimension": "2d",
|
|
5265
|
+
"name": "panel-frame",
|
|
5266
|
+
"role": "ui",
|
|
5267
|
+
"style": "adventure",
|
|
5268
|
+
"thumbnailUrl": "",
|
|
5269
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/panel-frame.png",
|
|
5270
|
+
"variant": ""
|
|
5271
|
+
},
|
|
4682
5272
|
"type": "game-shell"
|
|
4683
5273
|
}
|
|
4684
5274
|
]
|
|
@@ -4805,6 +5395,18 @@
|
|
|
4805
5395
|
"render-ui",
|
|
4806
5396
|
"main",
|
|
4807
5397
|
{
|
|
5398
|
+
"backgroundAsset": {
|
|
5399
|
+
"animations": [],
|
|
5400
|
+
"aspect": "1:1",
|
|
5401
|
+
"category": "ui",
|
|
5402
|
+
"dimension": "2d",
|
|
5403
|
+
"name": "panel-frame",
|
|
5404
|
+
"role": "ui",
|
|
5405
|
+
"style": "adventure",
|
|
5406
|
+
"thumbnailUrl": "",
|
|
5407
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/panel-frame.png",
|
|
5408
|
+
"variant": ""
|
|
5409
|
+
},
|
|
4808
5410
|
"children": [
|
|
4809
5411
|
{
|
|
4810
5412
|
"assetManifest": "@config.assetManifest",
|
|
@@ -4827,10 +5429,34 @@
|
|
|
4827
5429
|
{
|
|
4828
5430
|
"stats": [
|
|
4829
5431
|
{
|
|
5432
|
+
"iconUrl": {
|
|
5433
|
+
"animations": [],
|
|
5434
|
+
"aspect": "1:1",
|
|
5435
|
+
"category": "ui",
|
|
5436
|
+
"dimension": "2d",
|
|
5437
|
+
"name": "coin",
|
|
5438
|
+
"role": "ui",
|
|
5439
|
+
"style": "adventure",
|
|
5440
|
+
"thumbnailUrl": "",
|
|
5441
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/coin.png",
|
|
5442
|
+
"variant": ""
|
|
5443
|
+
},
|
|
4830
5444
|
"label": "Gold",
|
|
4831
5445
|
"value": "@entity.gold"
|
|
4832
5446
|
},
|
|
4833
5447
|
{
|
|
5448
|
+
"iconUrl": {
|
|
5449
|
+
"animations": [],
|
|
5450
|
+
"aspect": "1:1",
|
|
5451
|
+
"category": "ui",
|
|
5452
|
+
"dimension": "2d",
|
|
5453
|
+
"name": "icon-star",
|
|
5454
|
+
"role": "ui",
|
|
5455
|
+
"style": "adventure",
|
|
5456
|
+
"thumbnailUrl": "",
|
|
5457
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/icon-star.png",
|
|
5458
|
+
"variant": ""
|
|
5459
|
+
},
|
|
4834
5460
|
"label": "Turn",
|
|
4835
5461
|
"value": "@entity.turn"
|
|
4836
5462
|
}
|
|
@@ -4839,7 +5465,18 @@
|
|
|
4839
5465
|
},
|
|
4840
5466
|
{
|
|
4841
5467
|
"action": "END_TURN",
|
|
4842
|
-
"
|
|
5468
|
+
"iconAsset": {
|
|
5469
|
+
"animations": [],
|
|
5470
|
+
"aspect": "1:1",
|
|
5471
|
+
"category": "ui",
|
|
5472
|
+
"dimension": "2d",
|
|
5473
|
+
"name": "icon-end-turn",
|
|
5474
|
+
"role": "ui",
|
|
5475
|
+
"style": "adventure",
|
|
5476
|
+
"thumbnailUrl": "",
|
|
5477
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/icon-end-turn.png",
|
|
5478
|
+
"variant": ""
|
|
5479
|
+
},
|
|
4843
5480
|
"label": "End Turn",
|
|
4844
5481
|
"type": "button",
|
|
4845
5482
|
"variant": "secondary"
|
|
@@ -4850,6 +5487,18 @@
|
|
|
4850
5487
|
"justify": "between",
|
|
4851
5488
|
"type": "stack"
|
|
4852
5489
|
},
|
|
5490
|
+
"hudBackgroundAsset": {
|
|
5491
|
+
"animations": [],
|
|
5492
|
+
"aspect": "1:1",
|
|
5493
|
+
"category": "ui",
|
|
5494
|
+
"dimension": "2d",
|
|
5495
|
+
"name": "panel-frame",
|
|
5496
|
+
"role": "ui",
|
|
5497
|
+
"style": "adventure",
|
|
5498
|
+
"thumbnailUrl": "",
|
|
5499
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/panel-frame.png",
|
|
5500
|
+
"variant": ""
|
|
5501
|
+
},
|
|
4853
5502
|
"type": "game-shell"
|
|
4854
5503
|
}
|
|
4855
5504
|
]
|
|
@@ -4941,6 +5590,18 @@
|
|
|
4941
5590
|
"render-ui",
|
|
4942
5591
|
"main",
|
|
4943
5592
|
{
|
|
5593
|
+
"backgroundAsset": {
|
|
5594
|
+
"animations": [],
|
|
5595
|
+
"aspect": "1:1",
|
|
5596
|
+
"category": "ui",
|
|
5597
|
+
"dimension": "2d",
|
|
5598
|
+
"name": "panel-frame",
|
|
5599
|
+
"role": "ui",
|
|
5600
|
+
"style": "adventure",
|
|
5601
|
+
"thumbnailUrl": "",
|
|
5602
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/panel-frame.png",
|
|
5603
|
+
"variant": ""
|
|
5604
|
+
},
|
|
4944
5605
|
"children": [
|
|
4945
5606
|
{
|
|
4946
5607
|
"assetManifest": "@config.assetManifest",
|
|
@@ -4963,10 +5624,34 @@
|
|
|
4963
5624
|
{
|
|
4964
5625
|
"stats": [
|
|
4965
5626
|
{
|
|
5627
|
+
"iconUrl": {
|
|
5628
|
+
"animations": [],
|
|
5629
|
+
"aspect": "1:1",
|
|
5630
|
+
"category": "ui",
|
|
5631
|
+
"dimension": "2d",
|
|
5632
|
+
"name": "coin",
|
|
5633
|
+
"role": "ui",
|
|
5634
|
+
"style": "adventure",
|
|
5635
|
+
"thumbnailUrl": "",
|
|
5636
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/coin.png",
|
|
5637
|
+
"variant": ""
|
|
5638
|
+
},
|
|
4966
5639
|
"label": "Gold",
|
|
4967
5640
|
"value": "@entity.gold"
|
|
4968
5641
|
},
|
|
4969
5642
|
{
|
|
5643
|
+
"iconUrl": {
|
|
5644
|
+
"animations": [],
|
|
5645
|
+
"aspect": "1:1",
|
|
5646
|
+
"category": "ui",
|
|
5647
|
+
"dimension": "2d",
|
|
5648
|
+
"name": "icon-star",
|
|
5649
|
+
"role": "ui",
|
|
5650
|
+
"style": "adventure",
|
|
5651
|
+
"thumbnailUrl": "",
|
|
5652
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/icon-star.png",
|
|
5653
|
+
"variant": ""
|
|
5654
|
+
},
|
|
4970
5655
|
"label": "Turn",
|
|
4971
5656
|
"value": "@entity.turn"
|
|
4972
5657
|
}
|
|
@@ -4975,7 +5660,18 @@
|
|
|
4975
5660
|
},
|
|
4976
5661
|
{
|
|
4977
5662
|
"action": "END_TURN",
|
|
4978
|
-
"
|
|
5663
|
+
"iconAsset": {
|
|
5664
|
+
"animations": [],
|
|
5665
|
+
"aspect": "1:1",
|
|
5666
|
+
"category": "ui",
|
|
5667
|
+
"dimension": "2d",
|
|
5668
|
+
"name": "icon-end-turn",
|
|
5669
|
+
"role": "ui",
|
|
5670
|
+
"style": "adventure",
|
|
5671
|
+
"thumbnailUrl": "",
|
|
5672
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/icon-end-turn.png",
|
|
5673
|
+
"variant": ""
|
|
5674
|
+
},
|
|
4979
5675
|
"label": "End Turn",
|
|
4980
5676
|
"type": "button",
|
|
4981
5677
|
"variant": "secondary"
|
|
@@ -4986,6 +5682,18 @@
|
|
|
4986
5682
|
"justify": "between",
|
|
4987
5683
|
"type": "stack"
|
|
4988
5684
|
},
|
|
5685
|
+
"hudBackgroundAsset": {
|
|
5686
|
+
"animations": [],
|
|
5687
|
+
"aspect": "1:1",
|
|
5688
|
+
"category": "ui",
|
|
5689
|
+
"dimension": "2d",
|
|
5690
|
+
"name": "panel-frame",
|
|
5691
|
+
"role": "ui",
|
|
5692
|
+
"style": "adventure",
|
|
5693
|
+
"thumbnailUrl": "",
|
|
5694
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/panel-frame.png",
|
|
5695
|
+
"variant": ""
|
|
5696
|
+
},
|
|
4989
5697
|
"type": "game-shell"
|
|
4990
5698
|
}
|
|
4991
5699
|
]
|
|
@@ -5489,6 +6197,18 @@
|
|
|
5489
6197
|
"render-ui",
|
|
5490
6198
|
"main",
|
|
5491
6199
|
{
|
|
6200
|
+
"backgroundAsset": {
|
|
6201
|
+
"animations": [],
|
|
6202
|
+
"aspect": "1:1",
|
|
6203
|
+
"category": "ui",
|
|
6204
|
+
"dimension": "2d",
|
|
6205
|
+
"name": "panel-frame",
|
|
6206
|
+
"role": "ui",
|
|
6207
|
+
"style": "adventure",
|
|
6208
|
+
"thumbnailUrl": "",
|
|
6209
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/panel-frame.png",
|
|
6210
|
+
"variant": ""
|
|
6211
|
+
},
|
|
5492
6212
|
"children": [
|
|
5493
6213
|
{
|
|
5494
6214
|
"assetManifest": "@config.assetManifest",
|
|
@@ -5511,10 +6231,34 @@
|
|
|
5511
6231
|
{
|
|
5512
6232
|
"stats": [
|
|
5513
6233
|
{
|
|
6234
|
+
"iconUrl": {
|
|
6235
|
+
"animations": [],
|
|
6236
|
+
"aspect": "1:1",
|
|
6237
|
+
"category": "ui",
|
|
6238
|
+
"dimension": "2d",
|
|
6239
|
+
"name": "coin",
|
|
6240
|
+
"role": "ui",
|
|
6241
|
+
"style": "adventure",
|
|
6242
|
+
"thumbnailUrl": "",
|
|
6243
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/coin.png",
|
|
6244
|
+
"variant": ""
|
|
6245
|
+
},
|
|
5514
6246
|
"label": "Gold",
|
|
5515
6247
|
"value": "@entity.gold"
|
|
5516
6248
|
},
|
|
5517
6249
|
{
|
|
6250
|
+
"iconUrl": {
|
|
6251
|
+
"animations": [],
|
|
6252
|
+
"aspect": "1:1",
|
|
6253
|
+
"category": "ui",
|
|
6254
|
+
"dimension": "2d",
|
|
6255
|
+
"name": "icon-star",
|
|
6256
|
+
"role": "ui",
|
|
6257
|
+
"style": "adventure",
|
|
6258
|
+
"thumbnailUrl": "",
|
|
6259
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/icon-star.png",
|
|
6260
|
+
"variant": ""
|
|
6261
|
+
},
|
|
5518
6262
|
"label": "Turn",
|
|
5519
6263
|
"value": "@entity.turn"
|
|
5520
6264
|
}
|
|
@@ -5523,7 +6267,18 @@
|
|
|
5523
6267
|
},
|
|
5524
6268
|
{
|
|
5525
6269
|
"action": "END_TURN",
|
|
5526
|
-
"
|
|
6270
|
+
"iconAsset": {
|
|
6271
|
+
"animations": [],
|
|
6272
|
+
"aspect": "1:1",
|
|
6273
|
+
"category": "ui",
|
|
6274
|
+
"dimension": "2d",
|
|
6275
|
+
"name": "icon-end-turn",
|
|
6276
|
+
"role": "ui",
|
|
6277
|
+
"style": "adventure",
|
|
6278
|
+
"thumbnailUrl": "",
|
|
6279
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/icon-end-turn.png",
|
|
6280
|
+
"variant": ""
|
|
6281
|
+
},
|
|
5527
6282
|
"label": "End Turn",
|
|
5528
6283
|
"type": "button",
|
|
5529
6284
|
"variant": "secondary"
|
|
@@ -5534,6 +6289,18 @@
|
|
|
5534
6289
|
"justify": "between",
|
|
5535
6290
|
"type": "stack"
|
|
5536
6291
|
},
|
|
6292
|
+
"hudBackgroundAsset": {
|
|
6293
|
+
"animations": [],
|
|
6294
|
+
"aspect": "1:1",
|
|
6295
|
+
"category": "ui",
|
|
6296
|
+
"dimension": "2d",
|
|
6297
|
+
"name": "panel-frame",
|
|
6298
|
+
"role": "ui",
|
|
6299
|
+
"style": "adventure",
|
|
6300
|
+
"thumbnailUrl": "",
|
|
6301
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-pirate-board/default/ui/panel-frame.png",
|
|
6302
|
+
"variant": ""
|
|
6303
|
+
},
|
|
5537
6304
|
"type": "game-shell"
|
|
5538
6305
|
}
|
|
5539
6306
|
]
|