.NET Format Style Fixes

This commit is contained in:
refringe
2025-06-18 17:09:20 +00:00
committed by Format Bot
parent ca0a7d6345
commit 6e01428b2b
774 changed files with 23507 additions and 40003 deletions
@@ -8,51 +8,23 @@ public record QuestRewardValues
public Dictionary<string, object> ExtensionData { get; set; }
[JsonPropertyName("skillPointReward")]
public double? SkillPointReward
{
get;
set;
}
public double? SkillPointReward { get; set; }
[JsonPropertyName("skillRewardChance")]
public double? SkillRewardChance
{
get;
set;
}
public double? SkillRewardChance { get; set; }
[JsonPropertyName("rewardReputation")]
public double? RewardReputation
{
get;
set;
}
public double? RewardReputation { get; set; }
[JsonPropertyName("rewardNumItems")]
public int? RewardNumItems
{
get;
set;
}
public int? RewardNumItems { get; set; }
[JsonPropertyName("rewardRoubles")]
public double? RewardRoubles
{
get;
set;
}
public double? RewardRoubles { get; set; }
[JsonPropertyName("gpCoinRewardCount")]
public double? GpCoinRewardCount
{
get;
set;
}
public double? GpCoinRewardCount { get; set; }
[JsonPropertyName("rewardXP")]
public double? RewardXP
{
get;
set;
}
public double? RewardXP { get; set; }
}
@@ -9,18 +9,10 @@ public record QuestTypePool
public Dictionary<string, object> ExtensionData { get; set; }
[JsonPropertyName("types")]
public List<string>? Types
{
get;
set;
}
public List<string>? Types { get; set; }
[JsonPropertyName("pool")]
public QuestPool? Pool
{
get;
set;
}
public QuestPool? Pool { get; set; }
}
public record QuestPool
@@ -29,25 +21,13 @@ public record QuestPool
public Dictionary<string, object> ExtensionData { get; set; }
[JsonPropertyName("Exploration")]
public ExplorationPool? Exploration
{
get;
set;
}
public ExplorationPool? Exploration { get; set; }
[JsonPropertyName("Elimination")]
public EliminationPool? Elimination
{
get;
set;
}
public EliminationPool? Elimination { get; set; }
[JsonPropertyName("Pickup")]
public ExplorationPool? Pickup
{
get;
set;
}
public ExplorationPool? Pickup { get; set; }
}
public record ExplorationPool
@@ -56,11 +36,7 @@ public record ExplorationPool
public Dictionary<string, object> ExtensionData { get; set; }
[JsonPropertyName("locations")]
public Dictionary<ELocationName, List<string>>? Locations
{
get;
set;
} // TODO: check the type, originally - Partial<Record<ELocationName, string[]>>
public Dictionary<ELocationName, List<string>>? Locations { get; set; } // TODO: check the type, originally - Partial<Record<ELocationName, string[]>>
}
public record EliminationPool
@@ -69,11 +45,7 @@ public record EliminationPool
public Dictionary<string, object> ExtensionData { get; set; }
[JsonPropertyName("targets")]
public Dictionary<string, TargetLocation>? Targets
{
get;
set;
}
public Dictionary<string, TargetLocation>? Targets { get; set; }
}
public record TargetLocation
@@ -82,9 +54,5 @@ public record TargetLocation
public Dictionary<string, object> ExtensionData { get; set; }
[JsonPropertyName("locations")]
public List<string>? Locations
{
get;
set;
}
public List<string>? Locations { get; set; }
}