가챠 서버 로직 완료

This commit is contained in:
Ino 2025-07-11 06:38:37 +09:00
parent 088b9012e8
commit c055fed841
6 changed files with 345 additions and 6 deletions

View File

@ -21,6 +21,7 @@ public class GetServerTables
Get_ServerTable("OptionConfig", new List<string> { "e_OptionType", "f_ExtraValue1", "f_ExtraValue2", "f_ExtraValue3", "f_ExtraValue4" });
Get_ServerTable("CollectionList", new List<string> { "e_FirstRewardType", "n_FirstRewardValue", "n_FirstRewardCount", "e_RepeatRewardType", "n_RepeatRewardValue", "n_RepeatRewardCount" });
Get_ServerTable("GachaConfig", new List<string> { "n_Title", "s_Banner" });
Get_ServerTable("BattleMapConfig", new List<string> { "s_Scene", "s_BGM", "n_MapName", "n_MapDesc", "s_MapIcon", "n_Portals" });
}
static void Get_ServerTable(string path, List<string> except)

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,86 @@
[
{
"n_MapID": "-99",
"n_Chapter": "-99",
"e_MapType": "Stage",
"e_Dungeon": "None",
"n_TicketID": "0"
},
{
"n_MapID": "-1",
"n_Chapter": "-1",
"e_MapType": "Lobby",
"e_Dungeon": "None",
"n_TicketID": "0"
},
{
"n_MapID": "0",
"n_Chapter": "0",
"e_MapType": "MyFarm",
"e_Dungeon": "None",
"n_TicketID": "0"
},
{
"n_MapID": "1",
"n_Chapter": "1",
"e_MapType": "Stage",
"e_Dungeon": "None",
"n_TicketID": "0"
},
{
"n_MapID": "2",
"n_Chapter": "2",
"e_MapType": "Stage",
"e_Dungeon": "None",
"n_TicketID": "0"
},
{
"n_MapID": "3",
"n_Chapter": "3",
"e_MapType": "Stage",
"e_Dungeon": "None",
"n_TicketID": "0"
},
{
"n_MapID": "4",
"n_Chapter": "4",
"e_MapType": "Stage",
"e_Dungeon": "None",
"n_TicketID": "0"
},
{
"n_MapID": "5",
"n_Chapter": "5",
"e_MapType": "Stage",
"e_Dungeon": "None",
"n_TicketID": "0"
},
{
"n_MapID": "1001",
"n_Chapter": "0",
"e_MapType": "Dungeon",
"e_Dungeon": "d1_Mimic",
"n_TicketID": "501"
},
{
"n_MapID": "1002",
"n_Chapter": "0",
"e_MapType": "Dungeon",
"e_Dungeon": "d2_Maze",
"n_TicketID": "502"
},
{
"n_MapID": "1003",
"n_Chapter": "0",
"e_MapType": "Dungeon",
"e_Dungeon": "d3_Nightmare",
"n_TicketID": "503"
},
{
"n_MapID": "1004",
"n_Chapter": "0",
"e_MapType": "Dungeon",
"e_Dungeon": "d4_Wave",
"n_TicketID": "0"
}
]

View File

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 122e4218e68ad484bae752905bcaba34
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

View File

@ -401,7 +401,7 @@ public partial class ServerData
for (int i = 1; i < lst.Count; i++)
{
if (MapData_isClearChaper(lst[i].n_MapID, 1))
maxchapter = lst[i].n_MapID;
maxchapter = lst[i].n_Chapter;
}
return maxchapter;
}