Update to support game version 1.12.0.*

This commit is contained in:
Melledy
2026-06-29 20:42:26 -07:00
parent 867ecce5cb
commit 34f8292817
20 changed files with 2565 additions and 72 deletions
@@ -60,9 +60,14 @@ public class ActivityModule extends GameContextModule {
//this.activities.add(1010704);
// Heartbeat! Neo-Inspired Rhapsody
this.activities.add(1010801);
this.activities.add(1010803);
this.activities.add(1010804);
//this.activities.add(1010801);
//this.activities.add(1010803);
//this.activities.add(1010804);
// A Sandstorm of Gunfire
this.activities.add(1010901);
this.activities.add(1010903);
this.activities.add(1010904);
// ===== Joint Drills (Finale Echoing) =====
//this.activities.add(510003); // Causes soft lock in event screen
@@ -70,8 +75,8 @@ public class ActivityModule extends GameContextModule {
// ===== Etc Events =====
// Trial activities
this.activities.add(700117);
this.activities.add(700118);
this.activities.add(700123);
this.activities.add(700124);
// Tower defense activity
this.activities.add(102002); // Broken
@@ -79,8 +84,8 @@ public class ActivityModule extends GameContextModule {
// Login events
//this.activities.add(301011); // Christmas 2025
//this.activities.add(301012); // Christmas 2025
this.activities.add(301031); // Stellar Prelude
this.activities.add(301033); // Price of the Star
//this.activities.add(301031); // Stellar Prelude
//this.activities.add(301033); // Price of the Star
// Fatebound Stellar Deck
//this.activities.add(800001); // Causes soft lock in event screen
@@ -5,29 +5,32 @@ import it.unimi.dsi.fastutil.ints.Int2ObjectOpenHashMap;
import lombok.Getter;
public enum ActivityType {
None (0),
PeriodicQuest (1),
LoginReward (2),
Mining (3),
Cookie (4),
TowerDefense (5),
Trial (6),
JointDrill (7),
CG (8),
Levels (9),
Avg (10),
Task (11),
Shop (12),
Advertise (13),
BDConvert (14),
Breakout (15),
TrekkerVersus (16),
Story (17),
PenguinCard (18),
ThrowGift (19),
GoldenSpy (20),
Double (21),
HistoryStory (22);
None (0),
PeriodicQuest (1),
LoginReward (2),
Mining (3),
Cookie (4),
TowerDefense (5),
Trial (6),
JointDrill (7),
CG (8),
Levels (9),
Avg (10),
Task (11),
Shop (12),
Advertise (13),
BDConvert (14),
Breakout (15),
TrekkerVersus (16),
Story (17),
PenguinCard (18),
ThrowGift (19),
GoldenSpy (20),
Double (21),
HistoryStory (22),
IceCream (23),
FollowSocialMedia (24),
Soldier (25);
@Getter
private final int value;