先修复一下,错误的场景 删除不必要的钓场资产 修复into场景 update:更新meta文件,修复报错 update:修复资源 修复第一章节建造 修复建造第三章 update:删除多余内容 update:更新README.md update:还原图标 update:更新README update:更新配置
119 lines
4.7 KiB
C#
119 lines
4.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 EventDrillMain : Bright.Config.BeanBase
|
|
{
|
|
public JSONNode json;
|
|
public EventDrillMain(JSONNode _json)
|
|
{
|
|
{ if(!_json["ID"].IsNumber) { throw new SerializationException(); } ID = _json["ID"]; }
|
|
{ if(!_json["UIPanel"].IsString) { throw new SerializationException(); } UIPanel = _json["UIPanel"]; }
|
|
{ if(!_json["InfoPanel"].IsString) { throw new SerializationException(); } InfoPanel = _json["InfoPanel"]; }
|
|
{ if(!_json["ChainPackPanel"].IsString) { throw new SerializationException(); } ChainPackPanel = _json["ChainPackPanel"]; }
|
|
{ if(!_json["PackPanel"].IsString) { throw new SerializationException(); } PackPanel = _json["PackPanel"]; }
|
|
{ if(!_json["RewardPanel"].IsString) { throw new SerializationException(); } RewardPanel = _json["RewardPanel"]; }
|
|
{ if(!_json["Icon"].IsString) { throw new SerializationException(); } Icon = _json["Icon"]; }
|
|
{ if(!_json["PackId"].IsNumber) { throw new SerializationException(); } PackId = _json["PackId"]; }
|
|
{ if(!_json["PackId2"].IsNumber) { throw new SerializationException(); } PackId2 = _json["PackId2"]; }
|
|
{ if(!_json["AdPackId"].IsNumber) { throw new SerializationException(); } AdPackId = _json["AdPackId"]; }
|
|
{ if(!_json["ItemId"].IsNumber) { throw new SerializationException(); } ItemId = _json["ItemId"]; }
|
|
{ var __json0 = _json["TunnelList"]; if(!__json0.IsArray) { throw new SerializationException(); } TunnelList = new System.Collections.Generic.List<int>(__json0.Count); foreach(JSONNode __e0 in __json0.Children) { int __v0; { if(!__e0.IsNumber) { throw new SerializationException(); } __v0 = __e0; } TunnelList.Add(__v0); } }
|
|
json = _json;
|
|
PostInit();
|
|
}
|
|
|
|
public EventDrillMain(int ID, string UIPanel, string InfoPanel, string ChainPackPanel, string PackPanel, string RewardPanel, string Icon, int PackId, int PackId2, int AdPackId, int ItemId, System.Collections.Generic.List<int> TunnelList )
|
|
{
|
|
this.ID = ID;
|
|
this.UIPanel = UIPanel;
|
|
this.InfoPanel = InfoPanel;
|
|
this.ChainPackPanel = ChainPackPanel;
|
|
this.PackPanel = PackPanel;
|
|
this.RewardPanel = RewardPanel;
|
|
this.Icon = Icon;
|
|
this.PackId = PackId;
|
|
this.PackId2 = PackId2;
|
|
this.AdPackId = AdPackId;
|
|
this.ItemId = ItemId;
|
|
this.TunnelList = TunnelList;
|
|
PostInit();
|
|
}
|
|
|
|
public static EventDrillMain DeserializeEventDrillMain(JSONNode _json)
|
|
{
|
|
return new EventDrillMain(_json);
|
|
}
|
|
|
|
public int ID { get; private set; }
|
|
public string UIPanel { get; private set; }
|
|
public string InfoPanel { get; private set; }
|
|
public string ChainPackPanel { get; private set; }
|
|
public string PackPanel { get; private set; }
|
|
public string RewardPanel { get; private set; }
|
|
public string Icon { get; private set; }
|
|
/// <summary>
|
|
/// 读shop表
|
|
/// </summary>
|
|
public int PackId { get; private set; }
|
|
/// <summary>
|
|
/// 读shop表
|
|
/// </summary>
|
|
public int PackId2 { get; private set; }
|
|
/// <summary>
|
|
/// 读shop表
|
|
/// </summary>
|
|
public int AdPackId { get; private set; }
|
|
public int ItemId { get; private set; }
|
|
/// <summary>
|
|
/// 读EventDrillTunnel
|
|
/// </summary>
|
|
public System.Collections.Generic.List<int> TunnelList { get; private set; }
|
|
|
|
public const int __ID__ = -1693306022;
|
|
public override int GetTypeId() => __ID__;
|
|
|
|
public void Resolve(Dictionary<string, object> _tables)
|
|
{
|
|
PostResolve();
|
|
}
|
|
|
|
public void TranslateText(System.Func<string, string, string> translator)
|
|
{
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return "{ "
|
|
+ "ID:" + ID + ","
|
|
+ "UIPanel:" + UIPanel + ","
|
|
+ "InfoPanel:" + InfoPanel + ","
|
|
+ "ChainPackPanel:" + ChainPackPanel + ","
|
|
+ "PackPanel:" + PackPanel + ","
|
|
+ "RewardPanel:" + RewardPanel + ","
|
|
+ "Icon:" + Icon + ","
|
|
+ "PackId:" + PackId + ","
|
|
+ "PackId2:" + PackId2 + ","
|
|
+ "AdPackId:" + AdPackId + ","
|
|
+ "ItemId:" + ItemId + ","
|
|
+ "TunnelList:" + Bright.Common.StringUtil.CollectionToString(TunnelList) + ","
|
|
+ "}";
|
|
}
|
|
|
|
partial void PostInit();
|
|
partial void PostResolve();
|
|
}
|
|
}
|