1
This commit is contained in:
parent
cedecf2367
commit
89e72625c9
@ -0,0 +1,5 @@
|
||||
#include "precompile.h"
|
||||
|
||||
#include "mtb/BattleBasicAttribute.h"
|
||||
|
||||
IMPL_TABLE(mt::BattleBasicAttribute)
|
@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
|
||||
#include "mt/macro.h"
|
||||
#include "mtb/BattleBasicAttribute.h"
|
||||
|
||||
namespace mt
|
||||
{
|
||||
|
||||
DECLARE_ID_TABLE(BattleBasicAttribute, mtb::BattleBasicAttribute,
|
||||
"battleBasicAttribute@battleBasicAttribute.json",
|
||||
"id")
|
||||
public:
|
||||
};
|
||||
|
||||
}
|
@ -0,0 +1,5 @@
|
||||
#include "precompile.h"
|
||||
|
||||
#include "mtb/BattleLevelAttribute.h"
|
||||
|
||||
IMPL_TABLE(mt::BattleLevelAttribute)
|
@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
|
||||
#include "mt/macro.h"
|
||||
#include "mtb/BattleLevelAttribute.h"
|
||||
|
||||
namespace mt
|
||||
{
|
||||
|
||||
DECLARE_ID_TABLE(BattleLevelAttribute, mtb::BattleLevelAttribute,
|
||||
"battleLevelAttribute@battleLevelAttribute.json",
|
||||
"id")
|
||||
public:
|
||||
};
|
||||
|
||||
}
|
@ -0,0 +1,5 @@
|
||||
#include "precompile.h"
|
||||
|
||||
#include "mtb/BattleRandAttribute.h"
|
||||
|
||||
IMPL_TABLE(mt::BattleRandAttribute)
|
@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
|
||||
#include "mt/macro.h"
|
||||
#include "mtb/BattleRandAttribute.h"
|
||||
|
||||
namespace mt
|
||||
{
|
||||
|
||||
DECLARE_ID_TABLE(BattleRandAttribute, mtb::BattleRandAttribute,
|
||||
"battleRandAttribute@battleRandAttribute.json",
|
||||
"id")
|
||||
public:
|
||||
};
|
||||
|
||||
}
|
@ -0,0 +1,5 @@
|
||||
#include "precompile.h"
|
||||
|
||||
#include "mtb/BattleWeaponAttribute.h"
|
||||
|
||||
IMPL_TABLE(mt::BattleWeaponAttribute)
|
@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
|
||||
#include "mt/macro.h"
|
||||
#include "mtb/BattleWeaponAttribute.h"
|
||||
|
||||
namespace mt
|
||||
{
|
||||
|
||||
DECLARE_ID_TABLE(BattleWeaponAttribute, mtb::BattleWeaponAttribute,
|
||||
"battleWeaponAttribute@battleWeaponAttribute.json",
|
||||
"id")
|
||||
public:
|
||||
};
|
||||
|
||||
}
|
@ -0,0 +1,5 @@
|
||||
#include "precompile.h"
|
||||
|
||||
#include "mtb/Condition.h"
|
||||
|
||||
IMPL_TABLE(mt::Condition)
|
@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
|
||||
#include "mt/macro.h"
|
||||
#include "mtb/Condition.h"
|
||||
|
||||
namespace mt
|
||||
{
|
||||
|
||||
DECLARE_ID_TABLE(Condition, mtb::Condition,
|
||||
"condition@condition.json",
|
||||
"id")
|
||||
public:
|
||||
};
|
||||
|
||||
}
|
@ -0,0 +1,5 @@
|
||||
#include "precompile.h"
|
||||
|
||||
#include "mtb/Distribution.h"
|
||||
|
||||
IMPL_TABLE(mt::Distribution)
|
@ -0,0 +1,5 @@
|
||||
#include "precompile.h"
|
||||
|
||||
#include "mtb/LootConfig.h"
|
||||
|
||||
IMPL_TABLE(mt::LootConfig)
|
@ -725,6 +725,15 @@ message BattleWeaponAttribute
|
||||
optional string cost = 5;
|
||||
}
|
||||
|
||||
message BattleUnit
|
||||
{
|
||||
optional int32 id = 1;
|
||||
optional int32 weapon = 2;
|
||||
optional int32 level = 3;
|
||||
optional string levelAttribute = 4;
|
||||
optional string cost = 5;
|
||||
}
|
||||
|
||||
message Condition
|
||||
{
|
||||
optional int32 id = 1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user