//------------------------------------------------------------------------------
//
// 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 Bright.Serialization;
using System.Collections.Generic;
using SimpleJSON;
namespace cfg
{
///
/// 目标奖励活动额外积分
///
public sealed partial class CollectionTargetExtraPoint : FishBuffType
{
public CollectionTargetExtraPoint(JSONNode _json) : base(_json)
{
{ if(!_json["Param"].IsNumber) { throw new SerializationException(); } Param = _json["Param"]; }
PostInit();
}
public CollectionTargetExtraPoint(float Param ) : base()
{
this.Param = Param;
PostInit();
}
public static CollectionTargetExtraPoint DeserializeCollectionTargetExtraPoint(JSONNode _json)
{
return new CollectionTargetExtraPoint(_json);
}
///
/// 目标奖励活动所有鱼的积分加成倍率
///
public float Param { get; private set; }
public const int __ID__ = 1334360751;
public override int GetTypeId() => __ID__;
public override void Resolve(Dictionary _tables)
{
base.Resolve(_tables);
PostResolve();
}
public override void TranslateText(System.Func translator)
{
base.TranslateText(translator);
}
public override string ToString()
{
return "{ "
+ "Param:" + Param + ","
+ "}";
}
partial void PostInit();
partial void PostResolve();
}
}