Update to support game version 1.8.0.*

This commit is contained in:
Melledy
2026-03-16 21:18:44 -07:00
parent f007b6624f
commit 4744618ce9
11 changed files with 4782 additions and 285 deletions
@@ -40,9 +40,14 @@ public class ActivityModule extends GameContextModule {
//this.activities.add(1010404);
// Winter Requiem and the Trigger of Dawn
this.activities.add(1010501);
this.activities.add(1010503);
this.activities.add(1010504);
//this.activities.add(1010501);
//this.activities.add(1010503);
//this.activities.add(1010504);
// To My Dearest You
this.activities.add(1010601);
this.activities.add(1010603);
this.activities.add(1010604);
// ===== Joint Drills (Finale Echoing) =====
this.activities.add(510003);
@@ -60,8 +65,8 @@ public class ActivityModule extends GameContextModule {
this.activities.add(301011);
this.activities.add(301012);
// Trekker versus
this.activities.add(600001);
// Trekker versus (broken)
//this.activities.add(600001);
}
}
@@ -81,6 +81,9 @@ public class TrekkerVersusActivity extends GameActivity {
public TrekkerVersusShow getShowProto() {
var show = TrekkerVersusShow.newInstance();
// TODO update
/*
if (this.getCharIds() != null) {
show.addAllCharIds(this.getCharIds());
show.setBuildScore(this.getBuildScore());
@@ -89,6 +92,7 @@ public class TrekkerVersusActivity extends GameActivity {
if (this.getAffixIds() != null) {
show.addAllAffixIds(this.getAffixIds());
}
*/
return show;
}