Files
MinFt/Client/Assets/Scripts/Tables/ETDropAfterDrop.cs
Liubing\LB 3d8d4d18f3 first commit
先修复一下,错误的场景

删除不必要的钓场资产

修复into场景

update:更新meta文件,修复报错

update:修复资源

修复第一章节建造

修复建造第三章

update:删除多余内容

update:更新README.md

update:还原图标

update:更新README

update:更新配置
2026-04-28 02:17:22 +08:00

104 lines
4.8 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
//------------------------------------------------------------------------------
// <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 ETDropAfterDrop : EventTargetExtraDrop
{
public ETDropAfterDrop(JSONNode _json) : base(_json)
{
{ var __json0 = _json["ExtraDropList"]; if(!__json0.IsArray) { throw new SerializationException(); } ExtraDropList = new System.Collections.Generic.List<int>(__json0.Count); foreach(JSONNode __e0 in __json0.Children) { int __v0; { if(!__e0.IsNumber) { throw new SerializationException(); } __v0 = __e0; } ExtraDropList.Add(__v0); } }
{ var __json0 = _json["ExtraCashDropList"]; if(!__json0.IsArray) { throw new SerializationException(); } ExtraCashDropList = new System.Collections.Generic.List<int>(__json0.Count); foreach(JSONNode __e0 in __json0.Children) { int __v0; { if(!__e0.IsNumber) { throw new SerializationException(); } __v0 = __e0; } ExtraCashDropList.Add(__v0); } }
{ var __json0 = _json["StatsChange"]; if(!__json0.IsArray) { throw new SerializationException(); } StatsChange = new System.Collections.Generic.List<System.Collections.Generic.List<float>>(__json0.Count); foreach(JSONNode __e0 in __json0.Children) { System.Collections.Generic.List<float> __v0; { var __json1 = __e0; if(!__json1.IsArray) { throw new SerializationException(); } __v0 = new System.Collections.Generic.List<float>(__json1.Count); foreach(JSONNode __e1 in __json1.Children) { float __v1; { if(!__e1.IsNumber) { throw new SerializationException(); } __v1 = __e1; } __v0.Add(__v1); } } StatsChange.Add(__v0); } }
{ if(!_json["Mode"].IsString) { throw new SerializationException(); } Mode = _json["Mode"]; }
{ if(!_json["Bone"].IsString) { throw new SerializationException(); } Bone = _json["Bone"]; }
{ if(!_json["Fx"].IsString) { throw new SerializationException(); } Fx = _json["Fx"]; }
PostInit();
}
public ETDropAfterDrop(System.Collections.Generic.List<int> ExtraDropList, System.Collections.Generic.List<int> ExtraCashDropList, System.Collections.Generic.List<System.Collections.Generic.List<float>> StatsChange, string Mode, string Bone, string Fx ) : base()
{
this.ExtraDropList = ExtraDropList;
this.ExtraCashDropList = ExtraCashDropList;
this.StatsChange = StatsChange;
this.Mode = Mode;
this.Bone = Bone;
this.Fx = Fx;
PostInit();
}
public static ETDropAfterDrop DeserializeETDropAfterDrop(JSONNode _json)
{
return new ETDropAfterDrop(_json);
}
/// <summary>
/// 触发掉落后一定有该掉落目标道具
/// </summary>
public System.Collections.Generic.List<int> ExtraDropList { get; private set; }
/// <summary>
/// 触发掉落后一定有该掉落,结算界面的钞票增加
/// </summary>
public System.Collections.Generic.List<int> ExtraCashDropList { get; private set; }
/// <summary>
/// 属性变化一共6个参数都是直接乘力量速度警惕血量逃跑速度技能蓄力速度逃跑触发血量提升
/// </summary>
public System.Collections.Generic.List<System.Collections.Generic.List<float>> StatsChange { get; private set; }
/// <summary>
/// 挂接模型名称
/// </summary>
public string Mode { get; private set; }
/// <summary>
/// 挂接挂点名称
/// </summary>
public string Bone { get; private set; }
/// <summary>
/// 模型飞出的特效名称
/// </summary>
public string Fx { get; private set; }
public const int __ID__ = 1078568013;
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 "{ "
+ "ExtraDropList:" + Bright.Common.StringUtil.CollectionToString(ExtraDropList) + ","
+ "ExtraCashDropList:" + Bright.Common.StringUtil.CollectionToString(ExtraCashDropList) + ","
+ "StatsChange:" + Bright.Common.StringUtil.CollectionToString(StatsChange) + ","
+ "Mode:" + Mode + ","
+ "Bone:" + Bone + ","
+ "Fx:" + Fx + ","
+ "}";
}
partial void PostInit();
partial void PostResolve();
}
}