@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
|
@@ -3095,6 +3095,18 @@
|
|
|
3095
3095
|
"render-ui",
|
|
3096
3096
|
"main",
|
|
3097
3097
|
{
|
|
3098
|
+
"backgroundAsset": {
|
|
3099
|
+
"animations": [],
|
|
3100
|
+
"aspect": "1:1",
|
|
3101
|
+
"category": "ui",
|
|
3102
|
+
"dimension": "2d",
|
|
3103
|
+
"name": "panel-frame",
|
|
3104
|
+
"role": "ui",
|
|
3105
|
+
"style": "fantasy-border",
|
|
3106
|
+
"thumbnailUrl": "",
|
|
3107
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/panel-frame.png",
|
|
3108
|
+
"variant": ""
|
|
3109
|
+
},
|
|
3098
3110
|
"children": [
|
|
3099
3111
|
{
|
|
3100
3112
|
"assetManifest": "@config.assetManifest",
|
|
@@ -3124,14 +3136,50 @@
|
|
|
3124
3136
|
{
|
|
3125
3137
|
"stats": [
|
|
3126
3138
|
{
|
|
3139
|
+
"iconUrl": {
|
|
3140
|
+
"animations": [],
|
|
3141
|
+
"aspect": "1:1",
|
|
3142
|
+
"category": "ui",
|
|
3143
|
+
"dimension": "2d",
|
|
3144
|
+
"name": "icon-turn",
|
|
3145
|
+
"role": "ui",
|
|
3146
|
+
"style": "fantasy-border",
|
|
3147
|
+
"thumbnailUrl": "",
|
|
3148
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-turn.png",
|
|
3149
|
+
"variant": ""
|
|
3150
|
+
},
|
|
3127
3151
|
"label": "Turn",
|
|
3128
3152
|
"value": "@entity.turn"
|
|
3129
3153
|
},
|
|
3130
3154
|
{
|
|
3155
|
+
"iconUrl": {
|
|
3156
|
+
"animations": [],
|
|
3157
|
+
"aspect": "1:1",
|
|
3158
|
+
"category": "ui",
|
|
3159
|
+
"dimension": "2d",
|
|
3160
|
+
"name": "icon-territory",
|
|
3161
|
+
"role": "ui",
|
|
3162
|
+
"style": "fantasy-border",
|
|
3163
|
+
"thumbnailUrl": "",
|
|
3164
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-territory.png",
|
|
3165
|
+
"variant": ""
|
|
3166
|
+
},
|
|
3131
3167
|
"label": "Territory",
|
|
3132
3168
|
"value": "@entity.territory"
|
|
3133
3169
|
},
|
|
3134
3170
|
{
|
|
3171
|
+
"iconUrl": {
|
|
3172
|
+
"animations": [],
|
|
3173
|
+
"aspect": "1:1",
|
|
3174
|
+
"category": "ui",
|
|
3175
|
+
"dimension": "2d",
|
|
3176
|
+
"name": "icon-result",
|
|
3177
|
+
"role": "ui",
|
|
3178
|
+
"style": "fantasy-border",
|
|
3179
|
+
"thumbnailUrl": "",
|
|
3180
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-result.png",
|
|
3181
|
+
"variant": ""
|
|
3182
|
+
},
|
|
3135
3183
|
"label": "Result",
|
|
3136
3184
|
"value": "@entity.result"
|
|
3137
3185
|
}
|
|
@@ -3152,7 +3200,18 @@
|
|
|
3152
3200
|
},
|
|
3153
3201
|
{
|
|
3154
3202
|
"action": "END_TURN",
|
|
3155
|
-
"
|
|
3203
|
+
"iconAsset": {
|
|
3204
|
+
"animations": [],
|
|
3205
|
+
"aspect": "1:1",
|
|
3206
|
+
"category": "ui",
|
|
3207
|
+
"dimension": "2d",
|
|
3208
|
+
"name": "icon-end-turn",
|
|
3209
|
+
"role": "ui",
|
|
3210
|
+
"style": "fantasy-border",
|
|
3211
|
+
"thumbnailUrl": "",
|
|
3212
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-end-turn.png",
|
|
3213
|
+
"variant": ""
|
|
3214
|
+
},
|
|
3156
3215
|
"label": "End Turn",
|
|
3157
3216
|
"type": "button",
|
|
3158
3217
|
"variant": "secondary"
|
|
@@ -3163,6 +3222,18 @@
|
|
|
3163
3222
|
"justify": "between",
|
|
3164
3223
|
"type": "stack"
|
|
3165
3224
|
},
|
|
3225
|
+
"hudBackgroundAsset": {
|
|
3226
|
+
"animations": [],
|
|
3227
|
+
"aspect": "1:1",
|
|
3228
|
+
"category": "ui",
|
|
3229
|
+
"dimension": "2d",
|
|
3230
|
+
"name": "panel-frame",
|
|
3231
|
+
"role": "ui",
|
|
3232
|
+
"style": "fantasy-border",
|
|
3233
|
+
"thumbnailUrl": "",
|
|
3234
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/panel-frame.png",
|
|
3235
|
+
"variant": ""
|
|
3236
|
+
},
|
|
3166
3237
|
"type": "game-shell"
|
|
3167
3238
|
}
|
|
3168
3239
|
]
|
|
@@ -3242,6 +3313,18 @@
|
|
|
3242
3313
|
"render-ui",
|
|
3243
3314
|
"main",
|
|
3244
3315
|
{
|
|
3316
|
+
"backgroundAsset": {
|
|
3317
|
+
"animations": [],
|
|
3318
|
+
"aspect": "1:1",
|
|
3319
|
+
"category": "ui",
|
|
3320
|
+
"dimension": "2d",
|
|
3321
|
+
"name": "panel-frame",
|
|
3322
|
+
"role": "ui",
|
|
3323
|
+
"style": "fantasy-border",
|
|
3324
|
+
"thumbnailUrl": "",
|
|
3325
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/panel-frame.png",
|
|
3326
|
+
"variant": ""
|
|
3327
|
+
},
|
|
3245
3328
|
"children": [
|
|
3246
3329
|
{
|
|
3247
3330
|
"assetManifest": "@config.assetManifest",
|
|
@@ -3271,14 +3354,50 @@
|
|
|
3271
3354
|
{
|
|
3272
3355
|
"stats": [
|
|
3273
3356
|
{
|
|
3357
|
+
"iconUrl": {
|
|
3358
|
+
"animations": [],
|
|
3359
|
+
"aspect": "1:1",
|
|
3360
|
+
"category": "ui",
|
|
3361
|
+
"dimension": "2d",
|
|
3362
|
+
"name": "icon-turn",
|
|
3363
|
+
"role": "ui",
|
|
3364
|
+
"style": "fantasy-border",
|
|
3365
|
+
"thumbnailUrl": "",
|
|
3366
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-turn.png",
|
|
3367
|
+
"variant": ""
|
|
3368
|
+
},
|
|
3274
3369
|
"label": "Turn",
|
|
3275
3370
|
"value": "@entity.turn"
|
|
3276
3371
|
},
|
|
3277
3372
|
{
|
|
3373
|
+
"iconUrl": {
|
|
3374
|
+
"animations": [],
|
|
3375
|
+
"aspect": "1:1",
|
|
3376
|
+
"category": "ui",
|
|
3377
|
+
"dimension": "2d",
|
|
3378
|
+
"name": "icon-territory",
|
|
3379
|
+
"role": "ui",
|
|
3380
|
+
"style": "fantasy-border",
|
|
3381
|
+
"thumbnailUrl": "",
|
|
3382
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-territory.png",
|
|
3383
|
+
"variant": ""
|
|
3384
|
+
},
|
|
3278
3385
|
"label": "Territory",
|
|
3279
3386
|
"value": "@entity.territory"
|
|
3280
3387
|
},
|
|
3281
3388
|
{
|
|
3389
|
+
"iconUrl": {
|
|
3390
|
+
"animations": [],
|
|
3391
|
+
"aspect": "1:1",
|
|
3392
|
+
"category": "ui",
|
|
3393
|
+
"dimension": "2d",
|
|
3394
|
+
"name": "icon-result",
|
|
3395
|
+
"role": "ui",
|
|
3396
|
+
"style": "fantasy-border",
|
|
3397
|
+
"thumbnailUrl": "",
|
|
3398
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-result.png",
|
|
3399
|
+
"variant": ""
|
|
3400
|
+
},
|
|
3282
3401
|
"label": "Result",
|
|
3283
3402
|
"value": "@entity.result"
|
|
3284
3403
|
}
|
|
@@ -3299,7 +3418,18 @@
|
|
|
3299
3418
|
},
|
|
3300
3419
|
{
|
|
3301
3420
|
"action": "END_TURN",
|
|
3302
|
-
"
|
|
3421
|
+
"iconAsset": {
|
|
3422
|
+
"animations": [],
|
|
3423
|
+
"aspect": "1:1",
|
|
3424
|
+
"category": "ui",
|
|
3425
|
+
"dimension": "2d",
|
|
3426
|
+
"name": "icon-end-turn",
|
|
3427
|
+
"role": "ui",
|
|
3428
|
+
"style": "fantasy-border",
|
|
3429
|
+
"thumbnailUrl": "",
|
|
3430
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-end-turn.png",
|
|
3431
|
+
"variant": ""
|
|
3432
|
+
},
|
|
3303
3433
|
"label": "End Turn",
|
|
3304
3434
|
"type": "button",
|
|
3305
3435
|
"variant": "secondary"
|
|
@@ -3310,6 +3440,18 @@
|
|
|
3310
3440
|
"justify": "between",
|
|
3311
3441
|
"type": "stack"
|
|
3312
3442
|
},
|
|
3443
|
+
"hudBackgroundAsset": {
|
|
3444
|
+
"animations": [],
|
|
3445
|
+
"aspect": "1:1",
|
|
3446
|
+
"category": "ui",
|
|
3447
|
+
"dimension": "2d",
|
|
3448
|
+
"name": "panel-frame",
|
|
3449
|
+
"role": "ui",
|
|
3450
|
+
"style": "fantasy-border",
|
|
3451
|
+
"thumbnailUrl": "",
|
|
3452
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/panel-frame.png",
|
|
3453
|
+
"variant": ""
|
|
3454
|
+
},
|
|
3313
3455
|
"type": "game-shell"
|
|
3314
3456
|
}
|
|
3315
3457
|
]
|
|
@@ -3329,6 +3471,18 @@
|
|
|
3329
3471
|
"render-ui",
|
|
3330
3472
|
"main",
|
|
3331
3473
|
{
|
|
3474
|
+
"backgroundAsset": {
|
|
3475
|
+
"animations": [],
|
|
3476
|
+
"aspect": "1:1",
|
|
3477
|
+
"category": "ui",
|
|
3478
|
+
"dimension": "2d",
|
|
3479
|
+
"name": "panel-frame",
|
|
3480
|
+
"role": "ui",
|
|
3481
|
+
"style": "fantasy-border",
|
|
3482
|
+
"thumbnailUrl": "",
|
|
3483
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/panel-frame.png",
|
|
3484
|
+
"variant": ""
|
|
3485
|
+
},
|
|
3332
3486
|
"children": [
|
|
3333
3487
|
{
|
|
3334
3488
|
"assetManifest": "@config.assetManifest",
|
|
@@ -3358,14 +3512,50 @@
|
|
|
3358
3512
|
{
|
|
3359
3513
|
"stats": [
|
|
3360
3514
|
{
|
|
3515
|
+
"iconUrl": {
|
|
3516
|
+
"animations": [],
|
|
3517
|
+
"aspect": "1:1",
|
|
3518
|
+
"category": "ui",
|
|
3519
|
+
"dimension": "2d",
|
|
3520
|
+
"name": "icon-turn",
|
|
3521
|
+
"role": "ui",
|
|
3522
|
+
"style": "fantasy-border",
|
|
3523
|
+
"thumbnailUrl": "",
|
|
3524
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-turn.png",
|
|
3525
|
+
"variant": ""
|
|
3526
|
+
},
|
|
3361
3527
|
"label": "Turn",
|
|
3362
3528
|
"value": "@entity.turn"
|
|
3363
3529
|
},
|
|
3364
3530
|
{
|
|
3531
|
+
"iconUrl": {
|
|
3532
|
+
"animations": [],
|
|
3533
|
+
"aspect": "1:1",
|
|
3534
|
+
"category": "ui",
|
|
3535
|
+
"dimension": "2d",
|
|
3536
|
+
"name": "icon-territory",
|
|
3537
|
+
"role": "ui",
|
|
3538
|
+
"style": "fantasy-border",
|
|
3539
|
+
"thumbnailUrl": "",
|
|
3540
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-territory.png",
|
|
3541
|
+
"variant": ""
|
|
3542
|
+
},
|
|
3365
3543
|
"label": "Territory",
|
|
3366
3544
|
"value": "@entity.territory"
|
|
3367
3545
|
},
|
|
3368
3546
|
{
|
|
3547
|
+
"iconUrl": {
|
|
3548
|
+
"animations": [],
|
|
3549
|
+
"aspect": "1:1",
|
|
3550
|
+
"category": "ui",
|
|
3551
|
+
"dimension": "2d",
|
|
3552
|
+
"name": "icon-result",
|
|
3553
|
+
"role": "ui",
|
|
3554
|
+
"style": "fantasy-border",
|
|
3555
|
+
"thumbnailUrl": "",
|
|
3556
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-result.png",
|
|
3557
|
+
"variant": ""
|
|
3558
|
+
},
|
|
3369
3559
|
"label": "Result",
|
|
3370
3560
|
"value": "@entity.result"
|
|
3371
3561
|
}
|
|
@@ -3386,7 +3576,18 @@
|
|
|
3386
3576
|
},
|
|
3387
3577
|
{
|
|
3388
3578
|
"action": "END_TURN",
|
|
3389
|
-
"
|
|
3579
|
+
"iconAsset": {
|
|
3580
|
+
"animations": [],
|
|
3581
|
+
"aspect": "1:1",
|
|
3582
|
+
"category": "ui",
|
|
3583
|
+
"dimension": "2d",
|
|
3584
|
+
"name": "icon-end-turn",
|
|
3585
|
+
"role": "ui",
|
|
3586
|
+
"style": "fantasy-border",
|
|
3587
|
+
"thumbnailUrl": "",
|
|
3588
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-end-turn.png",
|
|
3589
|
+
"variant": ""
|
|
3590
|
+
},
|
|
3390
3591
|
"label": "End Turn",
|
|
3391
3592
|
"type": "button",
|
|
3392
3593
|
"variant": "secondary"
|
|
@@ -3397,6 +3598,18 @@
|
|
|
3397
3598
|
"justify": "between",
|
|
3398
3599
|
"type": "stack"
|
|
3399
3600
|
},
|
|
3601
|
+
"hudBackgroundAsset": {
|
|
3602
|
+
"animations": [],
|
|
3603
|
+
"aspect": "1:1",
|
|
3604
|
+
"category": "ui",
|
|
3605
|
+
"dimension": "2d",
|
|
3606
|
+
"name": "panel-frame",
|
|
3607
|
+
"role": "ui",
|
|
3608
|
+
"style": "fantasy-border",
|
|
3609
|
+
"thumbnailUrl": "",
|
|
3610
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/panel-frame.png",
|
|
3611
|
+
"variant": ""
|
|
3612
|
+
},
|
|
3400
3613
|
"type": "game-shell"
|
|
3401
3614
|
}
|
|
3402
3615
|
]
|
|
@@ -3597,6 +3810,18 @@
|
|
|
3597
3810
|
"render-ui",
|
|
3598
3811
|
"main",
|
|
3599
3812
|
{
|
|
3813
|
+
"backgroundAsset": {
|
|
3814
|
+
"animations": [],
|
|
3815
|
+
"aspect": "1:1",
|
|
3816
|
+
"category": "ui",
|
|
3817
|
+
"dimension": "2d",
|
|
3818
|
+
"name": "panel-frame",
|
|
3819
|
+
"role": "ui",
|
|
3820
|
+
"style": "fantasy-border",
|
|
3821
|
+
"thumbnailUrl": "",
|
|
3822
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/panel-frame.png",
|
|
3823
|
+
"variant": ""
|
|
3824
|
+
},
|
|
3600
3825
|
"children": [
|
|
3601
3826
|
{
|
|
3602
3827
|
"assetManifest": "@config.assetManifest",
|
|
@@ -3626,14 +3851,50 @@
|
|
|
3626
3851
|
{
|
|
3627
3852
|
"stats": [
|
|
3628
3853
|
{
|
|
3854
|
+
"iconUrl": {
|
|
3855
|
+
"animations": [],
|
|
3856
|
+
"aspect": "1:1",
|
|
3857
|
+
"category": "ui",
|
|
3858
|
+
"dimension": "2d",
|
|
3859
|
+
"name": "icon-turn",
|
|
3860
|
+
"role": "ui",
|
|
3861
|
+
"style": "fantasy-border",
|
|
3862
|
+
"thumbnailUrl": "",
|
|
3863
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-turn.png",
|
|
3864
|
+
"variant": ""
|
|
3865
|
+
},
|
|
3629
3866
|
"label": "Turn",
|
|
3630
3867
|
"value": "@entity.turn"
|
|
3631
3868
|
},
|
|
3632
3869
|
{
|
|
3870
|
+
"iconUrl": {
|
|
3871
|
+
"animations": [],
|
|
3872
|
+
"aspect": "1:1",
|
|
3873
|
+
"category": "ui",
|
|
3874
|
+
"dimension": "2d",
|
|
3875
|
+
"name": "icon-territory",
|
|
3876
|
+
"role": "ui",
|
|
3877
|
+
"style": "fantasy-border",
|
|
3878
|
+
"thumbnailUrl": "",
|
|
3879
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-territory.png",
|
|
3880
|
+
"variant": ""
|
|
3881
|
+
},
|
|
3633
3882
|
"label": "Territory",
|
|
3634
3883
|
"value": "@entity.territory"
|
|
3635
3884
|
},
|
|
3636
3885
|
{
|
|
3886
|
+
"iconUrl": {
|
|
3887
|
+
"animations": [],
|
|
3888
|
+
"aspect": "1:1",
|
|
3889
|
+
"category": "ui",
|
|
3890
|
+
"dimension": "2d",
|
|
3891
|
+
"name": "icon-result",
|
|
3892
|
+
"role": "ui",
|
|
3893
|
+
"style": "fantasy-border",
|
|
3894
|
+
"thumbnailUrl": "",
|
|
3895
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-result.png",
|
|
3896
|
+
"variant": ""
|
|
3897
|
+
},
|
|
3637
3898
|
"label": "Result",
|
|
3638
3899
|
"value": "@entity.result"
|
|
3639
3900
|
}
|
|
@@ -3654,7 +3915,18 @@
|
|
|
3654
3915
|
},
|
|
3655
3916
|
{
|
|
3656
3917
|
"action": "END_TURN",
|
|
3657
|
-
"
|
|
3918
|
+
"iconAsset": {
|
|
3919
|
+
"animations": [],
|
|
3920
|
+
"aspect": "1:1",
|
|
3921
|
+
"category": "ui",
|
|
3922
|
+
"dimension": "2d",
|
|
3923
|
+
"name": "icon-end-turn",
|
|
3924
|
+
"role": "ui",
|
|
3925
|
+
"style": "fantasy-border",
|
|
3926
|
+
"thumbnailUrl": "",
|
|
3927
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-end-turn.png",
|
|
3928
|
+
"variant": ""
|
|
3929
|
+
},
|
|
3658
3930
|
"label": "End Turn",
|
|
3659
3931
|
"type": "button",
|
|
3660
3932
|
"variant": "secondary"
|
|
@@ -3665,6 +3937,18 @@
|
|
|
3665
3937
|
"justify": "between",
|
|
3666
3938
|
"type": "stack"
|
|
3667
3939
|
},
|
|
3940
|
+
"hudBackgroundAsset": {
|
|
3941
|
+
"animations": [],
|
|
3942
|
+
"aspect": "1:1",
|
|
3943
|
+
"category": "ui",
|
|
3944
|
+
"dimension": "2d",
|
|
3945
|
+
"name": "panel-frame",
|
|
3946
|
+
"role": "ui",
|
|
3947
|
+
"style": "fantasy-border",
|
|
3948
|
+
"thumbnailUrl": "",
|
|
3949
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/panel-frame.png",
|
|
3950
|
+
"variant": ""
|
|
3951
|
+
},
|
|
3668
3952
|
"type": "game-shell"
|
|
3669
3953
|
}
|
|
3670
3954
|
]
|
|
@@ -3747,6 +4031,18 @@
|
|
|
3747
4031
|
"render-ui",
|
|
3748
4032
|
"main",
|
|
3749
4033
|
{
|
|
4034
|
+
"backgroundAsset": {
|
|
4035
|
+
"animations": [],
|
|
4036
|
+
"aspect": "1:1",
|
|
4037
|
+
"category": "ui",
|
|
4038
|
+
"dimension": "2d",
|
|
4039
|
+
"name": "panel-frame",
|
|
4040
|
+
"role": "ui",
|
|
4041
|
+
"style": "fantasy-border",
|
|
4042
|
+
"thumbnailUrl": "",
|
|
4043
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/panel-frame.png",
|
|
4044
|
+
"variant": ""
|
|
4045
|
+
},
|
|
3750
4046
|
"children": [
|
|
3751
4047
|
{
|
|
3752
4048
|
"assetManifest": "@config.assetManifest",
|
|
@@ -3776,14 +4072,50 @@
|
|
|
3776
4072
|
{
|
|
3777
4073
|
"stats": [
|
|
3778
4074
|
{
|
|
4075
|
+
"iconUrl": {
|
|
4076
|
+
"animations": [],
|
|
4077
|
+
"aspect": "1:1",
|
|
4078
|
+
"category": "ui",
|
|
4079
|
+
"dimension": "2d",
|
|
4080
|
+
"name": "icon-turn",
|
|
4081
|
+
"role": "ui",
|
|
4082
|
+
"style": "fantasy-border",
|
|
4083
|
+
"thumbnailUrl": "",
|
|
4084
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-turn.png",
|
|
4085
|
+
"variant": ""
|
|
4086
|
+
},
|
|
3779
4087
|
"label": "Turn",
|
|
3780
4088
|
"value": "@entity.turn"
|
|
3781
4089
|
},
|
|
3782
4090
|
{
|
|
4091
|
+
"iconUrl": {
|
|
4092
|
+
"animations": [],
|
|
4093
|
+
"aspect": "1:1",
|
|
4094
|
+
"category": "ui",
|
|
4095
|
+
"dimension": "2d",
|
|
4096
|
+
"name": "icon-territory",
|
|
4097
|
+
"role": "ui",
|
|
4098
|
+
"style": "fantasy-border",
|
|
4099
|
+
"thumbnailUrl": "",
|
|
4100
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-territory.png",
|
|
4101
|
+
"variant": ""
|
|
4102
|
+
},
|
|
3783
4103
|
"label": "Territory",
|
|
3784
4104
|
"value": "@entity.territory"
|
|
3785
4105
|
},
|
|
3786
4106
|
{
|
|
4107
|
+
"iconUrl": {
|
|
4108
|
+
"animations": [],
|
|
4109
|
+
"aspect": "1:1",
|
|
4110
|
+
"category": "ui",
|
|
4111
|
+
"dimension": "2d",
|
|
4112
|
+
"name": "icon-result",
|
|
4113
|
+
"role": "ui",
|
|
4114
|
+
"style": "fantasy-border",
|
|
4115
|
+
"thumbnailUrl": "",
|
|
4116
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-result.png",
|
|
4117
|
+
"variant": ""
|
|
4118
|
+
},
|
|
3787
4119
|
"label": "Result",
|
|
3788
4120
|
"value": "@entity.result"
|
|
3789
4121
|
}
|
|
@@ -3804,7 +4136,18 @@
|
|
|
3804
4136
|
},
|
|
3805
4137
|
{
|
|
3806
4138
|
"action": "END_TURN",
|
|
3807
|
-
"
|
|
4139
|
+
"iconAsset": {
|
|
4140
|
+
"animations": [],
|
|
4141
|
+
"aspect": "1:1",
|
|
4142
|
+
"category": "ui",
|
|
4143
|
+
"dimension": "2d",
|
|
4144
|
+
"name": "icon-end-turn",
|
|
4145
|
+
"role": "ui",
|
|
4146
|
+
"style": "fantasy-border",
|
|
4147
|
+
"thumbnailUrl": "",
|
|
4148
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-end-turn.png",
|
|
4149
|
+
"variant": ""
|
|
4150
|
+
},
|
|
3808
4151
|
"label": "End Turn",
|
|
3809
4152
|
"type": "button",
|
|
3810
4153
|
"variant": "secondary"
|
|
@@ -3815,6 +4158,18 @@
|
|
|
3815
4158
|
"justify": "between",
|
|
3816
4159
|
"type": "stack"
|
|
3817
4160
|
},
|
|
4161
|
+
"hudBackgroundAsset": {
|
|
4162
|
+
"animations": [],
|
|
4163
|
+
"aspect": "1:1",
|
|
4164
|
+
"category": "ui",
|
|
4165
|
+
"dimension": "2d",
|
|
4166
|
+
"name": "panel-frame",
|
|
4167
|
+
"role": "ui",
|
|
4168
|
+
"style": "fantasy-border",
|
|
4169
|
+
"thumbnailUrl": "",
|
|
4170
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/panel-frame.png",
|
|
4171
|
+
"variant": ""
|
|
4172
|
+
},
|
|
3818
4173
|
"type": "game-shell"
|
|
3819
4174
|
}
|
|
3820
4175
|
]
|
|
@@ -4154,6 +4509,18 @@
|
|
|
4154
4509
|
"render-ui",
|
|
4155
4510
|
"main",
|
|
4156
4511
|
{
|
|
4512
|
+
"backgroundAsset": {
|
|
4513
|
+
"animations": [],
|
|
4514
|
+
"aspect": "1:1",
|
|
4515
|
+
"category": "ui",
|
|
4516
|
+
"dimension": "2d",
|
|
4517
|
+
"name": "panel-frame",
|
|
4518
|
+
"role": "ui",
|
|
4519
|
+
"style": "fantasy-border",
|
|
4520
|
+
"thumbnailUrl": "",
|
|
4521
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/panel-frame.png",
|
|
4522
|
+
"variant": ""
|
|
4523
|
+
},
|
|
4157
4524
|
"children": [
|
|
4158
4525
|
{
|
|
4159
4526
|
"assetManifest": "@config.assetManifest",
|
|
@@ -4183,14 +4550,50 @@
|
|
|
4183
4550
|
{
|
|
4184
4551
|
"stats": [
|
|
4185
4552
|
{
|
|
4553
|
+
"iconUrl": {
|
|
4554
|
+
"animations": [],
|
|
4555
|
+
"aspect": "1:1",
|
|
4556
|
+
"category": "ui",
|
|
4557
|
+
"dimension": "2d",
|
|
4558
|
+
"name": "icon-turn",
|
|
4559
|
+
"role": "ui",
|
|
4560
|
+
"style": "fantasy-border",
|
|
4561
|
+
"thumbnailUrl": "",
|
|
4562
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-turn.png",
|
|
4563
|
+
"variant": ""
|
|
4564
|
+
},
|
|
4186
4565
|
"label": "Turn",
|
|
4187
4566
|
"value": "@entity.turn"
|
|
4188
4567
|
},
|
|
4189
4568
|
{
|
|
4569
|
+
"iconUrl": {
|
|
4570
|
+
"animations": [],
|
|
4571
|
+
"aspect": "1:1",
|
|
4572
|
+
"category": "ui",
|
|
4573
|
+
"dimension": "2d",
|
|
4574
|
+
"name": "icon-territory",
|
|
4575
|
+
"role": "ui",
|
|
4576
|
+
"style": "fantasy-border",
|
|
4577
|
+
"thumbnailUrl": "",
|
|
4578
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-territory.png",
|
|
4579
|
+
"variant": ""
|
|
4580
|
+
},
|
|
4190
4581
|
"label": "Territory",
|
|
4191
4582
|
"value": "@entity.territory"
|
|
4192
4583
|
},
|
|
4193
4584
|
{
|
|
4585
|
+
"iconUrl": {
|
|
4586
|
+
"animations": [],
|
|
4587
|
+
"aspect": "1:1",
|
|
4588
|
+
"category": "ui",
|
|
4589
|
+
"dimension": "2d",
|
|
4590
|
+
"name": "icon-result",
|
|
4591
|
+
"role": "ui",
|
|
4592
|
+
"style": "fantasy-border",
|
|
4593
|
+
"thumbnailUrl": "",
|
|
4594
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-result.png",
|
|
4595
|
+
"variant": ""
|
|
4596
|
+
},
|
|
4194
4597
|
"label": "Result",
|
|
4195
4598
|
"value": "@entity.result"
|
|
4196
4599
|
}
|
|
@@ -4211,7 +4614,18 @@
|
|
|
4211
4614
|
},
|
|
4212
4615
|
{
|
|
4213
4616
|
"action": "END_TURN",
|
|
4214
|
-
"
|
|
4617
|
+
"iconAsset": {
|
|
4618
|
+
"animations": [],
|
|
4619
|
+
"aspect": "1:1",
|
|
4620
|
+
"category": "ui",
|
|
4621
|
+
"dimension": "2d",
|
|
4622
|
+
"name": "icon-end-turn",
|
|
4623
|
+
"role": "ui",
|
|
4624
|
+
"style": "fantasy-border",
|
|
4625
|
+
"thumbnailUrl": "",
|
|
4626
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-end-turn.png",
|
|
4627
|
+
"variant": ""
|
|
4628
|
+
},
|
|
4215
4629
|
"label": "End Turn",
|
|
4216
4630
|
"type": "button",
|
|
4217
4631
|
"variant": "secondary"
|
|
@@ -4222,6 +4636,18 @@
|
|
|
4222
4636
|
"justify": "between",
|
|
4223
4637
|
"type": "stack"
|
|
4224
4638
|
},
|
|
4639
|
+
"hudBackgroundAsset": {
|
|
4640
|
+
"animations": [],
|
|
4641
|
+
"aspect": "1:1",
|
|
4642
|
+
"category": "ui",
|
|
4643
|
+
"dimension": "2d",
|
|
4644
|
+
"name": "panel-frame",
|
|
4645
|
+
"role": "ui",
|
|
4646
|
+
"style": "fantasy-border",
|
|
4647
|
+
"thumbnailUrl": "",
|
|
4648
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/panel-frame.png",
|
|
4649
|
+
"variant": ""
|
|
4650
|
+
},
|
|
4225
4651
|
"type": "game-shell"
|
|
4226
4652
|
}
|
|
4227
4653
|
]
|
|
@@ -4361,6 +4787,18 @@
|
|
|
4361
4787
|
"render-ui",
|
|
4362
4788
|
"main",
|
|
4363
4789
|
{
|
|
4790
|
+
"backgroundAsset": {
|
|
4791
|
+
"animations": [],
|
|
4792
|
+
"aspect": "1:1",
|
|
4793
|
+
"category": "ui",
|
|
4794
|
+
"dimension": "2d",
|
|
4795
|
+
"name": "panel-frame",
|
|
4796
|
+
"role": "ui",
|
|
4797
|
+
"style": "fantasy-border",
|
|
4798
|
+
"thumbnailUrl": "",
|
|
4799
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/panel-frame.png",
|
|
4800
|
+
"variant": ""
|
|
4801
|
+
},
|
|
4364
4802
|
"children": [
|
|
4365
4803
|
{
|
|
4366
4804
|
"assetManifest": "@config.assetManifest",
|
|
@@ -4390,14 +4828,50 @@
|
|
|
4390
4828
|
{
|
|
4391
4829
|
"stats": [
|
|
4392
4830
|
{
|
|
4831
|
+
"iconUrl": {
|
|
4832
|
+
"animations": [],
|
|
4833
|
+
"aspect": "1:1",
|
|
4834
|
+
"category": "ui",
|
|
4835
|
+
"dimension": "2d",
|
|
4836
|
+
"name": "icon-turn",
|
|
4837
|
+
"role": "ui",
|
|
4838
|
+
"style": "fantasy-border",
|
|
4839
|
+
"thumbnailUrl": "",
|
|
4840
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-turn.png",
|
|
4841
|
+
"variant": ""
|
|
4842
|
+
},
|
|
4393
4843
|
"label": "Turn",
|
|
4394
4844
|
"value": "@entity.turn"
|
|
4395
4845
|
},
|
|
4396
4846
|
{
|
|
4847
|
+
"iconUrl": {
|
|
4848
|
+
"animations": [],
|
|
4849
|
+
"aspect": "1:1",
|
|
4850
|
+
"category": "ui",
|
|
4851
|
+
"dimension": "2d",
|
|
4852
|
+
"name": "icon-territory",
|
|
4853
|
+
"role": "ui",
|
|
4854
|
+
"style": "fantasy-border",
|
|
4855
|
+
"thumbnailUrl": "",
|
|
4856
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-territory.png",
|
|
4857
|
+
"variant": ""
|
|
4858
|
+
},
|
|
4397
4859
|
"label": "Territory",
|
|
4398
4860
|
"value": "@entity.territory"
|
|
4399
4861
|
},
|
|
4400
4862
|
{
|
|
4863
|
+
"iconUrl": {
|
|
4864
|
+
"animations": [],
|
|
4865
|
+
"aspect": "1:1",
|
|
4866
|
+
"category": "ui",
|
|
4867
|
+
"dimension": "2d",
|
|
4868
|
+
"name": "icon-result",
|
|
4869
|
+
"role": "ui",
|
|
4870
|
+
"style": "fantasy-border",
|
|
4871
|
+
"thumbnailUrl": "",
|
|
4872
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-result.png",
|
|
4873
|
+
"variant": ""
|
|
4874
|
+
},
|
|
4401
4875
|
"label": "Result",
|
|
4402
4876
|
"value": "@entity.result"
|
|
4403
4877
|
}
|
|
@@ -4418,7 +4892,18 @@
|
|
|
4418
4892
|
},
|
|
4419
4893
|
{
|
|
4420
4894
|
"action": "END_TURN",
|
|
4421
|
-
"
|
|
4895
|
+
"iconAsset": {
|
|
4896
|
+
"animations": [],
|
|
4897
|
+
"aspect": "1:1",
|
|
4898
|
+
"category": "ui",
|
|
4899
|
+
"dimension": "2d",
|
|
4900
|
+
"name": "icon-end-turn",
|
|
4901
|
+
"role": "ui",
|
|
4902
|
+
"style": "fantasy-border",
|
|
4903
|
+
"thumbnailUrl": "",
|
|
4904
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-end-turn.png",
|
|
4905
|
+
"variant": ""
|
|
4906
|
+
},
|
|
4422
4907
|
"label": "End Turn",
|
|
4423
4908
|
"type": "button",
|
|
4424
4909
|
"variant": "secondary"
|
|
@@ -4429,6 +4914,18 @@
|
|
|
4429
4914
|
"justify": "between",
|
|
4430
4915
|
"type": "stack"
|
|
4431
4916
|
},
|
|
4917
|
+
"hudBackgroundAsset": {
|
|
4918
|
+
"animations": [],
|
|
4919
|
+
"aspect": "1:1",
|
|
4920
|
+
"category": "ui",
|
|
4921
|
+
"dimension": "2d",
|
|
4922
|
+
"name": "panel-frame",
|
|
4923
|
+
"role": "ui",
|
|
4924
|
+
"style": "fantasy-border",
|
|
4925
|
+
"thumbnailUrl": "",
|
|
4926
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/panel-frame.png",
|
|
4927
|
+
"variant": ""
|
|
4928
|
+
},
|
|
4432
4929
|
"type": "game-shell"
|
|
4433
4930
|
}
|
|
4434
4931
|
]
|
|
@@ -4463,6 +4960,18 @@
|
|
|
4463
4960
|
"render-ui",
|
|
4464
4961
|
"main",
|
|
4465
4962
|
{
|
|
4963
|
+
"backgroundAsset": {
|
|
4964
|
+
"animations": [],
|
|
4965
|
+
"aspect": "1:1",
|
|
4966
|
+
"category": "ui",
|
|
4967
|
+
"dimension": "2d",
|
|
4968
|
+
"name": "panel-frame",
|
|
4969
|
+
"role": "ui",
|
|
4970
|
+
"style": "fantasy-border",
|
|
4971
|
+
"thumbnailUrl": "",
|
|
4972
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/panel-frame.png",
|
|
4973
|
+
"variant": ""
|
|
4974
|
+
},
|
|
4466
4975
|
"children": [
|
|
4467
4976
|
{
|
|
4468
4977
|
"assetManifest": "@config.assetManifest",
|
|
@@ -4492,14 +5001,50 @@
|
|
|
4492
5001
|
{
|
|
4493
5002
|
"stats": [
|
|
4494
5003
|
{
|
|
5004
|
+
"iconUrl": {
|
|
5005
|
+
"animations": [],
|
|
5006
|
+
"aspect": "1:1",
|
|
5007
|
+
"category": "ui",
|
|
5008
|
+
"dimension": "2d",
|
|
5009
|
+
"name": "icon-turn",
|
|
5010
|
+
"role": "ui",
|
|
5011
|
+
"style": "fantasy-border",
|
|
5012
|
+
"thumbnailUrl": "",
|
|
5013
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-turn.png",
|
|
5014
|
+
"variant": ""
|
|
5015
|
+
},
|
|
4495
5016
|
"label": "Turn",
|
|
4496
5017
|
"value": "@entity.turn"
|
|
4497
5018
|
},
|
|
4498
5019
|
{
|
|
5020
|
+
"iconUrl": {
|
|
5021
|
+
"animations": [],
|
|
5022
|
+
"aspect": "1:1",
|
|
5023
|
+
"category": "ui",
|
|
5024
|
+
"dimension": "2d",
|
|
5025
|
+
"name": "icon-territory",
|
|
5026
|
+
"role": "ui",
|
|
5027
|
+
"style": "fantasy-border",
|
|
5028
|
+
"thumbnailUrl": "",
|
|
5029
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-territory.png",
|
|
5030
|
+
"variant": ""
|
|
5031
|
+
},
|
|
4499
5032
|
"label": "Territory",
|
|
4500
5033
|
"value": "@entity.territory"
|
|
4501
5034
|
},
|
|
4502
5035
|
{
|
|
5036
|
+
"iconUrl": {
|
|
5037
|
+
"animations": [],
|
|
5038
|
+
"aspect": "1:1",
|
|
5039
|
+
"category": "ui",
|
|
5040
|
+
"dimension": "2d",
|
|
5041
|
+
"name": "icon-result",
|
|
5042
|
+
"role": "ui",
|
|
5043
|
+
"style": "fantasy-border",
|
|
5044
|
+
"thumbnailUrl": "",
|
|
5045
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-result.png",
|
|
5046
|
+
"variant": ""
|
|
5047
|
+
},
|
|
4503
5048
|
"label": "Result",
|
|
4504
5049
|
"value": "@entity.result"
|
|
4505
5050
|
}
|
|
@@ -4520,7 +5065,18 @@
|
|
|
4520
5065
|
},
|
|
4521
5066
|
{
|
|
4522
5067
|
"action": "END_TURN",
|
|
4523
|
-
"
|
|
5068
|
+
"iconAsset": {
|
|
5069
|
+
"animations": [],
|
|
5070
|
+
"aspect": "1:1",
|
|
5071
|
+
"category": "ui",
|
|
5072
|
+
"dimension": "2d",
|
|
5073
|
+
"name": "icon-end-turn",
|
|
5074
|
+
"role": "ui",
|
|
5075
|
+
"style": "fantasy-border",
|
|
5076
|
+
"thumbnailUrl": "",
|
|
5077
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-end-turn.png",
|
|
5078
|
+
"variant": ""
|
|
5079
|
+
},
|
|
4524
5080
|
"label": "End Turn",
|
|
4525
5081
|
"type": "button",
|
|
4526
5082
|
"variant": "secondary"
|
|
@@ -4531,6 +5087,18 @@
|
|
|
4531
5087
|
"justify": "between",
|
|
4532
5088
|
"type": "stack"
|
|
4533
5089
|
},
|
|
5090
|
+
"hudBackgroundAsset": {
|
|
5091
|
+
"animations": [],
|
|
5092
|
+
"aspect": "1:1",
|
|
5093
|
+
"category": "ui",
|
|
5094
|
+
"dimension": "2d",
|
|
5095
|
+
"name": "panel-frame",
|
|
5096
|
+
"role": "ui",
|
|
5097
|
+
"style": "fantasy-border",
|
|
5098
|
+
"thumbnailUrl": "",
|
|
5099
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/panel-frame.png",
|
|
5100
|
+
"variant": ""
|
|
5101
|
+
},
|
|
4534
5102
|
"type": "game-shell"
|
|
4535
5103
|
}
|
|
4536
5104
|
]
|
|
@@ -4606,6 +5174,18 @@
|
|
|
4606
5174
|
"render-ui",
|
|
4607
5175
|
"main",
|
|
4608
5176
|
{
|
|
5177
|
+
"backgroundAsset": {
|
|
5178
|
+
"animations": [],
|
|
5179
|
+
"aspect": "1:1",
|
|
5180
|
+
"category": "ui",
|
|
5181
|
+
"dimension": "2d",
|
|
5182
|
+
"name": "panel-frame",
|
|
5183
|
+
"role": "ui",
|
|
5184
|
+
"style": "fantasy-border",
|
|
5185
|
+
"thumbnailUrl": "",
|
|
5186
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/panel-frame.png",
|
|
5187
|
+
"variant": ""
|
|
5188
|
+
},
|
|
4609
5189
|
"children": [
|
|
4610
5190
|
{
|
|
4611
5191
|
"assetManifest": "@config.assetManifest",
|
|
@@ -4635,14 +5215,50 @@
|
|
|
4635
5215
|
{
|
|
4636
5216
|
"stats": [
|
|
4637
5217
|
{
|
|
5218
|
+
"iconUrl": {
|
|
5219
|
+
"animations": [],
|
|
5220
|
+
"aspect": "1:1",
|
|
5221
|
+
"category": "ui",
|
|
5222
|
+
"dimension": "2d",
|
|
5223
|
+
"name": "icon-turn",
|
|
5224
|
+
"role": "ui",
|
|
5225
|
+
"style": "fantasy-border",
|
|
5226
|
+
"thumbnailUrl": "",
|
|
5227
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-turn.png",
|
|
5228
|
+
"variant": ""
|
|
5229
|
+
},
|
|
4638
5230
|
"label": "Turn",
|
|
4639
5231
|
"value": "@entity.turn"
|
|
4640
5232
|
},
|
|
4641
5233
|
{
|
|
5234
|
+
"iconUrl": {
|
|
5235
|
+
"animations": [],
|
|
5236
|
+
"aspect": "1:1",
|
|
5237
|
+
"category": "ui",
|
|
5238
|
+
"dimension": "2d",
|
|
5239
|
+
"name": "icon-territory",
|
|
5240
|
+
"role": "ui",
|
|
5241
|
+
"style": "fantasy-border",
|
|
5242
|
+
"thumbnailUrl": "",
|
|
5243
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-territory.png",
|
|
5244
|
+
"variant": ""
|
|
5245
|
+
},
|
|
4642
5246
|
"label": "Territory",
|
|
4643
5247
|
"value": "@entity.territory"
|
|
4644
5248
|
},
|
|
4645
5249
|
{
|
|
5250
|
+
"iconUrl": {
|
|
5251
|
+
"animations": [],
|
|
5252
|
+
"aspect": "1:1",
|
|
5253
|
+
"category": "ui",
|
|
5254
|
+
"dimension": "2d",
|
|
5255
|
+
"name": "icon-result",
|
|
5256
|
+
"role": "ui",
|
|
5257
|
+
"style": "fantasy-border",
|
|
5258
|
+
"thumbnailUrl": "",
|
|
5259
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-result.png",
|
|
5260
|
+
"variant": ""
|
|
5261
|
+
},
|
|
4646
5262
|
"label": "Result",
|
|
4647
5263
|
"value": "@entity.result"
|
|
4648
5264
|
}
|
|
@@ -4663,7 +5279,18 @@
|
|
|
4663
5279
|
},
|
|
4664
5280
|
{
|
|
4665
5281
|
"action": "END_TURN",
|
|
4666
|
-
"
|
|
5282
|
+
"iconAsset": {
|
|
5283
|
+
"animations": [],
|
|
5284
|
+
"aspect": "1:1",
|
|
5285
|
+
"category": "ui",
|
|
5286
|
+
"dimension": "2d",
|
|
5287
|
+
"name": "icon-end-turn",
|
|
5288
|
+
"role": "ui",
|
|
5289
|
+
"style": "fantasy-border",
|
|
5290
|
+
"thumbnailUrl": "",
|
|
5291
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-end-turn.png",
|
|
5292
|
+
"variant": ""
|
|
5293
|
+
},
|
|
4667
5294
|
"label": "End Turn",
|
|
4668
5295
|
"type": "button",
|
|
4669
5296
|
"variant": "secondary"
|
|
@@ -4674,6 +5301,18 @@
|
|
|
4674
5301
|
"justify": "between",
|
|
4675
5302
|
"type": "stack"
|
|
4676
5303
|
},
|
|
5304
|
+
"hudBackgroundAsset": {
|
|
5305
|
+
"animations": [],
|
|
5306
|
+
"aspect": "1:1",
|
|
5307
|
+
"category": "ui",
|
|
5308
|
+
"dimension": "2d",
|
|
5309
|
+
"name": "panel-frame",
|
|
5310
|
+
"role": "ui",
|
|
5311
|
+
"style": "fantasy-border",
|
|
5312
|
+
"thumbnailUrl": "",
|
|
5313
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/panel-frame.png",
|
|
5314
|
+
"variant": ""
|
|
5315
|
+
},
|
|
4677
5316
|
"type": "game-shell"
|
|
4678
5317
|
}
|
|
4679
5318
|
]
|
|
@@ -4805,6 +5444,18 @@
|
|
|
4805
5444
|
"render-ui",
|
|
4806
5445
|
"main",
|
|
4807
5446
|
{
|
|
5447
|
+
"backgroundAsset": {
|
|
5448
|
+
"animations": [],
|
|
5449
|
+
"aspect": "1:1",
|
|
5450
|
+
"category": "ui",
|
|
5451
|
+
"dimension": "2d",
|
|
5452
|
+
"name": "panel-frame",
|
|
5453
|
+
"role": "ui",
|
|
5454
|
+
"style": "fantasy-border",
|
|
5455
|
+
"thumbnailUrl": "",
|
|
5456
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/panel-frame.png",
|
|
5457
|
+
"variant": ""
|
|
5458
|
+
},
|
|
4808
5459
|
"children": [
|
|
4809
5460
|
{
|
|
4810
5461
|
"assetManifest": "@config.assetManifest",
|
|
@@ -4834,14 +5485,50 @@
|
|
|
4834
5485
|
{
|
|
4835
5486
|
"stats": [
|
|
4836
5487
|
{
|
|
5488
|
+
"iconUrl": {
|
|
5489
|
+
"animations": [],
|
|
5490
|
+
"aspect": "1:1",
|
|
5491
|
+
"category": "ui",
|
|
5492
|
+
"dimension": "2d",
|
|
5493
|
+
"name": "icon-turn",
|
|
5494
|
+
"role": "ui",
|
|
5495
|
+
"style": "fantasy-border",
|
|
5496
|
+
"thumbnailUrl": "",
|
|
5497
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-turn.png",
|
|
5498
|
+
"variant": ""
|
|
5499
|
+
},
|
|
4837
5500
|
"label": "Turn",
|
|
4838
5501
|
"value": "@entity.turn"
|
|
4839
5502
|
},
|
|
4840
5503
|
{
|
|
5504
|
+
"iconUrl": {
|
|
5505
|
+
"animations": [],
|
|
5506
|
+
"aspect": "1:1",
|
|
5507
|
+
"category": "ui",
|
|
5508
|
+
"dimension": "2d",
|
|
5509
|
+
"name": "icon-territory",
|
|
5510
|
+
"role": "ui",
|
|
5511
|
+
"style": "fantasy-border",
|
|
5512
|
+
"thumbnailUrl": "",
|
|
5513
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-territory.png",
|
|
5514
|
+
"variant": ""
|
|
5515
|
+
},
|
|
4841
5516
|
"label": "Territory",
|
|
4842
5517
|
"value": "@entity.territory"
|
|
4843
5518
|
},
|
|
4844
5519
|
{
|
|
5520
|
+
"iconUrl": {
|
|
5521
|
+
"animations": [],
|
|
5522
|
+
"aspect": "1:1",
|
|
5523
|
+
"category": "ui",
|
|
5524
|
+
"dimension": "2d",
|
|
5525
|
+
"name": "icon-result",
|
|
5526
|
+
"role": "ui",
|
|
5527
|
+
"style": "fantasy-border",
|
|
5528
|
+
"thumbnailUrl": "",
|
|
5529
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-result.png",
|
|
5530
|
+
"variant": ""
|
|
5531
|
+
},
|
|
4845
5532
|
"label": "Result",
|
|
4846
5533
|
"value": "@entity.result"
|
|
4847
5534
|
}
|
|
@@ -4862,7 +5549,18 @@
|
|
|
4862
5549
|
},
|
|
4863
5550
|
{
|
|
4864
5551
|
"action": "END_TURN",
|
|
4865
|
-
"
|
|
5552
|
+
"iconAsset": {
|
|
5553
|
+
"animations": [],
|
|
5554
|
+
"aspect": "1:1",
|
|
5555
|
+
"category": "ui",
|
|
5556
|
+
"dimension": "2d",
|
|
5557
|
+
"name": "icon-end-turn",
|
|
5558
|
+
"role": "ui",
|
|
5559
|
+
"style": "fantasy-border",
|
|
5560
|
+
"thumbnailUrl": "",
|
|
5561
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-end-turn.png",
|
|
5562
|
+
"variant": ""
|
|
5563
|
+
},
|
|
4866
5564
|
"label": "End Turn",
|
|
4867
5565
|
"type": "button",
|
|
4868
5566
|
"variant": "secondary"
|
|
@@ -4873,6 +5571,18 @@
|
|
|
4873
5571
|
"justify": "between",
|
|
4874
5572
|
"type": "stack"
|
|
4875
5573
|
},
|
|
5574
|
+
"hudBackgroundAsset": {
|
|
5575
|
+
"animations": [],
|
|
5576
|
+
"aspect": "1:1",
|
|
5577
|
+
"category": "ui",
|
|
5578
|
+
"dimension": "2d",
|
|
5579
|
+
"name": "panel-frame",
|
|
5580
|
+
"role": "ui",
|
|
5581
|
+
"style": "fantasy-border",
|
|
5582
|
+
"thumbnailUrl": "",
|
|
5583
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/panel-frame.png",
|
|
5584
|
+
"variant": ""
|
|
5585
|
+
},
|
|
4876
5586
|
"type": "game-shell"
|
|
4877
5587
|
}
|
|
4878
5588
|
]
|
|
@@ -4890,6 +5600,18 @@
|
|
|
4890
5600
|
"render-ui",
|
|
4891
5601
|
"main",
|
|
4892
5602
|
{
|
|
5603
|
+
"backgroundAsset": {
|
|
5604
|
+
"animations": [],
|
|
5605
|
+
"aspect": "1:1",
|
|
5606
|
+
"category": "ui",
|
|
5607
|
+
"dimension": "2d",
|
|
5608
|
+
"name": "panel-frame",
|
|
5609
|
+
"role": "ui",
|
|
5610
|
+
"style": "fantasy-border",
|
|
5611
|
+
"thumbnailUrl": "",
|
|
5612
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/panel-frame.png",
|
|
5613
|
+
"variant": ""
|
|
5614
|
+
},
|
|
4893
5615
|
"children": [
|
|
4894
5616
|
{
|
|
4895
5617
|
"assetManifest": "@config.assetManifest",
|
|
@@ -4919,14 +5641,50 @@
|
|
|
4919
5641
|
{
|
|
4920
5642
|
"stats": [
|
|
4921
5643
|
{
|
|
5644
|
+
"iconUrl": {
|
|
5645
|
+
"animations": [],
|
|
5646
|
+
"aspect": "1:1",
|
|
5647
|
+
"category": "ui",
|
|
5648
|
+
"dimension": "2d",
|
|
5649
|
+
"name": "icon-turn",
|
|
5650
|
+
"role": "ui",
|
|
5651
|
+
"style": "fantasy-border",
|
|
5652
|
+
"thumbnailUrl": "",
|
|
5653
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-turn.png",
|
|
5654
|
+
"variant": ""
|
|
5655
|
+
},
|
|
4922
5656
|
"label": "Turn",
|
|
4923
5657
|
"value": "@entity.turn"
|
|
4924
5658
|
},
|
|
4925
5659
|
{
|
|
5660
|
+
"iconUrl": {
|
|
5661
|
+
"animations": [],
|
|
5662
|
+
"aspect": "1:1",
|
|
5663
|
+
"category": "ui",
|
|
5664
|
+
"dimension": "2d",
|
|
5665
|
+
"name": "icon-territory",
|
|
5666
|
+
"role": "ui",
|
|
5667
|
+
"style": "fantasy-border",
|
|
5668
|
+
"thumbnailUrl": "",
|
|
5669
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-territory.png",
|
|
5670
|
+
"variant": ""
|
|
5671
|
+
},
|
|
4926
5672
|
"label": "Territory",
|
|
4927
5673
|
"value": "@entity.territory"
|
|
4928
5674
|
},
|
|
4929
5675
|
{
|
|
5676
|
+
"iconUrl": {
|
|
5677
|
+
"animations": [],
|
|
5678
|
+
"aspect": "1:1",
|
|
5679
|
+
"category": "ui",
|
|
5680
|
+
"dimension": "2d",
|
|
5681
|
+
"name": "icon-result",
|
|
5682
|
+
"role": "ui",
|
|
5683
|
+
"style": "fantasy-border",
|
|
5684
|
+
"thumbnailUrl": "",
|
|
5685
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-result.png",
|
|
5686
|
+
"variant": ""
|
|
5687
|
+
},
|
|
4930
5688
|
"label": "Result",
|
|
4931
5689
|
"value": "@entity.result"
|
|
4932
5690
|
}
|
|
@@ -4947,7 +5705,18 @@
|
|
|
4947
5705
|
},
|
|
4948
5706
|
{
|
|
4949
5707
|
"action": "END_TURN",
|
|
4950
|
-
"
|
|
5708
|
+
"iconAsset": {
|
|
5709
|
+
"animations": [],
|
|
5710
|
+
"aspect": "1:1",
|
|
5711
|
+
"category": "ui",
|
|
5712
|
+
"dimension": "2d",
|
|
5713
|
+
"name": "icon-end-turn",
|
|
5714
|
+
"role": "ui",
|
|
5715
|
+
"style": "fantasy-border",
|
|
5716
|
+
"thumbnailUrl": "",
|
|
5717
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-end-turn.png",
|
|
5718
|
+
"variant": ""
|
|
5719
|
+
},
|
|
4951
5720
|
"label": "End Turn",
|
|
4952
5721
|
"type": "button",
|
|
4953
5722
|
"variant": "secondary"
|
|
@@ -4958,6 +5727,18 @@
|
|
|
4958
5727
|
"justify": "between",
|
|
4959
5728
|
"type": "stack"
|
|
4960
5729
|
},
|
|
5730
|
+
"hudBackgroundAsset": {
|
|
5731
|
+
"animations": [],
|
|
5732
|
+
"aspect": "1:1",
|
|
5733
|
+
"category": "ui",
|
|
5734
|
+
"dimension": "2d",
|
|
5735
|
+
"name": "panel-frame",
|
|
5736
|
+
"role": "ui",
|
|
5737
|
+
"style": "fantasy-border",
|
|
5738
|
+
"thumbnailUrl": "",
|
|
5739
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/panel-frame.png",
|
|
5740
|
+
"variant": ""
|
|
5741
|
+
},
|
|
4961
5742
|
"type": "game-shell"
|
|
4962
5743
|
}
|
|
4963
5744
|
]
|
|
@@ -5460,6 +6241,18 @@
|
|
|
5460
6241
|
"render-ui",
|
|
5461
6242
|
"main",
|
|
5462
6243
|
{
|
|
6244
|
+
"backgroundAsset": {
|
|
6245
|
+
"animations": [],
|
|
6246
|
+
"aspect": "1:1",
|
|
6247
|
+
"category": "ui",
|
|
6248
|
+
"dimension": "2d",
|
|
6249
|
+
"name": "panel-frame",
|
|
6250
|
+
"role": "ui",
|
|
6251
|
+
"style": "fantasy-border",
|
|
6252
|
+
"thumbnailUrl": "",
|
|
6253
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/panel-frame.png",
|
|
6254
|
+
"variant": ""
|
|
6255
|
+
},
|
|
5463
6256
|
"children": [
|
|
5464
6257
|
{
|
|
5465
6258
|
"assetManifest": "@config.assetManifest",
|
|
@@ -5489,14 +6282,50 @@
|
|
|
5489
6282
|
{
|
|
5490
6283
|
"stats": [
|
|
5491
6284
|
{
|
|
6285
|
+
"iconUrl": {
|
|
6286
|
+
"animations": [],
|
|
6287
|
+
"aspect": "1:1",
|
|
6288
|
+
"category": "ui",
|
|
6289
|
+
"dimension": "2d",
|
|
6290
|
+
"name": "icon-turn",
|
|
6291
|
+
"role": "ui",
|
|
6292
|
+
"style": "fantasy-border",
|
|
6293
|
+
"thumbnailUrl": "",
|
|
6294
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-turn.png",
|
|
6295
|
+
"variant": ""
|
|
6296
|
+
},
|
|
5492
6297
|
"label": "Turn",
|
|
5493
6298
|
"value": "@entity.turn"
|
|
5494
6299
|
},
|
|
5495
6300
|
{
|
|
6301
|
+
"iconUrl": {
|
|
6302
|
+
"animations": [],
|
|
6303
|
+
"aspect": "1:1",
|
|
6304
|
+
"category": "ui",
|
|
6305
|
+
"dimension": "2d",
|
|
6306
|
+
"name": "icon-territory",
|
|
6307
|
+
"role": "ui",
|
|
6308
|
+
"style": "fantasy-border",
|
|
6309
|
+
"thumbnailUrl": "",
|
|
6310
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-territory.png",
|
|
6311
|
+
"variant": ""
|
|
6312
|
+
},
|
|
5496
6313
|
"label": "Territory",
|
|
5497
6314
|
"value": "@entity.territory"
|
|
5498
6315
|
},
|
|
5499
6316
|
{
|
|
6317
|
+
"iconUrl": {
|
|
6318
|
+
"animations": [],
|
|
6319
|
+
"aspect": "1:1",
|
|
6320
|
+
"category": "ui",
|
|
6321
|
+
"dimension": "2d",
|
|
6322
|
+
"name": "icon-result",
|
|
6323
|
+
"role": "ui",
|
|
6324
|
+
"style": "fantasy-border",
|
|
6325
|
+
"thumbnailUrl": "",
|
|
6326
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-result.png",
|
|
6327
|
+
"variant": ""
|
|
6328
|
+
},
|
|
5500
6329
|
"label": "Result",
|
|
5501
6330
|
"value": "@entity.result"
|
|
5502
6331
|
}
|
|
@@ -5517,7 +6346,18 @@
|
|
|
5517
6346
|
},
|
|
5518
6347
|
{
|
|
5519
6348
|
"action": "END_TURN",
|
|
5520
|
-
"
|
|
6349
|
+
"iconAsset": {
|
|
6350
|
+
"animations": [],
|
|
6351
|
+
"aspect": "1:1",
|
|
6352
|
+
"category": "ui",
|
|
6353
|
+
"dimension": "2d",
|
|
6354
|
+
"name": "icon-end-turn",
|
|
6355
|
+
"role": "ui",
|
|
6356
|
+
"style": "fantasy-border",
|
|
6357
|
+
"thumbnailUrl": "",
|
|
6358
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/icon-end-turn.png",
|
|
6359
|
+
"variant": ""
|
|
6360
|
+
},
|
|
5521
6361
|
"label": "End Turn",
|
|
5522
6362
|
"type": "button",
|
|
5523
6363
|
"variant": "secondary"
|
|
@@ -5528,6 +6368,18 @@
|
|
|
5528
6368
|
"justify": "between",
|
|
5529
6369
|
"type": "stack"
|
|
5530
6370
|
},
|
|
6371
|
+
"hudBackgroundAsset": {
|
|
6372
|
+
"animations": [],
|
|
6373
|
+
"aspect": "1:1",
|
|
6374
|
+
"category": "ui",
|
|
6375
|
+
"dimension": "2d",
|
|
6376
|
+
"name": "panel-frame",
|
|
6377
|
+
"role": "ui",
|
|
6378
|
+
"style": "fantasy-border",
|
|
6379
|
+
"thumbnailUrl": "",
|
|
6380
|
+
"url": "https://almadar-kflow-assets.web.app/shared/ui-hex-strategy-board/default/ui/panel-frame.png",
|
|
6381
|
+
"variant": ""
|
|
6382
|
+
},
|
|
5531
6383
|
"type": "game-shell"
|
|
5532
6384
|
}
|
|
5533
6385
|
]
|