type changes
This commit is contained in:
@@ -148,19 +148,19 @@ public record RepeatableQuestConfig
|
||||
public record RewardScaling
|
||||
{
|
||||
[JsonPropertyName("levels")]
|
||||
public List<int>? Levels { get; set; }
|
||||
public List<double>? Levels { get; set; }
|
||||
|
||||
[JsonPropertyName("experience")]
|
||||
public List<int>? Experience { get; set; }
|
||||
public List<double>? Experience { get; set; }
|
||||
|
||||
[JsonPropertyName("roubles")]
|
||||
public List<int>? Roubles { get; set; }
|
||||
public List<double>? Roubles { get; set; }
|
||||
|
||||
[JsonPropertyName("gpCoins")]
|
||||
public List<int>? GpCoins { get; set; }
|
||||
public List<double>? GpCoins { get; set; }
|
||||
|
||||
[JsonPropertyName("items")]
|
||||
public List<int>? Items { get; set; }
|
||||
public List<double>? Items { get; set; }
|
||||
|
||||
[JsonPropertyName("reputation")]
|
||||
public List<double>? Reputation { get; set; }
|
||||
@@ -172,7 +172,7 @@ public record RewardScaling
|
||||
public List<double>? SkillRewardChance { get; set; }
|
||||
|
||||
[JsonPropertyName("skillPointReward")]
|
||||
public List<int>? SkillPointReward { get; set; }
|
||||
public List<double>? SkillPointReward { get; set; }
|
||||
}
|
||||
|
||||
public record TraderWhitelist
|
||||
|
||||
@@ -5,23 +5,23 @@ namespace Core.Models.Spt.Repeatable;
|
||||
public record QuestRewardValues
|
||||
{
|
||||
[JsonPropertyName("skillPointReward")]
|
||||
public int? SkillPointReward { get; set; }
|
||||
public double? SkillPointReward { get; set; }
|
||||
|
||||
[JsonPropertyName("skillRewardChance")]
|
||||
public int? SkillRewardChance { get; set; }
|
||||
public double? SkillRewardChance { get; set; }
|
||||
|
||||
[JsonPropertyName("rewardReputation")]
|
||||
public int? RewardReputation { get; set; }
|
||||
public double? RewardReputation { get; set; }
|
||||
|
||||
[JsonPropertyName("rewardNumItems")]
|
||||
public int? RewardNumItems { get; set; }
|
||||
public double? RewardNumItems { get; set; }
|
||||
|
||||
[JsonPropertyName("rewardRoubles")]
|
||||
public int? RewardRoubles { get; set; }
|
||||
public double? RewardRoubles { get; set; }
|
||||
|
||||
[JsonPropertyName("gpCoinRewardCount")]
|
||||
public int? GpCoinRewardCount { get; set; }
|
||||
public double? GpCoinRewardCount { get; set; }
|
||||
|
||||
[JsonPropertyName("rewardXP")]
|
||||
public int? RewardXP { get; set; }
|
||||
public double? RewardXP { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user