59 lines
1.3 KiB
C#
59 lines
1.3 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 Bright.Serialization;
|
|
using System.Collections.Generic;
|
|
using SimpleJSON;
|
|
|
|
|
|
|
|
namespace cfg
|
|
{
|
|
|
|
public sealed partial class SuperEnergyMag : FishBuffType
|
|
{
|
|
public SuperEnergyMag(JSONNode _json) : base(_json)
|
|
{
|
|
PostInit();
|
|
}
|
|
|
|
public SuperEnergyMag() : base()
|
|
{
|
|
PostInit();
|
|
}
|
|
|
|
public static SuperEnergyMag DeserializeSuperEnergyMag(JSONNode _json)
|
|
{
|
|
return new SuperEnergyMag(_json);
|
|
}
|
|
|
|
|
|
public const int __ID__ = 1642480784;
|
|
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 "{ "
|
|
+ "}";
|
|
}
|
|
|
|
partial void PostInit();
|
|
partial void PostResolve();
|
|
}
|
|
}
|