先修复一下,错误的场景 删除不必要的钓场资产 修复into场景 update:更新meta文件,修复报错 update:修复资源 修复第一章节建造 修复建造第三章 update:删除多余内容 update:更新README.md update:还原图标 update:更新README update:更新配置
84 lines
2.7 KiB
C#
84 lines
2.7 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 Statistics : Bright.Config.BeanBase
|
||
{
|
||
public JSONNode json;
|
||
public Statistics(JSONNode _json)
|
||
{
|
||
{ if(!_json["Id"].IsNumber) { throw new SerializationException(); } Id = _json["Id"]; }
|
||
{ if(!_json["Sort"].IsNumber) { throw new SerializationException(); } Sort = _json["Sort"]; }
|
||
{ if(!_json["Icon"].IsString) { throw new SerializationException(); } Icon = _json["Icon"]; }
|
||
{ if(!_json["Condition_Type"].IsNumber) { throw new SerializationException(); } ConditionType = (ConditionType)_json["Condition_Type"].AsInt; }
|
||
{ if(!_json["text"]["key"].IsString) { throw new SerializationException(); } Text_l10n_key = _json["text"]["key"]; if(!_json["text"]["text"].IsString) { throw new SerializationException(); } Text = _json["text"]["text"]; }
|
||
json = _json;
|
||
PostInit();
|
||
}
|
||
|
||
public Statistics(int Id, int Sort, string Icon, ConditionType Condition_Type, string text )
|
||
{
|
||
this.Id = Id;
|
||
this.Sort = Sort;
|
||
this.Icon = Icon;
|
||
this.ConditionType = Condition_Type;
|
||
this.Text = text;
|
||
PostInit();
|
||
}
|
||
|
||
public static Statistics DeserializeStatistics(JSONNode _json)
|
||
{
|
||
return new Statistics(_json);
|
||
}
|
||
|
||
public int Id { get; private set; }
|
||
/// <summary>
|
||
/// 填0则不展示;数字越小,排序越靠前
|
||
/// </summary>
|
||
public int Sort { get; private set; }
|
||
public string Icon { get; private set; }
|
||
public ConditionType ConditionType { get; private set; }
|
||
public string Text { get; private set; }
|
||
public string Text_l10n_key { get; }
|
||
|
||
public const int __ID__ = 1898876227;
|
||
public override int GetTypeId() => __ID__;
|
||
|
||
public void Resolve(Dictionary<string, object> _tables)
|
||
{
|
||
PostResolve();
|
||
}
|
||
|
||
public void TranslateText(System.Func<string, string, string> translator)
|
||
{
|
||
Text = translator(Text_l10n_key, Text);
|
||
}
|
||
|
||
public override string ToString()
|
||
{
|
||
return "{ "
|
||
+ "Id:" + Id + ","
|
||
+ "Sort:" + Sort + ","
|
||
+ "Icon:" + Icon + ","
|
||
+ "ConditionType:" + ConditionType + ","
|
||
+ "Text:" + Text + ","
|
||
+ "}";
|
||
}
|
||
|
||
partial void PostInit();
|
||
partial void PostResolve();
|
||
}
|
||
}
|