mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 11:24:46 +00:00
70 lines
1.5 KiB
C#
70 lines
1.5 KiB
C#
|
|
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// This code was generated by a tool.
|
|
// Changes to this file may cause incorrect behavior and will be lost if
|
|
// the code is regenerated.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
using Luban;
|
|
|
|
|
|
namespace GameConfig.TB
|
|
{
|
|
public sealed partial class TbGRoleUpGrow : Luban.BeanBase
|
|
{
|
|
public TbGRoleUpGrow(ByteBuf _buf)
|
|
{
|
|
Id = _buf.ReadInt();
|
|
Blood = _buf.ReadInt();
|
|
Attack = _buf.ReadInt();
|
|
Defend = _buf.ReadInt();
|
|
}
|
|
|
|
public static TbGRoleUpGrow DeserializeTbGRoleUpGrow(ByteBuf _buf)
|
|
{
|
|
return new TB.TbGRoleUpGrow(_buf);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 角色Id (0 则默认)
|
|
/// </summary>
|
|
public readonly int Id;
|
|
/// <summary>
|
|
/// 血量成长
|
|
/// </summary>
|
|
public readonly int Blood;
|
|
/// <summary>
|
|
/// 攻击成长
|
|
/// </summary>
|
|
public readonly int Attack;
|
|
/// <summary>
|
|
/// 防御成长
|
|
/// </summary>
|
|
public readonly int Defend;
|
|
|
|
public const int __ID__ = 387207741;
|
|
public override int GetTypeId() => __ID__;
|
|
|
|
public void ResolveRef(Tables tables)
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return "{ "
|
|
+ "id:" + Id + ","
|
|
+ "Blood:" + Blood + ","
|
|
+ "Attack:" + Attack + ","
|
|
+ "Defend:" + Defend + ","
|
|
+ "}";
|
|
}
|
|
}
|
|
|
|
}
|