//------------------------------------------------------------------------------
//
// This code was generated by a tool.
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
//
//------------------------------------------------------------------------------
using Luban;
using Newtonsoft.Json.Linq;
namespace cfg
{
public sealed partial class Bait : Luban.BeanBase
{
public Bait(JToken _buf)
{
JObject _obj = _buf as JObject;
Id = (int)_obj.GetValue("id");
EfficacyBase = (int)_obj.GetValue("efficacy_base");
{ var __json0 = _obj.GetValue("arr"); Arr = new System.Collections.Generic.List((__json0 as JArray).Count); foreach(JToken __e0 in __json0) { int __v0; __v0 = (int)__e0; Arr.Add(__v0); } }
Strength = (int)_obj.GetValue("strength");
}
public static Bait DeserializeBait(JToken _buf)
{
return new Bait(_buf);
}
///
/// Id
///
public readonly int Id;
///
/// 吸引力
///
public readonly int EfficacyBase;
///
/// 导线圈
///
public readonly System.Collections.Generic.List Arr;
///
/// 强度
///
public readonly int Strength;
public const int __ID__ = 2062794;
public override int GetTypeId() => __ID__;
public void ResolveRef(Tables tables)
{
}
public override string ToString()
{
return "{ "
+ "id:" + Id + ","
+ "efficacyBase:" + EfficacyBase + ","
+ "arr:" + Luban.StringUtil.CollectionToString(Arr) + ","
+ "strength:" + Strength + ","
+ "}";
}
}
}