Additional Levels added. Mostly just base artwork so far.

This commit is contained in:
2026-03-26 21:31:29 +00:00
parent 644b56282e
commit b3b569e98f
131 changed files with 6151 additions and 6008 deletions

View File

@@ -6,7 +6,8 @@ namespace BriarQueen.Data.Identifiers
public enum BookEntryID
{
None = 0,
WorkshopDiary = 1
WorkshopDiary = 1,
LaxleyHouseBillOfSale = 2,
}
public enum ClueEntryID
@@ -14,7 +15,8 @@ namespace BriarQueen.Data.Identifiers
None = 0,
WorkshopBookshelfClue = 1,
WorkshopRainbowClue = 2,
PumphouseScratchedTable = 3
PumphouseScratchedTable = 3,
StreetGatePlaque = 4
}
public enum PhotoEntryID
@@ -44,7 +46,9 @@ namespace BriarQueen.Data.Identifiers
new Dictionary<ClueEntryID, string>
{
{ ClueEntryID.WorkshopBookshelfClue, "CLUE_WorkshopBookshelf" },
{ ClueEntryID.WorkshopRainbowClue , "CLUE_WorkshopRainbow" }
{ ClueEntryID.WorkshopRainbowClue , "CLUE_WorkshopRainbow" },
{ ClueEntryID.PumphouseScratchedTable, "CLUE_PumphouseScratchedTable" },
{ ClueEntryID.StreetGatePlaque, "CLUE_StreetGatePlaque" }
});
public static readonly IReadOnlyDictionary<PhotoEntryID, string> Photos =