@almadar/std 16.153.0 → 16.155.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/behaviors/lolo/ui/game/molecules/std-crew-board-2d.lolo +4 -4
- package/behaviors/lolo/ui/game/molecules/std-dungeon-board-2d.lolo +6 -6
- package/behaviors/lolo/ui/game/molecules/std-tactics-board-2d.lolo +74 -28
- package/behaviors/lolo/ui/game/molecules/std-worldmap-board-2d.lolo +2 -2
- package/behaviors/lolo/ui/game/molecules/ui-canvas.lolo +5 -0
- package/behaviors/lolo/ui/game/organisms/ui-arena-board.lolo +2 -2
- package/behaviors/lolo/ui/game/organisms/ui-battle-board.lolo +159 -8
- package/behaviors/lolo/ui/game/organisms/ui-builder-board.lolo +5 -20
- package/behaviors/lolo/ui/game/organisms/ui-card-battler-board.lolo +2 -0
- package/behaviors/lolo/ui/game/organisms/ui-castle-board.lolo +3 -3
- package/behaviors/lolo/ui/game/organisms/ui-city-builder-board.lolo +9 -7
- package/behaviors/lolo/ui/game/organisms/ui-grid-tactics-demo-board.lolo +2 -2
- package/behaviors/lolo/ui/game/organisms/ui-hex-strategy-board.lolo +158 -10
- package/behaviors/lolo/ui/game/organisms/ui-holiday-runner-board.lolo +1 -1
- package/behaviors/lolo/ui/game/organisms/ui-minigolf-board.lolo +22 -22
- package/behaviors/lolo/ui/game/organisms/ui-pinball-board.lolo +7 -7
- package/behaviors/lolo/ui/game/organisms/ui-pirate-board.lolo +14 -14
- package/behaviors/lolo/ui/game/organisms/ui-platformer-board.lolo +4 -0
- package/behaviors/lolo/ui/game/organisms/ui-sports-board.lolo +10 -7
- package/behaviors/lolo/ui/game/organisms/ui-tactics-demo-2d.lolo +135 -9
- package/behaviors/lolo/ui/game/organisms/ui-tanks-board.lolo +152 -8
- package/behaviors/lolo/ui/game/organisms/ui-topdown-rts-board.lolo +293 -17
- package/behaviors/lolo/ui/game/organisms/ui-tower-defense-board.lolo +8 -8
- package/behaviors/lolo/ui/game/organisms/ui-uncontrolled-battle-board.lolo +5 -5
- package/behaviors/lolo/ui/game/organisms/ui-world-map-board.lolo +3 -3
- package/behaviors/registry/factory-signatures.json +1893 -2294
- package/behaviors/registry/ui/game/molecules/std-crew-board-2d.orb +10 -12
- package/behaviors/registry/ui/game/molecules/std-dungeon-board-2d.orb +15 -18
- package/behaviors/registry/ui/game/molecules/std-tactics-board-2d.orb +1726 -395
- package/behaviors/registry/ui/game/molecules/std-worldmap-board-2d.orb +7 -60
- package/behaviors/registry/ui/game/molecules/ui-canvas.orb +7 -0
- package/behaviors/registry/ui/game/organisms/ui-arena-board.orb +5 -6
- package/behaviors/registry/ui/game/organisms/ui-battle-board.orb +103 -100
- package/behaviors/registry/ui/game/organisms/ui-builder-board.orb +21 -226
- package/behaviors/registry/ui/game/organisms/ui-card-battler-board.orb +42 -0
- package/behaviors/registry/ui/game/organisms/ui-castle-board.orb +30 -9
- package/behaviors/registry/ui/game/organisms/ui-city-builder-board.orb +49 -0
- package/behaviors/registry/ui/game/organisms/ui-grid-tactics-demo-board.orb +5 -6
- package/behaviors/registry/ui/game/organisms/ui-hex-strategy-board.orb +95 -1187
- package/behaviors/registry/ui/game/organisms/ui-holiday-runner-board.orb +2 -3
- package/behaviors/registry/ui/game/organisms/ui-minigolf-board.orb +55 -11
- package/behaviors/registry/ui/game/organisms/ui-pinball-board.orb +8 -8
- package/behaviors/registry/ui/game/organisms/ui-pirate-board.orb +14 -0
- package/behaviors/registry/ui/game/organisms/ui-platformer-board.orb +72 -0
- package/behaviors/registry/ui/game/organisms/ui-sports-board.orb +60 -0
- package/behaviors/registry/ui/game/organisms/ui-tactics-demo-2d.orb +222 -332
- package/behaviors/registry/ui/game/organisms/ui-tanks-board.orb +127 -95
- package/behaviors/registry/ui/game/organisms/ui-topdown-rts-board.orb +1501 -264
- package/behaviors/registry/ui/game/organisms/ui-tower-defense-board.orb +8 -0
- package/behaviors/registry/ui/game/organisms/ui-uncontrolled-battle-board.orb +5 -0
- package/behaviors/registry/ui/game/organisms/ui-world-map-board.orb +8 -12
- package/dist/behaviors/behaviors-embeddings.json +244 -236
- package/dist/behaviors/behaviors-registry.json +193 -812
- package/dist/behaviors/exports-reader.js +1099 -2090
- package/dist/behaviors/functions/index.d.ts +33 -26
- package/dist/behaviors/functions/index.js +1099 -2091
- package/dist/behaviors/index.d.ts +1 -1
- package/dist/behaviors/index.js +1100 -2091
- package/dist/behaviors/knob-embeddings.json +1 -1
- package/dist/behaviors/query.js +1099 -2090
- package/dist/behaviors/registry/factory-signatures.json +1893 -2294
- package/dist/behaviors/registry/ui/game/molecules/std-crew-board-2d.orb +10 -12
- package/dist/behaviors/registry/ui/game/molecules/std-dungeon-board-2d.orb +15 -18
- package/dist/behaviors/registry/ui/game/molecules/std-tactics-board-2d.orb +1726 -395
- package/dist/behaviors/registry/ui/game/molecules/std-worldmap-board-2d.orb +7 -60
- package/dist/behaviors/registry/ui/game/molecules/ui-canvas.orb +7 -0
- package/dist/behaviors/registry/ui/game/organisms/ui-arena-board.orb +5 -6
- package/dist/behaviors/registry/ui/game/organisms/ui-battle-board.orb +103 -100
- package/dist/behaviors/registry/ui/game/organisms/ui-builder-board.orb +21 -226
- package/dist/behaviors/registry/ui/game/organisms/ui-card-battler-board.orb +42 -0
- package/dist/behaviors/registry/ui/game/organisms/ui-castle-board.orb +30 -9
- package/dist/behaviors/registry/ui/game/organisms/ui-city-builder-board.orb +49 -0
- package/dist/behaviors/registry/ui/game/organisms/ui-grid-tactics-demo-board.orb +5 -6
- package/dist/behaviors/registry/ui/game/organisms/ui-hex-strategy-board.orb +95 -1187
- package/dist/behaviors/registry/ui/game/organisms/ui-holiday-runner-board.orb +2 -3
- package/dist/behaviors/registry/ui/game/organisms/ui-minigolf-board.orb +55 -11
- package/dist/behaviors/registry/ui/game/organisms/ui-pinball-board.orb +8 -8
- package/dist/behaviors/registry/ui/game/organisms/ui-pirate-board.orb +14 -0
- package/dist/behaviors/registry/ui/game/organisms/ui-platformer-board.orb +72 -0
- package/dist/behaviors/registry/ui/game/organisms/ui-sports-board.orb +60 -0
- package/dist/behaviors/registry/ui/game/organisms/ui-tactics-demo-2d.orb +222 -332
- package/dist/behaviors/registry/ui/game/organisms/ui-tanks-board.orb +127 -95
- package/dist/behaviors/registry/ui/game/organisms/ui-topdown-rts-board.orb +1501 -264
- package/dist/behaviors/registry/ui/game/organisms/ui-tower-defense-board.orb +8 -0
- package/dist/behaviors/registry/ui/game/organisms/ui-uncontrolled-battle-board.orb +5 -0
- package/dist/behaviors/registry/ui/game/organisms/ui-world-map-board.orb +8 -12
- package/dist/behaviors-embeddings.json +244 -236
- package/dist/behaviors-registry.json +193 -812
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1100 -2091
- package/dist/knob-embeddings.json +1 -1
- package/dist/registry/factory-signatures.json +1893 -2294
- package/package.json +2 -2
|
@@ -749,8 +749,7 @@
|
|
|
749
749
|
"linkedEntity": "GameState",
|
|
750
750
|
"linkedEntityId": "ent_01KXG04V94CJG58Y1TDW34G4YD",
|
|
751
751
|
"name": "CrewAuthority",
|
|
752
|
-
"ref": "Nav.traits.HeroNav"
|
|
753
|
-
"refId": "trt_01KXG04TJB91GE3PMCMF5EBAQX"
|
|
752
|
+
"ref": "Nav.traits.HeroNav"
|
|
754
753
|
},
|
|
755
754
|
{
|
|
756
755
|
"config": {
|
|
@@ -763,8 +762,7 @@
|
|
|
763
762
|
"linkedEntity": "GameState",
|
|
764
763
|
"linkedEntityId": "ent_01KXG04V94CJG58Y1TDW34G4YD",
|
|
765
764
|
"name": "FxDecay",
|
|
766
|
-
"ref": "Particles.traits.FxParticles"
|
|
767
|
-
"refId": "trt_01KXG04TFZQZVT3F7J3DTM2PXF"
|
|
765
|
+
"ref": "Particles.traits.FxParticles"
|
|
768
766
|
},
|
|
769
767
|
{
|
|
770
768
|
"category": "interaction",
|
|
@@ -1891,7 +1889,7 @@
|
|
|
1891
1889
|
]
|
|
1892
1890
|
]
|
|
1893
1891
|
],
|
|
1894
|
-
"height": 0
|
|
1892
|
+
"height": 1.0,
|
|
1895
1893
|
"position": {
|
|
1896
1894
|
"x": [
|
|
1897
1895
|
"object/get",
|
|
@@ -1905,7 +1903,7 @@
|
|
|
1905
1903
|
]
|
|
1906
1904
|
},
|
|
1907
1905
|
"type": "draw-sprite",
|
|
1908
|
-
"width": 0
|
|
1906
|
+
"width": 1.0
|
|
1909
1907
|
}
|
|
1910
1908
|
]
|
|
1911
1909
|
],
|
|
@@ -2049,7 +2047,7 @@
|
|
|
2049
2047
|
]
|
|
2050
2048
|
]
|
|
2051
2049
|
],
|
|
2052
|
-
"height": 0
|
|
2050
|
+
"height": 1.0,
|
|
2053
2051
|
"id": [
|
|
2054
2052
|
"object/get",
|
|
2055
2053
|
"@u",
|
|
@@ -2061,7 +2059,7 @@
|
|
|
2061
2059
|
"position"
|
|
2062
2060
|
],
|
|
2063
2061
|
"type": "draw-sprite",
|
|
2064
|
-
"width": 0
|
|
2062
|
+
"width": 1.0
|
|
2065
2063
|
}
|
|
2066
2064
|
]
|
|
2067
2065
|
],
|
|
@@ -2806,7 +2804,7 @@
|
|
|
2806
2804
|
]
|
|
2807
2805
|
]
|
|
2808
2806
|
],
|
|
2809
|
-
"height": 0
|
|
2807
|
+
"height": 1.0,
|
|
2810
2808
|
"position": {
|
|
2811
2809
|
"x": [
|
|
2812
2810
|
"object/get",
|
|
@@ -2820,7 +2818,7 @@
|
|
|
2820
2818
|
]
|
|
2821
2819
|
},
|
|
2822
2820
|
"type": "draw-sprite",
|
|
2823
|
-
"width": 0
|
|
2821
|
+
"width": 1.0
|
|
2824
2822
|
}
|
|
2825
2823
|
]
|
|
2826
2824
|
],
|
|
@@ -2964,7 +2962,7 @@
|
|
|
2964
2962
|
]
|
|
2965
2963
|
]
|
|
2966
2964
|
],
|
|
2967
|
-
"height": 0
|
|
2965
|
+
"height": 1.0,
|
|
2968
2966
|
"id": [
|
|
2969
2967
|
"object/get",
|
|
2970
2968
|
"@u",
|
|
@@ -2976,7 +2974,7 @@
|
|
|
2976
2974
|
"position"
|
|
2977
2975
|
],
|
|
2978
2976
|
"type": "draw-sprite",
|
|
2979
|
-
"width": 0
|
|
2977
|
+
"width": 1.0
|
|
2980
2978
|
}
|
|
2981
2979
|
]
|
|
2982
2980
|
],
|
|
@@ -1683,8 +1683,7 @@
|
|
|
1683
1683
|
"linkedEntity": "GameState",
|
|
1684
1684
|
"linkedEntityId": "ent_01KXG04VBP0RVT62VZH32Y3Z65",
|
|
1685
1685
|
"name": "HeroAuthority",
|
|
1686
|
-
"ref": "Nav.traits.HeroNav"
|
|
1687
|
-
"refId": "trt_01KXG04TJB91GE3PMCMF5EBAQX"
|
|
1686
|
+
"ref": "Nav.traits.HeroNav"
|
|
1688
1687
|
},
|
|
1689
1688
|
{
|
|
1690
1689
|
"config": {
|
|
@@ -1753,8 +1752,7 @@
|
|
|
1753
1752
|
"linkedEntity": "GameState",
|
|
1754
1753
|
"linkedEntityId": "ent_01KXG04VBP0RVT62VZH32Y3Z65",
|
|
1755
1754
|
"name": "Enemies",
|
|
1756
|
-
"ref": "Combat.traits.DungeonCombat"
|
|
1757
|
-
"refId": "trt_01KXG04TFH3K6EPQH6S4EGMMZ8"
|
|
1755
|
+
"ref": "Combat.traits.DungeonCombat"
|
|
1758
1756
|
},
|
|
1759
1757
|
{
|
|
1760
1758
|
"config": {
|
|
@@ -1787,8 +1785,7 @@
|
|
|
1787
1785
|
"linkedEntity": "GameState",
|
|
1788
1786
|
"linkedEntityId": "ent_01KXG04VBP0RVT62VZH32Y3Z65",
|
|
1789
1787
|
"name": "Collector",
|
|
1790
|
-
"ref": "Objective.traits.ObjectiveReach"
|
|
1791
|
-
"refId": "trt_01KXG04TKVF4P1VR3W6BFJ78NH"
|
|
1788
|
+
"ref": "Objective.traits.ObjectiveReach"
|
|
1792
1789
|
},
|
|
1793
1790
|
{
|
|
1794
1791
|
"config": {
|
|
@@ -1801,8 +1798,7 @@
|
|
|
1801
1798
|
"linkedEntity": "GameState",
|
|
1802
1799
|
"linkedEntityId": "ent_01KXG04VBP0RVT62VZH32Y3Z65",
|
|
1803
1800
|
"name": "FxDecay",
|
|
1804
|
-
"ref": "Particles.traits.FxParticles"
|
|
1805
|
-
"refId": "trt_01KXG04TFZQZVT3F7J3DTM2PXF"
|
|
1801
|
+
"ref": "Particles.traits.FxParticles"
|
|
1806
1802
|
},
|
|
1807
1803
|
{
|
|
1808
1804
|
"config": {
|
|
@@ -1815,8 +1811,7 @@
|
|
|
1815
1811
|
"linkedEntity": "GameState",
|
|
1816
1812
|
"linkedEntityId": "ent_01KXG04VBP0RVT62VZH32Y3Z65",
|
|
1817
1813
|
"name": "RoundGate",
|
|
1818
|
-
"ref": "Gate.traits.ObjectiveFlow"
|
|
1819
|
-
"refId": "trt_01KXG04TKBC6DPS2TWD1P0Z0K5"
|
|
1814
|
+
"ref": "Gate.traits.ObjectiveFlow"
|
|
1820
1815
|
},
|
|
1821
1816
|
{
|
|
1822
1817
|
"category": "interaction",
|
|
@@ -2964,7 +2959,7 @@
|
|
|
2964
2959
|
]
|
|
2965
2960
|
]
|
|
2966
2961
|
],
|
|
2967
|
-
"height": 0
|
|
2962
|
+
"height": 1.0,
|
|
2968
2963
|
"position": {
|
|
2969
2964
|
"x": [
|
|
2970
2965
|
"object/get",
|
|
@@ -2978,7 +2973,7 @@
|
|
|
2978
2973
|
]
|
|
2979
2974
|
},
|
|
2980
2975
|
"type": "draw-sprite",
|
|
2981
|
-
"width": 0
|
|
2976
|
+
"width": 1.0
|
|
2982
2977
|
}
|
|
2983
2978
|
]
|
|
2984
2979
|
],
|
|
@@ -3058,14 +3053,14 @@
|
|
|
3058
3053
|
]
|
|
3059
3054
|
]
|
|
3060
3055
|
],
|
|
3061
|
-
"height": 0
|
|
3056
|
+
"height": 1.0,
|
|
3062
3057
|
"position": [
|
|
3063
3058
|
"object/get",
|
|
3064
3059
|
"@u",
|
|
3065
3060
|
"position"
|
|
3066
3061
|
],
|
|
3067
3062
|
"type": "draw-sprite",
|
|
3068
|
-
"width": 0
|
|
3063
|
+
"width": 1.0
|
|
3069
3064
|
}
|
|
3070
3065
|
]
|
|
3071
3066
|
],
|
|
@@ -3210,6 +3205,7 @@
|
|
|
3210
3205
|
"type": "draw-text-layer"
|
|
3211
3206
|
}
|
|
3212
3207
|
],
|
|
3208
|
+
"fit": true,
|
|
3213
3209
|
"keyMap": {
|
|
3214
3210
|
"ArrowDown": "MOVE_DOWN",
|
|
3215
3211
|
"ArrowLeft": "MOVE_LEFT",
|
|
@@ -4295,7 +4291,7 @@
|
|
|
4295
4291
|
]
|
|
4296
4292
|
]
|
|
4297
4293
|
],
|
|
4298
|
-
"height": 0
|
|
4294
|
+
"height": 1.0,
|
|
4299
4295
|
"position": {
|
|
4300
4296
|
"x": [
|
|
4301
4297
|
"object/get",
|
|
@@ -4309,7 +4305,7 @@
|
|
|
4309
4305
|
]
|
|
4310
4306
|
},
|
|
4311
4307
|
"type": "draw-sprite",
|
|
4312
|
-
"width": 0
|
|
4308
|
+
"width": 1.0
|
|
4313
4309
|
}
|
|
4314
4310
|
]
|
|
4315
4311
|
],
|
|
@@ -4389,14 +4385,14 @@
|
|
|
4389
4385
|
]
|
|
4390
4386
|
]
|
|
4391
4387
|
],
|
|
4392
|
-
"height": 0
|
|
4388
|
+
"height": 1.0,
|
|
4393
4389
|
"position": [
|
|
4394
4390
|
"object/get",
|
|
4395
4391
|
"@u",
|
|
4396
4392
|
"position"
|
|
4397
4393
|
],
|
|
4398
4394
|
"type": "draw-sprite",
|
|
4399
|
-
"width": 0
|
|
4395
|
+
"width": 1.0
|
|
4400
4396
|
}
|
|
4401
4397
|
]
|
|
4402
4398
|
],
|
|
@@ -4541,6 +4537,7 @@
|
|
|
4541
4537
|
"type": "draw-text-layer"
|
|
4542
4538
|
}
|
|
4543
4539
|
],
|
|
4540
|
+
"fit": true,
|
|
4544
4541
|
"keyMap": {
|
|
4545
4542
|
"ArrowDown": "MOVE_DOWN",
|
|
4546
4543
|
"ArrowLeft": "MOVE_LEFT",
|