Skip to content

Commit 74e6fd1

Browse files
committed
Update enums for 23.4.0
1 parent 9920bd8 commit 74e6fd1

File tree

3 files changed

+9
-12
lines changed

3 files changed

+9
-12
lines changed

HearthDb/Enums/Enums.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -931,6 +931,7 @@ public enum GameTag
931931
COIN_MANA_GEM_FOR_CHOICE_CARDS = 1643,
932932
METAMORPHOSIS = 1644,
933933
HERO_POWER_ENTITY = 1646,
934+
BACON_PLAYER_RESULTS_HERO_OVERRIDE = 1649,
934935
DISCOVER_STUDIES_VISUAL = 1650,
935936
LETTUCE_CONTROLLER = 1653,
936937
LETTUCE_ABILITY_OWNER = 1654,
@@ -1021,6 +1022,7 @@ public enum GameTag
10211022
LETTUCE_KEEP_LAST_STANDING_MINION_ACTOR = 1976,
10221023
GOLDSPARKLES_HINT = 1984,
10231024
LETTUCE_USE_DETERMINISTIC_TEAM_ABILITY_QUEUING = 1990,
1025+
LETTUCE_SELECTED_ABILITY_QUEUE_ORDER = 1991,
10241026
QUESTLINE_FINAL_REWARD_DATABASE_ID = 1992,
10251027
QUESTLINE_PART = 1993,
10261028
QUESTLINE_REQUIREMENT_MET_1 = 1994,
@@ -1117,9 +1119,13 @@ public enum GameTag
11171119
MERCS_SPELLWEAKNESS = 2464,
11181120
MERCS_SPELLRESISTANCE = 2465,
11191121
COLOSSAL_LIMB_ON_LEFT = 2469,
1122+
LETTUCE_ABILITY_TILE_VISUAL_PUBLIC_SPEED = 2470,
1123+
IMMOLATING = 2505,
11201124
BACON_BUDDY_ENABLED = 2518,
11211125
BACON_EVOLUTION_CARD_ID = 2519,
11221126
SPELLCRAFT_HINT = 2557,
1127+
MERCS_BENCH = 2570,
1128+
IMMOLATESTAGE = 2600,
11231129
}
11241130

11251131
public enum GameType
@@ -1463,6 +1469,8 @@ public enum Race
14631469
LOCK = 89,
14641470
NAGA = 92,
14651471
OLDGOD = 93,
1472+
PANDAREN = 94,
1473+
GRONN = 95,
14661474
}
14671475

14681476
public enum Rarity

HearthDb/HearthDb.csproj

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,4 @@
3535
<Exec WorkingDirectory="$(MSBuildProjectDirectory)/hsdata" Command="git reset --hard origin/master" />
3636
</Target>
3737

38-
<!-- On Release builds, verify that the version from the latest commit matches the AssemblyVersion of this project. -->
39-
<Target Name="VerifyVersion" Condition="$(Configuration)=='Release'" BeforeTargets="PreBuildEvent" DependsOnTargets="CloneHSData;UpdateHSData">
40-
<Message Importance="normal" Text="Verifying assembly version matches version from hsdata." />
41-
<Exec WorkingDirectory="$(MSBuildProjectDirectory)/hsdata" Condition="$(OS)=='Windows_NT'" Command="powershell -ExecutionPolicy Unrestricted &quot;git log -1 | where {$_ -match 'Update to patch (\d+\.\d+\.\d+)\.\d+$' } | foreach { $matches[1] }&quot;" ConsoleToMSBuild="true">
42-
<Output PropertyName="HsdataVersion" TaskParameter="ConsoleOutput" />
43-
</Exec>
44-
<Exec WorkingDirectory="$(MSBuildProjectDirectory)/hsdata" Condition="$(OS)=='Unix'" Command="git log -1 | grep -Po '(?&lt;=Update to patch )\d+\.\d+\.\d+'" ConsoleToMSBuild="true">
45-
<Output PropertyName="HsdataVersion" TaskParameter="ConsoleOutput" />
46-
</Exec>
47-
<Error Condition="'$(HsdataVersion).0' != $(AssemblyVersion)" Text="Verification Error 1: Assembly version ($(AssemblyVersion)) does not match hsdata ($(HsdataVersion))" />
48-
</Target>
49-
5038
</Project>

HearthDb/Helper.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ public static class Helper
1717
CardSet.UNGORO, CardSet.ICECROWN, CardSet.LOOTAPALOOZA,
1818
CardSet.GILNEAS, CardSet.BOOMSDAY, CardSet.TROLL,
1919
CardSet.DEMON_HUNTER_INITIATE,
20+
//CardSet.BLACK_TEMPLE, CardSet.SCHOLOMANCE, CardSet.DARKMOON_FAIRE
2021
};
2122

2223
public static CardSet[] ClassicSets = { CardSet.VANILLA };

0 commit comments

Comments
 (0)