Skip to content

Commit 463fc40

Browse files
committed
YEET
1 parent c0ba8d8 commit 463fc40

24 files changed

+1106
-2575
lines changed

Directory.Packages.props

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,8 @@
4848
<PackageVersion Include="CommunityToolkit.Mvvm" Version="8.3.2" />
4949
<PackageVersion Include="SkiaSharp" Version="2.88.8" />
5050
<PackageVersion Include="SkiaSharp.NativeAssets.Linux" Version="2.88.8" />
51+
<!-- WASI/Componentize-hosted backend -->
52+
<PackageVersion Include="BytecodeAlliance.Componentize.DotNet.Wasm.SDK" Version="0.2.0-preview00004" />
53+
<PackageVersion Include="runtime.win-x64.microsoft.dotnet.ilcompiler.llvm" Version="10.0.0-rc.1.26117.1" />
5154
</ItemGroup>
5255
</Project>

JamlFilters/Q.JAML

Lines changed: 195 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,195 @@
1-
name: Luchador Triple Tag Build
2-
author: Motely Genie
3-
description: Luchado, boss blind with double tag combo, and voucher support for big blind one-shot.
4-
deck: Plasma
5-
Stake: White
6-
must:
7-
- tag: DoubleTag
8-
antes: [1,2]
9-
min: 2
10-
- joker: Stuntman
11-
antes: [1,2,3]
12-
sources:
13-
packSlots: [0,1,2,3]
14-
shopSlots: [0,1,2,3]
15-
- joker: Luchador
16-
antes: [3,4]
17-
sources:
18-
packSlots: [0,1]
19-
shopSlots: [0,1]
20-
should:
21-
- tag: DoubleTag
22-
antes: [1,2]
23-
score: 25
24-
- joker: DietCola
25-
antes: [1,2]
26-
score: 25
27-
- tag: VoucherTag
28-
antes: [5,6,7,8]
29-
30-
- And:
31-
label: "Ante 3 HIT!"
32-
score: 100
33-
clauses:
34-
- smallBlindTags: [BossTag, CouponTag, D6Tag, DoubleTag, EconomyTag, GarbageTag, HandyTag, InvestmentTag, NegativeTag, PolychromeTag, VoucherTag]
35-
antes: [3]
36-
- bigBlindTag: CharmTag
37-
antes: [3]
38-
- joker: Luchador
39-
antes: [3]
40-
sources:
41-
packSlots: [0,1]
42-
shopSlots: [0,1]
43-
- And:
44-
label: "Ante 4 HIT!"
45-
score: 100
46-
clauses:
47-
- smallBlindTags: [BossTag, CouponTag, D6Tag, DoubleTag, EconomyTag, GarbageTag, HandyTag, InvestmentTag, NegativeTag, PolychromeTag, VoucherTag]
48-
antes: [4]
49-
- bigBlindTag: CharmTag
50-
antes: [4]
51-
- joker: Luchador
52-
antes: [4]
53-
sources:
54-
packSlots: [0,1]
55-
shopSlots: [0,1]
1+
{
2+
"name": "Luchador Triple Tag Build",
3+
"author": "Motely Genie",
4+
"description": "Luchado, boss blind with double tag combo, and voucher support for big blind one-shot.",
5+
"deck": "Plasma",
6+
"Stake": "White",
7+
"must": [
8+
{
9+
"type": "smallBlindTag",
10+
"tags": [
11+
"DoubleTag"
12+
],
13+
"antes": [
14+
1,
15+
2
16+
],
17+
"min": 2
18+
},
19+
{
20+
"type": "joker",
21+
"jokers": [
22+
"Stuntman"
23+
],
24+
"antes": [
25+
1,
26+
2,
27+
3
28+
],
29+
"sources": {
30+
"packSlots": [
31+
0,
32+
1,
33+
2,
34+
3
35+
],
36+
"shopSlots": [
37+
0,
38+
1,
39+
2,
40+
3
41+
]
42+
}
43+
},
44+
{
45+
"type": "joker",
46+
"jokers": [
47+
"Luchador"
48+
],
49+
"antes": [
50+
3,
51+
4
52+
],
53+
"sources": {
54+
"packSlots": [
55+
0,
56+
1
57+
],
58+
"shopSlots": [
59+
0,
60+
1
61+
]
62+
}
63+
}
64+
],
65+
"should": [
66+
{
67+
"type": "smallBlindTag",
68+
"tags": [
69+
"DoubleTag"
70+
],
71+
"antes": [
72+
1,
73+
2
74+
],
75+
"score": 25
76+
},
77+
{
78+
"type": "joker",
79+
"jokers": [
80+
"DietCola"
81+
],
82+
"antes": [
83+
1,
84+
2
85+
],
86+
"score": 25
87+
},
88+
{
89+
"type": "smallBlindTag",
90+
"tags": [
91+
"VoucherTag"
92+
],
93+
"antes": [
94+
5,
95+
6,
96+
7,
97+
8
98+
]
99+
},
100+
{
101+
"And": null,
102+
"label": "Ante 3 HIT!",
103+
"score": 100,
104+
"clauses": [
105+
{
106+
"smallBlindTags": [
107+
"BossTag",
108+
"CouponTag",
109+
"D6Tag",
110+
"DoubleTag",
111+
"EconomyTag",
112+
"GarbageTag",
113+
"HandyTag",
114+
"InvestmentTag",
115+
"NegativeTag",
116+
"PolychromeTag",
117+
"VoucherTag"
118+
],
119+
"antes": [
120+
3
121+
]
122+
},
123+
{
124+
"bigBlindTag": "CharmTag",
125+
"antes": [
126+
3
127+
]
128+
},
129+
{
130+
"joker": "Luchador",
131+
"antes": [
132+
3
133+
],
134+
"sources": {
135+
"packSlots": [
136+
0,
137+
1
138+
],
139+
"shopSlots": [
140+
0,
141+
1
142+
]
143+
}
144+
}
145+
]
146+
},
147+
{
148+
"And": null,
149+
"label": "Ante 4 HIT!",
150+
"score": 100,
151+
"clauses": [
152+
{
153+
"smallBlindTags": [
154+
"BossTag",
155+
"CouponTag",
156+
"D6Tag",
157+
"DoubleTag",
158+
"EconomyTag",
159+
"GarbageTag",
160+
"HandyTag",
161+
"InvestmentTag",
162+
"NegativeTag",
163+
"PolychromeTag",
164+
"VoucherTag"
165+
],
166+
"antes": [
167+
4
168+
]
169+
},
170+
{
171+
"bigBlindTag": "CharmTag",
172+
"antes": [
173+
4
174+
]
175+
},
176+
{
177+
"joker": "Luchador",
178+
"antes": [
179+
4
180+
],
181+
"sources": {
182+
"packSlots": [
183+
0,
184+
1
185+
],
186+
"shopSlots": [
187+
0,
188+
1
189+
]
190+
}
191+
}
192+
]
193+
}
194+
]
195+
}

0 commit comments

Comments
 (0)