@almadar/std 16.153.0 → 16.155.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (93) hide show
  1. package/behaviors/lolo/ui/game/molecules/std-crew-board-2d.lolo +4 -4
  2. package/behaviors/lolo/ui/game/molecules/std-dungeon-board-2d.lolo +6 -6
  3. package/behaviors/lolo/ui/game/molecules/std-tactics-board-2d.lolo +74 -28
  4. package/behaviors/lolo/ui/game/molecules/std-worldmap-board-2d.lolo +2 -2
  5. package/behaviors/lolo/ui/game/molecules/ui-canvas.lolo +5 -0
  6. package/behaviors/lolo/ui/game/organisms/ui-arena-board.lolo +2 -2
  7. package/behaviors/lolo/ui/game/organisms/ui-battle-board.lolo +159 -8
  8. package/behaviors/lolo/ui/game/organisms/ui-builder-board.lolo +5 -20
  9. package/behaviors/lolo/ui/game/organisms/ui-card-battler-board.lolo +2 -0
  10. package/behaviors/lolo/ui/game/organisms/ui-castle-board.lolo +3 -3
  11. package/behaviors/lolo/ui/game/organisms/ui-city-builder-board.lolo +9 -7
  12. package/behaviors/lolo/ui/game/organisms/ui-grid-tactics-demo-board.lolo +2 -2
  13. package/behaviors/lolo/ui/game/organisms/ui-hex-strategy-board.lolo +158 -10
  14. package/behaviors/lolo/ui/game/organisms/ui-holiday-runner-board.lolo +1 -1
  15. package/behaviors/lolo/ui/game/organisms/ui-minigolf-board.lolo +22 -22
  16. package/behaviors/lolo/ui/game/organisms/ui-pinball-board.lolo +7 -7
  17. package/behaviors/lolo/ui/game/organisms/ui-pirate-board.lolo +14 -14
  18. package/behaviors/lolo/ui/game/organisms/ui-platformer-board.lolo +4 -0
  19. package/behaviors/lolo/ui/game/organisms/ui-sports-board.lolo +10 -7
  20. package/behaviors/lolo/ui/game/organisms/ui-tactics-demo-2d.lolo +135 -9
  21. package/behaviors/lolo/ui/game/organisms/ui-tanks-board.lolo +152 -8
  22. package/behaviors/lolo/ui/game/organisms/ui-topdown-rts-board.lolo +293 -17
  23. package/behaviors/lolo/ui/game/organisms/ui-tower-defense-board.lolo +8 -8
  24. package/behaviors/lolo/ui/game/organisms/ui-uncontrolled-battle-board.lolo +5 -5
  25. package/behaviors/lolo/ui/game/organisms/ui-world-map-board.lolo +3 -3
  26. package/behaviors/registry/factory-signatures.json +1893 -2294
  27. package/behaviors/registry/ui/game/molecules/std-crew-board-2d.orb +10 -12
  28. package/behaviors/registry/ui/game/molecules/std-dungeon-board-2d.orb +15 -18
  29. package/behaviors/registry/ui/game/molecules/std-tactics-board-2d.orb +1726 -395
  30. package/behaviors/registry/ui/game/molecules/std-worldmap-board-2d.orb +7 -60
  31. package/behaviors/registry/ui/game/molecules/ui-canvas.orb +7 -0
  32. package/behaviors/registry/ui/game/organisms/ui-arena-board.orb +5 -6
  33. package/behaviors/registry/ui/game/organisms/ui-battle-board.orb +103 -100
  34. package/behaviors/registry/ui/game/organisms/ui-builder-board.orb +21 -226
  35. package/behaviors/registry/ui/game/organisms/ui-card-battler-board.orb +42 -0
  36. package/behaviors/registry/ui/game/organisms/ui-castle-board.orb +30 -9
  37. package/behaviors/registry/ui/game/organisms/ui-city-builder-board.orb +49 -0
  38. package/behaviors/registry/ui/game/organisms/ui-grid-tactics-demo-board.orb +5 -6
  39. package/behaviors/registry/ui/game/organisms/ui-hex-strategy-board.orb +95 -1187
  40. package/behaviors/registry/ui/game/organisms/ui-holiday-runner-board.orb +2 -3
  41. package/behaviors/registry/ui/game/organisms/ui-minigolf-board.orb +55 -11
  42. package/behaviors/registry/ui/game/organisms/ui-pinball-board.orb +8 -8
  43. package/behaviors/registry/ui/game/organisms/ui-pirate-board.orb +14 -0
  44. package/behaviors/registry/ui/game/organisms/ui-platformer-board.orb +72 -0
  45. package/behaviors/registry/ui/game/organisms/ui-sports-board.orb +60 -0
  46. package/behaviors/registry/ui/game/organisms/ui-tactics-demo-2d.orb +222 -332
  47. package/behaviors/registry/ui/game/organisms/ui-tanks-board.orb +127 -95
  48. package/behaviors/registry/ui/game/organisms/ui-topdown-rts-board.orb +1501 -264
  49. package/behaviors/registry/ui/game/organisms/ui-tower-defense-board.orb +8 -0
  50. package/behaviors/registry/ui/game/organisms/ui-uncontrolled-battle-board.orb +5 -0
  51. package/behaviors/registry/ui/game/organisms/ui-world-map-board.orb +8 -12
  52. package/dist/behaviors/behaviors-embeddings.json +244 -236
  53. package/dist/behaviors/behaviors-registry.json +193 -812
  54. package/dist/behaviors/exports-reader.js +1099 -2090
  55. package/dist/behaviors/functions/index.d.ts +33 -26
  56. package/dist/behaviors/functions/index.js +1099 -2091
  57. package/dist/behaviors/index.d.ts +1 -1
  58. package/dist/behaviors/index.js +1100 -2091
  59. package/dist/behaviors/knob-embeddings.json +1 -1
  60. package/dist/behaviors/query.js +1099 -2090
  61. package/dist/behaviors/registry/factory-signatures.json +1893 -2294
  62. package/dist/behaviors/registry/ui/game/molecules/std-crew-board-2d.orb +10 -12
  63. package/dist/behaviors/registry/ui/game/molecules/std-dungeon-board-2d.orb +15 -18
  64. package/dist/behaviors/registry/ui/game/molecules/std-tactics-board-2d.orb +1726 -395
  65. package/dist/behaviors/registry/ui/game/molecules/std-worldmap-board-2d.orb +7 -60
  66. package/dist/behaviors/registry/ui/game/molecules/ui-canvas.orb +7 -0
  67. package/dist/behaviors/registry/ui/game/organisms/ui-arena-board.orb +5 -6
  68. package/dist/behaviors/registry/ui/game/organisms/ui-battle-board.orb +103 -100
  69. package/dist/behaviors/registry/ui/game/organisms/ui-builder-board.orb +21 -226
  70. package/dist/behaviors/registry/ui/game/organisms/ui-card-battler-board.orb +42 -0
  71. package/dist/behaviors/registry/ui/game/organisms/ui-castle-board.orb +30 -9
  72. package/dist/behaviors/registry/ui/game/organisms/ui-city-builder-board.orb +49 -0
  73. package/dist/behaviors/registry/ui/game/organisms/ui-grid-tactics-demo-board.orb +5 -6
  74. package/dist/behaviors/registry/ui/game/organisms/ui-hex-strategy-board.orb +95 -1187
  75. package/dist/behaviors/registry/ui/game/organisms/ui-holiday-runner-board.orb +2 -3
  76. package/dist/behaviors/registry/ui/game/organisms/ui-minigolf-board.orb +55 -11
  77. package/dist/behaviors/registry/ui/game/organisms/ui-pinball-board.orb +8 -8
  78. package/dist/behaviors/registry/ui/game/organisms/ui-pirate-board.orb +14 -0
  79. package/dist/behaviors/registry/ui/game/organisms/ui-platformer-board.orb +72 -0
  80. package/dist/behaviors/registry/ui/game/organisms/ui-sports-board.orb +60 -0
  81. package/dist/behaviors/registry/ui/game/organisms/ui-tactics-demo-2d.orb +222 -332
  82. package/dist/behaviors/registry/ui/game/organisms/ui-tanks-board.orb +127 -95
  83. package/dist/behaviors/registry/ui/game/organisms/ui-topdown-rts-board.orb +1501 -264
  84. package/dist/behaviors/registry/ui/game/organisms/ui-tower-defense-board.orb +8 -0
  85. package/dist/behaviors/registry/ui/game/organisms/ui-uncontrolled-battle-board.orb +5 -0
  86. package/dist/behaviors/registry/ui/game/organisms/ui-world-map-board.orb +8 -12
  87. package/dist/behaviors-embeddings.json +244 -236
  88. package/dist/behaviors-registry.json +193 -812
  89. package/dist/index.d.ts +1 -1
  90. package/dist/index.js +1100 -2091
  91. package/dist/knob-embeddings.json +1 -1
  92. package/dist/registry/factory-signatures.json +1893 -2294
  93. package/package.json +2 -2
@@ -2126,7 +2126,7 @@
2126
2126
  [
2127
2127
  "set",
2128
2128
  "@entity.result",
2129
- ""
2129
+ "none"
2130
2130
  ],
2131
2131
  [
2132
2132
  "set",
@@ -4523,8 +4523,7 @@
4523
4523
  "linkedEntity": "HolidayRunnerBoardItem",
4524
4524
  "linkedEntityId": "ent_01KXG04XYBZA2FDCD4YHF4KYRZ",
4525
4525
  "name": "AnimClock",
4526
- "ref": "AnimTick.traits.AnimTick",
4527
- "refId": "trt_01KXG04EVEQNTAB0NYX7ZC392F"
4526
+ "ref": "AnimTick.traits.AnimTick"
4528
4527
  }
4529
4528
  ],
4530
4529
  "uses": [
@@ -5256,6 +5256,7 @@
5256
5256
  "fn",
5257
5257
  "u",
5258
5258
  {
5259
+ "anchor": "center",
5259
5260
  "asset": [
5260
5261
  "if",
5261
5262
  [
@@ -5286,6 +5287,7 @@
5286
5287
  ]
5287
5288
  ]
5288
5289
  ],
5290
+ "height": 0.35,
5289
5291
  "id": [
5290
5292
  "object/get",
5291
5293
  "@u",
@@ -5296,7 +5298,8 @@
5296
5298
  "@u",
5297
5299
  "position"
5298
5300
  ],
5299
- "type": "draw-sprite"
5301
+ "type": "draw-sprite",
5302
+ "width": 0.35
5300
5303
  }
5301
5304
  ]
5302
5305
  ],
@@ -5407,6 +5410,7 @@
5407
5410
  "type": "draw-text-layer"
5408
5411
  }
5409
5412
  ],
5413
+ "fit": true,
5410
5414
  "keyMap": {
5411
5415
  "ArrowDown": "PUTT_DOWN",
5412
5416
  "ArrowLeft": "PUTT_LEFT",
@@ -5965,6 +5969,7 @@
5965
5969
  "fn",
5966
5970
  "u",
5967
5971
  {
5972
+ "anchor": "center",
5968
5973
  "asset": [
5969
5974
  "if",
5970
5975
  [
@@ -5995,6 +6000,7 @@
5995
6000
  ]
5996
6001
  ]
5997
6002
  ],
6003
+ "height": 0.35,
5998
6004
  "id": [
5999
6005
  "object/get",
6000
6006
  "@u",
@@ -6005,7 +6011,8 @@
6005
6011
  "@u",
6006
6012
  "position"
6007
6013
  ],
6008
- "type": "draw-sprite"
6014
+ "type": "draw-sprite",
6015
+ "width": 0.35
6009
6016
  }
6010
6017
  ]
6011
6018
  ],
@@ -6116,6 +6123,7 @@
6116
6123
  "type": "draw-text-layer"
6117
6124
  }
6118
6125
  ],
6126
+ "fit": true,
6119
6127
  "keyMap": {
6120
6128
  "ArrowDown": "PUTT_DOWN",
6121
6129
  "ArrowLeft": "PUTT_LEFT",
@@ -6679,6 +6687,7 @@
6679
6687
  "fn",
6680
6688
  "u",
6681
6689
  {
6690
+ "anchor": "center",
6682
6691
  "asset": [
6683
6692
  "if",
6684
6693
  [
@@ -6709,6 +6718,7 @@
6709
6718
  ]
6710
6719
  ]
6711
6720
  ],
6721
+ "height": 0.35,
6712
6722
  "id": [
6713
6723
  "object/get",
6714
6724
  "@u",
@@ -6719,7 +6729,8 @@
6719
6729
  "@u",
6720
6730
  "position"
6721
6731
  ],
6722
- "type": "draw-sprite"
6732
+ "type": "draw-sprite",
6733
+ "width": 0.35
6723
6734
  }
6724
6735
  ]
6725
6736
  ],
@@ -6830,6 +6841,7 @@
6830
6841
  "type": "draw-text-layer"
6831
6842
  }
6832
6843
  ],
6844
+ "fit": true,
6833
6845
  "keyMap": {
6834
6846
  "ArrowDown": "PUTT_DOWN",
6835
6847
  "ArrowLeft": "PUTT_LEFT",
@@ -7393,6 +7405,7 @@
7393
7405
  "fn",
7394
7406
  "u",
7395
7407
  {
7408
+ "anchor": "center",
7396
7409
  "asset": [
7397
7410
  "if",
7398
7411
  [
@@ -7423,6 +7436,7 @@
7423
7436
  ]
7424
7437
  ]
7425
7438
  ],
7439
+ "height": 0.35,
7426
7440
  "id": [
7427
7441
  "object/get",
7428
7442
  "@u",
@@ -7433,7 +7447,8 @@
7433
7447
  "@u",
7434
7448
  "position"
7435
7449
  ],
7436
- "type": "draw-sprite"
7450
+ "type": "draw-sprite",
7451
+ "width": 0.35
7437
7452
  }
7438
7453
  ]
7439
7454
  ],
@@ -7544,6 +7559,7 @@
7544
7559
  "type": "draw-text-layer"
7545
7560
  }
7546
7561
  ],
7562
+ "fit": true,
7547
7563
  "keyMap": {
7548
7564
  "ArrowDown": "PUTT_DOWN",
7549
7565
  "ArrowLeft": "PUTT_LEFT",
@@ -8107,6 +8123,7 @@
8107
8123
  "fn",
8108
8124
  "u",
8109
8125
  {
8126
+ "anchor": "center",
8110
8127
  "asset": [
8111
8128
  "if",
8112
8129
  [
@@ -8137,6 +8154,7 @@
8137
8154
  ]
8138
8155
  ]
8139
8156
  ],
8157
+ "height": 0.35,
8140
8158
  "id": [
8141
8159
  "object/get",
8142
8160
  "@u",
@@ -8147,7 +8165,8 @@
8147
8165
  "@u",
8148
8166
  "position"
8149
8167
  ],
8150
- "type": "draw-sprite"
8168
+ "type": "draw-sprite",
8169
+ "width": 0.35
8151
8170
  }
8152
8171
  ]
8153
8172
  ],
@@ -8258,6 +8277,7 @@
8258
8277
  "type": "draw-text-layer"
8259
8278
  }
8260
8279
  ],
8280
+ "fit": true,
8261
8281
  "keyMap": {
8262
8282
  "ArrowDown": "PUTT_DOWN",
8263
8283
  "ArrowLeft": "PUTT_LEFT",
@@ -8575,6 +8595,7 @@
8575
8595
  "fn",
8576
8596
  "u",
8577
8597
  {
8598
+ "anchor": "center",
8578
8599
  "asset": [
8579
8600
  "if",
8580
8601
  [
@@ -8605,6 +8626,7 @@
8605
8626
  ]
8606
8627
  ]
8607
8628
  ],
8629
+ "height": 0.35,
8608
8630
  "id": [
8609
8631
  "object/get",
8610
8632
  "@u",
@@ -8615,7 +8637,8 @@
8615
8637
  "@u",
8616
8638
  "position"
8617
8639
  ],
8618
- "type": "draw-sprite"
8640
+ "type": "draw-sprite",
8641
+ "width": 0.35
8619
8642
  }
8620
8643
  ]
8621
8644
  ],
@@ -8726,6 +8749,7 @@
8726
8749
  "type": "draw-text-layer"
8727
8750
  }
8728
8751
  ],
8752
+ "fit": true,
8729
8753
  "keyMap": {
8730
8754
  "ArrowDown": "PUTT_DOWN",
8731
8755
  "ArrowLeft": "PUTT_LEFT",
@@ -9005,6 +9029,7 @@
9005
9029
  "fn",
9006
9030
  "u",
9007
9031
  {
9032
+ "anchor": "center",
9008
9033
  "asset": [
9009
9034
  "if",
9010
9035
  [
@@ -9035,6 +9060,7 @@
9035
9060
  ]
9036
9061
  ]
9037
9062
  ],
9063
+ "height": 0.35,
9038
9064
  "id": [
9039
9065
  "object/get",
9040
9066
  "@u",
@@ -9045,7 +9071,8 @@
9045
9071
  "@u",
9046
9072
  "position"
9047
9073
  ],
9048
- "type": "draw-sprite"
9074
+ "type": "draw-sprite",
9075
+ "width": 0.35
9049
9076
  }
9050
9077
  ]
9051
9078
  ],
@@ -9156,6 +9183,7 @@
9156
9183
  "type": "draw-text-layer"
9157
9184
  }
9158
9185
  ],
9186
+ "fit": true,
9159
9187
  "keyMap": {
9160
9188
  "ArrowDown": "PUTT_DOWN",
9161
9189
  "ArrowLeft": "PUTT_LEFT",
@@ -9526,6 +9554,7 @@
9526
9554
  "fn",
9527
9555
  "u",
9528
9556
  {
9557
+ "anchor": "center",
9529
9558
  "asset": [
9530
9559
  "if",
9531
9560
  [
@@ -9556,6 +9585,7 @@
9556
9585
  ]
9557
9586
  ]
9558
9587
  ],
9588
+ "height": 0.35,
9559
9589
  "id": [
9560
9590
  "object/get",
9561
9591
  "@u",
@@ -9566,7 +9596,8 @@
9566
9596
  "@u",
9567
9597
  "position"
9568
9598
  ],
9569
- "type": "draw-sprite"
9599
+ "type": "draw-sprite",
9600
+ "width": 0.35
9570
9601
  }
9571
9602
  ]
9572
9603
  ],
@@ -9677,6 +9708,7 @@
9677
9708
  "type": "draw-text-layer"
9678
9709
  }
9679
9710
  ],
9711
+ "fit": true,
9680
9712
  "keyMap": {
9681
9713
  "ArrowDown": "PUTT_DOWN",
9682
9714
  "ArrowLeft": "PUTT_LEFT",
@@ -10052,6 +10084,7 @@
10052
10084
  "fn",
10053
10085
  "u",
10054
10086
  {
10087
+ "anchor": "center",
10055
10088
  "asset": [
10056
10089
  "if",
10057
10090
  [
@@ -10082,6 +10115,7 @@
10082
10115
  ]
10083
10116
  ]
10084
10117
  ],
10118
+ "height": 0.35,
10085
10119
  "id": [
10086
10120
  "object/get",
10087
10121
  "@u",
@@ -10092,7 +10126,8 @@
10092
10126
  "@u",
10093
10127
  "position"
10094
10128
  ],
10095
- "type": "draw-sprite"
10129
+ "type": "draw-sprite",
10130
+ "width": 0.35
10096
10131
  }
10097
10132
  ]
10098
10133
  ],
@@ -10203,6 +10238,7 @@
10203
10238
  "type": "draw-text-layer"
10204
10239
  }
10205
10240
  ],
10241
+ "fit": true,
10206
10242
  "keyMap": {
10207
10243
  "ArrowDown": "PUTT_DOWN",
10208
10244
  "ArrowLeft": "PUTT_LEFT",
@@ -10578,6 +10614,7 @@
10578
10614
  "fn",
10579
10615
  "u",
10580
10616
  {
10617
+ "anchor": "center",
10581
10618
  "asset": [
10582
10619
  "if",
10583
10620
  [
@@ -10608,6 +10645,7 @@
10608
10645
  ]
10609
10646
  ]
10610
10647
  ],
10648
+ "height": 0.35,
10611
10649
  "id": [
10612
10650
  "object/get",
10613
10651
  "@u",
@@ -10618,7 +10656,8 @@
10618
10656
  "@u",
10619
10657
  "position"
10620
10658
  ],
10621
- "type": "draw-sprite"
10659
+ "type": "draw-sprite",
10660
+ "width": 0.35
10622
10661
  }
10623
10662
  ]
10624
10663
  ],
@@ -10729,6 +10768,7 @@
10729
10768
  "type": "draw-text-layer"
10730
10769
  }
10731
10770
  ],
10771
+ "fit": true,
10732
10772
  "keyMap": {
10733
10773
  "ArrowDown": "PUTT_DOWN",
10734
10774
  "ArrowLeft": "PUTT_LEFT",
@@ -10985,6 +11025,7 @@
10985
11025
  "fn",
10986
11026
  "u",
10987
11027
  {
11028
+ "anchor": "center",
10988
11029
  "asset": [
10989
11030
  "if",
10990
11031
  [
@@ -11015,6 +11056,7 @@
11015
11056
  ]
11016
11057
  ]
11017
11058
  ],
11059
+ "height": 0.35,
11018
11060
  "id": [
11019
11061
  "object/get",
11020
11062
  "@u",
@@ -11025,7 +11067,8 @@
11025
11067
  "@u",
11026
11068
  "position"
11027
11069
  ],
11028
- "type": "draw-sprite"
11070
+ "type": "draw-sprite",
11071
+ "width": 0.35
11029
11072
  }
11030
11073
  ]
11031
11074
  ],
@@ -11136,6 +11179,7 @@
11136
11179
  "type": "draw-text-layer"
11137
11180
  }
11138
11181
  ],
11182
+ "fit": true,
11139
11183
  "keyMap": {
11140
11184
  "ArrowDown": "PUTT_DOWN",
11141
11185
  "ArrowLeft": "PUTT_LEFT",
@@ -878,7 +878,7 @@
878
878
  "tier": "domain"
879
879
  },
880
880
  {
881
- "description": "Right flipper flick (KeySlash / ArrowRight / Right Flipper button)",
881
+ "description": "Right flipper flick (Slash / ArrowRight / Right Flipper button)",
882
882
  "event": "RIGHT_FLIPPER",
883
883
  "eventId": "evt_01KXG04YDKND5FKGG0AV1NXKV9",
884
884
  "payloadSchema": [
@@ -987,7 +987,7 @@
987
987
  "tier": "domain"
988
988
  },
989
989
  {
990
- "description": "Right flipper flick (KeySlash / ArrowRight / Right Flipper button)",
990
+ "description": "Right flipper flick (Slash / ArrowRight / Right Flipper button)",
991
991
  "id": "evt_01KXG04YDKND5FKGG0AV1NXKV9",
992
992
  "key": "RIGHT_FLIPPER",
993
993
  "name": "Right Flipper",
@@ -1378,8 +1378,8 @@
1378
1378
  "keyMap": {
1379
1379
  "ArrowLeft": "LEFT_FLIPPER",
1380
1380
  "ArrowRight": "RIGHT_FLIPPER",
1381
- "KeySlash": "RIGHT_FLIPPER",
1382
1381
  "KeyZ": "LEFT_FLIPPER",
1382
+ "Slash": "RIGHT_FLIPPER",
1383
1383
  "Space": "LAUNCH"
1384
1384
  },
1385
1385
  "projection": "free",
@@ -1832,8 +1832,8 @@
1832
1832
  "keyMap": {
1833
1833
  "ArrowLeft": "LEFT_FLIPPER",
1834
1834
  "ArrowRight": "RIGHT_FLIPPER",
1835
- "KeySlash": "RIGHT_FLIPPER",
1836
1835
  "KeyZ": "LEFT_FLIPPER",
1836
+ "Slash": "RIGHT_FLIPPER",
1837
1837
  "Space": "LAUNCH"
1838
1838
  },
1839
1839
  "projection": "free",
@@ -2203,8 +2203,8 @@
2203
2203
  "keyMap": {
2204
2204
  "ArrowLeft": "LEFT_FLIPPER",
2205
2205
  "ArrowRight": "RIGHT_FLIPPER",
2206
- "KeySlash": "RIGHT_FLIPPER",
2207
2206
  "KeyZ": "LEFT_FLIPPER",
2207
+ "Slash": "RIGHT_FLIPPER",
2208
2208
  "Space": "LAUNCH"
2209
2209
  },
2210
2210
  "projection": "free",
@@ -2641,8 +2641,8 @@
2641
2641
  "keyMap": {
2642
2642
  "ArrowLeft": "LEFT_FLIPPER",
2643
2643
  "ArrowRight": "RIGHT_FLIPPER",
2644
- "KeySlash": "RIGHT_FLIPPER",
2645
2644
  "KeyZ": "LEFT_FLIPPER",
2645
+ "Slash": "RIGHT_FLIPPER",
2646
2646
  "Space": "LAUNCH"
2647
2647
  },
2648
2648
  "projection": "free",
@@ -3717,8 +3717,8 @@
3717
3717
  "keyMap": {
3718
3718
  "ArrowLeft": "LEFT_FLIPPER",
3719
3719
  "ArrowRight": "RIGHT_FLIPPER",
3720
- "KeySlash": "RIGHT_FLIPPER",
3721
3720
  "KeyZ": "LEFT_FLIPPER",
3721
+ "Slash": "RIGHT_FLIPPER",
3722
3722
  "Space": "LAUNCH"
3723
3723
  },
3724
3724
  "projection": "free",
@@ -4138,8 +4138,8 @@
4138
4138
  "keyMap": {
4139
4139
  "ArrowLeft": "LEFT_FLIPPER",
4140
4140
  "ArrowRight": "RIGHT_FLIPPER",
4141
- "KeySlash": "RIGHT_FLIPPER",
4142
4141
  "KeyZ": "LEFT_FLIPPER",
4142
+ "Slash": "RIGHT_FLIPPER",
4143
4143
  "Space": "LAUNCH"
4144
4144
  },
4145
4145
  "projection": "free",
@@ -4213,6 +4213,7 @@
4213
4213
  "type": "draw-sprite-layer"
4214
4214
  }
4215
4215
  ],
4216
+ "fit": true,
4216
4217
  "projection": "isometric",
4217
4218
  "showMinimap": true,
4218
4219
  "tileClickEvent": "TILE_CLICK",
@@ -4790,6 +4791,7 @@
4790
4791
  "type": "draw-sprite-layer"
4791
4792
  }
4792
4793
  ],
4794
+ "fit": true,
4793
4795
  "projection": "isometric",
4794
4796
  "showMinimap": true,
4795
4797
  "tileClickEvent": "TILE_CLICK",
@@ -5538,6 +5540,7 @@
5538
5540
  "type": "draw-sprite-layer"
5539
5541
  }
5540
5542
  ],
5543
+ "fit": true,
5541
5544
  "projection": "isometric",
5542
5545
  "showMinimap": true,
5543
5546
  "tileClickEvent": "TILE_CLICK",
@@ -6226,6 +6229,7 @@
6226
6229
  "type": "draw-sprite-layer"
6227
6230
  }
6228
6231
  ],
6232
+ "fit": true,
6229
6233
  "projection": "isometric",
6230
6234
  "showMinimap": true,
6231
6235
  "tileClickEvent": "TILE_CLICK",
@@ -7177,6 +7181,7 @@
7177
7181
  "type": "draw-sprite-layer"
7178
7182
  }
7179
7183
  ],
7184
+ "fit": true,
7180
7185
  "projection": "isometric",
7181
7186
  "showMinimap": true,
7182
7187
  "tileClickEvent": "TILE_CLICK",
@@ -7989,6 +7994,7 @@
7989
7994
  "type": "draw-sprite-layer"
7990
7995
  }
7991
7996
  ],
7997
+ "fit": true,
7992
7998
  "projection": "isometric",
7993
7999
  "showMinimap": true,
7994
8000
  "tileClickEvent": "TILE_CLICK",
@@ -8638,6 +8644,7 @@
8638
8644
  "type": "draw-sprite-layer"
8639
8645
  }
8640
8646
  ],
8647
+ "fit": true,
8641
8648
  "projection": "isometric",
8642
8649
  "showMinimap": true,
8643
8650
  "tileClickEvent": "TILE_CLICK",
@@ -9223,6 +9230,7 @@
9223
9230
  "type": "draw-sprite-layer"
9224
9231
  }
9225
9232
  ],
9233
+ "fit": true,
9226
9234
  "projection": "isometric",
9227
9235
  "showMinimap": true,
9228
9236
  "tileClickEvent": "TILE_CLICK",
@@ -9829,6 +9837,7 @@
9829
9837
  "type": "draw-sprite-layer"
9830
9838
  }
9831
9839
  ],
9840
+ "fit": true,
9832
9841
  "projection": "isometric",
9833
9842
  "showMinimap": true,
9834
9843
  "tileClickEvent": "TILE_CLICK",
@@ -10416,6 +10425,7 @@
10416
10425
  "type": "draw-sprite-layer"
10417
10426
  }
10418
10427
  ],
10428
+ "fit": true,
10419
10429
  "projection": "isometric",
10420
10430
  "showMinimap": true,
10421
10431
  "tileClickEvent": "TILE_CLICK",
@@ -11034,6 +11044,7 @@
11034
11044
  "type": "draw-sprite-layer"
11035
11045
  }
11036
11046
  ],
11047
+ "fit": true,
11037
11048
  "projection": "isometric",
11038
11049
  "showMinimap": true,
11039
11050
  "tileClickEvent": "TILE_CLICK",
@@ -11754,6 +11765,7 @@
11754
11765
  "type": "draw-sprite-layer"
11755
11766
  }
11756
11767
  ],
11768
+ "fit": true,
11757
11769
  "projection": "isometric",
11758
11770
  "showMinimap": true,
11759
11771
  "tileClickEvent": "TILE_CLICK",
@@ -12324,6 +12336,7 @@
12324
12336
  "type": "draw-sprite-layer"
12325
12337
  }
12326
12338
  ],
12339
+ "fit": true,
12327
12340
  "projection": "isometric",
12328
12341
  "showMinimap": true,
12329
12342
  "tileClickEvent": "TILE_CLICK",
@@ -13446,6 +13459,7 @@
13446
13459
  "type": "draw-sprite-layer"
13447
13460
  }
13448
13461
  ],
13462
+ "fit": true,
13449
13463
  "projection": "isometric",
13450
13464
  "showMinimap": true,
13451
13465
  "tileClickEvent": "TILE_CLICK",
@@ -1695,6 +1695,11 @@
1695
1695
  1.0
1696
1696
  ]
1697
1697
  ],
1698
+ [
1699
+ "set",
1700
+ "@entity.lives",
1701
+ 3.0
1702
+ ],
1698
1703
  [
1699
1704
  "set",
1700
1705
  "@entity.result",
@@ -2863,6 +2868,22 @@
2863
2868
  ]
2864
2869
  ]
2865
2870
  ]
2871
+ ],
2872
+ [
2873
+ "if",
2874
+ [
2875
+ "!=",
2876
+ "@entity.result",
2877
+ "none"
2878
+ ],
2879
+ [
2880
+ "emit",
2881
+ "GAME_END",
2882
+ {
2883
+ "result": "@entity.result"
2884
+ }
2885
+ ],
2886
+ null
2866
2887
  ]
2867
2888
  ],
2868
2889
  "guard": [
@@ -3255,6 +3276,57 @@
3255
3276
  "url": "https://almadar-kflow-assets.web.app/shared/_shared/kenney-ui-pack/ui/greySheet.png",
3256
3277
  "variant": ""
3257
3278
  },
3279
+ "overlay": [
3280
+ "if",
3281
+ [
3282
+ "==",
3283
+ "@entity.result",
3284
+ "won"
3285
+ ],
3286
+ {
3287
+ "options": [
3288
+ {
3289
+ "event": "PLAY_AGAIN",
3290
+ "id": "again",
3291
+ "label": "Play Again",
3292
+ "variant": "primary"
3293
+ }
3294
+ ],
3295
+ "subtitle": [
3296
+ "str/concat",
3297
+ "Score: ",
3298
+ "@entity.score"
3299
+ ],
3300
+ "title": "YOU WIN!",
3301
+ "type": "game-menu"
3302
+ },
3303
+ [
3304
+ "if",
3305
+ [
3306
+ "==",
3307
+ "@entity.result",
3308
+ "lost"
3309
+ ],
3310
+ {
3311
+ "options": [
3312
+ {
3313
+ "event": "PLAY_AGAIN",
3314
+ "id": "again",
3315
+ "label": "Play Again",
3316
+ "variant": "primary"
3317
+ }
3318
+ ],
3319
+ "subtitle": [
3320
+ "str/concat",
3321
+ "Score: ",
3322
+ "@entity.score"
3323
+ ],
3324
+ "title": "GAME OVER",
3325
+ "type": "game-menu"
3326
+ },
3327
+ null
3328
+ ]
3329
+ ],
3258
3330
  "type": "game-shell"
3259
3331
  }
3260
3332
  ]