备份CatanBuilding瘦身独立工程
This commit is contained in:
68
Assets/Scripts/Tables/Event1v1RodBuff.cs
Normal file
68
Assets/Scripts/Tables/Event1v1RodBuff.cs
Normal file
@@ -0,0 +1,68 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <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 Bright.Serialization;
|
||||
using System.Collections.Generic;
|
||||
using SimpleJSON;
|
||||
|
||||
|
||||
|
||||
namespace cfg
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 积分加成
|
||||
/// </summary>
|
||||
public sealed partial class Event1v1RodBuff : FishBuffType
|
||||
{
|
||||
public Event1v1RodBuff(JSONNode _json) : base(_json)
|
||||
{
|
||||
{ if(!_json["Param"].IsNumber) { throw new SerializationException(); } Param = _json["Param"]; }
|
||||
PostInit();
|
||||
}
|
||||
|
||||
public Event1v1RodBuff(float Param ) : base()
|
||||
{
|
||||
this.Param = Param;
|
||||
PostInit();
|
||||
}
|
||||
|
||||
public static Event1v1RodBuff DeserializeEvent1v1RodBuff(JSONNode _json)
|
||||
{
|
||||
return new Event1v1RodBuff(_json);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 钓鱼获取的积分提升
|
||||
/// </summary>
|
||||
public float Param { get; private set; }
|
||||
|
||||
public const int __ID__ = -461146968;
|
||||
public override int GetTypeId() => __ID__;
|
||||
|
||||
public override void Resolve(Dictionary<string, object> _tables)
|
||||
{
|
||||
base.Resolve(_tables);
|
||||
PostResolve();
|
||||
}
|
||||
|
||||
public override void TranslateText(System.Func<string, string, string> translator)
|
||||
{
|
||||
base.TranslateText(translator);
|
||||
}
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return "{ "
|
||||
+ "Param:" + Param + ","
|
||||
+ "}";
|
||||
}
|
||||
|
||||
partial void PostInit();
|
||||
partial void PostResolve();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user