Skip to content

Commit afc1c62

Browse files
committed
Further graphql websocket setup and rogue run functionality
1 parent 207058d commit afc1c62

File tree

29 files changed

+223
-57
lines changed

29 files changed

+223
-57
lines changed

.yarn/install-state.gz

6.27 KB
Binary file not shown.

spellsource-cards-git/src/main/resources/cards/formats/format_rogue.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
"WHAT_LIES_BENEATH",
4343
"SOURCESTORM",
4444
"CORE",
45-
"CUSTOM"
45+
"CUSTOM",
46+
"ROGUE"
4647
]
4748
}

spellsource-cards-git/src/main/resources/cards/uncollectible/rogue/level_2.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "Level 1",
2+
"name": "Level 2",
33
"type": "ENCHANTMENT",
44
"heroClass": "ANY",
55
"rarity": "LEGENDARY",

spellsource-cards-git/src/main/resources/cards/uncollectible/rogue/level_3.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "Level 1",
2+
"name": "Level 3",
33
"type": "ENCHANTMENT",
44
"heroClass": "ANY",
55
"rarity": "LEGENDARY",

spellsource-cards-git/src/main/resources/cards/uncollectible/rogue/level_4.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "Level 1",
2+
"name": "Level 4",
33
"type": "ENCHANTMENT",
44
"heroClass": "ANY",
55
"rarity": "LEGENDARY",

spellsource-cards-git/src/main/resources/cards/uncollectible/rogue/level_5.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "Level 1",
2+
"name": "Level 5",
33
"type": "ENCHANTMENT",
44
"heroClass": "ANY",
55
"rarity": "LEGENDARY",

spellsource-cards-git/src/main/resources/cards/uncollectible/rogue/level_6.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "Level 1",
2+
"name": "Level 6",
33
"type": "ENCHANTMENT",
44
"heroClass": "ANY",
55
"rarity": "LEGENDARY",

spellsource-cards-git/src/main/resources/cards/uncollectible/rogue/level_7.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "Level 1",
2+
"name": "Level 7",
33
"type": "ENCHANTMENT",
44
"heroClass": "ANY",
55
"rarity": "LEGENDARY",

spellsource-cards-git/src/main/resources/cards/uncollectible/rogue/level_8.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "Level 1",
2+
"name": "Level 8",
33
"type": "ENCHANTMENT",
44
"heroClass": "ANY",
55
"rarity": "LEGENDARY",

spellsource-game/src/main/java/net/demilich/metastone/game/entities/heroes/HeroClass.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ public class HeroClass {
3636
public static final String TWILIGHT = "TWILIGHT";
3737
public static final String CANDY = "CANDY";
3838
public static final String PEACH = "PEACH";
39+
public static final String TOAST = "TOAST";
3940

4041

4142
/**

0 commit comments

Comments
 (0)