Push API changes

* Fix item repair cost formula
* Add "RequestUpdateAvailableFreeLoadout" function (WIP)
* Fix item sell formula
* Fix item stack split on sell
* Fix contract progression counting for objectives other than owned items
* Refactor balance into a proper struct
* Separate and update Season 2 and Season 3 data
This commit is contained in:
Yury
2025-03-04 23:39:20 +02:00
parent 08ca12f1e3
commit dfc38de7b5
25 changed files with 529 additions and 151 deletions
@@ -9,9 +9,9 @@ public class RequestUpdateSeasonWipeDataRequest
public class RequestUpdateSeasonWipeDataResponse
{
[JsonPropertyName("userId")]
public string UserId;
public string UserId { get; set; }
[JsonPropertyName("error")]
public string Error;
public string Error { get; set; }
}
[CloudScriptFunction("RequestUpdateSeasonWipeData")]