mirror of
https://github.com/Melledy/Nebula.git
synced 2026-09-19 17:19:58 +02:00
Update to support game version 1.11.0.*
This commit is contained in:
@@ -7,7 +7,7 @@ import emu.nebula.game.inventory.ItemParamMap;
|
||||
import emu.nebula.util.WeightedList;
|
||||
|
||||
public class GameConstants {
|
||||
public static final String VERSION = "1.9.0";
|
||||
public static final String VERSION = "1.11.0";
|
||||
public static int DATA_VERSION = 0;
|
||||
|
||||
public static final ZoneId UTC_ZONE = ZoneId.of("UTC");
|
||||
|
||||
@@ -148,12 +148,11 @@ public enum AchievementCondition {
|
||||
}
|
||||
}
|
||||
|
||||
AchievementCondition(int value) {
|
||||
private AchievementCondition(int value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
public static AchievementCondition getByValue(int value) {
|
||||
return map.get(value);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -26,7 +26,8 @@ public enum ActivityType {
|
||||
PenguinCard (18),
|
||||
ThrowGift (19),
|
||||
GoldenSpy (20),
|
||||
Double (21);
|
||||
Double (21),
|
||||
HistoryStory (22);
|
||||
|
||||
@Getter
|
||||
private final int value;
|
||||
|
||||
@@ -148,12 +148,11 @@ public enum QuestCondition {
|
||||
}
|
||||
}
|
||||
|
||||
QuestCondition(int value) {
|
||||
private QuestCondition(int value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
public static QuestCondition getByValue(int value) {
|
||||
return map.get(value);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -688,6 +688,12 @@ public class NetMsgId {
|
||||
public static final int player_last_read_update_req = 8325;
|
||||
public static final int player_last_read_update_succeed_ack = 8326;
|
||||
public static final int player_last_read_update_failed_ack = 8327;
|
||||
public static final int activity_history_story_apply_req = 8328;
|
||||
public static final int activity_history_story_apply_succeed_ack = 8329;
|
||||
public static final int activity_history_story_apply_failed_ack = 8330;
|
||||
public static final int activity_history_story_settle_req = 8331;
|
||||
public static final int activity_history_story_settle_succeed_ack = 8332;
|
||||
public static final int activity_history_story_settle_failed_ack = 8333;
|
||||
public static final int activity_penguin_card_level_settle_req = 8401;
|
||||
public static final int activity_penguin_card_level_settle_succeed_ack = 8402;
|
||||
public static final int activity_penguin_card_level_settle_failed_ack = 8403;
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"global": 109,
|
||||
"kr": 114,
|
||||
"jp": 114,
|
||||
"tw": 120,
|
||||
"cn": 110
|
||||
"global": 113,
|
||||
"kr": 118,
|
||||
"jp": 118,
|
||||
"tw": 124,
|
||||
"cn": 114
|
||||
}
|
||||
Reference in New Issue
Block a user