mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-14 16:04:36 +01:00
parse static data to get quest data
This commit is contained in:
19
nksrv/StaticInfo/JsonStaticData.cs
Normal file
19
nksrv/StaticInfo/JsonStaticData.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace nksrv.StaticInfo
|
||||
{
|
||||
public class MainQuestCompletionData
|
||||
{
|
||||
public int id;
|
||||
public int group_id;
|
||||
public string category = "";
|
||||
public int condition_id;
|
||||
public int next_main_quest_id = 0;
|
||||
public int reward_id = 0;
|
||||
public int target_chapter_id;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user