Skip to content

Commit

Permalink
ClientVersion: 64, AppVersion: 1.31, Build: 111284
Browse files Browse the repository at this point in the history
  • Loading branch information
elgranjero committed Mar 6, 2024
1 parent 7110122 commit cc17092
Show file tree
Hide file tree
Showing 21 changed files with 8,070 additions and 4,908 deletions.
20 changes: 20 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@
- [GameModifier](#ei-GameModifier)
- [GenericAction](#ei-GenericAction)
- [GenericActionBatchRequest](#ei-GenericActionBatchRequest)
- [GetActiveMissionsResponse](#ei-GetActiveMissionsResponse)
- [GetPeriodicalsRequest](#ei-GetPeriodicalsRequest)
- [GiftPlayerCoopRequest](#ei-GiftPlayerCoopRequest)
- [IAPSaleEntry](#ei-IAPSaleEntry)
Expand Down Expand Up @@ -596,6 +597,7 @@
| active_artifact_sets | [ArtifactsDB.ActiveArtifactSet](#ei-ArtifactsDB-ActiveArtifactSet) | repeated | |
| saved_artifact_sets | [ArtifactsDB.ActiveArtifactSet](#ei-ArtifactsDB-ActiveArtifactSet) | repeated | |
| artifact_status | [ArtifactsDB.CraftableArtifact](#ei-ArtifactsDB-CraftableArtifact) | repeated | |
| fueling_mission | [MissionInfo](#ei-MissionInfo) | optional | |
| mission_infos | [MissionInfo](#ei-MissionInfo) | repeated | |
| mission_archive | [MissionInfo](#ei-MissionInfo) | repeated | |
| discovered_artifacts_DEPRECATED | [ArtifactSpec](#ei-ArtifactSpec) | repeated | |
Expand Down Expand Up @@ -2456,6 +2458,22 @@



<a name="ei-GetActiveMissionsResponse"></a>

### GetActiveMissionsResponse



| Field | Type | Label | Description |
| ----- | ---- | ----- | ----------- |
| success | [bool](#bool) | optional | |
| active_missions | [MissionInfo](#ei-MissionInfo) | repeated | |






<a name="ei-GetPeriodicalsRequest"></a>

### GetPeriodicalsRequest
Expand Down Expand Up @@ -2548,6 +2566,7 @@
| min_client_version | [uint32](#uint32) | optional | |
| max_client_version | [uint32](#uint32) | optional | |
| min_soul_eggs | [double](#double) | optional | |
| max_soul_eggs | [double](#double) | optional | |
| min_mystical_bonus | [double](#double) | optional | |
| user_type | [UserType](#ei-UserType) | optional | |
| min_piggy_breaks | [uint32](#uint32) | optional | |
Expand Down Expand Up @@ -4761,6 +4780,7 @@
| CHICKFIANT | 7 | |
| VOYEGGER | 8 | |
| HENERPRISE | 9 | |
| ATREGGIES | 10 | |



Expand Down
55 changes: 55 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -590,6 +590,10 @@ <h2>Table of Contents</h2>
<a href="#ei.GenericActionBatchRequest"><span class="badge">M</span>GenericActionBatchRequest</a>
</li>

<li>
<a href="#ei.GetActiveMissionsResponse"><span class="badge">M</span>GetActiveMissionsResponse</a>
</li>

<li>
<a href="#ei.GetPeriodicalsRequest"><span class="badge">M</span>GetPeriodicalsRequest</a>
</li>
Expand Down Expand Up @@ -2208,6 +2212,13 @@ <h3 id="ei.ArtifactsDB">ArtifactsDB</h3>
<td><p> </p></td>
</tr>

<tr>
<td>fueling_mission</td>
<td><a href="#ei.MissionInfo">MissionInfo</a></td>
<td>optional</td>
<td><p> </p></td>
</tr>

<tr>
<td>mission_infos</td>
<td><a href="#ei.MissionInfo">MissionInfo</a></td>
Expand Down Expand Up @@ -8227,6 +8238,37 @@ <h3 id="ei.GenericActionBatchRequest">GenericActionBatchRequest</h3>



<h3 id="ei.GetActiveMissionsResponse">GetActiveMissionsResponse</h3>
<p></p>


<table class="field-table">
<thead>
<tr><td>Field</td><td>Type</td><td>Label</td><td>Description</td></tr>
</thead>
<tbody>

<tr>
<td>success</td>
<td><a href="#bool">bool</a></td>
<td>optional</td>
<td><p> </p></td>
</tr>

<tr>
<td>active_missions</td>
<td><a href="#ei.MissionInfo">MissionInfo</a></td>
<td>repeated</td>
<td><p> </p></td>
</tr>

</tbody>
</table>





<h3 id="ei.GetPeriodicalsRequest">GetPeriodicalsRequest</h3>
<p></p>

Expand Down Expand Up @@ -8582,6 +8624,13 @@ <h3 id="ei.InGameMail">InGameMail</h3>
<td><p> </p></td>
</tr>

<tr>
<td>max_soul_eggs</td>
<td><a href="#double">double</a></td>
<td>optional</td>
<td><p> </p></td>
</tr>

<tr>
<td>min_mystical_bonus</td>
<td><a href="#double">double</a></td>
Expand Down Expand Up @@ -15294,6 +15343,12 @@ <h3 id="ei.MissionInfo.Spaceship">MissionInfo.Spaceship</h3>
<td><p></p></td>
</tr>

<tr>
<td>ATREGGIES</td>
<td>10</td>
<td><p></p></td>
</tr>

</tbody>
</table>

Expand Down
8 changes: 8 additions & 0 deletions ei.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1319,6 +1319,7 @@ message InGameMail {
optional uint32 min_client_version = 10;
optional uint32 max_client_version = 12;
optional double min_soul_eggs = 11;
optional double max_soul_eggs = 29;
optional double min_mystical_bonus = 13;
optional UserType user_type = 17;
optional uint32 min_piggy_breaks = 20;
Expand Down Expand Up @@ -1472,6 +1473,7 @@ message MissionInfo {
CHICKFIANT = 7;
VOYEGGER = 8;
HENERPRISE = 9;
ATREGGIES = 10;
}

optional Status status = 2;
Expand Down Expand Up @@ -1672,6 +1674,11 @@ message MissionResponse {
optional MissionInfo info = 2;
}

message GetActiveMissionsResponse {
optional bool success = 1;
repeated MissionInfo active_missions = 2;
}

message CompleteMissionResponse {
optional bool success = 1;
optional MissionInfo info = 2;
Expand Down Expand Up @@ -1783,6 +1790,7 @@ message ArtifactsDB {
optional uint32 count = 3;
}

optional MissionInfo fueling_mission = 14;
repeated MissionInfo mission_infos = 4;
repeated MissionInfo mission_archive = 5;
repeated ArtifactSpec discovered_artifacts_DEPRECATED = 8;
Expand Down
Loading

0 comments on commit cc17092

Please sign in to comment.