@cyrilverloop/codingame-configuration 1.23.0 → 1.24.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/CHANGELOG.md +7 -0
- package/config/easy/MiniCPUInstructionDecoder/code/CGCode.cpp +19 -0
- package/config/easy/MiniCPUInstructionDecoder/code/CGCode.java +18 -0
- package/config/easy/MiniCPUInstructionDecoder/code/CGCode.js +8 -0
- package/config/easy/MiniCPUInstructionDecoder/code/CGCode.php +9 -0
- package/config/easy/MiniCPUInstructionDecoder/code/CGCode.ts +8 -0
- package/config/easy/MiniCPUInstructionDecoder/config.json +63 -0
- package/config/easy/MiniCPUInstructionDecoder/input/01 - Boot Sequence.txt +1 -0
- package/config/easy/MiniCPUInstructionDecoder/input/02 - Multiply Core.txt +1 -0
- package/config/easy/MiniCPUInstructionDecoder/input/03 - INC and DEC.txt +1 -0
- package/config/easy/MiniCPUInstructionDecoder/input/04 - INC Overflow.txt +1 -0
- package/config/easy/MiniCPUInstructionDecoder/input/05 - DEC Underflow.txt +1 -0
- package/config/easy/MiniCPUInstructionDecoder/input/06 - ADD Overflow.txt +1 -0
- package/config/easy/MiniCPUInstructionDecoder/input/07 - SUB Underflow.txt +1 -0
- package/config/easy/MiniCPUInstructionDecoder/input/08 - MUL Overflow.txt +1 -0
- package/config/easy/MiniCPUInstructionDecoder/input/09 - Mixed Operations.txt +1 -0
- package/config/easy/MiniCPUInstructionDecoder/input/10 - Immediate Halt.txt +1 -0
- package/config/easy/MiniCPUInstructionDecoder/input/11 - MOV Overwrite.txt +1 -0
- package/config/easy/MiniCPUInstructionDecoder/output/01 - Boot Sequence.txt +4 -0
- package/config/easy/MiniCPUInstructionDecoder/output/02 - Multiply Core.txt +4 -0
- package/config/easy/MiniCPUInstructionDecoder/output/03 - INC and DEC.txt +4 -0
- package/config/easy/MiniCPUInstructionDecoder/output/04 - INC Overflow.txt +4 -0
- package/config/easy/MiniCPUInstructionDecoder/output/05 - DEC Underflow.txt +4 -0
- package/config/easy/MiniCPUInstructionDecoder/output/06 - ADD Overflow.txt +4 -0
- package/config/easy/MiniCPUInstructionDecoder/output/07 - SUB Underflow.txt +4 -0
- package/config/easy/MiniCPUInstructionDecoder/output/08 - MUL Overflow.txt +4 -0
- package/config/easy/MiniCPUInstructionDecoder/output/09 - Mixed Operations.txt +4 -0
- package/config/easy/MiniCPUInstructionDecoder/output/10 - Immediate Halt.txt +4 -0
- package/config/easy/MiniCPUInstructionDecoder/output/11 - MOV Overwrite.txt +4 -0
- package/config/easy/Snap/code/CGCode.cpp +28 -0
- package/config/easy/Snap/code/CGCode.java +24 -0
- package/config/easy/Snap/code/CGCode.js +14 -0
- package/config/easy/Snap/code/CGCode.php +17 -0
- package/config/easy/Snap/code/CGCode.ts +14 -0
- package/config/easy/Snap/config.json +93 -0
- package/config/easy/Snap/input/01 - Player 1 Win.txt +10 -0
- package/config/easy/Snap/input/02 - Player 2 Win.txt +12 -0
- package/config/easy/Snap/input/03 - Snapless.txt +22 -0
- package/config/easy/Snap/input/04 - Clutch Save.txt +30 -0
- package/config/easy/Snap/input/05 - Almost Clutch Save.txt +54 -0
- package/config/easy/Snap/input/06 - Quick Game.txt +4 -0
- package/config/easy/Snap/input/07 - Very Quick Game.txt +3 -0
- package/config/easy/Snap/input/08 - Lucky Shuffle.txt +22 -0
- package/config/easy/Snap/input/09 - Unfair Shuffle 1.txt +24 -0
- package/config/easy/Snap/input/10 - Unfair Shuffle 2.txt +25 -0
- package/config/easy/Snap/input/11 - Unfair Shuffle 3.txt +54 -0
- package/config/easy/Snap/input/12 - Standard Deck 1.txt +54 -0
- package/config/easy/Snap/input/13 - Standard Deck 2.txt +54 -0
- package/config/easy/Snap/input/14 - Standard Deck 3.txt +54 -0
- package/config/easy/Snap/input/15 - Standard Deck 4.txt +54 -0
- package/config/easy/Snap/input/16 - Standard Deck 5.txt +54 -0
- package/config/easy/Snap/input/17 - Standard Deck 6.txt +54 -0
- package/config/easy/Snap/output/01 - Player 1 Win.txt +2 -0
- package/config/easy/Snap/output/02 - Player 2 Win.txt +2 -0
- package/config/easy/Snap/output/03 - Snapless.txt +2 -0
- package/config/easy/Snap/output/04 - Clutch Save.txt +2 -0
- package/config/easy/Snap/output/05 - Almost Clutch Save.txt +2 -0
- package/config/easy/Snap/output/06 - Quick Game.txt +2 -0
- package/config/easy/Snap/output/07 - Very Quick Game.txt +2 -0
- package/config/easy/Snap/output/08 - Lucky Shuffle.txt +2 -0
- package/config/easy/Snap/output/09 - Unfair Shuffle 1.txt +2 -0
- package/config/easy/Snap/output/10 - Unfair Shuffle 2.txt +2 -0
- package/config/easy/Snap/output/11 - Unfair Shuffle 3.txt +2 -0
- package/config/easy/Snap/output/12 - Standard Deck 1.txt +2 -0
- package/config/easy/Snap/output/13 - Standard Deck 2.txt +2 -0
- package/config/easy/Snap/output/14 - Standard Deck 3.txt +2 -0
- package/config/easy/Snap/output/15 - Standard Deck 4.txt +2 -0
- package/config/easy/Snap/output/16 - Standard Deck 5.txt +2 -0
- package/config/easy/Snap/output/17 - Standard Deck 6.txt +2 -0
- package/config/easy/WhatADessert/code/CGCode.cpp +20 -0
- package/config/easy/WhatADessert/code/CGCode.java +19 -0
- package/config/easy/WhatADessert/code/CGCode.js +10 -0
- package/config/easy/WhatADessert/code/CGCode.php +7 -0
- package/config/easy/WhatADessert/code/CGCode.ts +10 -0
- package/config/easy/WhatADessert/config.json +33 -0
- package/config/easy/WhatADessert/input/01 - test 1.txt +1 -0
- package/config/easy/WhatADessert/input/02 - test 2.txt +1 -0
- package/config/easy/WhatADessert/input/03 - test 3.txt +1 -0
- package/config/easy/WhatADessert/input/04 - test 4.txt +1 -0
- package/config/easy/WhatADessert/input/05 - test 5.txt +1 -0
- package/config/easy/WhatADessert/output/01 - test 1.txt +1 -0
- package/config/easy/WhatADessert/output/02 - test 2.txt +1 -0
- package/config/easy/WhatADessert/output/03 - test 3.txt +1 -0
- package/config/easy/WhatADessert/output/04 - test 4.txt +1 -0
- package/config/easy/WhatADessert/output/05 - test 5.txt +1 -0
- package/config/medium/PolygonEquilibrium/code/CGCode.cpp +23 -0
- package/config/medium/PolygonEquilibrium/code/CGCode.java +21 -0
- package/config/medium/PolygonEquilibrium/code/CGCode.js +12 -0
- package/config/medium/PolygonEquilibrium/code/CGCode.php +12 -0
- package/config/medium/PolygonEquilibrium/code/CGCode.ts +12 -0
- package/config/medium/PolygonEquilibrium/config.json +73 -0
- package/config/medium/PolygonEquilibrium/input/01 - Simple triangle.txt +4 -0
- package/config/medium/PolygonEquilibrium/input/02 - Tipping triangle.txt +4 -0
- package/config/medium/PolygonEquilibrium/input/03 - Trapezoid.txt +5 -0
- package/config/medium/PolygonEquilibrium/input/04 - Regular Octogon.txt +9 -0
- package/config/medium/PolygonEquilibrium/input/05 - An L-shape.txt +7 -0
- package/config/medium/PolygonEquilibrium/input/06 - A T-shape.txt +9 -0
- package/config/medium/PolygonEquilibrium/input/07 - test 7.txt +12 -0
- package/config/medium/PolygonEquilibrium/input/08 - test 8.txt +18 -0
- package/config/medium/PolygonEquilibrium/input/09 - Centroid outside of polygon.txt +19 -0
- package/config/medium/PolygonEquilibrium/input/10 - Multiple vertices supporting segment.txt +7 -0
- package/config/medium/PolygonEquilibrium/input/11 - Weird shape.txt +12 -0
- package/config/medium/PolygonEquilibrium/input/12 - Barely balanced.txt +5 -0
- package/config/medium/PolygonEquilibrium/input/13 - CG.txt +43 -0
- package/config/medium/PolygonEquilibrium/output/01 - Simple triangle.txt +2 -0
- package/config/medium/PolygonEquilibrium/output/02 - Tipping triangle.txt +2 -0
- package/config/medium/PolygonEquilibrium/output/03 - Trapezoid.txt +2 -0
- package/config/medium/PolygonEquilibrium/output/04 - Regular Octogon.txt +2 -0
- package/config/medium/PolygonEquilibrium/output/05 - An L-shape.txt +2 -0
- package/config/medium/PolygonEquilibrium/output/06 - A T-shape.txt +2 -0
- package/config/medium/PolygonEquilibrium/output/07 - test 7.txt +2 -0
- package/config/medium/PolygonEquilibrium/output/08 - test 8.txt +2 -0
- package/config/medium/PolygonEquilibrium/output/09 - Centroid outside of polygon.txt +2 -0
- package/config/medium/PolygonEquilibrium/output/10 - Multiple vertices supporting segment.txt +2 -0
- package/config/medium/PolygonEquilibrium/output/11 - Weird shape.txt +2 -0
- package/config/medium/PolygonEquilibrium/output/12 - Barely balanced.txt +2 -0
- package/config/medium/PolygonEquilibrium/output/13 - CG.txt +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [1.24.0] - 2026-02-28
|
|
8
|
+
### Added
|
|
9
|
+
- configuration for "What a dessert!".
|
|
10
|
+
- configuration for "MiniCPU Instruction Decoder".
|
|
11
|
+
- configuration for "Snap!".
|
|
12
|
+
- configuration for "Polygon equilibrium".
|
|
13
|
+
|
|
7
14
|
## [1.23.0] - 2026-02-02
|
|
8
15
|
### Added
|
|
9
16
|
- configuration for "Mountain range".
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
#include <iostream>
|
|
2
|
+
#include <string>
|
|
3
|
+
#include <vector>
|
|
4
|
+
#include <algorithm>
|
|
5
|
+
|
|
6
|
+
using namespace std;
|
|
7
|
+
|
|
8
|
+
int main()
|
|
9
|
+
{
|
|
10
|
+
string program;
|
|
11
|
+
getline(cin, program); // Space-separated hex bytes representing CPU instructions
|
|
12
|
+
|
|
13
|
+
// Write an answer using cout. DON'T FORGET THE "<< endl"
|
|
14
|
+
// To debug: cerr << "Debug messages..." << endl;
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
// Print the final value of each register R0, R1, R2, R3, one value per line
|
|
18
|
+
cout << "answer" << endl;
|
|
19
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import java.util.*;
|
|
2
|
+
import java.io.*;
|
|
3
|
+
import java.math.*;
|
|
4
|
+
|
|
5
|
+
class Solution {
|
|
6
|
+
|
|
7
|
+
public static void main(String args[]) {
|
|
8
|
+
Scanner in = new Scanner(System.in);
|
|
9
|
+
String program = in.nextLine(); // Space-separated hex bytes representing CPU instructions
|
|
10
|
+
|
|
11
|
+
// Write an answer using System.out.println()
|
|
12
|
+
// To debug: System.err.println("Debug messages...");
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
// Print the final value of each register R0, R1, R2, R3, one value per line
|
|
16
|
+
System.out.println("answer");
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
const program = readline(); // Space-separated hex bytes representing CPU instructions
|
|
2
|
+
|
|
3
|
+
// Write an answer using console.log()
|
|
4
|
+
// To debug: console.error('Debug messages...');
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
// Print the final value of each register R0, R1, R2, R3, one value per line
|
|
8
|
+
console.log('answer');
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<?php
|
|
2
|
+
$program = stream_get_line(STDIN, 500 + 1, "\n");// Space-separated hex bytes representing CPU instructions
|
|
3
|
+
|
|
4
|
+
// Write an answer using echo(). DON'T FORGET THE TRAILING \n
|
|
5
|
+
// To debug: error_log(var_export($var, true)); (equivalent to var_dump)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
// Print the final value of each register R0, R1, R2, R3, one value per line
|
|
9
|
+
echo("answer\n");
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
const program: string = readline(); // Space-separated hex bytes representing CPU instructions
|
|
2
|
+
|
|
3
|
+
// Write an answer using console.log()
|
|
4
|
+
// To debug: console.error('Debug messages...');
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
// Print the final value of each register R0, R1, R2, R3, one value per line
|
|
8
|
+
console.log('answer');
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"path": "easy/MiniCPUInstructionDecoder",
|
|
3
|
+
"name": "MiniCPU Instruction Decoder",
|
|
4
|
+
"alphanumName": "MiniCPUInstructionDecoder",
|
|
5
|
+
"link": "https://www.codingame.com/ide/puzzle/minicpu-instruction-decoder",
|
|
6
|
+
"tests": [
|
|
7
|
+
{
|
|
8
|
+
"name": "Boot Sequence",
|
|
9
|
+
"alphanumName": "BootSequence",
|
|
10
|
+
"file": "01 - Boot Sequence.txt"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"name": "Multiply Core",
|
|
14
|
+
"alphanumName": "MultiplyCore",
|
|
15
|
+
"file": "02 - Multiply Core.txt"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"name": "INC and DEC",
|
|
19
|
+
"alphanumName": "INCAndDEC",
|
|
20
|
+
"file": "03 - INC and DEC.txt"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"name": "INC Overflow",
|
|
24
|
+
"alphanumName": "INCOverflow",
|
|
25
|
+
"file": "04 - INC Overflow.txt"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"name": "DEC Underflow",
|
|
29
|
+
"alphanumName": "DECUnderflow",
|
|
30
|
+
"file": "05 - DEC Underflow.txt"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "ADD Overflow",
|
|
34
|
+
"alphanumName": "ADDOverflow",
|
|
35
|
+
"file": "06 - ADD Overflow.txt"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "SUB Underflow",
|
|
39
|
+
"alphanumName": "SUBUnderflow",
|
|
40
|
+
"file": "07 - SUB Underflow.txt"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "MUL Overflow",
|
|
44
|
+
"alphanumName": "MULOverflow",
|
|
45
|
+
"file": "08 - MUL Overflow.txt"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"name": "Mixed Operations",
|
|
49
|
+
"alphanumName": "MixedOperations",
|
|
50
|
+
"file": "09 - Mixed Operations.txt"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"name": "Immediate Halt",
|
|
54
|
+
"alphanumName": "ImmediateHalt",
|
|
55
|
+
"file": "10 - Immediate Halt.txt"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"name": "MOV Overwrite",
|
|
59
|
+
"alphanumName": "MOVOverwrite",
|
|
60
|
+
"file": "11 - MOV Overwrite.txt"
|
|
61
|
+
}
|
|
62
|
+
]
|
|
63
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
01 00 0A 01 01 05 02 00 01 03 00 01 FF
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
01 00 03 01 01 04 04 00 01 FF
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
01 02 05 05 02 05 02 06 02 FF
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
01 00 FF 05 00 FF
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
01 03 00 06 03 FF
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
01 00 F0 01 01 20 02 00 01 FF
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
01 00 05 01 01 0A 03 00 01 FF
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
01 02 10 01 03 10 04 02 03 FF
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
01 00 0A 01 01 05 01 02 FE 01 03 03 04 03 00 02 02 01 03 02 00 FF
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
FF
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
01 00 05 05 00 01 00 07 FF
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
#include <iostream>
|
|
2
|
+
#include <string>
|
|
3
|
+
#include <vector>
|
|
4
|
+
#include <algorithm>
|
|
5
|
+
|
|
6
|
+
using namespace std;
|
|
7
|
+
|
|
8
|
+
int main()
|
|
9
|
+
{
|
|
10
|
+
int m;
|
|
11
|
+
cin >> m; cin.ignore();
|
|
12
|
+
for (int i = 0; i < m; i++) {
|
|
13
|
+
string card;
|
|
14
|
+
cin >> card; cin.ignore();
|
|
15
|
+
}
|
|
16
|
+
int n;
|
|
17
|
+
cin >> n; cin.ignore();
|
|
18
|
+
for (int i = 0; i < n; i++) {
|
|
19
|
+
string card;
|
|
20
|
+
cin >> card; cin.ignore();
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
// Write an answer using cout. DON'T FORGET THE "<< endl"
|
|
24
|
+
// To debug: cerr << "Debug messages..." << endl;
|
|
25
|
+
|
|
26
|
+
cout << "Winner: Player 1/Player 2" << endl;
|
|
27
|
+
cout << "Number of cards" << endl;
|
|
28
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import java.util.*;
|
|
2
|
+
import java.io.*;
|
|
3
|
+
import java.math.*;
|
|
4
|
+
|
|
5
|
+
class Solution {
|
|
6
|
+
|
|
7
|
+
public static void main(String args[]) {
|
|
8
|
+
Scanner in = new Scanner(System.in);
|
|
9
|
+
int m = in.nextInt();
|
|
10
|
+
for (int i = 0; i < m; i++) {
|
|
11
|
+
String card = in.next();
|
|
12
|
+
}
|
|
13
|
+
int n = in.nextInt();
|
|
14
|
+
for (int i = 0; i < n; i++) {
|
|
15
|
+
String card = in.next();
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
// Write an answer using System.out.println()
|
|
19
|
+
// To debug: System.err.println("Debug messages...");
|
|
20
|
+
|
|
21
|
+
System.out.println("Winner: Player 1/Player 2");
|
|
22
|
+
System.out.println("Number of cards");
|
|
23
|
+
}
|
|
24
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
const m = parseInt(readline());
|
|
2
|
+
for (let i = 0; i < m; i++) {
|
|
3
|
+
const card = readline();
|
|
4
|
+
}
|
|
5
|
+
const n = parseInt(readline());
|
|
6
|
+
for (let i = 0; i < n; i++) {
|
|
7
|
+
const card = readline();
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
// Write an answer using console.log()
|
|
11
|
+
// To debug: console.error('Debug messages...');
|
|
12
|
+
|
|
13
|
+
console.log('Winner: Player 1/Player 2');
|
|
14
|
+
console.log('Number of cards');
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<?php
|
|
2
|
+
fscanf(STDIN, "%d", $m);
|
|
3
|
+
for ($i = 0; $i < $m; $i++)
|
|
4
|
+
{
|
|
5
|
+
fscanf(STDIN, "%s", $card);
|
|
6
|
+
}
|
|
7
|
+
fscanf(STDIN, "%d", $n);
|
|
8
|
+
for ($i = 0; $i < $n; $i++)
|
|
9
|
+
{
|
|
10
|
+
fscanf(STDIN, "%s", $card);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
// Write an answer using echo(). DON'T FORGET THE TRAILING \n
|
|
14
|
+
// To debug: error_log(var_export($var, true)); (equivalent to var_dump)
|
|
15
|
+
|
|
16
|
+
echo("Winner: Player 1/Player 2\n");
|
|
17
|
+
echo("Number of cards\n");
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
const m: number = parseInt(readline());
|
|
2
|
+
for (let i = 0; i < m; i++) {
|
|
3
|
+
const card: string = readline();
|
|
4
|
+
}
|
|
5
|
+
const n: number = parseInt(readline());
|
|
6
|
+
for (let i = 0; i < n; i++) {
|
|
7
|
+
const card: string = readline();
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
// Write an answer using console.log()
|
|
11
|
+
// To debug: console.error('Debug messages...');
|
|
12
|
+
|
|
13
|
+
console.log('Winner: Player 1/Player 2');
|
|
14
|
+
console.log('Number of cards');
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
{
|
|
2
|
+
"path": "easy/Snap",
|
|
3
|
+
"name": "Snap!",
|
|
4
|
+
"alphanumName": "Snap",
|
|
5
|
+
"link": "https://www.codingame.com/ide/puzzle/snap",
|
|
6
|
+
"tests": [
|
|
7
|
+
{
|
|
8
|
+
"name": "Player 1 Win",
|
|
9
|
+
"alphanumName": "Player1Win",
|
|
10
|
+
"file": "01 - Player 1 Win.txt"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"name": "Player 2 Win",
|
|
14
|
+
"alphanumName": "Player2Win",
|
|
15
|
+
"file": "02 - Player 2 Win.txt"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"name": "Snapless",
|
|
19
|
+
"alphanumName": "Snapless",
|
|
20
|
+
"file": "03 - Snapless.txt"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"name": "Clutch Save",
|
|
24
|
+
"alphanumName": "ClutchSave",
|
|
25
|
+
"file": "04 - Clutch Save.txt"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"name": "Almost Clutch Save",
|
|
29
|
+
"alphanumName": "AlmostClutchSave",
|
|
30
|
+
"file": "05 - Almost Clutch Save.txt"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "Quick Game",
|
|
34
|
+
"alphanumName": "QuickGame",
|
|
35
|
+
"file": "06 - Quick Game.txt"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "Very Quick Game",
|
|
39
|
+
"alphanumName": "VeryQuickGame",
|
|
40
|
+
"file": "07 - Very Quick Game.txt"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "Lucky Shuffle",
|
|
44
|
+
"alphanumName": "LuckyShuffle",
|
|
45
|
+
"file": "08 - Lucky Shuffle.txt"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"name": "Unfair Shuffle 1",
|
|
49
|
+
"alphanumName": "UnfairShuffle1",
|
|
50
|
+
"file": "09 - Unfair Shuffle 1.txt"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"name": "Unfair Shuffle 2",
|
|
54
|
+
"alphanumName": "UnfairShuffle2",
|
|
55
|
+
"file": "10 - Unfair Shuffle 2.txt"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"name": "Unfair Shuffle 3",
|
|
59
|
+
"alphanumName": "UnfairShuffle3",
|
|
60
|
+
"file": "11 - Unfair Shuffle 3.txt"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"name": "Standard Deck 1",
|
|
64
|
+
"alphanumName": "StandardDeck1",
|
|
65
|
+
"file": "12 - Standard Deck 1.txt"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"name": "Standard Deck 2",
|
|
69
|
+
"alphanumName": "StandardDeck2",
|
|
70
|
+
"file": "13 - Standard Deck 2.txt"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"name": "Standard Deck 3",
|
|
74
|
+
"alphanumName": "StandardDeck3",
|
|
75
|
+
"file": "14 - Standard Deck 3.txt"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"name": "Standard Deck 4",
|
|
79
|
+
"alphanumName": "StandardDeck4",
|
|
80
|
+
"file": "15 - Standard Deck 4.txt"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"name": "Standard Deck 5",
|
|
84
|
+
"alphanumName": "StandardDeck5",
|
|
85
|
+
"file": "16 - Standard Deck 5.txt"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"name": "Standard Deck 6",
|
|
89
|
+
"alphanumName": "StandardDeck6",
|
|
90
|
+
"file": "17 - Standard Deck 6.txt"
|
|
91
|
+
}
|
|
92
|
+
]
|
|
93
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
26
|
|
2
|
+
QD
|
|
3
|
+
10D
|
|
4
|
+
8C
|
|
5
|
+
5H
|
|
6
|
+
KC
|
|
7
|
+
8S
|
|
8
|
+
9D
|
|
9
|
+
9H
|
|
10
|
+
AH
|
|
11
|
+
7D
|
|
12
|
+
4C
|
|
13
|
+
2D
|
|
14
|
+
7H
|
|
15
|
+
QS
|
|
16
|
+
4S
|
|
17
|
+
3D
|
|
18
|
+
10H
|
|
19
|
+
KH
|
|
20
|
+
7S
|
|
21
|
+
6S
|
|
22
|
+
6H
|
|
23
|
+
6C
|
|
24
|
+
7C
|
|
25
|
+
8D
|
|
26
|
+
4D
|
|
27
|
+
5C
|
|
28
|
+
26
|
|
29
|
+
3S
|
|
30
|
+
QC
|
|
31
|
+
2S
|
|
32
|
+
AC
|
|
33
|
+
JH
|
|
34
|
+
2C
|
|
35
|
+
KD
|
|
36
|
+
10S
|
|
37
|
+
4H
|
|
38
|
+
KS
|
|
39
|
+
5S
|
|
40
|
+
QH
|
|
41
|
+
9S
|
|
42
|
+
2H
|
|
43
|
+
JD
|
|
44
|
+
JC
|
|
45
|
+
9C
|
|
46
|
+
6D
|
|
47
|
+
8H
|
|
48
|
+
AD
|
|
49
|
+
JS
|
|
50
|
+
3C
|
|
51
|
+
10C
|
|
52
|
+
3H
|
|
53
|
+
5D
|
|
54
|
+
AS
|