Skip to content

Commit 5ff42ba

Browse files
committed
Add Kiskarácsony 2025, Nagykarácsony 2025
1 parent 9d4be91 commit 5ff42ba

2 files changed

Lines changed: 54 additions & 5 deletions

File tree

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ jobs:
1111

1212
# Checkout branch
1313
- name: Checkout branch
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v5
1515
with:
1616
fetch-depth: 0
1717

1818
# Setup .NET SDK
1919
- name: Setup .NET SDK
20-
uses: actions/setup-dotnet@v4
20+
uses: actions/setup-dotnet@v5
2121

2222
# Install workloads
2323
- name: Install workloads

src/ScratchcardStatistics/Services/ScratchcardService.cs

Lines changed: 52 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3418,7 +3418,7 @@ public static class ScratchcardService
34183418
}
34193419
.ToFrozenDictionary()),
34203420
new(
3421-
"10x",
3421+
"10X",
34223422
1_000,
34233423
new(2025, 9, 5),
34243424
null,
@@ -3442,7 +3442,7 @@ public static class ScratchcardService
34423442
}
34433443
.ToFrozenDictionary()),
34443444
new(
3445-
"20x",
3445+
"20X",
34463446
2_000,
34473447
new(2025, 9, 5),
34483448
null,
@@ -3466,7 +3466,7 @@ public static class ScratchcardService
34663466
}
34673467
.ToFrozenDictionary()),
34683468
new(
3469-
"50x",
3469+
"50X",
34703470
3_000,
34713471
new(2025, 9, 5),
34723472
null,
@@ -3489,6 +3489,55 @@ public static class ScratchcardService
34893489
{ 3_000, 630_000 },
34903490
}
34913491
.ToFrozenDictionary()),
3492+
new(
3493+
"Kiskarácsony 2025",
3494+
1_500,
3495+
DateOnly.MaxValue,
3496+
null,
3497+
5_000_000,
3498+
new Dictionary<uint, uint>
3499+
{
3500+
{ 75_000_000, 1 },
3501+
{ 1_000_000, 100 },
3502+
{ 100_000, 300 },
3503+
{ 75_000, 600 },
3504+
{ 50_000, 1_500 },
3505+
{ 25_000, 12_000 },
3506+
{ 10_000, 57_500 },
3507+
{ 7_000, 50_000 },
3508+
{ 5_000, 100_000 },
3509+
{ 4_000, 100_000 },
3510+
{ 3_000, 200_000 },
3511+
{ 2_000, 400_000 },
3512+
{ 1_000, 700_000 },
3513+
}
3514+
.ToFrozenDictionary()),
3515+
new(
3516+
"Nagykarácsony 2025",
3517+
3_500,
3518+
DateOnly.MaxValue,
3519+
null,
3520+
3_200_000,
3521+
new Dictionary<uint, uint>
3522+
{
3523+
{ 175_000_000, 2 },
3524+
{ 50_000_000, 5 },
3525+
{ 5_000_000, 10 },
3526+
{ 1_000_000, 100 },
3527+
{ 100_000, 600 },
3528+
{ 50_000, 5_000 },
3529+
{ 30_000, 4_000 },
3530+
{ 25_000, 10_000 },
3531+
{ 20_000, 11_300 },
3532+
{ 15_000, 16_000 },
3533+
{ 12_000, 20_000 },
3534+
{ 10_000, 52_000 },
3535+
{ 8_000, 64_000 },
3536+
{ 6_000, 128_000 },
3537+
{ 5_000, 512_000 },
3538+
{ 3_500, 384_000 },
3539+
}
3540+
.ToFrozenDictionary()),
34923541
}
34933542
.ToFrozenSet();
34943543
}

0 commit comments

Comments
 (0)