@@ -83,7 +83,7 @@ public static class Content
8383 /// </summary>
8484 /// <seealso cref="TerritoryHelper.GetTerritoryName" />
8585 private static string TerritoryNameResult =>
86- TerritoryHelper . GetTerritoryName ( TerritoryID ) ;
86+ TerritoryHelper . GetTerritoryName ( TerritoryID , Language . English ) ;
8787
8888 /// <summary>
8989 /// Whether the TerritoryName came out successfully from the builder.
@@ -143,6 +143,12 @@ public static TerritoryIntendedUseEnum? TerritoryIntendedUse
143143 public static ContentFinderCondition ? ContentFinderConditionRow =>
144144 TerritoryTypeRow ? . ContentFinderCondition . ValueNullable ;
145145
146+ /// <summary>
147+ /// The Row ID of the current <see cref="ContentFinderCondition" />.
148+ /// </summary>
149+ public static uint ? ContentFinderConditionRowId =>
150+ ContentFinderConditionRow ? . RowId ;
151+
146152 /// <summary>
147153 /// The content name of the current territory the player is in.
148154 /// </summary>
@@ -252,7 +258,7 @@ public static SheetContentType? ContentTypeRow
252258 /// <summary>
253259 /// The Row ID of the current <see cref="SheetContentType" />.
254260 /// </summary>
255- private static uint ? ContentTypeRowId =>
261+ public static uint ? ContentTypeRowId =>
256262 ContentTypeRow ? . RowId ;
257263
258264 /// <summary>
@@ -327,6 +333,7 @@ _ when
327333 ( ContentName ? . Contains ( "Delubrum" ) ?? false ) ||
328334 ( ContentName ? . Contains ( "Lacus" ) ?? false ) ||
329335 ( ContentName ? . Contains ( "Dalriada" ) ?? false ) ||
336+ ( ContentName ? . Contains ( "Forked Tower" ) ?? false ) ||
330337 MapID is >= 520 and <= 527 =>
331338 GameHelpers . ContentType . FieldRaid ,
332339
@@ -372,6 +379,7 @@ private static ContentDifficulty? DetermineContentDifficulty
372379 "Hard" => GameHelpers . ContentDifficulty . Hard ,
373380 "Extreme" => GameHelpers . ContentDifficulty . Extreme ,
374381 "Savage" => GameHelpers . ContentDifficulty . Savage ,
382+ "Chaotic" => GameHelpers . ContentDifficulty . Chaotic ,
375383 _ => @default ,
376384 } ,
377385
0 commit comments