use normal max values on account things

This commit is contained in:
foo 2024-05-26 16:28:11 +08:00
parent 6250af09c1
commit d3430259bf
2 changed files with 7 additions and 7 deletions

View File

@ -224,7 +224,7 @@ namespace SCHALE.GameServer.Controllers.Api.ProtocolHandlers
{ {
AccountCurrencyDB = new AccountCurrencyDB AccountCurrencyDB = new AccountCurrencyDB
{ {
AccountLevel = 1, AccountLevel = 90,
AcademyLocationRankSum = 1, AcademyLocationRankSum = 1,
CurrencyDict = new Dictionary<CurrencyTypes, long> CurrencyDict = new Dictionary<CurrencyTypes, long>
{ {
@ -354,7 +354,7 @@ namespace SCHALE.GameServer.Controllers.Api.ProtocolHandlers
return new AccountGetTutorialResponse() return new AccountGetTutorialResponse()
{ {
TutorialIds = tutorialIds ?? [] TutorialIds = tutorialIds ?? [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25]
}; };
} }

View File

@ -79,8 +79,8 @@ namespace SCHALE.Common.Utils
UniqueId = x.UniqueId, UniqueId = x.UniqueId,
BoundCharacterServerId = x.ServerId, BoundCharacterServerId = x.ServerId,
IsLocked = false, IsLocked = false,
StarGrade = 5, StarGrade = 3,
Level = 200 Level = 50
}; };
}); });
@ -132,17 +132,17 @@ namespace SCHALE.Common.Utils
{ {
UniqueId = characterId, UniqueId = characterId,
StarGrade = 5, StarGrade = 5,
Level = 200, Level = 90,
Exp = 0, Exp = 0,
PublicSkillLevel = 10, PublicSkillLevel = 10,
ExSkillLevel = 5, ExSkillLevel = 5,
PassiveSkillLevel = 10, PassiveSkillLevel = 10,
ExtraPassiveSkillLevel = 10, ExtraPassiveSkillLevel = 10,
LeaderSkillLevel = 1, LeaderSkillLevel = 1,
FavorRank = 500, FavorRank = 20,
IsNew = true, IsNew = true,
IsLocked = true, IsLocked = true,
PotentialStats = { { 1, 25 }, { 2, 25 }, { 3, 25 } }, PotentialStats = { { 1, 0 }, { 2, 0 }, { 3, 0 } },
EquipmentServerIds = [0, 0, 0] EquipmentServerIds = [0, 0, 0]
}; };
} }