This commit is contained in:
Chomp
2025-01-17 10:12:01 +00:00
4 changed files with 850 additions and 86 deletions
File diff suppressed because it is too large Load Diff
+1 -3
View File
@@ -21,9 +21,7 @@ public class RepeatableQuestHelper
/// <param name="pmcLevel">Level of PMC character</param>
/// <param name="repeatableConfig">Main repeatable config</param>
/// <returns>EliminationConfig</returns>
public EliminationConfig GetEliminationConfigByPmcLevel(
int pmcLevel,
RepeatableQuestConfig repeatableConfig)
public EliminationConfig GetEliminationConfigByPmcLevel(int pmcLevel, RepeatableQuestConfig repeatableConfig)
{
throw new NotImplementedException();
}
+3 -3
View File
@@ -139,10 +139,10 @@ public class UpdFaceShield
public class UpdRepairable
{
[JsonPropertyName("Durability")]
public int? Durability { get; set; }
public double? Durability { get; set; }
[JsonPropertyName("MaxDurability")]
public int? MaxDurability { get; set; }
public double? MaxDurability { get; set; }
}
public class UpdRecodableComponent
@@ -154,7 +154,7 @@ public class UpdRecodableComponent
public class UpdMedKit
{
[JsonPropertyName("HpResource")]
public int? HpResource { get; set; }
public double? HpResource { get; set; }
}
public class UpdSight
+5
View File
@@ -129,4 +129,9 @@ public class ItemFilterService
return _lootableItemBlacklistCache.Contains(itemKey);
}
public bool IsItemBlacklisted(string tpl)
{
throw new NotImplementedException();
}
}