feat: [chu3] user global stage

This commit is contained in:
Raymond 2026-02-21 16:47:55 -05:00
parent e755bc9380
commit ffa4450882
3 changed files with 4 additions and 0 deletions

View File

@ -41,6 +41,7 @@ class Chusan(
"trophyIdSub2" to { u, v -> u.trophyIdSub2 = v.int },
"mapIconId" to { u, v -> u.mapIconId = v.int },
"voiceId" to { u, v -> u.voiceId = v.int },
"stageId" to { u, v -> u.stageId = v.int },
"characterId" to { u, v -> u.characterId = v.int },
"avatarWear" to { u, v -> u.avatarWear = v.int },
"avatarHead" to { u, v -> u.avatarHead = v.int },

View File

@ -116,6 +116,7 @@ class Chu3UserData : BaseEntity(), IUserData {
var netBattleConsecutiveWinCount = 0
var charaIllustId = 0
var skillId = 0
var stageId = 0
var overPowerPoint = 0
var overPowerRate = 0
var overPowerLowerRank = 0

View File

@ -0,0 +1,2 @@
ALTER TABLE chusan_user_data
ADD stage_id INT NOT NULL DEFAULT 0;