1
This commit is contained in:
parent
897e627ae8
commit
69fc911b6f
@ -7,7 +7,7 @@ namespace mt
|
||||
{
|
||||
|
||||
DECLARE_ID_TABLE(AI, mtb::AI,
|
||||
"ai@ai.csv",
|
||||
"ai@ai.json",
|
||||
"id")
|
||||
public:
|
||||
|
||||
|
@ -7,7 +7,7 @@ namespace mt
|
||||
{
|
||||
|
||||
DECLARE_ID_TABLE(AirDrop, mtb::AirDrop,
|
||||
"airDrop@airDrop.csv",
|
||||
"airDrop@airDrop.json",
|
||||
"id")
|
||||
public:
|
||||
|
||||
|
@ -7,7 +7,7 @@ namespace mt
|
||||
{
|
||||
|
||||
DECLARE_ID_TABLE(AirLine, mtb::AirLine,
|
||||
"airline@airline.csv",
|
||||
"airline@airline.json",
|
||||
"id")
|
||||
public:
|
||||
|
||||
|
@ -7,7 +7,7 @@ namespace mt
|
||||
{
|
||||
|
||||
DECLARE_ID_TABLE(AirRaid, mtb::AirRaid,
|
||||
"airRaid@airRaid.csv",
|
||||
"airRaid@airRaid.json",
|
||||
"id")
|
||||
public:
|
||||
|
||||
|
@ -7,7 +7,7 @@ namespace mt
|
||||
{
|
||||
|
||||
DECLARE_ID_TABLE(Attr, mtb::Attr,
|
||||
"attr@attr.csv",
|
||||
"attr@attr.json",
|
||||
"attr_id")
|
||||
public:
|
||||
|
||||
|
@ -7,7 +7,7 @@ namespace mt
|
||||
{
|
||||
|
||||
DECLARE_ID_TABLE(Buff, mtb::Buff,
|
||||
"buff@buff.csv",
|
||||
"buff@buff.json",
|
||||
"buff_id")
|
||||
public:
|
||||
|
||||
|
@ -7,7 +7,7 @@ namespace mt
|
||||
{
|
||||
|
||||
DECLARE_ID_TABLE(Dress, mtb::Dress,
|
||||
"dress@dress.csv",
|
||||
"dress@dress.json",
|
||||
"id")
|
||||
public:
|
||||
|
||||
|
@ -7,7 +7,7 @@ namespace mt
|
||||
{
|
||||
|
||||
DECLARE_ID_TABLE(Drop, mtb::Drop,
|
||||
"drop@drop.csv",
|
||||
"drop@drop.json",
|
||||
"drop_id")
|
||||
public:
|
||||
|
||||
|
@ -7,7 +7,7 @@ namespace mt
|
||||
{
|
||||
|
||||
DECLARE_ID_TABLE(Equip, mtb::Equip,
|
||||
"equip@equip.csv",
|
||||
"equip@equip.json",
|
||||
"id")
|
||||
public:
|
||||
int lock_time = 0;
|
||||
|
@ -7,7 +7,7 @@ namespace mt
|
||||
{
|
||||
|
||||
DECLARE_ID_TABLE(EquipUpgrade, mtb::EquipUpgrade,
|
||||
"equipUpgrade@equipUpgrade.csv",
|
||||
"equipUpgrade@equipUpgrade.json",
|
||||
"id")
|
||||
public:
|
||||
|
||||
|
@ -7,7 +7,7 @@ namespace mt
|
||||
{
|
||||
|
||||
DECLARE_AUTO_ID_TABLE(FormulaPvp, mtb::FormulaPvp,
|
||||
"formulaPvp@formulaPvp.csv"
|
||||
"formulaPvp@formulaPvp.json"
|
||||
)
|
||||
public:
|
||||
|
||||
|
@ -34,7 +34,7 @@ namespace mt
|
||||
};
|
||||
|
||||
DECLARE_ID_TABLE(Hero, mtb::Hero,
|
||||
"hero@hero.csv",
|
||||
"hero@hero.json",
|
||||
"id")
|
||||
public:
|
||||
|
||||
|
@ -7,7 +7,7 @@ namespace mt
|
||||
{
|
||||
|
||||
DECLARE_ID_TABLE(Item, mtb::Item,
|
||||
"item@item.csv",
|
||||
"item@item.json",
|
||||
"id")
|
||||
public:
|
||||
|
||||
|
@ -7,7 +7,7 @@ namespace mt
|
||||
{
|
||||
|
||||
DECLARE_ID_TABLE(KillPoint, mtb::KillPoint,
|
||||
"killPoint@killPoint.csv",
|
||||
"killPoint@killPoint.json",
|
||||
"kill_num")
|
||||
public:
|
||||
|
||||
|
@ -7,7 +7,7 @@ namespace mt
|
||||
{
|
||||
|
||||
DECLARE_ID_TABLE(KillReward, mtb::KillReward,
|
||||
"killReward@killReward.csv",
|
||||
"killReward@killReward.json",
|
||||
"kill_num")
|
||||
public:
|
||||
|
||||
|
@ -7,7 +7,7 @@ namespace mt
|
||||
{
|
||||
|
||||
DECLARE_ID_TABLE(Map, mtb::Map,
|
||||
"map@map.csv",
|
||||
"map@map.json",
|
||||
"map_id")
|
||||
public:
|
||||
std::vector<std::tuple<std::string, int>> template_list_;
|
||||
|
@ -7,7 +7,7 @@ namespace mt
|
||||
{
|
||||
|
||||
DECLARE_AUTO_ID_TABLE(MapArea, mtb::MapArea,
|
||||
"mapArea@mapArea.csv"
|
||||
"mapArea@mapArea.json"
|
||||
)
|
||||
public:
|
||||
|
||||
|
@ -7,7 +7,7 @@ namespace mt
|
||||
{
|
||||
|
||||
DECLARE_ID_TABLE(MapThing, mtb::MapThing,
|
||||
"mapThing@mapThing.csv",
|
||||
"mapThing@mapThing.json",
|
||||
"thing_id")
|
||||
public:
|
||||
std::vector<int> _buff_list;
|
||||
|
@ -7,7 +7,7 @@ namespace mt
|
||||
{
|
||||
|
||||
DECLARE_ID_TABLE(NpcStandard, mtb::NpcStandard,
|
||||
"npcStandard@npcStandard.csv",
|
||||
"npcStandard@npcStandard.json",
|
||||
"id")
|
||||
public:
|
||||
|
||||
|
@ -7,7 +7,7 @@ namespace mt
|
||||
{
|
||||
|
||||
DECLARE_NAME_TABLE(Param, mtb::Parameter,
|
||||
"parameter@parameter.csv",
|
||||
"parameter@parameter.json",
|
||||
"param_name")
|
||||
public:
|
||||
struct S {
|
||||
|
@ -7,7 +7,7 @@ namespace mt
|
||||
{
|
||||
|
||||
DECLARE_ID_TABLE(PveGemini, mtb::PveGemini,
|
||||
"pveGemini@pveGemini.csv",
|
||||
"pveGemini@pveGemini.json",
|
||||
"gemini_id")
|
||||
public:
|
||||
|
||||
|
@ -7,7 +7,7 @@ namespace mt
|
||||
{
|
||||
|
||||
DECLARE_ID_TABLE(PveGeminiContent, mtb::PveGeminiContent,
|
||||
"pveGeminiContent@pveGeminiContent.csv",
|
||||
"pveGeminiContent@pveGeminiContent.json",
|
||||
"id")
|
||||
public:
|
||||
|
||||
|
@ -7,7 +7,7 @@ namespace mt
|
||||
{
|
||||
|
||||
DECLARE_ID_TABLE(PveGeminiMode, mtb::PveGeminiMode,
|
||||
"pveGeminiMode@pveGeminiMode.csv",
|
||||
"pveGeminiMode@pveGeminiMode.json",
|
||||
"id")
|
||||
public:
|
||||
|
||||
|
@ -7,7 +7,7 @@ namespace mt
|
||||
{
|
||||
|
||||
DECLARE_ID_TABLE(RankPoint, mtb::RankPoint,
|
||||
"rankPoint@rankPoint.csv",
|
||||
"rankPoint@rankPoint.json",
|
||||
"rank")
|
||||
public:
|
||||
|
||||
|
@ -7,7 +7,7 @@ namespace mt
|
||||
{
|
||||
|
||||
DECLARE_ID_TABLE(RankReward, mtb::RankReward,
|
||||
"rankReward@rankReward.csv",
|
||||
"rankReward@rankReward.json",
|
||||
"rank")
|
||||
public:
|
||||
|
||||
|
@ -7,7 +7,7 @@ namespace mt
|
||||
{
|
||||
|
||||
DECLARE_ID_TABLE(RankRoom, mtb::RankRoom,
|
||||
"rankRoom@rankRoom.csv",
|
||||
"rankRoom@rankRoom.json",
|
||||
"id")
|
||||
public:
|
||||
|
||||
|
@ -7,7 +7,7 @@ namespace mt
|
||||
{
|
||||
|
||||
DECLARE_ID_TABLE(Robot, mtb::Robot,
|
||||
"robot@robot.csv",
|
||||
"robot@robot.json",
|
||||
"id")
|
||||
public:
|
||||
|
||||
|
@ -7,7 +7,7 @@ namespace mt
|
||||
{
|
||||
|
||||
DECLARE_ID_TABLE(SafeArea, mtb::SafeArea,
|
||||
"safearea@safearea.csv",
|
||||
"safearea@safearea.json",
|
||||
"id")
|
||||
public:
|
||||
|
||||
|
@ -7,7 +7,7 @@ namespace mt
|
||||
{
|
||||
|
||||
DECLARE_AUTO_ID_TABLE(SafeAreaPos, mtb::SafeAreaPos,
|
||||
"safeAreaPos@safeAreaPos.csv"
|
||||
"safeAreaPos@safeAreaPos.json"
|
||||
)
|
||||
public:
|
||||
|
||||
|
@ -25,7 +25,7 @@ namespace mt
|
||||
};
|
||||
|
||||
DECLARE_ID_TABLE(Skill, mtb::Skill,
|
||||
"skill@skill.csv",
|
||||
"skill@skill.json",
|
||||
"skill_id")
|
||||
public:
|
||||
|
||||
|
@ -7,7 +7,7 @@ namespace mt
|
||||
{
|
||||
|
||||
DECLARE_ID_TABLE(SkillNumber, mtb::SkillNumber,
|
||||
"skillNumber@skillNumber.csv",
|
||||
"skillNumber@skillNumber.json",
|
||||
"skill_id")
|
||||
public:
|
||||
|
||||
|
@ -9,7 +9,7 @@ namespace mt
|
||||
{
|
||||
|
||||
DECLARE_NAME_TABLE(Text, mtb::Text,
|
||||
"text@text.csv",
|
||||
"text@text.json",
|
||||
"textid")
|
||||
public:
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user