Fix ParadoxNotion framework compatibility - implement abstract properties, replace Excel with CSV

main^2
Vinny 2026-03-30 18:51:10 +08:00
parent 6816bd83f9
commit b5d208a931
233 changed files with 987345 additions and 1 deletions

6
.vsconfig Normal file
View File

@ -0,0 +1,6 @@
{
"version": "1.0",
"components": [
"Microsoft.VisualStudio.Workload.ManagedGame"
]
}

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 4cfe3e64882de254fba06f94153dab56
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: a1a9b6f3bf5e07344b1a1a522f1c9b5a
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,9 @@
using NodeCanvas.Framework;
namespace GameplayEditor.Core
{
[System.Serializable]
public class GameplayConnection : Connection
{
}
}

View File

@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: b4288e8c48438d9418ecb6578e78f32b
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,40 @@
using System.Collections.Generic;
using NodeCanvas.Framework;
using ParadoxNotion;
using UnityEngine;
namespace GameplayEditor.Core
{
[System.Serializable]
public class GameplayGraph : Graph
{
public override System.Type baseNodeType => typeof(GameplayNode);
public override bool requiresAgent => false;
public override bool requiresPrimeNode => false;
public override bool isTree => false;
public override bool allowBlackboardOverrides => false;
public override bool canAcceptVariableDrops => false;
public override PlanarDirection flowDirection => PlanarDirection.Horizontal;
public void ExportToExcel(string path)
{
Export.ExcelExporter.Export(this, path);
}
public void ImportFromExcel(string path)
{
Export.ExcelImporter.Import(path, this);
}
public List<GameplayNode> GetGameplayNodes()
{
var result = new List<GameplayNode>();
foreach (var node in allNodes)
{
if (node is GameplayNode gNode)
result.Add(gNode);
}
return result;
}
}
}

View File

@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: b8409462a7f3e4d46a886d68e7626d94
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,92 @@
using System;
using System.Collections.Generic;
using NodeCanvas.Framework;
using ParadoxNotion;
using ParadoxNotion.Design;
using ParadoxNotion.Serialization.FullSerializer;
using UnityEngine;
namespace GameplayEditor.Core
{
[System.Serializable]
[fsSerializeAsReference, fsDeserializeOverwrite]
public class GameplayNode : Node
{
[SerializeField] private int levelID;
[SerializeField] private int nodeID;
[SerializeField] private int nodeLayer;
[SerializeField] private string eventTypeGroup = "";
[SerializeField] private string priorityWeight = "";
[SerializeField] private int eventMappingID;
[SerializeField] private bool interactVisible = true;
[SerializeField] private bool nodeState = true;
[SerializeField] private int parentNodeID = -1;
public int LevelID { get => levelID; set => levelID = value; }
public int NodeID { get => nodeID; set => nodeID = value; }
public int NodeLayer { get => nodeLayer; set => nodeLayer = value; }
public string EventTypeGroup { get => eventTypeGroup; set => eventTypeGroup = value; }
public string PriorityWeight { get => priorityWeight; set => priorityWeight = value; }
public int EventMappingID { get => eventMappingID; set => eventMappingID = value; }
public bool InteractVisible { get => interactVisible; set => interactVisible = value; }
public bool NodeState { get => nodeState; set => nodeState = value; }
public int ParentNodeID { get => parentNodeID; set => parentNodeID = value; }
public override int maxInConnections => -1;
public override int maxOutConnections => -1;
public override Type outConnectionType => typeof(GameplayConnection);
public override bool allowAsPrime => true;
public override bool canSelfConnect => false;
public override Alignment2x2 commentsAlignment => Alignment2x2.Bottom;
public override Alignment2x2 iconAlignment => Alignment2x2.Default;
public Dictionary<string, string> ToExcelRow()
{
return new Dictionary<string, string>
{
{ "LevelID", levelID.ToString() },
{ "NodeID", nodeID.ToString() },
{ "NodeLayer", nodeLayer.ToString() },
{ "EventTypeGroup", eventTypeGroup },
{ "Priority", priorityWeight },
{ "EventMappingID", eventMappingID.ToString() },
{ "InteractVisible", interactVisible.ToString() },
{ "NodeState", nodeState.ToString() },
{ "ParentNodeID", parentNodeID.ToString() }
};
}
public void FromExcelRow(Dictionary<string, string> rowData)
{
if (rowData.TryGetValue("LevelID", out var val)) levelID = int.Parse(val);
if (rowData.TryGetValue("NodeID", out val)) nodeID = int.Parse(val);
if (rowData.TryGetValue("NodeLayer", out val)) nodeLayer = int.Parse(val);
if (rowData.TryGetValue("EventTypeGroup", out val)) eventTypeGroup = val;
if (rowData.TryGetValue("Priority", out val)) priorityWeight = val;
if (rowData.TryGetValue("EventMappingID", out val)) eventMappingID = int.Parse(val);
if (rowData.TryGetValue("InteractVisible", out val)) interactVisible = bool.Parse(val);
if (rowData.TryGetValue("NodeState", out val)) nodeState = bool.Parse(val);
if (rowData.TryGetValue("ParentNodeID", out val)) parentNodeID = int.Parse(val);
}
#if UNITY_EDITOR
protected override void OnNodeInspectorGUI()
{
levelID = UnityEditor.EditorGUILayout.IntField("Level ID", levelID);
nodeID = UnityEditor.EditorGUILayout.IntField("Node ID", nodeID);
nodeLayer = UnityEditor.EditorGUILayout.IntField("Node Layer", nodeLayer);
eventTypeGroup = UnityEditor.EditorGUILayout.TextField("Event Type Group", eventTypeGroup);
priorityWeight = UnityEditor.EditorGUILayout.TextField("Priority", priorityWeight);
eventMappingID = UnityEditor.EditorGUILayout.IntField("Event Mapping ID", eventMappingID);
interactVisible = UnityEditor.EditorGUILayout.Toggle("Interact Visible", interactVisible);
nodeState = UnityEditor.EditorGUILayout.Toggle("Node State", nodeState);
parentNodeID = UnityEditor.EditorGUILayout.IntField("Parent Node ID", parentNodeID);
}
#endif
protected override Status OnExecute(Component agent, IBlackboard blackboard)
{
return Status.Success;
}
}
}

View File

@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: 31c9c22045c8107449a43a91ab96f41d
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: c56bf5d4ec5ec9c4b9bfeba98093cd31
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,114 @@
using System.Collections.Generic;
using System.IO;
using System.Linq;
using UnityEngine;
namespace GameplayEditor
{
public class ExcelDataProvider
{
private string filePath;
public ExcelDataProvider(string path)
{
filePath = path;
}
public List<Dictionary<string, object>> ReadSheet(string sheetName)
{
var result = new List<Dictionary<string, object>>();
if (!File.Exists(filePath)) return result;
var lines = File.ReadAllLines(filePath);
if (lines.Length < 2) return result;
var headers = ParseCsv(lines[0]).Cast<object>().ToList();
for (int i = 1; i < lines.Length; i++)
{
var values = ParseCsv(lines[i]);
var rowData = new Dictionary<string, object>();
for (int j = 0; j < headers.Count && j < values.Count; j++)
{
rowData[headers[j].ToString()] = values[j];
}
result.Add(rowData);
}
return result;
}
public void WriteSheet(string sheetName, List<Dictionary<string, object>> data)
{
var lines = new List<string>();
if (data.Count == 0) return;
var headers = data[0].Keys.ToList();
lines.Add(string.Join(",", headers.Select(EscapeCsv)));
foreach (var row in data)
{
var values = headers.Select(h => row.TryGetValue(h, out var v) ? EscapeCsv(v?.ToString() ?? "") : "").ToList();
lines.Add(string.Join(",", values));
}
File.WriteAllLines(filePath, lines);
}
public List<string> GetSheetNames()
{
return new List<string> { "Sheet1" };
}
private static string EscapeCsv(string value)
{
if (string.IsNullOrEmpty(value)) return "";
if (value.Contains(",") || value.Contains("\"") || value.Contains("\n"))
{
return "\"" + value.Replace("\"", "\"\"") + "\"";
}
return value;
}
private static List<string> ParseCsv(string line)
{
var result = new List<string>();
var current = "";
var inQuotes = false;
for (int i = 0; i < line.Length; i++)
{
var c = line[i];
if (c == '"')
{
if (inQuotes && i + 1 < line.Length && line[i + 1] == '"')
{
current += '"';
i++;
}
else
{
inQuotes = !inQuotes;
}
}
else if (c == ',' && !inQuotes)
{
result.Add(current);
current = "";
}
else
{
current += c;
}
}
result.Add(current);
return result;
}
}
}

View File

@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: 74f1207cb96aeec4bb96fb6c9160ae7a
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: dac0a55ce952bd643ab858cfb121d36b
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,45 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using GameplayEditor.Core;
namespace GameplayEditor.Export
{
public static class ExcelExporter
{
private static readonly string[] FieldNames = { "LevelID", "NodeID", "NodeLayer", "EventTypeGroup", "Priority", "EventMappingID", "InteractVisible", "NodeState", "ParentNodeID" };
private static readonly string[] FieldTypes = { "int", "int", "int", "string", "string", "int", "bool", "bool", "int" };
private static readonly string[] FieldDocs = { "关卡编号ID", "节点ID唯一", "节点层级", "节点事件类型组(|分隔)", "优先级权重(|分隔)", "存储事件ID映射", "交互是否可见", "节点是否可进入", "父节点ID-1表示无父节点" };
public static void Export(GameplayGraph graph, string excelPath)
{
var lines = new List<string>();
lines.Add(string.Join(",", FieldNames));
lines.Add(string.Join(",", FieldTypes));
lines.Add(string.Join(",", FieldDocs));
var nodes = graph.GetGameplayNodes();
foreach (var node in nodes)
{
var rowData = node.ToExcelRow();
var values = FieldNames.Select(name => rowData.TryGetValue(name, out var val) ? EscapeCsv(val) : "").ToArray();
lines.Add(string.Join(",", values));
}
File.WriteAllLines(excelPath, lines);
UnityEngine.Debug.Log($"Exported {nodes.Count} nodes to {excelPath}");
}
private static string EscapeCsv(string value)
{
if (string.IsNullOrEmpty(value)) return "";
if (value.Contains(",") || value.Contains("\"") || value.Contains("\n"))
{
return "\"" + value.Replace("\"", "\"\"") + "\"";
}
return value;
}
}
}

View File

@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: dff3bd8a7b326ac4b9e2f4bd6c311e97
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,110 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using GameplayEditor.Core;
using NodeCanvas.Framework;
using UnityEngine;
namespace GameplayEditor.Export
{
public static class ExcelImporter
{
private static readonly string[] FieldNames = { "LevelID", "NodeID", "NodeLayer", "EventTypeGroup", "Priority", "EventMappingID", "InteractVisible", "NodeState", "ParentNodeID" };
public static void Import(string excelPath, GameplayGraph graph)
{
if (!File.Exists(excelPath))
{
Debug.LogError($"Excel file not found: {excelPath}");
return;
}
var lines = File.ReadAllLines(excelPath);
if (lines.Length < 4)
{
Debug.LogError("CSV file format invalid: need at least NAME, TYPE, DOC, and data rows");
return;
}
var nodesToRemove = graph.allNodes.ToList();
foreach (var node in nodesToRemove)
{
graph.RemoveNode(node);
}
var nodeDict = new Dictionary<int, GameplayNode>();
for (int i = 3; i < lines.Length; i++)
{
var rowData = ParseCsvLine(lines[i]);
if (rowData.Count == 0) continue;
var node = graph.AddNode<GameplayNode>(Vector2.zero);
node.FromExcelRow(rowData);
nodeDict[node.NodeID] = node;
}
foreach (var kvp in nodeDict)
{
var node = kvp.Value;
if (node.ParentNodeID >= 0 && nodeDict.TryGetValue(node.ParentNodeID, out var parentNode))
{
graph.ConnectNodes(parentNode, node);
}
}
graph.Validate();
Debug.Log($"Imported {nodeDict.Count} nodes from CSV");
}
private static Dictionary<string, string> ParseCsvLine(string line)
{
var result = new Dictionary<string, string>();
var values = ParseCsv(line);
for (int i = 0; i < values.Count && i < FieldNames.Length; i++)
{
result[FieldNames[i]] = values[i];
}
return result;
}
private static List<string> ParseCsv(string line)
{
var result = new List<string>();
var current = "";
var inQuotes = false;
for (int i = 0; i < line.Length; i++)
{
var c = line[i];
if (c == '"')
{
if (inQuotes && i + 1 < line.Length && line[i + 1] == '"')
{
current += '"';
i++;
}
else
{
inQuotes = !inQuotes;
}
}
else if (c == ',' && !inQuotes)
{
result.Add(current);
current = "";
}
else
{
current += c;
}
}
result.Add(current);
return result;
}
}
}

View File

@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: 2bdb5d4a9b1f34d49b3685985cd35f52
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,139 @@
using UnityEngine;
using UnityEditor;
using NodeCanvas.Framework;
using System.Collections.Generic;
namespace GameplayEditor
{
public class GameplayEditorWindow : EditorWindow
{
private Graph currentGraph;
private GraphDataSchema currentSchema;
private ExcelDataProvider excelProvider;
private Vector2 canvasScroll;
private Vector2 tableScroll;
[MenuItem("Window/Gameplay Editor")]
public static void ShowWindow()
{
GetWindow<GameplayEditorWindow>("玩法编辑器");
}
private void OnGUI()
{
DrawToolbar();
DrawMainLayout();
}
private void DrawToolbar()
{
EditorGUILayout.BeginHorizontal(EditorStyles.toolbar);
currentGraph = EditorGUILayout.ObjectField(currentGraph, typeof(Graph), false, GUILayout.Width(200)) as Graph;
currentSchema = EditorGUILayout.ObjectField(currentSchema, typeof(GraphDataSchema), false, GUILayout.Width(200)) as GraphDataSchema;
if (GUILayout.Button("导出 Canvas → CSV", EditorStyles.toolbarButton, GUILayout.Width(120)))
{
SyncCanvasToExcel();
}
if (GUILayout.Button("导入 CSV → Canvas", EditorStyles.toolbarButton, GUILayout.Width(120)))
{
SyncExcelToCanvas();
}
EditorGUILayout.EndHorizontal();
}
private void DrawMainLayout()
{
EditorGUILayout.BeginHorizontal();
EditorGUILayout.BeginVertical(GUILayout.Width(position.width * 0.5f));
DrawCanvasPanel();
EditorGUILayout.EndVertical();
EditorGUILayout.BeginVertical(GUILayout.Width(position.width * 0.5f));
DrawTablePanel();
EditorGUILayout.EndVertical();
EditorGUILayout.EndHorizontal();
}
private void DrawCanvasPanel()
{
EditorGUILayout.LabelField("Canvas 可视化编辑", EditorStyles.boldLabel);
if (currentGraph == null)
{
EditorGUILayout.HelpBox("请选择一个 Graph", MessageType.Info);
return;
}
canvasScroll = EditorGUILayout.BeginScrollView(canvasScroll);
EditorGUILayout.LabelField($"节点数: {currentGraph.allNodes.Count}", EditorStyles.miniLabel);
foreach (var node in currentGraph.allNodes)
{
EditorGUILayout.BeginHorizontal(EditorStyles.helpBox);
EditorGUILayout.LabelField($"[{node.ID}] {node.name}", GUILayout.Width(200));
EditorGUILayout.LabelField(node.GetType().Name, EditorStyles.miniLabel);
EditorGUILayout.EndHorizontal();
}
EditorGUILayout.EndScrollView();
}
private void DrawTablePanel()
{
EditorGUILayout.LabelField("CSV 表格映射", EditorStyles.boldLabel);
if (currentSchema == null)
{
EditorGUILayout.HelpBox("请选择一个 Schema", MessageType.Info);
return;
}
tableScroll = EditorGUILayout.BeginScrollView(tableScroll);
EditorGUILayout.LabelField($"字段映射数: {currentSchema.fields.Count}", EditorStyles.miniLabel);
foreach (var field in currentSchema.fields)
{
EditorGUILayout.BeginHorizontal(EditorStyles.helpBox);
EditorGUILayout.LabelField(field.fieldName, GUILayout.Width(150));
EditorGUILayout.LabelField("→", GUILayout.Width(20));
EditorGUILayout.LabelField(field.excelColumnName, GUILayout.Width(150));
EditorGUILayout.EndHorizontal();
}
EditorGUILayout.EndScrollView();
}
private void SyncCanvasToExcel()
{
if (currentGraph == null || currentSchema == null)
{
EditorUtility.DisplayDialog("错误", "请选择 Graph 和 Schema", "确定");
return;
}
var excelPath = "Assets/玩法编辑器.csv";
Export.ExcelExporter.Export(currentGraph as Core.GameplayGraph, excelPath);
EditorUtility.DisplayDialog("成功", $"已导出到 {excelPath}", "确定");
}
private void SyncExcelToCanvas()
{
if (currentGraph == null || currentSchema == null)
{
EditorUtility.DisplayDialog("错误", "请选择 Graph 和 Schema", "确定");
return;
}
var excelPath = "Assets/玩法编辑器.csv";
Export.ExcelImporter.Import(excelPath, currentGraph as Core.GameplayGraph);
EditorUtility.DisplayDialog("成功", "已从 CSV 导入", "确定");
}
}
}

View File

@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: ac53f5324f6daa54eade0d7ae54420e1
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,50 @@
using System.Collections.Generic;
using UnityEngine;
namespace GameplayEditor
{
/// <summary>
/// 图数据 Schema 定义
/// 定义 Canvas 节点字段 ↔ Excel 列的映射关系
/// </summary>
[CreateAssetMenu(menuName = "GameplayEditor/GraphDataSchema")]
public class GraphDataSchema : ScriptableObject
{
[System.Serializable]
public class FieldMapping
{
[Tooltip("节点中的字段名(支持嵌套如 'task.duration'")]
public string fieldName;
[Tooltip("Excel 表格中的列名")]
public string excelColumnName;
[Tooltip("数据类型")]
public FieldType fieldType = FieldType.String;
}
public enum FieldType
{
String,
Int,
Float,
Bool,
Vector3,
Color
}
[Tooltip("对应的 Excel Sheet 名称")]
public string sheetName = "技能";
[Tooltip("字段映射列表")]
public List<FieldMapping> fields = new List<FieldMapping>
{
new FieldMapping { fieldName = "ID", excelColumnName = "NodeID", fieldType = FieldType.Int },
new FieldMapping { fieldName = "name", excelColumnName = "NodeName", fieldType = FieldType.String },
new FieldMapping { fieldName = "comment", excelColumnName = "描述", fieldType = FieldType.String }
};
[Tooltip("节点类型过滤(为空则包含所有)")]
public List<string> nodeTypeFilter = new List<string>();
}
}

View File

@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: fd283cf39e183a04d814b09c20b2a810
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,163 @@
using UnityEngine;
using NodeCanvas.Framework;
using System.Collections.Generic;
using System.Linq;
namespace GameplayEditor
{
/// <summary>
/// 双向同步管理器Canvas Graph ↔ Excel 表格
/// 核心逻辑:
/// 1. 监听 Graph 序列化事件 → 提取节点数据 → 写入 Excel
/// 2. 监听 Excel 变化 → 解析表格 → 更新 Graph 节点
/// </summary>
public class GraphExcelSyncManager : MonoBehaviour
{
[SerializeField] private Graph targetGraph;
[SerializeField] private GraphDataSchema schema;
[SerializeField] private string excelPath = "Assets/玩法编辑器.xlsx";
private ExcelDataProvider excelProvider;
private bool isSyncing = false;
private void OnEnable()
{
if (targetGraph != null)
{
Graph.onGraphSerialized += OnGraphChanged;
}
}
private void OnDisable()
{
Graph.onGraphSerialized -= OnGraphChanged;
}
/// <summary>
/// 监听 Graph 变化 → 同步到 Excel
/// 触发点Graph.SelfSerialize() 完成后
/// </summary>
private void OnGraphChanged(Graph graph)
{
if (isSyncing || graph != targetGraph) return;
isSyncing = true;
SyncGraphToExcel();
isSyncing = false;
}
/// <summary>
/// Canvas → Excel提取图数据写入表格
/// </summary>
public void SyncGraphToExcel()
{
var nodeDataList = ExtractNodeData();
excelProvider.WriteSheet(schema.sheetName, nodeDataList);
}
/// <summary>
/// Excel → Canvas读取表格数据更新图节点
/// </summary>
public void SyncExcelToGraph()
{
var excelData = excelProvider.ReadSheet(schema.sheetName);
ApplyDataToGraph(excelData);
}
/// <summary>
/// 从 Graph 节点提取数据
/// 遍历所有节点,按 schema 映射提取字段
/// </summary>
private List<Dictionary<string, object>> ExtractNodeData()
{
var result = new List<Dictionary<string, object>>();
foreach (var node in targetGraph.allNodes)
{
var nodeData = new Dictionary<string, object>();
nodeData["NodeID"] = node.ID;
nodeData["NodeType"] = node.GetType().Name;
// 按 schema 定义的字段提取
foreach (var field in schema.fields)
{
var value = GetNodeFieldValue(node, field.fieldName);
nodeData[field.excelColumnName] = value ?? "";
}
result.Add(nodeData);
}
return result;
}
/// <summary>
/// 从节点获取字段值(支持嵌套属性)
/// </summary>
private object GetNodeFieldValue(Node node, string fieldPath)
{
var parts = fieldPath.Split('.');
object current = node;
foreach (var part in parts)
{
if (current == null) return null;
var field = current.GetType().GetField(part,
System.Reflection.BindingFlags.Public |
System.Reflection.BindingFlags.NonPublic |
System.Reflection.BindingFlags.IgnoreCase);
current = field?.GetValue(current);
}
return current;
}
/// <summary>
/// 将 Excel 数据应用到 Graph 节点
/// </summary>
private void ApplyDataToGraph(List<Dictionary<string, object>> excelData)
{
foreach (var rowData in excelData)
{
if (!rowData.TryGetValue("NodeID", out var nodeIdObj)) continue;
var nodeId = (int)nodeIdObj;
var node = targetGraph.allNodes.FirstOrDefault(n => n.ID == nodeId);
if (node == null) continue;
foreach (var field in schema.fields)
{
if (rowData.TryGetValue(field.excelColumnName, out var value))
{
SetNodeFieldValue(node, field.fieldName, value);
}
}
}
}
/// <summary>
/// 设置节点字段值
/// </summary>
private void SetNodeFieldValue(Node node, string fieldPath, object value)
{
var parts = fieldPath.Split('.');
object current = node;
for (int i = 0; i < parts.Length - 1; i++)
{
var field = current.GetType().GetField(parts[i],
System.Reflection.BindingFlags.Public |
System.Reflection.BindingFlags.NonPublic |
System.Reflection.BindingFlags.IgnoreCase);
current = field?.GetValue(current);
if (current == null) return;
}
var lastField = current.GetType().GetField(parts[parts.Length - 1],
System.Reflection.BindingFlags.Public |
System.Reflection.BindingFlags.NonPublic |
System.Reflection.BindingFlags.IgnoreCase);
lastField?.SetValue(current, System.Convert.ChangeType(value, lastField.FieldType));
}
}
}

View File

@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: a01d3b65a99ee6f4fafa43e13719468f
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 15fd2f4c6ec254049a0920f813c001ab
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

312
GAMEPLAY_EDITOR_SOLUTION.md Normal file
View File

@ -0,0 +1,312 @@
# 玩法编辑器系统 — 完整实现方案
## 系统架构
```
┌─────────────────────────────────────────────────────────────────┐
│ GameplayEditorWindow (Editor) │
│ ┌──────────────────────────┐ ┌────────────────────────────┐ │
│ │ Canvas 可视化编辑 │ │ Excel 表格映射 │ │
│ │ (FlowCanvas/NodeCanvas) │ │ (GraphDataSchema) │ │
│ └──────────┬───────────────┘ └─────────────┬──────────────┘ │
│ │ │ │
│ └──────────────┬─────────────────┘ │
│ │ │
│ GraphExcelSyncManager (Runtime) │
│ (双向同步: Graph JSON ↔ Excel 表格) │
│ │ │
│ ┌──────────────────┴──────────────────┐ │
│ │ │ │
│ ExcelDataProvider Graph.onGraphSerialized │
│ (EPPlus 读写 .xlsx) (自动触发同步) │
└─────────────────────────────────────────────────────────────────┘
```
---
## 核心模块说明
### 1. **GraphDataSchema** (`GraphDataSchema.cs`)
定义 Canvas 节点字段 ↔ Excel 列的映射关系
**使用方式:**
```
在 Unity Editor 中:
1. 右键 → Create → GameplayEditor/GraphDataSchema
2. 配置字段映射:
- fieldName: 节点中的字段名(支持嵌套如 'task.duration'
- excelColumnName: Excel 表格列名
- fieldType: 数据类型String/Int/Float/Bool/Vector3/Color
3. 指定 sheetName对应 Excel 中的 Sheet 名称)
```
**示例配置:**
```
Sheet: "技能"
字段映射:
- ID → NodeID (Int)
- name → NodeName (String)
- comment → 描述 (String)
- task.duration → 持续时间 (Float)
```
---
### 2. **ExcelDataProvider** (`ExcelDataProvider.cs`)
负责读写 .xlsx 文件的底层操作
**依赖:** EPPlus NuGet 包
```bash
# 在 Unity 项目中安装(需要配置 NuGet
Install-Package EPPlus
```
**API**
```csharp
var provider = new ExcelDataProvider("Assets/玩法编辑器.xlsx");
// 读取 Sheet
var data = provider.ReadSheet("技能");
// 写入 Sheet
provider.WriteSheet("技能", nodeDataList);
// 获取所有 Sheet 名称
var sheets = provider.GetSheetNames();
```
---
### 3. **GraphExcelSyncManager** (`GraphExcelSyncManager.cs`)
运行时双向同步管理器
**工作流程:**
**Canvas → Excel自动**
```
Graph.SelfSerialize()
↓ (触发 onGraphSerialized 事件)
GraphExcelSyncManager.OnGraphChanged()
ExtractNodeData() (遍历所有节点,按 Schema 提取字段)
ExcelDataProvider.WriteSheet() (写入 Excel)
```
**Excel → Canvas手动触发**
```
SyncExcelToGraph()
ExcelDataProvider.ReadSheet() (读取 Excel 数据)
ApplyDataToGraph() (按 NodeID 匹配节点,更新字段)
Graph 节点更新完成
```
---
### 4. **GameplayEditorWindow** (`GameplayEditorWindow.cs`)
编辑器窗口 UI
**打开方式:** `Window → Gameplay Editor`
**功能:**
- 左侧Canvas 节点列表(实时显示)
- 右侧Schema 字段映射(配置参考)
- 工具栏同步按钮Canvas ↔ Excel
---
## 使用流程
### 第一步:创建 Schema 配置
```
1. 在 Assets 中右键 → Create → GameplayEditor/GraphDataSchema
2. 命名为 "SkillGraphSchema"
3. 配置字段映射(对应你的 Graph 节点结构)
4. 保存
```
### 第二步:配置 SyncManager
```csharp
// 在某个 MonoBehaviour 中
public class GameplayController : MonoBehaviour
{
public Graph skillGraph;
public GraphDataSchema skillSchema;
private void Start()
{
var syncManager = gameObject.AddComponent<GraphExcelSyncManager>();
syncManager.targetGraph = skillGraph;
syncManager.schema = skillSchema;
}
}
```
### 第三步:编辑工作流
```
1. 在 Canvas 中编辑节点 → 自动同步到 Excel
2. 在 Excel 中修改数据 → 点击"同步 Excel → Canvas"更新
3. 支持批量编辑:在 Excel 中修改多行数据,一次性导入
```
---
## 数据流向示例
### 场景:编辑技能节点
**Canvas 中的节点结构:**
```csharp
public class SkillNode : FlowNode
{
public int skillID;
public string skillName;
public float cooldown;
public int manaCost;
}
```
**Schema 配置:**
```
Sheet: "技能"
字段映射:
- skillID → 技能ID (Int)
- skillName → 技能名称 (String)
- cooldown → 冷却时间 (Float)
- manaCost → 魔法消耗 (Int)
```
**Excel 表格:**
```
| 技能ID | 技能名称 | 冷却时间 | 魔法消耗 |
|--------|---------|---------|---------|
| 1 | 火球术 | 5.0 | 50 |
| 2 | 冰冻术 | 8.0 | 60 |
```
**同步流程:**
```
修改 Canvas 节点 → Graph.SelfSerialize()
→ onGraphSerialized 事件触发
→ ExtractNodeData() 提取 [skillID, skillName, cooldown, manaCost]
→ WriteSheet() 写入 Excel
→ Excel 自动更新
```
---
## 高级特性
### 1. 节点类型过滤
```csharp
schema.nodeTypeFilter = new List<string> { "SkillNode", "BuffNode" };
// 只同步这两种类型的节点
```
### 2. 嵌套字段支持
```csharp
// 节点中有嵌套对象
public class SkillNode : FlowNode
{
public SkillData data;
}
public class SkillData
{
public float duration;
}
// Schema 配置支持嵌套路径
fieldName = "data.duration"
```
### 3. 自定义字段类型转换
```csharp
// 在 ExcelDataProvider 中扩展
private object ConvertValue(object value, GraphDataSchema.FieldType type)
{
switch (type)
{
case GraphDataSchema.FieldType.Vector3:
// 自定义 Vector3 解析逻辑
break;
// ...
}
}
```
---
## 集成现有项目的步骤
### 1. 复制文件到项目
```
Assets/BP_Scripts/GameplayEditor/
├── GraphDataSchema.cs
├── ExcelDataProvider.cs
├── GraphExcelSyncManager.cs
└── GameplayEditorWindow.cs
```
### 2. 安装 EPPlus 依赖
```
在 Packages/manifest.json 中添加:
"com.epplus": "https://github.com/EPPlusSoftware/EPPlus.git"
```
### 3. 为现有 Graph 创建 Schema
```
对于每个 Graph 类型(技能、关卡、单位、行为树),
创建对应的 Schema 配置文件
```
### 4. 启用自动同步
```csharp
// 在 GameplayController 中
private void OnEnable()
{
Graph.onGraphSerialized += OnGraphChanged;
}
```
---
## 与参考项目的对应关系
| 参考项目文件 | 我们的实现 | 用途 |
|---|---|---|
| `行为树教程.xlsx` | `GraphDataSchema` | 定义表格结构 |
| `x效果C054.xlsm` | `ExcelDataProvider` | 读写 Excel |
| `g关卡C036.xlsm` | `GameplayEditorWindow` | 编辑界面 |
| `d单位G071.xlsm` | `GraphExcelSyncManager` | 数据同步 |
---
## 故障排查
### 问题 1Excel 文件被锁定
**原因:** 文件被其他程序打开
**解决:** 关闭 Excel重新同步
### 问题 2字段映射不生效
**原因:** fieldName 拼写错误或字段不存在
**解决:** 检查 Schema 配置中的 fieldName 是否与节点字段名完全匹配
### 问题 3数据类型转换失败
**原因:** Excel 中的数据类型与 Schema 定义不符
**解决:** 在 ExcelDataProvider 中添加类型转换逻辑
---
## 扩展方向
1. **支持多 Graph 同时编辑** → 在 GameplayEditorWindow 中添加 Tab 页
2. **版本控制** → 记录每次同步的时间戳和变更内容
3. **冲突解决** → 当 Canvas 和 Excel 同时修改时的合并策略
4. **导出配置** → 将 Graph 导出为 JSON/Protobuf 供游戏运行时使用
5. **可视化表格** → 在 Editor 中直接显示 Excel 表格,支持拖拽编辑

View File

@ -289,7 +289,99 @@ PlayerSettings:
AndroidValidateAppBundleSize: 1
AndroidAppBundleSizeToValidate: 150
m_BuildTargetIcons: []
m_BuildTargetPlatformIcons: []
m_BuildTargetPlatformIcons:
- m_BuildTarget: Android
m_Icons:
- m_Textures: []
m_Width: 432
m_Height: 432
m_Kind: 2
m_SubKind:
- m_Textures: []
m_Width: 324
m_Height: 324
m_Kind: 2
m_SubKind:
- m_Textures: []
m_Width: 216
m_Height: 216
m_Kind: 2
m_SubKind:
- m_Textures: []
m_Width: 162
m_Height: 162
m_Kind: 2
m_SubKind:
- m_Textures: []
m_Width: 108
m_Height: 108
m_Kind: 2
m_SubKind:
- m_Textures: []
m_Width: 81
m_Height: 81
m_Kind: 2
m_SubKind:
- m_Textures: []
m_Width: 192
m_Height: 192
m_Kind: 1
m_SubKind:
- m_Textures: []
m_Width: 144
m_Height: 144
m_Kind: 1
m_SubKind:
- m_Textures: []
m_Width: 96
m_Height: 96
m_Kind: 1
m_SubKind:
- m_Textures: []
m_Width: 72
m_Height: 72
m_Kind: 1
m_SubKind:
- m_Textures: []
m_Width: 48
m_Height: 48
m_Kind: 1
m_SubKind:
- m_Textures: []
m_Width: 36
m_Height: 36
m_Kind: 1
m_SubKind:
- m_Textures: []
m_Width: 192
m_Height: 192
m_Kind: 0
m_SubKind:
- m_Textures: []
m_Width: 144
m_Height: 144
m_Kind: 0
m_SubKind:
- m_Textures: []
m_Width: 96
m_Height: 96
m_Kind: 0
m_SubKind:
- m_Textures: []
m_Width: 72
m_Height: 72
m_Kind: 0
m_SubKind:
- m_Textures: []
m_Width: 48
m_Height: 48
m_Kind: 0
m_SubKind:
- m_Textures: []
m_Width: 36
m_Height: 36
m_Kind: 0
m_SubKind:
m_BuildTargetBatching:
- m_BuildTarget: WebGL
m_StaticBatching: 1

View File

@ -0,0 +1,43 @@
<xml xmlns:o="urn:schemas-microsoft-com:office:office">
<o:MainFile HRef="../d单位G071.html"/>
<o:File HRef="stylesheet.css"/>
<o:File HRef="tabstrip.html"/>
<o:File HRef="sheet001.html"/>
<o:File HRef="sheet002.html"/>
<o:File HRef="sheet003.html"/>
<o:File HRef="sheet004.html"/>
<o:File HRef="sheet005.html"/>
<o:File HRef="image001.png"/>
<o:File HRef="image002.png"/>
<o:File HRef="sheet006.html"/>
<o:File HRef="image003.png"/>
<o:File HRef="image004.png"/>
<o:File HRef="sheet007.html"/>
<o:File HRef="sheet008.html"/>
<o:File HRef="sheet009.html"/>
<o:File HRef="sheet010.html"/>
<o:File HRef="image005.png"/>
<o:File HRef="image006.png"/>
<o:File HRef="image007.png"/>
<o:File HRef="image008.png"/>
<o:File HRef="image009.png"/>
<o:File HRef="image010.png"/>
<o:File HRef="sheet011.html"/>
<o:File HRef="image011.png"/>
<o:File HRef="image012.png"/>
<o:File HRef="image013.png"/>
<o:File HRef="image014.png"/>
<o:File HRef="sheet012.html"/>
<o:File HRef="image015.png"/>
<o:File HRef="image016.png"/>
<o:File HRef="image017.png"/>
<o:File HRef="image018.png"/>
<o:File HRef="sheet013.html"/>
<o:File HRef="image019.png"/>
<o:File HRef="image020.png"/>
<o:File HRef="sheet014.html"/>
<o:File HRef="sheet015.html"/>
<o:File HRef="sheet016.html"/>
<o:File HRef="sheet017.html"/>
<o:File HRef="filelist.xml"/>
</xml>

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -0,0 +1,491 @@
<html xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=Content-Type content="text/html; charset=gb2312">
<meta name=ProgId content=Excel.Sheet>
<meta name=Generator content="Microsoft Excel 15">
<link id=Main-File rel=Main-File href="../d单位G071.html">
<link rel=File-List href=filelist.xml>
<title>个人测试</title>
<link rel=Stylesheet href=stylesheet.css>
<style>
<!--table
{mso-displayed-decimal-separator:"\.";
mso-displayed-thousand-separator:"\,";}
@page
{margin:.75in .7in .75in .7in;
mso-header-margin:.3in;
mso-footer-margin:.3in;}
ruby
{ruby-align:left;}
rt
{color:windowtext;
font-size:9.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:宋体;
mso-generic-font-family:auto;
mso-font-charset:134;
mso-char-type:none;
display:none;}
-->
</style>
<![if !supportTabStrip]><script language="JavaScript">
<!--
function fnUpdateTabs()
{
if (parent.window.g_iIEVer>=4) {
if (parent.document.readyState=="complete"
&& parent.frames['frTabs'].document.readyState=="complete")
parent.fnSetActiveSheet(0);
else
window.setTimeout("fnUpdateTabs();",150);
}
}
if (window.name!="frSheet")
window.location.replace("../d单位G071.html");
else
fnUpdateTabs();
//-->
</script>
<![endif]>
</head>
<body link=blue vlink=purple>
<table border=0 cellpadding=0 cellspacing=0 width=2675 style='border-collapse:
collapse;table-layout:fixed;width:2011pt'>
<col width=98 style='mso-width-source:userset;mso-width-alt:3421;width:74pt'>
<col width=191 style='mso-width-source:userset;mso-width-alt:6656;width:143pt'>
<col width=145 span=16 style='mso-width-source:userset;mso-width-alt:5073;
width:109pt'>
<col width=66 style='width:50pt'>
<tr height=96 style='mso-height-source:userset;height:72.0pt'>
<td height=96 class=xl78 width=98 style='height:72.0pt;width:74pt'><font
class="font11">I</font><font class="font11">d</font></td>
<td class=xl78 width=191 style='width:143pt'>类型</td>
<td class=xl78 width=145 style='width:109pt'>参数1</td>
<td class=xl78 width=145 style='width:109pt'>参数2</td>
<td class=xl78 width=145 style='width:109pt'>参数3</td>
<td class=xl78 width=145 style='width:109pt'>参数4</td>
<td class=xl78 width=145 style='width:109pt'>参数5</td>
<td class=xl78 width=145 style='width:109pt'>参数6</td>
<td class=xl78 width=145 style='width:109pt'>参数7</td>
<td class=xl78 width=145 style='width:109pt'>参数8</td>
<td class=xl78 width=145 style='width:109pt'>参数9</td>
<td class=xl78 width=145 style='width:109pt'>参数10</td>
<td class=xl78 width=145 style='width:109pt'>参数11</td>
<td class=xl78 width=145 style='width:109pt'>参数12</td>
<td class=xl78 width=145 style='width:109pt'>参数13</td>
<td class=xl78 width=145 style='width:109pt'>参数14</td>
<td class=xl78 width=145 style='width:109pt'>参数15</td>
<td class=xl78 width=145 style='width:109pt'>参数16</td>
<td class=xl78 width=66 style='width:50pt'>参数17</td>
</tr>
<tr height=96 style='mso-height-source:userset;height:72.0pt'>
<td height=96 class=xl78 style='height:72.0pt'>1</td>
<td class=xl78>1 = 线性轨迹(6参数)</td>
<td class=xl78>子弹加速度</td>
<td class=xl78>子弹斜率(正比例函<span style='display:none'>数)</span></td>
<td class=xl85 width=145 style='width:109pt'>填1参数2无效 以行为树传入的坐标计算斜率;<br>
填2参数2无效以目标的坐标(目标是骨骼的情况计算时会减掉Npc逻辑高度)和特效高度计算斜率可配合SlopeTargetJoint使用<br>
填3参数2无效子弹出生点以及发射者的SlopeTargetJoint骨骼位置计算斜率<br>
填4参数2无效以子弹出生点 以及 行为节点&quot;设置子弹目标高度设置&quot; 计算斜率<br>
填5参数2无效以子弹出生点 以及 目标坐标(目标是骨骼时位置比2正确) 计算斜率 可配合SlopeTargetJoint使用</td>
<td class=xl78>子弹生存时间是否有<span style='display:none'>移动到目标点时间决定填1忽略子弹原本生存时间需要对应轨迹参数3填1生效</span></td>
<td class=xl78>是否在子弹生命周期<span style='display:none'>里,持续以子弹的位置和目标位置计算斜率。</span></td>
<td class=xl78>限制子弹斜率的最小<span style='display:none'>值(角度)。阈值-90~90</span></td>
<td class=xl78>限制子弹斜率的最大<span style='display:none'>值(角度)。阈值-90~90</span></td>
<td class=xl85 width=145 style='width:109pt'><font class="font11">出生时</font><font
class="font56"><br>
</font><font class="font11">是否重新计算子弹面向<br>
填1<br>
参数原因:<br>
史前代码的子弹出生位置偏移在计算出生面向之后,导致子弹面向不正确。</font></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td colspan=2 style='mso-ignore:colspan'></td>
</tr>
<tr height=96 style='mso-height-source:userset;height:72.0pt'>
<td height=96 class=xl78 style='height:72.0pt'>2</td>
<td class=xl78>2 = 阿基米德曲线(4参数)</td>
<td class=xl78>旋转角速度</td>
<td class=xl78>离心线速度</td>
<td class=xl78>初始距离</td>
<td class=xl78>最终距离</td>
<td class=xl78>上升初速度</td>
<td class=xl78>上升加速度</td>
<td class=xl78>上升时长</td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td colspan=2 style='mso-ignore:colspan'></td>
</tr>
<tr height=96 style='mso-height-source:userset;height:72.0pt'>
<td height=96 class=xl78 style='height:72.0pt'>3</td>
<td class=xl78>3 = 抛物线(5参数)</td>
<td class=xl78>重力加速度</td>
<td class=xl78>落地高度</td>
<td class=xl78>基准距离</td>
<td class=xl78>距离:速度增幅比1等<span style='display:none'>比增幅</span></td>
<td class=xl78 colspan=3 style='mso-ignore:colspan'>子弹的表现层朝向是否忽略y轴的旋转0为不忽略1为忽略</td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td colspan=2 style='mso-ignore:colspan'></td>
</tr>
<tr height=96 style='mso-height-source:userset;height:72.0pt'>
<td height=96 class=xl78 style='height:72.0pt'>4</td>
<td class=xl78>4 = 弹道弹(子弹存在时间<span style='display:none'>决定到达时间)(5参数)</span></td>
<td class=xl78>Z轴垂直面上的偏转,<span style='display:none'>向上为0,顺时针</span></td>
<td class=xl78>与Z轴垂直面的夹角</td>
<td class=xl78>转向欲望,值越小转<span style='display:none'>向越快</span></td>
<td class=xl78>发射的表现高度(会与<span style='display:none'>特效高度和骨骼发射高度叠加生效)</span></td>
<td class=xl78 colspan=2 style='mso-ignore:colspan'>结束的表现高度(会与特效高度叠加生效)</td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td colspan=2 style='mso-ignore:colspan'></td>
</tr>
<tr height=96 style='mso-height-source:userset;height:72.0pt'>
<td height=96 class=xl78 style='height:72.0pt'>5</td>
<td class=xl78>5 = 追踪弹tracktarget那<span style='display:none'>一列一定为1(10参数)</span></td>
<td class=xl78>Z轴垂直面上的偏转,<span style='display:none'>向上为0,顺时针</span></td>
<td class=xl78>与Z轴垂直面的夹角</td>
<td class=xl78>开始转向比例,范围<span style='display:none'>【01】</span></td>
<td class=xl78>转向倾向范围【1<span style='display:none'>+无穷】,越大转向越强</span></td>
<td class=xl78>最大角速度默认0无<span style='display:none'>法转向)</span></td>
<td class=xl85 width=145 style='width:109pt'>地板位置<br>
子弹逻辑高度低于该值时<br>
子弹自杀</td>
<td class=xl78>加速度<span style='mso-spacerun:yes'>&nbsp;</span></td>
<td class=xl78>子弹高度<span style='mso-spacerun:yes'>&nbsp;</span></td>
<td class=xl85 width=145 style='width:109pt'>追及点高度</td>
<td class=xl78>锁定子弹高度不受目<span style='display:none'>标影像</span></td>
<td class=xl78>子弹追踪时间 =0则维<span style='display:none'>持追踪</span></td>
<td class=xl85 width=145 style='width:109pt'>追踪目标<br>
默认0目标Npc<br>
1发射Npc</td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td colspan=2 style='mso-ignore:colspan'></td>
</tr>
<tr height=96 style='mso-height-source:userset;height:72.0pt'>
<td height=96 class=xl78 style='height:72.0pt'>6</td>
<td class=xl78>6 = 骨骼移动(4参数)</td>
<td class=xl85 width=145 style='width:109pt'>横向位置偏移(不受旋转影像)<br>
需要动作先提取了对应骨骼的位移数据,骨骼名和动作一一对应</td>
<td class=xl78>前方向位置偏向(不受<span style='display:none'>旋转影像)</span></td>
<td class=xl78>横方向位置偏向(受旋<span style='display:none'>转影像)</span></td>
<td class=xl78 colspan=2 style='mso-ignore:colspan'>前方向位置偏向(受旋转影像)</td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td colspan=2 style='mso-ignore:colspan'></td>
</tr>
<tr height=96 style='mso-height-source:userset;height:72.0pt'>
<td height=96 class=xl78 style='height:72.0pt'>7</td>
<td class=xl78 colspan=2 style='mso-ignore:colspan'>7 = 跟随操控友军npc(0参数)</td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td colspan=2 style='mso-ignore:colspan'></td>
</tr>
<tr height=96 style='mso-height-source:userset;height:72.0pt'>
<td height=96 class=xl78 style='height:72.0pt'>8</td>
<td class=xl78>8 = 反弹子弹(5参数)</td>
<td class=xl78>反弹次数</td>
<td class=xl78>排除路径目标数量</td>
<td class=xl78>0最近搜索1最远搜<span style='display:none'></span></td>
<td class=xl85 width=145 style='width:109pt'>搜索距离<br>
参数3为0时 为最大距离<br>
参数3为1时 为最小距离</td>
<td class=xl85 width=145 style='width:109pt'>结束类型,<br>
0不爆炸<br>
1超过反弹次数或无目标时爆炸<br>
2循环反弹无目标时爆炸<br>
3超过一个目标时循环反弹无目标时爆炸暂未验收慎用</td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td colspan=2 style='mso-ignore:colspan'></td>
</tr>
<tr height=96 style='mso-height-source:userset;height:72.0pt'>
<td height=96 class=xl78 style='height:72.0pt'>9</td>
<td class=xl78>9 = 3D追踪弹(7参数)</td>
<td class=xl78>Z轴垂直面上的偏转,<span style='display:none'>向上为0,顺时针</span></td>
<td class=xl78>与Z轴垂直面的夹角</td>
<td class=xl78>加速度</td>
<td class=xl78>偏转修正比例(从当<span style='display:none'>前方向调整到朝目标方向 范围0-100
建议填1-10</span></td>
<td class=xl78>最小角速度</td>
<td class=xl78>最大角速度</td>
<td class=xl78>开始转向的距离</td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td colspan=2 style='mso-ignore:colspan'></td>
</tr>
<tr height=96 style='mso-height-source:userset;height:72.0pt'>
<td height=96 class=xl78 style='height:72.0pt'>10</td>
<td class=xl78>10 = 3D线性弹(4参数)</td>
<td class=xl78>子弹加速度</td>
<td class=xl78>发射高度(相对于发射<span style='display:none'>Npc的逻辑位置)</span></td>
<td class=xl85 width=145 style='width:109pt'><span
style='mso-spacerun:yes'>&nbsp;</span>斜率计算方式<br>
<span style='mso-spacerun:yes'>&nbsp;&nbsp;&nbsp; </span>方式1 固定斜率<br>
<span style='mso-spacerun:yes'>&nbsp;&nbsp;&nbsp; </span>方式2
以目标高度计算斜率<br>
方式3 以目标高度在子弹生命周期内持续计算斜率</td>
<td class=xl85 width=145 style='width:109pt'>根据参数3的不同有不同含义<br>
<span style='mso-spacerun:yes'>&nbsp;&nbsp;&nbsp; </span>方式1 斜率数值<br>
<span style='mso-spacerun:yes'>&nbsp;&nbsp;&nbsp; </span>方式2,3
目标高度(目标是Npc时则是相对于目标Npc的逻辑位置)</td>
<td class=xl85 width=145 style='width:109pt'>撞到地板时是否死亡<br>
0 不死<br>
1 死</td>
<td class=xl85 width=145 style='width:109pt'><font class="font11">初始化弹道时(时机很难描述)</font><font
class="font56"><br>
</font><font class="font11">是否重新以子弹当前位置和目标位置计算子弹面向<br>
填1<br>
参数原因:<br>
史前代码的子弹出生位置偏移在计算出生面向之后,导致子弹面向不正确。</font></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td colspan=2 style='mso-ignore:colspan'></td>
</tr>
<tr height=96 style='mso-height-source:userset;height:72.0pt'>
<td height=96 class=xl78 style='height:72.0pt'>11</td>
<td class=xl78>11 = 变速定时弹(1参数)</td>
<td class=xl78>子弹飞行时间</td>
<td class=xl85 width=145 style='width:109pt'>V3.6<br>
到达目标范围内<br>
是否停止移动<br>
&gt;0: 停止</td>
<td class=xl85 width=145 style='width:109pt'>V3.6<br>
视为到达 的目标范围<br>
例:<br>
填1的话目标1米范围内都算到达</td>
<td class=xl85 width=145 style='width:109pt'><font class="font11">V3.6<br>
0:往目标所在高度飞行<br>
1:逻辑高度保持在出发点高度,恒定不变。<br>
</font><font class="font56">2:</font><font class="font57">贴地飞行
(如果每帧之间地板高度悬殊可能会出BUG)</font></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td colspan=2 style='mso-ignore:colspan'></td>
</tr>
<tr height=96 style='mso-height-source:userset;height:72.0pt'>
<td height=96 class=xl78 style='height:72.0pt'>12</td>
<td class=xl78>12 = Vergil幻影剑专用弹道</td>
<td class=xl78>最小斜率角度</td>
<td class=xl78>最大斜率角度</td>
<td class=xl78>后撤速度</td>
<td class=xl78>后撤时间</td>
<td class=xl78>后撤延时</td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td colspan=2 style='mso-ignore:colspan'></td>
</tr>
<tr height=96 style='mso-height-source:userset;height:72.0pt'>
<td height=96 class=xl78 style='height:72.0pt'>13</td>
<td class=xl78 colspan=2 style='mso-ignore:colspan'>13 =
Vergil五月雨垂直向下弹道无需任何参数</td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td colspan=2 style='mso-ignore:colspan'></td>
</tr>
<tr height=96 style='mso-height-source:userset;height:72.0pt'>
<td height=96 class=xl78 style='height:72.0pt'>14</td>
<td class=xl78>14 = 抛物线(初始速度)</td>
<td class=xl85 width=145 style='width:109pt'>参数形式<br>
1 使用发射俯角度和初速度<br>
2 使用水平和垂直分速度</td>
<td class=xl85 width=145 style='width:109pt'>参数形式1:发射角度<br>
参数形式2:水平初速度</td>
<td class=xl85 width=145 style='width:109pt'>参数形式1:发射初速度<br>
参数形式2:垂直初速度</td>
<td class=xl78>水平加速度</td>
<td class=xl78>垂直加速度</td>
<td class=xl85 width=145 style='width:109pt'>发射偏航角</td>
<td class=xl78>垂直加速度是否应用<span style='display:none'>世界重力</span></td>
<td class=xl85 width=145 style='width:109pt'>同步俯仰角<br>
如果不同步 则子弹面向一直是发射时的面向</td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
<td colspan=2 style='mso-ignore:colspan'></td>
</tr>
<tr height=168 style='height:126.0pt'>
<td height=168 class=xl78 style='height:126.0pt'>15</td>
<td class=xl78>15 = 纯逻辑追踪弹</td>
<td class=xl85 width=145 style='width:109pt'>出生面向类型<br>
0:使用子弹通用配置<br>
1:面向目标(3D)</td>
<td class=xl85 width=145 style='width:109pt'>出生面向旋转偏移X<br>
参数跟Unity一样</td>
<td class=xl85 width=145 style='width:109pt'>出生面向旋转偏移Y<br>
参数跟Unity一样</td>
<td class=xl85 width=145 style='width:109pt'>出生面向旋转偏移Z<br>
参数跟Unity一样</td>
<td class=xl85 width=145 style='width:109pt'><font class="font11">追踪目标<br>
</font><font class="font56">0</font><font class="font11">:技能目标<br>
</font><font class="font56">1</font><font class="font11">:自己<br>
追踪的骨骼请填写<br>
FollowHeightJoint<br>
失去目标时会先使用NpcSearcherId寻找新目标</font></td>
<td class=xl85 width=145 style='width:109pt'>追踪点高度偏移<br>
Y</td>
<td class=xl85 width=145 style='width:109pt'>移动速度请填写<br>
子弹参数Speed<br>
移动加速度<br>
速度(米/秒)/秒</td>
<td class=xl85 width=145 style='width:109pt'>最大移动速度<br>
米/秒</td>
<td class=xl85 width=145 style='width:109pt'>初始最大角速度<br>
角速度/每秒</td>
<td class=xl85 width=145 style='width:109pt'>最大角速度 的 加速度<br>
最大角速度(角速度/每秒)/每秒</td>
<td class=xl85 width=145 style='width:109pt'>封顶最大角速度<br>
角速度/每秒</td>
<td class=xl85 width=145 style='width:109pt'>开始追踪时间<br>
</td>
<td class=xl85 width=145 style='width:109pt'>取消追踪时间<br>
<br>
填0不生效</td>
<td class=xl85 width=145 style='width:109pt'>取消追踪距离2D<br>
该子弹与目标距离小于该值时取消追踪<br>
<br>
填0不生效</td>
<td class=xl85 width=145 style='width:109pt'>取消追踪距离百分比2D<br>
以子弹出生时跟目标的距离为准<br>
该子弹与目标距离百分比小于该值时取消追踪<br>
<br>
填0不生效</td>
<td colspan=2 style='mso-ignore:colspan'></td>
</tr>
<![if supportMisalignedColumns]>
<tr height=0 style='display:none'>
<td width=98 style='width:74pt'></td>
<td width=191 style='width:143pt'></td>
<td width=145 style='width:109pt'></td>
<td width=145 style='width:109pt'></td>
<td width=145 style='width:109pt'></td>
<td width=145 style='width:109pt'></td>
<td width=145 style='width:109pt'></td>
<td width=145 style='width:109pt'></td>
<td width=145 style='width:109pt'></td>
<td width=145 style='width:109pt'></td>
<td width=145 style='width:109pt'></td>
<td width=145 style='width:109pt'></td>
<td width=145 style='width:109pt'></td>
<td width=145 style='width:109pt'></td>
<td width=145 style='width:109pt'></td>
<td width=145 style='width:109pt'></td>
<td width=145 style='width:109pt'></td>
<td width=145 style='width:109pt'></td>
<td width=66 style='width:50pt'></td>
</tr>
<![endif]>
</table>
</body>
</html>

View File

@ -0,0 +1,334 @@
<html xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=Content-Type content="text/html; charset=gb2312">
<meta name=ProgId content=Excel.Sheet>
<meta name=Generator content="Microsoft Excel 15">
<link id=Main-File rel=Main-File href="../d单位G071.html">
<link rel=File-List href=filelist.xml>
<title>个人测试</title>
<link rel=Stylesheet href=stylesheet.css>
<style>
<!--table
{mso-displayed-decimal-separator:"\.";
mso-displayed-thousand-separator:"\,";}
@page
{margin:.75in .7in .75in .7in;
mso-header-margin:.3in;
mso-footer-margin:.3in;}
ruby
{ruby-align:left;}
rt
{color:windowtext;
font-size:9.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:宋体;
mso-generic-font-family:auto;
mso-font-charset:134;
mso-char-type:none;
display:none;}
-->
</style>
<![if !supportTabStrip]><script language="JavaScript">
<!--
function fnUpdateTabs()
{
if (parent.window.g_iIEVer>=4) {
if (parent.document.readyState=="complete"
&& parent.frames['frTabs'].document.readyState=="complete")
parent.fnSetActiveSheet(1);
else
window.setTimeout("fnUpdateTabs();",150);
}
}
if (window.name!="frSheet")
window.location.replace("../d单位G071.html");
else
fnUpdateTabs();
//-->
</script>
<![endif]>
</head>
<body link=blue vlink=purple>
<table border=0 cellpadding=0 cellspacing=0 width=2500 style='border-collapse:
collapse;table-layout:fixed;width:1876pt'>
<col width=100 style='mso-width-source:userset;mso-width-alt:3490;width:75pt'>
<col width=124 style='mso-width-source:userset;mso-width-alt:4328;width:93pt'>
<col width=169 style='mso-width-source:userset;mso-width-alt:5911;width:127pt'>
<col width=129 style='mso-width-source:userset;mso-width-alt:4491;width:97pt'>
<col width=186 style='mso-width-source:userset;mso-width-alt:6493;width:140pt'>
<col width=64 span=28 style='width:48pt'>
<tr height=19 style='height:14.0pt'>
<td height=19 colspan=2 width=224 style='height:14.0pt;mso-ignore:colspan;
width:168pt'>导出技能时间轴</td>
<td width=169 style='width:127pt'></td>
<td width=129 style='width:97pt'></td>
<td width=186 style='width:140pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 colspan=33 style='height:14.0pt;mso-ignore:colspan'></td>
</tr>
<tr class=xl177 height=19 style='height:14.0pt'>
<td height=19 class=xl177 style='height:14.0pt'></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
</tr>
<tr class=xl177 height=19 style='height:14.0pt'>
<td height=19 class=xl177 style='height:14.0pt'></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
<td class=xl177></td>
</tr>
<tr class=xl177 height=19 style='height:14.0pt'>
<td height=19 class=xl177 style='height:14.0pt'>Id</td>
<td class=xl177>#Name</td>
<td class=xl177>Timings[1]</td>
<td class=xl177>Timings[2]</td>
<td class=xl177>Timings[3]</td>
<td class=xl177>Timings[<span style='display:none'>4]</span></td>
<td class=xl177>Timings[<span style='display:none'>5]</span></td>
<td class=xl177>Timings[<span style='display:none'>6]</span></td>
<td class=xl177>Timings[<span style='display:none'>7]</span></td>
<td class=xl177>Timings[<span style='display:none'>8]</span></td>
<td class=xl177>Timings[<span style='display:none'>9]</span></td>
<td class=xl177>Timings[<span style='display:none'>10]</span></td>
<td class=xl177>Timings[<span style='display:none'>11]</span></td>
<td class=xl177>Timings[<span style='display:none'>12]</span></td>
<td class=xl177>Timings[<span style='display:none'>13]</span></td>
<td class=xl177>Timings[<span style='display:none'>14]</span></td>
<td class=xl177>Timings[<span style='display:none'>15]</span></td>
<td class=xl177>Timings[<span style='display:none'>16]</span></td>
<td class=xl177>Timings[<span style='display:none'>17]</span></td>
<td class=xl177>Timings[<span style='display:none'>18]</span></td>
<td class=xl177>Timings[<span style='display:none'>19]</span></td>
<td class=xl177>Timings[<span style='display:none'>20]</span></td>
<td class=xl177>Timings[<span style='display:none'>21]</span></td>
<td class=xl177>Timings[<span style='display:none'>22]</span></td>
<td class=xl177>Timings[<span style='display:none'>23]</span></td>
<td class=xl177>Timings[<span style='display:none'>24]</span></td>
<td class=xl177>Timings[<span style='display:none'>25]</span></td>
<td class=xl177>Timings[<span style='display:none'>26]</span></td>
<td class=xl177>Timings[<span style='display:none'>27]</span></td>
<td class=xl177>Timings[<span style='display:none'>28]</span></td>
<td class=xl177>Timings[<span style='display:none'>29]</span></td>
<td class=xl177 colspan=2 style='mso-ignore:colspan'>Timings[30]</td>
</tr>
<tr class=xl177 height=200 style='mso-height-source:userset;height:150.0pt'>
<td height=200 class=xl177 style='height:150.0pt'>技能ID</td>
<td class=xl178 width=124 style='width:93pt'>这个单元格可以自定义注释内容<br>
↓注释</td>
<td class=xl179 width=169 style='width:127pt'><font class="font32">公共窗口类型<br>
自定义窗口类型数字请从100000开始使用</font><font class="font17"><br>
11 技能释放时间<br>
12 技能后摇时间<br>
13 可闪避时间<br>
14 连段释放时间<br>
15 长按判定时间</font></td>
<td class=xl179 width=129 style='width:97pt'><font class="font32">填写格式<br>
</font><font class="font17">参数间用|分割<br>
参数1窗口类型<br>
参数2开始时间<br>
参数3结束时间</font></td>
<td class=xl179 width=186 style='width:140pt'><font class="font32">配合使用的功能</font><font
class="font17"><br>
行为类型-判断技能时间轴</font></td>
<td class=xl180> </td>
<td class=xl180> </td>
<td class=xl180> </td>
<td class=xl180> </td>
<td class=xl180> </td>
<td class=xl180> </td>
<td class=xl180> </td>
<td class=xl180> </td>
<td class=xl180> </td>
<td class=xl180> </td>
<td class=xl180> </td>
<td class=xl180> </td>
<td class=xl180> </td>
<td class=xl180> </td>
<td class=xl180> </td>
<td class=xl180> </td>
<td class=xl180> </td>
<td class=xl180> </td>
<td class=xl180> </td>
<td class=xl180> </td>
<td class=xl180> </td>
<td class=xl180> </td>
<td class=xl180> </td>
<td class=xl180> </td>
<td class=xl180> </td>
<td class=xl180> </td>
<td class=xl180> </td>
<td class=xl177></td>
</tr>
<tr class=xl181 height=19 style='height:14.0pt'>
<td height=19 class=xl181 style='height:14.0pt'>默认</td>
<td class=xl181> </td>
<td class=xl181> </td>
<td class=xl181> </td>
<td class=xl181> </td>
<td class=xl181> </td>
<td class=xl181> </td>
<td class=xl181> </td>
<td class=xl181> </td>
<td class=xl181> </td>
<td class=xl181> </td>
<td class=xl181> </td>
<td class=xl181> </td>
<td class=xl181> </td>
<td class=xl181> </td>
<td class=xl181> </td>
<td class=xl181> </td>
<td class=xl181> </td>
<td class=xl181> </td>
<td class=xl181> </td>
<td class=xl181> </td>
<td class=xl181> </td>
<td class=xl181> </td>
<td class=xl181> </td>
<td class=xl181> </td>
<td class=xl181> </td>
<td class=xl181> </td>
<td class=xl181> </td>
<td class=xl181> </td>
<td class=xl181> </td>
<td class=xl181> </td>
<td class=xl181> </td>
<td class=xl181> </td>
</tr>
<![if supportMisalignedColumns]>
<tr height=0 style='display:none'>
<td width=100 style='width:75pt'></td>
<td width=124 style='width:93pt'></td>
<td width=169 style='width:127pt'></td>
<td width=129 style='width:97pt'></td>
<td width=186 style='width:140pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
</tr>
<![endif]>
</table>
</body>
</html>

View File

@ -0,0 +1,158 @@
<html xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=Content-Type content="text/html; charset=gb2312">
<meta name=ProgId content=Excel.Sheet>
<meta name=Generator content="Microsoft Excel 15">
<link id=Main-File rel=Main-File href="../d单位G071.html">
<link rel=File-List href=filelist.xml>
<title>个人测试</title>
<link rel=Stylesheet href=stylesheet.css>
<style>
<!--table
{mso-displayed-decimal-separator:"\.";
mso-displayed-thousand-separator:"\,";}
@page
{margin:.75in .7in .75in .7in;
mso-header-margin:.3in;
mso-footer-margin:.3in;}
ruby
{ruby-align:left;}
rt
{color:windowtext;
font-size:9.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:宋体;
mso-generic-font-family:auto;
mso-font-charset:134;
mso-char-type:none;
display:none;}
-->
</style>
<![if !supportTabStrip]><script language="JavaScript">
<!--
function fnUpdateTabs()
{
if (parent.window.g_iIEVer>=4) {
if (parent.document.readyState=="complete"
&& parent.frames['frTabs'].document.readyState=="complete")
parent.fnSetActiveSheet(2);
else
window.setTimeout("fnUpdateTabs();",150);
}
}
if (window.name!="frSheet")
window.location.replace("../d单位G071.html");
else
fnUpdateTabs();
//-->
</script>
<![endif]>
</head>
<body link=blue vlink=purple class=xl78>
<table border=0 cellpadding=0 cellspacing=0 width=755 style='border-collapse:
collapse;table-layout:fixed;width:570pt'>
<col class=xl78 width=151 span=5 style='width:114pt'>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl78 width=151 style='height:14.0pt;width:114pt'></td>
<td class=xl78 width=151 style='width:114pt'></td>
<td class=xl78 width=151 style='width:114pt'>备注</td>
<td class=xl78 width=151 style='width:114pt'></td>
<td class=xl78 width=151 style='width:114pt'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl78 style='height:14.0pt'>每秒帧数</td>
<td class=xl78>20</td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl78 style='height:14.0pt'>击飞水平速度</td>
<td class=xl78>1.5</td>
<td class=xl78>0.25</td>
<td class=xl78></td>
<td class=xl78></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl78 style='height:14.0pt'>击飞水平加速度</td>
<td class=xl78>-2</td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl78 style='height:14.0pt'>击飞上升初速度</td>
<td class=xl78>3</td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl78 style='height:14.0pt'>击飞下降初速度</td>
<td class=xl78>0</td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl78 style='height:14.0pt'>单次受击无敌值</td>
<td class=xl78>0</td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl78 style='height:14.0pt'>单次击飞无敌值</td>
<td class=xl78>1</td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl78 style='height:14.0pt'>单次击倒无敌值</td>
<td class=xl78>3</td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl78 style='height:14.0pt'>连续击倒无敌时间</td>
<td class=xl78>2</td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl78 style='height:14.0pt'>死亡特效额外时间</td>
<td class=xl78>-1</td>
<td class=xl78 colspan=3 style='mso-ignore:colspan'>怪物死亡后,死亡时间额外增加多少秒来播放爆炸特效</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl78 style='height:14.0pt'>球槽长度</td>
<td class=xl78>8</td>
<td class=xl78></td>
<td class=xl78></td>
<td class=xl78></td>
</tr>
<![if supportMisalignedColumns]>
<tr height=0 style='display:none'>
<td width=151 style='width:114pt'></td>
<td width=151 style='width:114pt'></td>
<td width=151 style='width:114pt'></td>
<td width=151 style='width:114pt'></td>
<td width=151 style='width:114pt'></td>
</tr>
<![endif]>
</table>
</body>
</html>

View File

@ -0,0 +1,107 @@
<html xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=Content-Type content="text/html; charset=gb2312">
<meta name=ProgId content=Excel.Sheet>
<meta name=Generator content="Microsoft Excel 15">
<link id=Main-File rel=Main-File href="../d单位G071.html">
<link rel=File-List href=filelist.xml>
<title>个人测试</title>
<link rel=Stylesheet href=stylesheet.css>
<style>
<!--table
{mso-displayed-decimal-separator:"\.";
mso-displayed-thousand-separator:"\,";}
@page
{margin:.75in .7in .75in .7in;
mso-header-margin:.3in;
mso-footer-margin:.3in;}
ruby
{ruby-align:left;}
rt
{color:windowtext;
font-size:9.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:宋体;
mso-generic-font-family:auto;
mso-font-charset:134;
mso-char-type:none;
display:none;}
-->
</style>
<![if !supportTabStrip]><script language="JavaScript">
<!--
function fnUpdateTabs()
{
if (parent.window.g_iIEVer>=4) {
if (parent.document.readyState=="complete"
&& parent.frames['frTabs'].document.readyState=="complete")
parent.fnSetActiveSheet(3);
else
window.setTimeout("fnUpdateTabs();",150);
}
}
if (window.name!="frSheet")
window.location.replace("../d单位G071.html");
else
fnUpdateTabs();
//-->
</script>
<![endif]>
</head>
<body link=blue vlink=purple>
<table border=0 cellpadding=0 cellspacing=0 width=576 style='border-collapse:
collapse;table-layout:fixed;width:432pt'>
<col width=64 span=9 style='width:48pt'>
<tr height=19 style='height:14.0pt'>
<td height=19 width=64 style='height:14.0pt;width:48pt'>设置</td>
<td width=64 style='width:48pt'>说明</td>
<td width=64 style='width:48pt'>参数1</td>
<td width=64 style='width:48pt'>参数2</td>
<td width=64 style='width:48pt'>参数3</td>
<td width=64 style='width:48pt'>参数4</td>
<td width=64 style='width:48pt'>参数5</td>
<td width=64 style='width:48pt'>参数6</td>
<td width=64 style='width:48pt'>参数7</td>
</tr>
<tr height=317 style='height:238.0pt'>
<td height=317 style='height:238.0pt'>行为节点<span style='display:none'>显示注释</span></td>
<td class=xl74 width=64 style='width:48pt'>0无操作<br>
1编辑相关单元格后显示注释<br>
2编辑相关单元格后删除注释<br>
考虑到Excel注释会占用大量资源的关系不建议使用。</td>
<td align=right>0</td>
<td colspan=6 style='mso-ignore:colspan'></td>
</tr>
<tr height=112 style='height:84.0pt'>
<td height=112 style='height:84.0pt'>行为表格<span style='display:none'>顶部显示说明</span></td>
<td class=xl74 width=64 style='width:48pt'>0无操作<br>
1编辑相关单元格后显示说明</td>
<td align=right>1</td>
<td colspan=6 style='mso-ignore:colspan'></td>
</tr>
<![if supportMisalignedColumns]>
<tr height=0 style='display:none'>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
</tr>
<![endif]>
</table>
</body>
</html>

View File

@ -0,0 +1,366 @@
<html xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=Content-Type content="text/html; charset=gb2312">
<meta name=ProgId content=Excel.Sheet>
<meta name=Generator content="Microsoft Excel 15">
<link id=Main-File rel=Main-File href="../d单位G071.html">
<link rel=File-List href=filelist.xml>
<!--[if !mso]>
<style>
v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
x\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
</style>
<![endif]-->
<title>个人测试</title>
<link rel=Stylesheet href=stylesheet.css>
<style>
<!--table
{mso-displayed-decimal-separator:"\.";
mso-displayed-thousand-separator:"\,";}
@page
{margin:.75in .7in .75in .7in;
mso-header-margin:.3in;
mso-footer-margin:.3in;}
ruby
{ruby-align:left;}
rt
{color:windowtext;
font-size:9.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:宋体;
mso-generic-font-family:auto;
mso-font-charset:134;
mso-char-type:none;
display:none;}
-->
</style>
<![if !supportTabStrip]><script language="JavaScript">
<!--
function fnUpdateTabs()
{
if (parent.window.g_iIEVer>=4) {
if (parent.document.readyState=="complete"
&& parent.frames['frTabs'].document.readyState=="complete")
parent.fnSetActiveSheet(4);
else
window.setTimeout("fnUpdateTabs();",150);
}
}
if (window.name!="frSheet")
window.location.replace("../d单位G071.html");
else
fnUpdateTabs();
//-->
</script>
<![endif]>
</head>
<body link=blue vlink=purple>
<table border=0 cellpadding=0 cellspacing=0 width=2760 style='border-collapse:
collapse;table-layout:fixed;width:2070pt'>
<col width=111 style='mso-width-source:userset;mso-width-alt:3863;width:83pt'>
<col width=281 style='mso-width-source:userset;mso-width-alt:9821;width:211pt'>
<col width=64 span=37 style='width:48pt'>
<tr height=19 style='height:14.0pt'>
<td height=19 width=111 style='height:14.0pt;width:83pt'></td>
<td width=281 style='width:211pt'>6位</td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl82 style='height:14.0pt'>最多球数</td>
<td align=left valign=top><!--[if gte vml 1]><v:shapetype id="_x0000_t75"
coordsize="21600,21600" o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
filled="f" stroked="f">
<v:stroke joinstyle="miter"/>
<v:formulas>
<v:f eqn="if lineDrawn pixelLineWidth 0"/>
<v:f eqn="sum @0 1 0"/>
<v:f eqn="sum 0 0 @1"/>
<v:f eqn="prod @2 1 2"/>
<v:f eqn="prod @3 21600 pixelWidth"/>
<v:f eqn="prod @3 21600 pixelHeight"/>
<v:f eqn="sum @0 0 1"/>
<v:f eqn="prod @6 1 2"/>
<v:f eqn="prod @7 21600 pixelWidth"/>
<v:f eqn="sum @8 21600 0"/>
<v:f eqn="prod @7 21600 pixelHeight"/>
<v:f eqn="sum @10 21600 0"/>
</v:formulas>
<v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
<o:lock v:ext="edit" aspectratio="t"/>
</v:shapetype><v:shape id="矩形_x0020_1" o:spid="_x0000_s1025" type="#_x0000_t75"
style='position:absolute;margin-left:7pt;margin-top:4pt;width:205pt;
height:39pt;z-index:1;visibility:visible;mso-wrap-style:square;
v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDw94q7/QAAAOIBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbJSRzUrEMBDH
74LvEOYqbaoHEWm6B6tHFV0fYEimbdg2CZlYd9/edD8u4goeZ+b/8SOpV9tpFDNFtt4puC4rEOS0
N9b1Cj7WT8UdCE7oDI7ekYIdMayay4t6vQvEIrsdKxhSCvdSsh5oQi59IJcvnY8TpjzGXgbUG+xJ
3lTVrdTeJXKpSEsGNHVLHX6OSTxu8/pAEmlkEA8H4dKlAEMYrcaUSeXszI+W4thQZudew4MNfJUx
QP7asFzOFxx9L/lpojUkXjGmZ5wyhjSRJQ8YKGvKv1MWzIkL33VWU9lGfl98J6hz4cZ/uUjzf7Pb
bHuj+ZQu9z/UfAMAAP//AwBQSwMEFAAGAAgAAAAhADHdX2HSAAAAjwEAAAsAAABfcmVscy8ucmVs
c6SQwWrDMAyG74O9g9G9cdpDGaNOb4VeSwe7CltJTGPLWCZt376mMFhGbzvqF/o+8e/2tzCpmbJ4
jgbWTQuKomXn42Dg63xYfYCSgtHhxJEM3Elg372/7U40YalHMvokqlKiGBhLSZ9aix0poDScKNZN
zzlgqWMedEJ7wYH0pm23Ov9mQLdgqqMzkI9uA+p8T9X8hx28zSzcl8Zy0Nz33r6iasfXeKK5UjAP
VAy4LM8w09zU50C/9q7/6ZURE31X/kL8TKv1x6wXNXYPAAAA//8DAFBLAwQUAAYACAAAACEAGCAM
TbACAAAtBwAAEAAAAGRycy9zaGFwZXhtbC54bWysVbtu2zAU3Qv0H1jujiQ3fkSwFLQOmiVIgrr5
AFaiLKEUKZCEX2uXLAEytHPQTu0PdMvfNHE/o5ekpDbuY4idwaHuvbzn3CdHh4uSoRmVqhA8wsGe
jxHliUgLPo3wxZtXnSFGShOeEiY4jfCSKnwYP30yWqQyJDzJhUTggqsQBBHOta5Cz1NJTkui9kRF
OWgzIUui4VNOvVSSOTgvmdf1/b6nKklJqnJK9ZHT4Nj61nMxpoy9sBBOlElRulMiWByMPMPBHO0F
OJxlWXzQ6/b8VmUkVivFvLlhjo3M6HuDoLkBKnvDev4Fp0ULEXdb363MXPkH5L6z3oSsrR/ANSCq
QiVJpIhwenf18fvt1bE/CPZyXbJn998u19fvf3z6sv5wc395jZGmC80K/i7Cddb4bFKdy5rZ6exc
oiKNcBcjTkqo3vrm693tZxRgrzUx9vBlI/79trJ+SLjIZFlXmDyiviUpOHAjocgytIjwYBj4PWiy
JbDqDvu+b6iQEOJACaiD5wd+3+gTMNjvDaBHjIHneBjLSip9TMXWnJBxFGFJE235kdmJ0g6qgaiz
4jJhek3pJaOGBOOvKYRj+/7RWYHSQMRdi24Hho6ZRDPCIkyShHIdOFVOUurEPR/+6ny0N2x2LCHD
LCsY2xm3moAZ5j+5uVzVeLaGWQbJ3Bm4/7/EOHDaINrIBd8deFlwIf9GgEFV6sgdXtMkrjVMl+jF
S5EuDaW38B9GcNs+gfWsz+AnY2Ie4YQVFUawd1ebMqnZWED3wPi4zQzGWroBY0pPDMVtyUDsMIPb
erFOIDOETeHVaUlKI5cgZ8Q8P6u8Mz6FWJg+sd+Udy4m8BytYE8Mm82h442taJaFtkMB7uBc1RVq
ymI3nQKpfT1YAYN2RDQxRbXVe/juWJnLZvwTAAD//wMAUEsDBBQABgAIAAAAIQDfuMnWHQEAAJcB
AAAPAAAAZHJzL2Rvd25yZXYueG1sXJBLT8MwEITvSPwHa5G4IGo3FAihblWBoPSClIKQuJlk8xCx
XdkmTfn1bB8oiJM1s/7GOx5PO92wFp2vrZEwHAhgaDKb16aU8PrycB4D80GZXDXWoIQNephOjo/G
Ksnt2qTYLkPJKMT4REmoQlglnPusQq38wK7Q0KywTqtA0pU8d2pN4brhkRBXXKva0AuVWuFdhdnn
8ktLaMvuUZxdzIXtFvN7s8C30fsikvL0pJvdAgvYhf7ygX7KJUTAivnmw9V5qnxAJ4HqUDkqBhPa
uGtmJqusY0WKvv6mOnu/cFYzZ9dbzTLb7E7Sz0XhMUi4FLGgJJr8OnF8Qw7fhga7R0cHlJb4gw6j
63/o3iGU9wvtRP+fkx8AAAD//wMAUEsBAi0AFAAGAAgAAAAhAPD3irv9AAAA4gEAABMAAAAAAAAA
AAAAAAAAAAAAAFtDb250ZW50X1R5cGVzXS54bWxQSwECLQAUAAYACAAAACEAMd1fYdIAAACPAQAA
CwAAAAAAAAAAAAAAAAAuAQAAX3JlbHMvLnJlbHNQSwECLQAUAAYACAAAACEAGCAMTbACAAAtBwAA
EAAAAAAAAAAAAAAAAAApAgAAZHJzL3NoYXBleG1sLnhtbFBLAQItABQABgAIAAAAIQDfuMnWHQEA
AJcBAAAPAAAAAAAAAAAAAAAAAAcFAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAQABAD1AAAAUQYA
AAAA
" o:button="t" o:insetmode="auto">
<v:fill o:detectmouseclick="t"/>
<v:imagedata src="image001.png" o:title=""/>
<o:lock v:ext="edit" aspectratio="f"/>
<x:ClientData ObjectType="Pict">
<x:SizeWithCells/>
<x:FmlaMacro>d单位G071.html!消球表生成</x:FmlaMacro>
<x:CF>Bitmap</x:CF>
<x:AutoPict/>
</x:ClientData>
</v:shape><![endif]--><![if !vml]><span style='mso-ignore:vglayout;
position:absolute;z-index:1;margin-left:9px;margin-top:5px;width:273px;
height:52px'><img width=273 height=52 src=image002.png v:shapes="矩形_x0020_1"></span><![endif]><span
style='mso-ignore:vglayout2'>
<table cellpadding=0 cellspacing=0>
<tr>
<td height=19 align=right width=281 style='height:14.0pt;width:211pt'>1</td>
</tr>
</table>
</span></td>
<td align=right>2</td>
<td align=right>3</td>
<td align=right>4</td>
<td align=right>5</td>
<td align=right>6</td>
<td align=right>7</td>
<td align=right>8</td>
<td align=right>9</td>
<td align=right>10</td>
<td align=right>11</td>
<td align=right>12</td>
<td align=right>13</td>
<td align=right>14</td>
<td align=right>15</td>
<td align=right>16</td>
<td align=right>17</td>
<td align=right>18</td>
<td align=right>19</td>
<td align=right>20</td>
<td align=right>21</td>
<td align=right>22</td>
<td align=right>23</td>
<td align=right>24</td>
<td align=right>25</td>
<td align=right>26</td>
<td align=right>27</td>
<td align=right>28</td>
<td align=right>29</td>
<td align=right>30</td>
<td align=right>31</td>
<td align=right>32</td>
<td align=right>33</td>
<td align=right>34</td>
<td align=right>35</td>
<td align=right>36</td>
<td align=right>37</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl82 style='height:14.0pt;border-top:none'>6</td>
<td colspan=38 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 colspan=39 style='height:14.0pt;mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'></td>
<td>Id</td>
<td>Icon[1]</td>
<td>Icon[2]</td>
<td>Icon[3]</td>
<td>Icon[4]</td>
<td>Icon[5]</td>
<td>Icon[6]</td>
<td>LinkEffe<span style='display:none'>ct[1]</span></td>
<td>LinkEffe<span style='display:none'>ct[2]</span></td>
<td>LinkEffe<span style='display:none'>ct[3]</span></td>
<td>LinkEffe<span style='display:none'>ct[4]</span></td>
<td>LinkEffe<span style='display:none'>ct[5]</span></td>
<td>LinkEffe<span style='display:none'>ct[6]</span></td>
<td>ReleaseE<span style='display:none'>ffect[1]</span></td>
<td>ReleaseE<span style='display:none'>ffect[2]</span></td>
<td>ReleaseE<span style='display:none'>ffect[3]</span></td>
<td>ReleaseE<span style='display:none'>ffect[4]</span></td>
<td>ReleaseE<span style='display:none'>ffect[5]</span></td>
<td>ReleaseE<span style='display:none'>ffect[6]</span></td>
<td>ExEffect<span style='display:none'>[1]</span></td>
<td>ExEffect<span style='display:none'>[2]</span></td>
<td>ExEffect<span style='display:none'>[3]</span></td>
<td>ExEffect<span style='display:none'>[4]</span></td>
<td>ExEffect<span style='display:none'>[5]</span></td>
<td>ExEffect<span style='display:none'>[6]</span></td>
<td>ClickEff<span style='display:none'>ect[1]</span></td>
<td>ClickEff<span style='display:none'>ect[2]</span></td>
<td>ClickEff<span style='display:none'>ect[3]</span></td>
<td>ClickEff<span style='display:none'>ect[4]</span></td>
<td>ClickEff<span style='display:none'>ect[5]</span></td>
<td>ClickEff<span style='display:none'>ect[6]</span></td>
<td>FillBarE<span style='display:none'>ffect[1]</span></td>
<td>FillBarE<span style='display:none'>ffect[2]</span></td>
<td>FillBarE<span style='display:none'>ffect[3]</span></td>
<td>FillBarE<span style='display:none'>ffect[4]</span></td>
<td>FillBarE<span style='display:none'>ffect[5]</span></td>
<td colspan=2 style='mso-ignore:colspan'>FillBarEffect[6]</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>名字</td>
<td>球ID</td>
<td>图标1</td>
<td>图标2</td>
<td>图标3</td>
<td>图标4</td>
<td>图标5</td>
<td>图标6</td>
<td>连接特效<span style='display:none'>1</span></td>
<td>连接特效<span style='display:none'>2</span></td>
<td>连接特效<span style='display:none'>3</span></td>
<td>连接特效<span style='display:none'>4</span></td>
<td>连接特效<span style='display:none'>5</span></td>
<td>连接特效<span style='display:none'>6</span></td>
<td>消除特效<span style='display:none'>1</span></td>
<td>消除特效<span style='display:none'>2</span></td>
<td>消除特效<span style='display:none'>3</span></td>
<td>消除特效<span style='display:none'>4</span></td>
<td>消除特效<span style='display:none'>5</span></td>
<td>消除特效<span style='display:none'>6</span></td>
<td>EX特效1</td>
<td>EX特效2</td>
<td>EX特效3</td>
<td>EX特效4</td>
<td>EX特效5</td>
<td>EX特效6</td>
<td>点击特效<span style='display:none'>1</span></td>
<td>点击特效<span style='display:none'>2</span></td>
<td>点击特效<span style='display:none'>3</span></td>
<td>点击特效<span style='display:none'>4</span></td>
<td>点击特效<span style='display:none'>5</span></td>
<td>点击特效<span style='display:none'>6</span></td>
<td>填充特效<span style='display:none'>1</span></td>
<td>填充特效<span style='display:none'>2</span></td>
<td>填充特效<span style='display:none'>3</span></td>
<td>填充特效<span style='display:none'>4</span></td>
<td>填充特效<span style='display:none'>5</span></td>
<td colspan=2 style='mso-ignore:colspan'>填充特效6</td>
</tr>
<![if supportMisalignedColumns]>
<tr height=0 style='display:none'>
<td width=111 style='width:83pt'></td>
<td width=281 style='width:211pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
</tr>
<![endif]>
</table>
</body>
</html>

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,748 @@
<html xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=Content-Type content="text/html; charset=gb2312">
<meta name=ProgId content=Excel.Sheet>
<meta name=Generator content="Microsoft Excel 15">
<link id=Main-File rel=Main-File href="../d单位G071.html">
<link rel=File-List href=filelist.xml>
<title>个人测试</title>
<link rel=Stylesheet href=stylesheet.css>
<style>
<!--table
{mso-displayed-decimal-separator:"\.";
mso-displayed-thousand-separator:"\,";}
@page
{margin:.75in .7in .75in .7in;
mso-header-margin:.3in;
mso-footer-margin:.3in;}
ruby
{ruby-align:left;}
rt
{color:windowtext;
font-size:9.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:宋体;
mso-generic-font-family:auto;
mso-font-charset:134;
mso-char-type:none;
display:none;}
-->
</style>
<![if !supportTabStrip]><script language="JavaScript">
<!--
function fnUpdateTabs()
{
if (parent.window.g_iIEVer>=4) {
if (parent.document.readyState=="complete"
&& parent.frames['frTabs'].document.readyState=="complete")
parent.fnSetActiveSheet(6);
else
window.setTimeout("fnUpdateTabs();",150);
}
}
if (window.name!="frSheet")
window.location.replace("../d单位G071.html");
else
fnUpdateTabs();
//-->
</script>
<![endif]>
</head>
<body link=blue vlink=purple>
<table border=0 cellpadding=0 cellspacing=0 width=2522 style='border-collapse:
collapse;table-layout:fixed;width:1892pt'>
<col width=85 style='mso-width-source:userset;mso-width-alt:2978;width:64pt'>
<col width=247 style='mso-width-source:userset;mso-width-alt:8610;width:185pt'>
<col width=159 style='mso-width-source:userset;mso-width-alt:5538;width:119pt'>
<col width=230 style='mso-width-source:userset;mso-width-alt:8029;width:173pt'>
<col width=201 style='mso-width-source:userset;mso-width-alt:7005;width:151pt'>
<col width=64 span=25 style='width:48pt'>
<tr height=37 style='height:28.0pt'>
<td height=37 width=85 style='height:28.0pt;width:64pt'>普通子弹</td>
<td width=247 style='width:185pt'>Cast</td>
<td width=159 style='width:119pt'>Cast普通子弹:普通子弹</td>
<td class=xl74 width=230 style='width:173pt'>发射子弹帧事件无法添加参数。<br>
因为导出时会合并多过子弹参数。</td>
<td width=201 style='width:151pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
</tr>
<tr height=546 style='height:409.5pt'>
<td height=546 style='height:409.5pt'>特效</td>
<td>Effect</td>
<td>Effect特效:技能特效</td>
<td class=xl74 width=230 style='width:173pt'><font class="font11">1:特效<br>
填写格式(特效名之外选填)<br>
特效名;偏移X</font><font class="font11">;</font><font class="font11">偏移Y</font><font
class="font11">;</font><font class="font11">偏移Z;旋转X</font><font class="font11">;</font><font
class="font11">旋转Y</font><font class="font11">;</font><font class="font11">旋转Z</font></td>
<td>2:骨骼名(不填表示脚底原点<span style='display:none'></span></td>
<td class=xl74 width=64 style='width:48pt'><font class="font11">3:
技能打断后处理<br>
参数写法 类型;参数1;参数2;...<br>
</font><font class="font11"><br>
类型</font><font class="font11">1 : 技能打断后移除特效<br>
<span style='mso-spacerun:yes'>&nbsp;&nbsp;&nbsp; </span>参数1 :
若特效有End动画(需要动画状态机里的End) 则X秒后取消绑定。<br>
<br>
类型2 : 技能打断后取消绑定<br>
<span style='mso-spacerun:yes'>&nbsp;&nbsp;&nbsp;&nbsp; </span>参数1 :
技能打断X秒后取消绑定</font></td>
<td>4:关闭队<span style='display:none'>友特效时是否显示;默认值为空</span></td>
<td>5:跟随技<span style='display:none'>能打断帧数 (需要设置 跟随技能打断)</span></td>
<td class=xl74 width=64 style='width:48pt'>6跟随位移时间<br>
默认-1 永久跟随</td>
<td class=xl74 width=64 style='width:48pt'><font class="font11">7跟随旋转时间<br>
默认-1 </font><font class="font11">永久跟随</font></td>
<td class=xl173 width=64 style='width:48pt'>8跟随缩放时间<br>
默认0 不跟随<br>
填-1 永久跟随</td>
<td class=xl173 width=64 style='width:48pt'>9:特效生命周期<br>
默认-1 <br>
特效自身生命周期&gt;0 填写时长<br>
(填写时长大于特效自身,不延长时间)</td>
<td class=xl74 width=64 style='width:48pt'>10是否武器特效<br>
默认0 常规特效<br>
1 = 武器特效</td>
<td class=xl74 width=64 style='width:48pt'>11跟随显隐时间<br>
默认-1 永久跟随<br>
0不跟随<br>
&gt;0 跟随时间</td>
<td class=xl74 width=64 style='width:48pt'><font class="font11">1</font><font
class="font11">2</font><font class="font11">:跟随</font><font class="font11">NPC速率时间<br>
</font><font class="font11">-1 永久跟随<br>
0不跟随<br>
&gt;0 跟随时间</font></td>
<td colspan=15 style='mso-ignore:colspan'></td>
</tr>
<tr height=112 style='height:84.0pt'>
<td height=112 style='height:84.0pt'>位移</td>
<td>Move</td>
<td>Move位移:移动到离目标<span style='display:none'>X米</span></td>
<td>1:初始速度</td>
<td>2:持续时间</td>
<td>3:加速度</td>
<td class=xl74 width=64 style='width:48pt'><font class="font11">4:增加屏蔽当前动作位移的帧数<br>
无效参数</font><font class="font11"> 别用</font></td>
<td colspan=13 style='mso-ignore:colspan'><font class="font11">5:动态修改技能移动类型</font><font
class="font11">,</font><font class="font11">在当前技能执行过程中有效(如果不需要动态修改技能移动类型</font><font
class="font11"> </font><font class="font11">务必不填或者填小于</font><font
class="font11">0</font><font class="font11">的值</font><font class="font11"> </font><font
class="font11">例如</font><font class="font11">-1</font><font class="font11"></font></td>
<td colspan=10 style='mso-ignore:colspan'></td>
</tr>
<tr height=417 style='height:312.5pt'>
<td height=417 class=xl198 style='height:312.5pt'>特殊位移XZ</td>
<td class=xl198><font class="font11">Move</font><font class="font11">XZ</font></td>
<td class=xl257 width=159 style='width:119pt'>特殊移动方式XZ轴<br>
为角色特殊技能定制的移动方式</td>
<td class=xl257 width=230 style='width:173pt'>实例ID(int)<br>
标记挂载特殊移动实例的ID<br>
未来用来拓展动态移除用</td>
<td class=xl257 width=201 style='width:151pt'><font class="font11">特殊移动方式(int)<br>
1-固定时间,恒定第一帧面向目标的方向移动一定距离<br>
2-恒定初始面向进行位移<br>
3-锁定面向进行位移<br>
4-固定向技能目标位移 看情况中止<br>
5-围绕目标Npc旋转</font><font class="font11"><br>
6-定时限速位移</font></td>
<td class=xl257 width=64 style='width:48pt'>1-移动到距离目标多远的位置<br>
2-移动时间 秒<br>
3-移动时间 秒<br>
4-移动时间 秒<br>
5-移动时间 秒<br>
6-移动时间<span style='mso-spacerun:yes'>&nbsp; </span></td>
<td class=xl257 width=64 style='width:48pt'>1-移动时间<br>
2-移动方向 角度<br>
3-移动方向 角度<br>
4-离目标X距离停下 (负数则为身后)<br>
5-角速度(角度/秒)<br>
6-距离目标X距离停止不可为负数避免来回来去穿透</td>
<td class=xl257 width=64 style='width:48pt'>2-移动速度 米/秒<br>
3-移动速度 米/秒<br>
4-移动速度 米/秒<br>
5-Npc间距离(围绕半径<br>
6-最大移动速度(由于速度限制导致没有移动到目标,时间到就停下)</td>
<td class=xl257 width=64 style='width:48pt'>2-加速度 速度/秒<br>
3-加速度 速度/秒<br>
4-加速度 速度/秒</td>
<td class=xl257 width=64 style='width:48pt'><font class="font11">4-</font><font
class="font56">到达</font><font class="font57">目标范围内停止帧事件(目标在身后时不生效)</font><font
class="font11"><br>
6-如果目标主动向自身移动到了范围内是否失效如果配0则目标远离自身后依然会继续跟过去如果配1则到范围内该功能立即失效</font></td>
<td class=xl257 width=64 style='width:48pt'>暂时没有喔</td>
<td class=xl198> </td>
<td class=xl198> </td>
<td class=xl198> </td>
<td class=xl198> </td>
<td class=xl198> </td>
<td class=xl198> </td>
<td class=xl198> </td>
<td class=xl198> </td>
<td class=xl198> </td>
<td class=xl198> </td>
<td class=xl198> </td>
<td class=xl198> </td>
<td class=xl198> </td>
<td class=xl198> </td>
<td class=xl198> </td>
<td class=xl198> </td>
<td class=xl198> </td>
<td class=xl198> </td>
<td class=xl198> </td>
</tr>
<tr height=75 style='height:56.0pt'>
<td height=75 style='height:56.0pt'>特殊位移PY</td>
<td>MovePY</td>
<td class=xl74 width=159 style='width:119pt'>特殊移动方式表现层Y轴<br>
为角色特殊技能定制的移动方式</td>
<td class=xl74 width=230 style='width:173pt'>实例ID(int)<br>
标记挂载特殊移动实例的ID<br>
未来用来拓展动态移除用</td>
<td class=xl74 width=201 style='width:151pt'>特殊移动方式(int)<br>
1-固定时间表现Npc移动到相对目标表现Npc高度相对的高度。</td>
<td class=xl74 width=64 style='width:48pt'>参数1<br>
1-移动到距离目标相对高度</td>
<td class=xl74 width=64 style='width:48pt'>参数2<br>
2-移动时间</td>
<td class=xl74 width=64 style='width:48pt'>参数3</td>
<td class=xl74 width=64 style='width:48pt'>参数4</td>
<td class=xl74 width=64 style='width:48pt'>参数5</td>
<td colspan=20 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>子子弹</td>
<td></td>
<td>子子弹:被召唤的子弹道</td>
<td colspan=27 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>Magic</td>
<td>Magic</td>
<td>Magic:只需要填携带效<span style='display:none'>果即可</span></td>
<td>1:效果Id</td>
<td>2:效果等级</td>
<td colspan=5 style='mso-ignore:colspan'>3:buff绑定技能的持续帧数大于0时生效</td>
<td colspan=20 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>技能转向</td>
<td>Turn</td>
<td>Turn技能转向:技能附带<span style='display:none'>转向只有在技能面朝向类型为4的时候才生效</span></td>
<td>1:角速度(角度/秒)</td>
<td>2:持续时间</td>
<td colspan=13 style='mso-ignore:colspan'>3:转向类型:<br>
0自转无目标<br>
1朝向目标<br>
2摇杆方向<br>
3行为树目标点需使用节点DoSetSkillTurnPosition<br>
4摇杆反方向</td>
<td colspan=12 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>震屏</td>
<td>Shake</td>
<td>Shake震屏:技能震屏</td>
<td>1:震动类型1纯随机 2向上 3向下<span style='display:none'> 4向内 5向外</span></td>
<td>2:震动强度</td>
<td>3:震屏衰<span style='display:none'>减(每秒振幅衰减量)</span></td>
<td>4:震动频<span style='display:none'>率(次/秒)</span></td>
<td>5:持续时<span style='display:none'></span></td>
<td colspan=2 style='mso-ignore:colspan'>6:互斥类型</td>
<td colspan=20 style='mso-ignore:colspan'></td>
</tr>
<tr height=56 style='height:42.0pt'>
<td height=56 style='height:42.0pt'>噪音</td>
<td>Noise</td>
<td class=xl74 width=159 style='width:119pt'>Noise噪音:噪音震屏<br>
噪音的特点是从随机进度开始播放资源来震动</td>
<td>1:资源名</td>
<td>2:持续时间</td>
<td>3:强度缩<span style='display:none'>放倍率</span></td>
<td colspan=2 style='mso-ignore:colspan'>4:频率缩放倍率</td>
<td colspan=22 style='mso-ignore:colspan'></td>
</tr>
<tr height=93 style='height:70.0pt'>
<td height=93 style='height:70.0pt'>纯噪音</td>
<td><font class="font11">S</font><font class="font11">tableNoise</font></td>
<td class=xl74 width=159 style='width:119pt'>StableNoise纯噪音:噪音震屏<br>
纯噪音的特点是完全按照资源从头播放来震动,没有任何随机性。</td>
<td>1:资源名</td>
<td>2:持续时间</td>
<td>3:强度缩<span style='display:none'>放倍率</span></td>
<td colspan=2 style='mso-ignore:colspan'>4:频率缩放倍率</td>
<td colspan=22 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>指哪打哪</td>
<td>IK</td>
<td>IK指哪打哪:IK</td>
<td>1:ElemenetID</td>
<td>2:持续帧数</td>
<td>3:目标骨<span style='display:none'>骼名</span></td>
<td colspan=6 style='mso-ignore:colspan'>说明:说明文档路径TOOLTABLE数据文档Z-指哪打哪)</td>
<td colspan=18 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>指哪打脚</td>
<td>IKPosition</td>
<td>IKPosition指哪打脚:IK</td>
<td>1:ElemenetID</td>
<td>2:持续帧数</td>
<td></td>
<td colspan=6 style='mso-ignore:colspan'>说明:说明文档路径TOOLTABLE数据文档Z-指哪打哪)</td>
<td colspan=18 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>音效</td>
<td>Sound</td>
<td>Sound音效:设置音效</td>
<td>1:音效ID</td>
<td>2:bool是否客户端</td>
<td colspan=25 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>特效子弹</td>
<td>Cast</td>
<td colspan=2 style='mso-ignore:colspan'>Cast特效子弹:特效用弹道</td>
<td colspan=26 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>抓取</td>
<td>Catch</td>
<td>Catch抓取配置</td>
<td>1:骨骼</td>
<td>2:MagicId</td>
<td>3:MagicI<span style='display:none'>d</span></td>
<td>4:MagicI<span style='display:none'>d</span></td>
<td>5抓取<span style='display:none'>目标的动画
当值为“KeepLastFrame”时保持住上一帧的姿势不进入特殊的被抓取动画</span></td>
<td colspan=3 style='mso-ignore:colspan'>6被抓目标的骨骼</td>
<td colspan=19 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>释放</td>
<td>CatchLoose</td>
<td>CatchLoose抓取释放</td>
<td>1:受击角度</td>
<td>2:偏移X</td>
<td>3:偏移Y</td>
<td><font class="font11">4:MagicI</font><span style='display:none'><font
class="font11">d</font><font class="font11">
如果被抓取的敌人因为特殊原因脱离了抓取状态仍然能够释放成功但这个magic加不上</font></span></td>
<td><font class="font11">5:MagicI</font><span style='display:none'><font
class="font11">d</font><font class="font11">
如果被抓取的敌人因为特殊原因脱离了抓取状态仍然能够释放成功但这个magic加不上</font></span></td>
<td><font class="font11">6:MagicI</font><span style='display:none'><font
class="font11">d</font><font class="font11">
如果被抓取的敌人因为特殊原因脱离了抓取状态仍然能够释放成功但这个magic加不上</font></span></td>
<td colspan=2 style='mso-ignore:colspan'><font class="font11">7</font><font
class="font11">:纵向偏移</font></td>
<td colspan=19 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>记录目标点</td>
<td>RecordTarget</td>
<td>RecordTarget<br>
记录目标<span style='display:none'></span></td>
<td><font class="font11">1</font><font class="font11">:持续时间</font></td>
<td>2:速度上限</td>
<td>3:偏移</td>
<td><font class="font11">4.移动方</font><span style='display:none'><font
class="font11">向(</font><font class="font11">0无限制 1接近目标 2远离目标</font></span></td>
<td colspan=4 style='mso-ignore:colspan'>5是否到时间移除0为否1为是</td>
<td colspan=19 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>武器特效</td>
<td>WeaponEffect</td>
<td>WeaponEffect<br>
武器特效</td>
<td>1.武器序号</td>
<td>2.特效名</td>
<td>3.骨骼名</td>
<td colspan=3 style='mso-ignore:colspan'>4.是否跟随技能打断</td>
<td colspan=21 style='mso-ignore:colspan'></td>
</tr>
<tr height=93 style='height:70.0pt'>
<td height=93 style='height:70.0pt'>动态角速度<span style='display:none'>转向</span></td>
<td>DynamicTurn</td>
<td class=xl74 width=159 style='width:119pt'>有BUG<br>
已废弃<br>
请用V3P6版本<br>
不能跟V3P6版本混用</td>
<td>1.转向角速度上限</td>
<td>2.持续时间</td>
<td class=xl74 width=64 style='width:48pt'>有BUG概率不生效。<br>
3.额外旋转角度</td>
<td><font class="font11">4.转向类</font><span style='display:none'><font
class="font11">型(</font><font class="font11">1.</font><font class="font11">技能目标</font><font
class="font11"> 2.</font><font class="font11">行为树目标点(需使用节点:</font><font
class="font11">DoSetSkillTurnPosition</font><font class="font11"></font></span></td>
<td colspan=7 style='mso-ignore:colspan'><font class="font11">5</font><font
class="font11">:</font><font class="font11">转向方向1.就近转 2.就远转 3.固定顺时针 4.固定逆时针)</font></td>
<td colspan=16 style='mso-ignore:colspan'></td>
</tr>
<tr height=205 style='height:154.0pt'>
<td height=205 style='height:154.0pt'><font class="font11">动态角速度</font><span
style='display:none'><font class="font11">转向V</font><font class="font11">3P6</font></span></td>
<td><font class="font11">DynamicTurn</font><font class="font11">V3P6</font></td>
<td class=xl74 width=159 style='width:119pt'><font class="font11">V3.6 飞机
舸祖<br>
</font><font class="font11">DynamicTurn</font><font class="font11">V3P6</font><font
class="font11"><br>
动态角速度<br>
保证持续时间内能朝向目标<br>
除非超过角速度上限</font></td>
<td>1.转向角速度上限</td>
<td>2.持续时间</td>
<td class=xl74 width=64 style='width:48pt'>3,目标角度偏移<br>
正数:顺时针偏移<br>
负数:逆时针偏移</td>
<td class=xl74 width=64 style='width:48pt'>4.转向类型<br>
1技能目标<br>
2行为树目标点需使用节点DoSetSkillTurnPosition</td>
<td class=xl74 width=64 style='width:48pt'>5.转向方向<br>
1就近转 <br>
2就远转 <br>
3固定顺时针 <br>
4固定逆时针</td>
<td colspan=22 style='mso-ignore:colspan'></td>
</tr>
<tr height=243 style='height:182.0pt'>
<td height=243 style='height:182.0pt'>设置技能移<span style='display:none'>动目标</span></td>
<td>RelocateMoveTarget</td>
<td class=xl74 width=159 style='width:119pt'><font class="font11">2023-02-10
V2.3 赖建南<br>
RelocateMoveTarget<br>
切换技能释放时已经定好的移动目标(坐标点)<br>
</font><font class="font24">目标Npc:Target(原始)<br>
目标坐标:CastTarget(原始)</font><font class="font11"><br>
设置坐标:RelocateMovePos<br>
</font><font class="font25">数据使用优先级</font><font class="font11"><br>
设置坐标 &gt; 目标Npc &gt; 目标坐标</font></td>
<td>参数1:RelocateType 切换类型 <br>
<span style='display:none'>为0Origin切换为技能原始目标(Npc或坐标)<br>
值为1切换为使用行为节点&quot;设置技能移动目标&quot;设置的坐标。</span></td>
<td colspan=13 style='mso-ignore:colspan'>参数2是否每帧更新<br>
值 -1:每帧更新持续到技能结束<br>
值 0:非每帧更新<br>
&gt;0:持续帧数<br>
例:如果类型为1则开启时每帧都会获取新的坐标值。</td>
<td colspan=13 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>设置技能释<span style='display:none'>放目标</span></td>
<td>RelocateCastTarget</td>
<td><font class="font11">2023-02-17 V2.3 赖建</font><span style='display:none'><font
class="font11">南<br>
RelocateCastTarget<br>
切换技能释放时已经定好的释放目标(坐标点)<br>
</font><font class="font24">目标Npc:Target<br>
目标坐标:CastTarget</font><font class="font11"><br>
设置Npc:RelocateCastNpc<br>
设置坐标:RelocateCastPos<br>
</font><font class="font25">非使用设置时的优先级</font><font class="font11"><br>
目标Npc &gt; 目标坐标<br>
</font><font class="font25">使用设置时的优先级</font><font class="font11"><br>
设置Npc &gt; 设置坐标 &gt; 目标坐标</font></span></td>
<td>参数1:RelocateType 切换类型 <br>
<span style='display:none'>为0Origin切换为技能原始目标(Npc或坐标)<br>
值为1切换为使用行为节点&quot;设置技能释放目标&quot;设置的坐标。</span></td>
<td colspan=3 style='mso-ignore:colspan'>参数2是否每次发射子弹时更新<br>
值1<br>
指0</td>
<td colspan=23 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>执行行为树</td>
<td>RunBehavior</td>
<td>2023-02-10 V2.3 赖建<span style='display:none'><br>
RunBehaviorTree<br>
执行挂载在释放技能Npc身上,触发时机为&quot;技能帧事件&quot;的行为树。<br>
配套行为节点&quot;判断技能帧事件上下文&quot;。在行为树用作判断。</span></td>
<td>参数1:限定事件Id EventId(在行为<span style='display:none'>节点里用作判断)</span></td>
<td colspan=7 style='mso-ignore:colspan'>参数2是否每帧执行<br>
值 -1:每帧执行持续到技能结束<br>
值 0:非每帧更新<br>
&gt;0:持续帧数</td>
<td colspan=19 style='mso-ignore:colspan'></td>
</tr>
<tr height=169 style='height:126.5pt'>
<td height=169 style='height:126.5pt'>关闭世界重<span style='display:none'>力影响</span></td>
<td>SetActiveGravity</td>
<td class=xl74 width=159 style='width:119pt'>v2.15 邹奕恒 杨泰舸<br>
技能期间默认会受到重力影响,该帧事件可以在技能期间关闭重力影响,并且在技能结束后重新开启;<br>
如果需要跨技能关闭重力影响,请用行为节点,别用帧事件</td>
<td class=xl175><font class="font27">参数</font><font class="font28">1</font><font
class="font27">:持续时间</font></td>
<td class=xl175></td>
<td colspan=25 style='mso-ignore:colspan'></td>
</tr>
<tr height=38 style='height:28.5pt'>
<td height=38 style='height:28.5pt'>空地状态切<span style='display:none'></span></td>
<td>SwitchAir</td>
<td class=xl74 width=159 style='width:119pt'>V2.5 郭家乐 杨泰舸<br>
空中和地面状态的切换</td>
<td colspan=2 style='mso-ignore:colspan'><font class="font27">参数</font><font
class="font28">1</font><font class="font27">:切换到空中</font><font class="font28">(1:</font><font
class="font27">空中,</font><font class="font28">0:</font><font class="font27">地面</font><font
class="font28">)</font></td>
<td class=xl74 width=64 style='width:48pt'></td>
<td colspan=24 style='mso-ignore:colspan'></td>
</tr>
<tr height=131 style='height:98.5pt'>
<td height=131 style='height:98.5pt'>设置重力继<span style='display:none'></span></td>
<td>SetGravityInherit</td>
<td class=xl74 width=159 style='width:119pt'>V2.5 郭家乐 杨泰舸<br>
为技能设置一个时间<br>
当技能结束时,如果在该时间内,<br>
则把当前技能动作重力的下落速度 覆盖至 世界重力的下落速度</td>
<td><font class="font27">参数</font><font class="font28">1:</font><font
class="font27">开启时间</font><font class="font28">(</font><font class="font27">单位秒</font><font
class="font28"><br>
0</font><font class="font27">关闭</font></td>
<td></td>
<td class=xl74 width=64 style='width:48pt'></td>
<td colspan=24 style='mso-ignore:colspan'></td>
</tr>
<tr height=187 style='height:140.0pt'>
<td height=187 style='height:140.0pt'>设置落地检<span style='display:none'></span></td>
<td>SetLandingDetection</td>
<td class=xl74 width=159 style='width:119pt'>V2.5 郭家乐 杨泰舸<br>
切换到地面设置该功能的检测时间大于0后直到技能结束、或者再次设置参数为0的期间持续进行地面检测。成功检测到地面时根据策划配置播放指定状态或者技能。<br>
</td>
<td>参数1持续检测时间时间(单位秒</td>
<td class=xl176 width=201 style='width:151pt'><font class="font29">参数</font><font
class="font30">2</font><font class="font29">:衔接方式</font><font class="font30"><br>
</font><font class="font29">不填:检测地面后直接中断技能<br>
1衔接技能<br>
2衔接到指定的状态</font><font class="font31"><br>
3衔接到落地状态</font></td>
<td class=xl74 width=64 style='width:48pt'><font class="font29">参数</font><font
class="font30">3</font><font class="font29"></font><font class="font30"><br>
</font><font class="font29">衔接方式为</font><font class="font30">1</font><font
class="font29">时:则为技能</font><font class="font30">ID<br>
</font><font class="font29">衔接方式为2时则为动画状态名</font></td>
<td class=xl74 width=64 style='width:48pt'>参数4优先级<br>
3.2版本后归为技能结束动作,受优先级影响</td>
<td colspan=23 style='mso-ignore:colspan'></td>
</tr>
<tr height=546 style='height:409.5pt'>
<td height=546 style='height:409.5pt'>设置技能动<span style='display:none'>作重力下落速度</span></td>
<td>SetSkillSpeedY</td>
<td class=xl74 width=159 style='width:119pt'>V2.5 郭家乐 杨泰舸<br>
技能结束时,该操作失效。</td>
<td>参数1应用ID</td>
<td><font class="font29">参数</font><font class="font30">2</font><font
class="font29">:优先级</font></td>
<td class=xl74 width=64 style='width:48pt'><font class="font29">参数</font><font
class="font30">3</font><font class="font29">:使用方式</font><font class="font30"><br>
-1</font><font class="font29">,移除设置操作</font><font class="font30"><br>
1</font><font class="font29">,【覆盖当前值】修改当前下落速度</font><font class="font30"><br>
2</font><font class="font29">,【叠加在当前值上】叠加下落速度,失效时移除叠加。</font><font
class="font30">(Delta</font><font class="font29">值加减</font><font
class="font30">)<br>
3</font><font class="font29">,【临时覆盖后重设回之前状态】添加额外下落速度,并使用额外下落速度。失效时移除。</font><font
class="font30"><br>
4</font><font class="font29">,【叠加后重设回之前状态】以当前下落速度的数值加叠加值添加额外下落速度。失效时移除。</font></td>
<td>参数4<span style='display:none'>数值</span></td>
<td colspan=2 style='mso-ignore:colspan'>参数5持续时间</td>
<td colspan=21 style='mso-ignore:colspan'></td>
</tr>
<tr height=416 style='height:312.0pt'>
<td height=416 style='height:312.0pt'>设置技能动<span style='display:none'>作重力下落加速度</span></td>
<td>SetSkillGAL</td>
<td class=xl74 width=159 style='width:119pt'>V2.5 郭家乐 杨泰舸<br>
技能结束时,该操作失效。</td>
<td>参数1应用ID</td>
<td><font class="font29">参数</font><font class="font30">2</font><font
class="font29">:优先级</font></td>
<td class=xl74 width=64 style='width:48pt'><font class="font29">参数</font><font
class="font30">3</font><font class="font29">:使用方式</font><font class="font30"><br>
-1</font><font class="font29">,移除设置操作</font><font class="font30"><br>
1</font><font class="font29">,【覆盖当前值】修改当前下落速度</font><font class="font30"><br>
2</font><font class="font29">,【叠加在当前值上】叠加下落速度,失效时移除叠加。</font><font
class="font30">(Delta</font><font class="font29">值加减</font><font
class="font30">)<br>
3</font><font class="font29">,【临时覆盖后重设回之前状态】添加额外下落速度,并使用额外下落速度。失效时移除。</font></td>
<td>参数4<span style='display:none'>数值</span></td>
<td colspan=2 style='mso-ignore:colspan'>参数5持续时间</td>
<td colspan=21 style='mso-ignore:colspan'></td>
</tr>
<tr height=37 style='height:28.0pt'>
<td height=37 style='height:28.0pt'>设置世界重<span style='display:none'>力速度</span></td>
<td>SetGlobalSpeedY</td>
<td class=xl74 width=159 style='width:119pt'>V2.5 郭家乐 卢炳燊<br>
设置世界重力速度</td>
<td>参数1:速度</td>
<td></td>
<td class=xl74 width=64 style='width:48pt'></td>
<td colspan=24 style='mso-ignore:colspan'></td>
</tr>
<tr height=56 style='height:42.0pt'>
<td height=56 style='height:42.0pt'>3D位移</td>
<td>Move3D</td>
<td class=xl74 width=159 style='width:119pt'>V3.5 陆苗苗 卢炳燊<br>
3D位移</td>
<td>参数1 Key 实例ID</td>
<td class=xl74 width=201 style='width:151pt'>0= 通用类型<br>
1 = 3.5联动竖直位移矫正<br>
参数2 移动类型</td>
<td>参数3 目<span style='display:none'>标索引</span></td>
<td class=xl74 width=64 style='width:48pt'>参数4 持续时间</td>
<td>参数5速<span style='display:none'></span></td>
<td>参数6 加<span style='display:none'>速度</span></td>
<td colspan=4 style='mso-ignore:colspan'>参数7到达位置后是否停止移动</td>
<td colspan=17 style='mso-ignore:colspan'></td>
</tr>
<tr height=168 style='height:126.0pt'>
<td height=168 style='height:126.0pt'>俯仰角面向<span style='display:none'>目标</span></td>
<td>NpcPitch</td>
<td class=xl74 width=159 style='width:119pt'>V3.5 陆苗苗 卢炳燊<br>
NPC仰俯角</td>
<td>参数1 Key 实例ID</td>
<td>参数2 目标索引</td>
<td class=xl74 width=64 style='width:48pt'>参数3 持续时间<br>
-1则持续到技能结束 <br>
-2则持续到无3D移动在运行为止</td>
<td>参数4 渐<span style='display:none'>入时间</span></td>
<td>参数5 渐<span style='display:none'>出时间</span></td>
<td>参数6 最<span style='display:none'>大仰角</span></td>
<td colspan=3 style='mso-ignore:colspan'>参数7 最小仰角(得是负数</td>
<td colspan=18 style='mso-ignore:colspan'></td>
</tr>
<tr height=161 style='height:120.5pt'>
<td height=161 style='height:120.5pt'>设置结束衔<span style='display:none'>接跳跃</span></td>
<td>SetEndJumpState</td>
<td class=xl74 width=159 style='width:119pt'>V3.2 邹奕恒 卢炳燊<br>
设置结束衔接跳跃</td>
<td class=xl74 width=230 style='width:173pt'><font class="font11">参数1
衔接状态<br>
走跳:1.起跳 2.上升 3.上升Loop 4.起落 5.下落 6.下落 7.落地<br>
跑跳: 8.起跳 9.上升 10.上升Loop 11.起落 12.下落 13.下落 14.落地<br>
简易跳</font><font class="font56">:</font><font class="font11"> 15.起跳 16.跳升
17跳落</font><font class="font56"> 18.</font><font class="font57">落地</font></td>
<td class=xl74 width=201 style='width:151pt'>参数2 检测跑跳<br>
填0则直接进入参数1<br>
天1则按是否有方向输入进入走跳或跑跳(参数1&lt;=7)</td>
<td class=xl74 width=64 style='width:48pt'>参数3 优先级</td>
<td colspan=24 style='mso-ignore:colspan'></td>
</tr>
<tr height=75 style='height:56.5pt'>
<td height=75 style='height:56.5pt'>添加技能Buf<span style='display:none'>f</span></td>
<td>AddSkillBuff</td>
<td class=xl74 width=159 style='width:119pt'>2024-03-29 V2.4 郭家乐<br>
添加技能Buff技能结束时也会自动移除</td>
<td class=xl174>参数1事件Id EventId</td>
<td class=xl174 style='border-left:none'>参数2BuffId</td>
<td class=xl174 style='border-left:none'>参数3Bu<span style='display:none'>ff等级</span></td>
<td colspan=24 style='mso-ignore:colspan'></td>
</tr>
<tr height=94 style='height:70.5pt'>
<td height=94 style='height:70.5pt'>移除技能Buf<span style='display:none'>f</span></td>
<td>RemoveSkillBuff</td>
<td class=xl74 width=159 style='width:119pt'>2024-03-29 V2.4 郭家乐<br>
移除技能BuffBuff不进入移除列表而是直接移除</td>
<td class=xl174 style='border-top:none'>参数1事件Id EventId</td>
<td colspan=26 style='mso-ignore:colspan'></td>
</tr>
<tr height=113 style='height:84.5pt'>
<td height=113 style='height:84.5pt'>添加技能周<span style='display:none'>期Buff</span></td>
<td>AddSkillExtendBuff</td>
<td class=xl74 width=159 style='width:119pt'>V3.5 赖建南 杨泰舸<br>
不看文档不许用<br>
https://kurogame.feishu.cn/sheets/AGYLsG7vhhNIPotWugHcq77znoA?sheet=OqxqN8</td>
<td class=xl174 style='border-top:none'>参数1周期ID(唯一标识)</td>
<td class=xl174 style='border-left:none'>参数2BuffId</td>
<td class=xl174 style='border-left:none'>参数3Bu<span style='display:none'>ff等级</span></td>
<td colspan=24 style='mso-ignore:colspan'></td>
</tr>
<tr height=113 style='height:84.5pt'>
<td height=113 style='height:84.5pt'>移除技能周<span style='display:none'>期Buff</span></td>
<td>RemoveSkillExtendBuff</td>
<td class=xl74 width=159 style='width:119pt'>V3.5 赖建南 杨泰舸<br>
不看文档不许用<br>
https://kurogame.feishu.cn/sheets/AGYLsG7vhhNIPotWugHcq77znoA?sheet=OqxqN8</td>
<td class=xl174 style='border-top:none'>参数1周期ID(唯一标识)</td>
<td colspan=26 style='mso-ignore:colspan'></td>
</tr>
<tr height=37 style='height:28.0pt'>
<td height=37 style='height:28.0pt'>子弹速度检<span style='display:none'></span></td>
<td>BulletMode</td>
<td class=xl74 width=159 style='width:119pt'>v3.5 邹奕恒<br>
子弹速度检测</td>
<td class=xl222>参数1持续时间</td>
<td colspan=26 style='mso-ignore:colspan'></td>
</tr>
<![if supportMisalignedColumns]>
<tr height=0 style='display:none'>
<td width=85 style='width:64pt'></td>
<td width=247 style='width:185pt'></td>
<td width=159 style='width:119pt'></td>
<td width=230 style='width:173pt'></td>
<td width=201 style='width:151pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
</tr>
<![endif]>
</table>
</body>
</html>

View File

@ -0,0 +1,142 @@
<html xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=Content-Type content="text/html; charset=gb2312">
<meta name=ProgId content=Excel.Sheet>
<meta name=Generator content="Microsoft Excel 15">
<link id=Main-File rel=Main-File href="../d单位G071.html">
<link rel=File-List href=filelist.xml>
<title>个人测试</title>
<link rel=Stylesheet href=stylesheet.css>
<style>
<!--table
{mso-displayed-decimal-separator:"\.";
mso-displayed-thousand-separator:"\,";}
@page
{margin:.75in .7in .75in .7in;
mso-header-margin:.3in;
mso-footer-margin:.3in;}
ruby
{ruby-align:left;}
rt
{color:windowtext;
font-size:9.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:宋体;
mso-generic-font-family:auto;
mso-font-charset:134;
mso-char-type:none;
display:none;}
-->
</style>
<![if !supportTabStrip]><script language="JavaScript">
<!--
function fnUpdateTabs()
{
if (parent.window.g_iIEVer>=4) {
if (parent.document.readyState=="complete"
&& parent.frames['frTabs'].document.readyState=="complete")
parent.fnSetActiveSheet(7);
else
window.setTimeout("fnUpdateTabs();",150);
}
}
if (window.name!="frSheet")
window.location.replace("../d单位G071.html");
else
fnUpdateTabs();
//-->
</script>
<![endif]>
</head>
<body link=blue vlink=purple class=xl78>
<table border=0 cellpadding=0 cellspacing=0 width=1283 style='border-collapse:
collapse;table-layout:fixed;width:961pt'>
<col class=xl78 width=215 style='mso-width-source:userset;mso-width-alt:7517;
width:162pt'>
<col class=xl78 width=148 style='mso-width-source:userset;mso-width-alt:5166;
width:111pt'>
<col class=xl78 width=115 span=8 style='width:86pt'>
<tr class=xl79 height=67 style='mso-height-source:userset;height:50.25pt'>
<td height=67 class=xl79 colspan=2 width=363 style='height:50.25pt;
mso-ignore:colspan;width:273pt'>untiy选择模型相应动作ctrl+6看最后一帧是第几帧</td>
<td class=xl79 width=115 style='width:86pt'></td>
<td colspan=5 class=xl258 width=575 style='width:430pt'>填总帧数即可<br>
可击倒击飞的单位起身时间不能为0</td>
<td class=xl97 width=115 style='width:86pt'></td>
<td class=xl79 width=115 style='width:86pt'></td>
</tr>
<tr class=xl79 height=67 style='mso-height-source:userset;height:50.25pt'>
<td height=67 class=xl79 style='height:50.25pt'></td>
<td class=xl79></td>
<td class=xl79></td>
<td class=xl78>Born</td>
<td class=xl78>Death</td>
<td class=xl78>Hitdown</td>
<td class=xl78>LieOnFloor</td>
<td class=xl78>Standup</td>
<td class=xl78>FallDown</td>
<td class=xl78></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl78 style='height:14.0pt'>模型名</td>
<td class=xl78>死亡特效1</td>
<td class=xl78>死亡特效2</td>
<td class=xl78>出生时间</td>
<td class=xl78>死亡时间</td>
<td class=xl78>倒地时间</td>
<td class=xl78>躺地时间</td>
<td class=xl78>起身时间</td>
<td class=xl78>浮空下降时间</td>
<td class=xl78>伤害数字高度</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl83 style='height:14.0pt'> </td>
<td class=xl83> </td>
<td class=xl83> </td>
<td class=xl83>0</td>
<td class=xl83>0</td>
<td class=xl83>0</td>
<td class=xl83> </td>
<td class=xl83>0</td>
<td class=xl83> </td>
<td class=xl83>1</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl78 style='height:14.0pt'>Mo1BopuerMd010001</td>
<td class=xl78>FxDeath01</td>
<td class=xl78></td>
<td class=xl78>25</td>
<td class=xl78>0</td>
<td class=xl78>25</td>
<td class=xl78>0</td>
<td class=xl78>25</td>
<td class=xl78>0</td>
<td class=xl78>1.5</td>
</tr>
<![if supportMisalignedColumns]>
<tr height=0 style='display:none'>
<td width=215 style='width:162pt'></td>
<td width=148 style='width:111pt'></td>
<td width=115 style='width:86pt'></td>
<td width=115 style='width:86pt'></td>
<td width=115 style='width:86pt'></td>
<td width=115 style='width:86pt'></td>
<td width=115 style='width:86pt'></td>
<td width=115 style='width:86pt'></td>
<td width=115 style='width:86pt'></td>
<td width=115 style='width:86pt'></td>
</tr>
<![endif]>
</table>
</body>
</html>

View File

@ -0,0 +1,128 @@
<html xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=Content-Type content="text/html; charset=gb2312">
<meta name=ProgId content=Excel.Sheet>
<meta name=Generator content="Microsoft Excel 15">
<link id=Main-File rel=Main-File href="../d单位G071.html">
<link rel=File-List href=filelist.xml>
<title>个人测试</title>
<link rel=Stylesheet href=stylesheet.css>
<style>
<!--table
{mso-displayed-decimal-separator:"\.";
mso-displayed-thousand-separator:"\,";}
@page
{margin:.75in .7in .75in .7in;
mso-header-margin:.3in;
mso-footer-margin:.3in;}
ruby
{ruby-align:left;}
rt
{color:windowtext;
font-size:9.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:宋体;
mso-generic-font-family:auto;
mso-font-charset:134;
mso-char-type:none;
display:none;}
-->
</style>
<![if !supportTabStrip]><script language="JavaScript">
<!--
function fnUpdateTabs()
{
if (parent.window.g_iIEVer>=4) {
if (parent.document.readyState=="complete"
&& parent.frames['frTabs'].document.readyState=="complete")
parent.fnSetActiveSheet(8);
else
window.setTimeout("fnUpdateTabs();",150);
}
}
if (window.name!="frSheet")
window.location.replace("../d单位G071.html");
else
fnUpdateTabs();
//-->
</script>
<![endif]>
</head>
<body link=blue vlink=purple>
<table border=0 cellpadding=0 cellspacing=0 width=509 style='border-collapse:
collapse;table-layout:fixed;width:382pt'>
<col width=193 style='mso-width-source:userset;mso-width-alt:6749;width:145pt'>
<col width=69 style='mso-width-source:userset;mso-width-alt:2397;width:52pt'>
<col class=xl75 width=183 style='mso-width-source:userset;mso-width-alt:6376;
width:137pt'>
<col width=64 span=2 style='width:48pt'>
<col width=113 style='mso-width-source:userset;mso-width-alt:3933;width:85pt'>
<tr class=xl73 height=19 style='height:14.0pt'>
<td height=19 class=xl73 width=193 style='height:14.0pt;width:145pt'></td>
<td class=xl73 width=69 style='width:52pt'>4位</td>
<td class=xl75 width=183 style='width:137pt'></td>
<td class=xl73 width=64 style='width:48pt'></td>
</tr>
<tr class=xl73 height=19 style='height:14.0pt'>
<td height=19 class=xl73 style='height:14.0pt'></td>
<td class=xl73>不准移动!</td>
<td class=xl75>不准移动!</td>
<td class=xl73></td>
</tr>
<tr class=xl73 height=19 style='height:14.0pt'>
<td height=19 class=xl73 style='height:14.0pt'></td>
<td class=xl73></td>
<td class=xl75></td>
<td class=xl73></td>
</tr>
<tr class=xl73 height=19 style='height:14.0pt'>
<td height=19 class=xl73 style='height:14.0pt'></td>
<td class=xl73></td>
<td class=xl75></td>
<td class=xl73></td>
</tr>
<tr class=xl73 height=19 style='height:14.0pt'>
<td height=19 class=xl73 style='height:14.0pt'></td>
<td class=xl73></td>
<td class=xl75></td>
<td class=xl73></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>单位名</td>
<td>单位ID</td>
<td class=xl78>英文名</td>
<td>类型</td>
</tr>
<tr class=xl76 height=28 style='height:21.0pt'>
<td height=28 class=xl76 style='height:21.0pt'>~敌方兵</td>
<td class=xl76> </td>
<td class=xl81> </td>
<td class=xl76> </td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>测试怪物单位G052</td>
<td align=right>5027</td>
<td class=xl75>Mo1BopuerMd010001</td>
<td align=right>3</td>
</tr>
<![if supportMisalignedColumns]>
<tr height=0 style='display:none'>
<td width=193 style='width:145pt'></td>
<td width=69 style='width:52pt'></td>
<td width=183 style='width:137pt'></td>
<td width=64 style='width:48pt'></td>
</tr>
<![endif]>
</table>
</body>
</html>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,123 @@
<html xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=Content-Type content="text/html; charset=gb2312">
<meta name=ProgId content=Excel.Sheet>
<meta name=Generator content="Microsoft Excel 15">
<link id=Main-File rel=Main-File href="../d单位G071.html">
<link rel=File-List href=filelist.xml>
<title>个人测试</title>
<link rel=Stylesheet href=stylesheet.css>
<style>
<!--table
{mso-displayed-decimal-separator:"\.";
mso-displayed-thousand-separator:"\,";}
@page
{margin:.75in .7in .75in .7in;
mso-header-margin:.3in;
mso-footer-margin:.3in;}
ruby
{ruby-align:left;}
rt
{color:windowtext;
font-size:9.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:宋体;
mso-generic-font-family:auto;
mso-font-charset:134;
mso-char-type:none;
display:none;}
-->
</style>
<![if !supportTabStrip]><script language="JavaScript">
<!--
function fnUpdateTabs()
{
if (parent.window.g_iIEVer>=4) {
if (parent.document.readyState=="complete"
&& parent.frames['frTabs'].document.readyState=="complete")
parent.fnSetActiveSheet(16);
else
window.setTimeout("fnUpdateTabs();",150);
}
}
if (window.name!="frSheet")
window.location.replace("../d单位G071.html");
else
fnUpdateTabs();
//-->
</script>
<![endif]>
</head>
<body link=blue vlink=purple>
<table border=0 cellpadding=0 cellspacing=0 width=960 style='border-collapse:
collapse;table-layout:fixed;width:720pt'>
<col width=64 span=15 style='width:48pt'>
<tr height=19 style='height:14.0pt'>
<td height=19 width=64 style='height:14.0pt;width:48pt'>ID</td>
<td width=64 style='width:48pt'>范围</td>
<td width=64 style='width:48pt'>距离系数</td>
<td width=64 style='width:48pt'>角度系数</td>
<td width=64 style='width:48pt'>携带Buff</td>
<td width=64 style='width:48pt'>携带Buff</td>
<td width=64 style='width:48pt'>携带Buff</td>
<td width=64 style='width:48pt'>携带Buff</td>
<td width=64 style='width:48pt'>携带Buff</td>
<td width=64 style='width:48pt'>不携带Bu<span style='display:none'>ff</span></td>
<td width=64 style='width:48pt'>不携带Bu<span style='display:none'>ff</span></td>
<td width=64 style='width:48pt'>不携带Bu<span style='display:none'>ff</span></td>
<td width=64 style='width:48pt'>不携带Bu<span style='display:none'>ff</span></td>
<td colspan=2 width=128 style='mso-ignore:colspan;width:96pt'>不携带Buff</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>跟调用的<span style='display:none'>子弹ID一样</span></td>
<td colspan=3 style='mso-ignore:colspan'>整表表头顺序数量不可变</td>
<td colspan=11 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>Id</td>
<td>Range</td>
<td>Distance<span style='display:none'>Coe</span></td>
<td>AngleCoe</td>
<td>WithBuff<span style='display:none'>s[1]</span></td>
<td>WithBuff<span style='display:none'>s[2]</span></td>
<td>WithBuff<span style='display:none'>s[3]</span></td>
<td>WithBuff<span style='display:none'>s[4]</span></td>
<td>WithBuff<span style='display:none'>s[5]</span></td>
<td>WithoutB<span style='display:none'>uffs[1]</span></td>
<td>WithoutB<span style='display:none'>uffs[2]</span></td>
<td>WithoutB<span style='display:none'>uffs[3]</span></td>
<td>WithoutB<span style='display:none'>uffs[4]</span></td>
<td colspan=2 style='mso-ignore:colspan'>WithoutBuffs[5]</td>
</tr>
<![if supportMisalignedColumns]>
<tr height=0 style='display:none'>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
</tr>
<![endif]>
</table>
</body>
</html>

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,48 @@
<html>
<head>
<meta http-equiv=Content-Type content="text/html; charset=gb2312">
<meta name=ProgId content=Excel.Sheet>
<meta name=Generator content="Microsoft Excel 15">
<link id=Main-File rel=Main-File href="../d单位G071.html">
<script language="JavaScript">
<!--
if (window.name!="frTabs")
window.location.replace(document.all.item("Main-File").href);
//-->
</script>
<style>
<!--
A {
text-decoration:none;
color:#000000;
font-size:9pt;
}
-->
</style>
</head>
<body topmargin=0 leftmargin=0 bgcolor="#808080">
<table border=0 cellspacing=1>
<tr>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet001.html" target="frSheet"><font face="宋体" color="#000000">子弹轨迹</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet002.html" target="frSheet"><font face="宋体" color="#000000">技能时间轴</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet003.html" target="frSheet"><font face="宋体" color="#000000">战斗常量</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet004.html" target="frSheet"><font face="宋体" color="#000000">工具表设置</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet005.html" target="frSheet"><font face="宋体" color="#000000">单位消球对应</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet006.html" target="frSheet"><font face="宋体" color="#000000">同步所有宏</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet007.html" target="frSheet"><font face="宋体" color="#000000">帧事件类型</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet008.html" target="frSheet"><font face="宋体" color="#000000">模型对应</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet009.html" target="frSheet"><font face="宋体" color="#000000">单位ID对应</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet010.html" target="frSheet"><font face="宋体" color="#000000">单位技能对应</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet011.html" target="frSheet"><font face="宋体" color="#000000">技能事件</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet012.html" target="frSheet"><font face="宋体" color="#000000">单位初始属性</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet013.html" target="frSheet"><font face="宋体" color="#000000">角色行为树</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet014.html" target="frSheet"><font face="宋体" color="#000000">行为类型</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet015.html" target="frSheet"><font face="宋体" color="#000000">组合列表</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet016.html" target="frSheet"><font face="宋体" color="#000000">建表表头</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet017.html" target="frSheet"><font face="宋体" color="#000000">子弹搜索器</font></a>&nbsp;</small></small></b></td>
</tr>
</table>
</body>
</html>

View File

@ -0,0 +1,423 @@
<html xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta name="Excel Workbook Frameset">
<meta http-equiv=Content-Type content="text/html; charset=gb2312">
<meta name=ProgId content=Excel.Sheet>
<meta name=Generator content="Microsoft Excel 15">
<link rel=File-List href="d单位G071.files/filelist.xml">
<title>个人测试</title>
<![if !supportTabStrip]>
<link id="shLink" href="d单位G071.files/sheet001.html">
<link id="shLink" href="d单位G071.files/sheet002.html">
<link id="shLink" href="d单位G071.files/sheet003.html">
<link id="shLink" href="d单位G071.files/sheet004.html">
<link id="shLink" href="d单位G071.files/sheet005.html">
<link id="shLink" href="d单位G071.files/sheet006.html">
<link id="shLink" href="d单位G071.files/sheet007.html">
<link id="shLink" href="d单位G071.files/sheet008.html">
<link id="shLink" href="d单位G071.files/sheet009.html">
<link id="shLink" href="d单位G071.files/sheet010.html">
<link id="shLink" href="d单位G071.files/sheet011.html">
<link id="shLink" href="d单位G071.files/sheet012.html">
<link id="shLink" href="d单位G071.files/sheet013.html">
<link id="shLink" href="d单位G071.files/sheet014.html">
<link id="shLink" href="d单位G071.files/sheet015.html">
<link id="shLink" href="d单位G071.files/sheet016.html">
<link id="shLink" href="d单位G071.files/sheet017.html">
<link id="shLink">
<script language="JavaScript">
<!--
var c_lTabs=17;
var c_rgszSh=new Array(c_lTabs);
c_rgszSh[0] = "子弹轨迹";
c_rgszSh[1] = "技能时间轴";
c_rgszSh[2] = "战斗常量";
c_rgszSh[3] = "工具表设置";
c_rgszSh[4] = "单位消球对应";
c_rgszSh[5] = "同步所有宏";
c_rgszSh[6] = "帧事件类型";
c_rgszSh[7] = "模型对应";
c_rgszSh[8] = "单位ID对应";
c_rgszSh[9] = "单位技能对应";
c_rgszSh[10] = "技能事件";
c_rgszSh[11] = "单位初始属性";
c_rgszSh[12] = "角色行为树";
c_rgszSh[13] = "行为类型";
c_rgszSh[14] = "组合列表";
c_rgszSh[15] = "建表表头";
c_rgszSh[16] = "子弹搜索器";
var c_rgszClr=new Array(8);
c_rgszClr[0]="window";
c_rgszClr[1]="buttonface";
c_rgszClr[2]="windowframe";
c_rgszClr[3]="windowtext";
c_rgszClr[4]="threedlightshadow";
c_rgszClr[5]="threedhighlight";
c_rgszClr[6]="threeddarkshadow";
c_rgszClr[7]="threedshadow";
var g_iShCur;
var g_rglTabX=new Array(c_lTabs);
function fnGetIEVer()
{
var ua=window.navigator.userAgent
var msie=ua.indexOf("MSIE")
if (msie>0 && window.navigator.platform=="Win32")
return parseInt(ua.substring(msie+5,ua.indexOf(".", msie)));
else
return 0;
}
function fnBuildFrameset()
{
var szHTML="<frameset rows=\"*,18\" border=0 width=0 frameborder=no framespacing=0>"+
"<frame src=\""+document.all.item("shLink")[11].href+"\" name=\"frSheet\" noresize>"+
"<frameset cols=\"54,*\" border=0 width=0 frameborder=no framespacing=0>"+
"<frame src=\"\" name=\"frScroll\" marginwidth=0 marginheight=0 scrolling=no>"+
"<frame src=\"\" name=\"frTabs\" marginwidth=0 marginheight=0 scrolling=no>"+
"</frameset></frameset><plaintext>";
with (document) {
open("text/html","replace");
write(szHTML);
close();
}
fnBuildTabStrip();
}
function fnBuildTabStrip()
{
var szHTML=
"<html><head><style>.clScroll {font:8pt Courier New;color:"+c_rgszClr[6]+";cursor:default;line-height:10pt;}"+
".clScroll2 {font:10pt Arial;color:"+c_rgszClr[6]+";cursor:default;line-height:11pt;}</style></head>"+
"<body onclick=\"event.returnValue=false;\" ondragstart=\"event.returnValue=false;\" onselectstart=\"event.returnValue=false;\" bgcolor="+c_rgszClr[4]+" topmargin=0 leftmargin=0><table cellpadding=0 cellspacing=0 width=100%>"+
"<tr><td colspan=6 height=1 bgcolor="+c_rgszClr[2]+"></td></tr>"+
"<tr><td style=\"font:1pt\">&nbsp;<td>"+
"<td valign=top id=tdScroll class=\"clScroll\" onclick=\"parent.fnFastScrollTabs(0);\" onmouseover=\"parent.fnMouseOverScroll(0);\" onmouseout=\"parent.fnMouseOutScroll(0);\"><a>&#171;</a></td>"+
"<td valign=top id=tdScroll class=\"clScroll2\" onclick=\"parent.fnScrollTabs(0);\" ondblclick=\"parent.fnScrollTabs(0);\" onmouseover=\"parent.fnMouseOverScroll(1);\" onmouseout=\"parent.fnMouseOutScroll(1);\"><a>&lt</a></td>"+
"<td valign=top id=tdScroll class=\"clScroll2\" onclick=\"parent.fnScrollTabs(1);\" ondblclick=\"parent.fnScrollTabs(1);\" onmouseover=\"parent.fnMouseOverScroll(2);\" onmouseout=\"parent.fnMouseOutScroll(2);\"><a>&gt</a></td>"+
"<td valign=top id=tdScroll class=\"clScroll\" onclick=\"parent.fnFastScrollTabs(1);\" onmouseover=\"parent.fnMouseOverScroll(3);\" onmouseout=\"parent.fnMouseOutScroll(3);\"><a>&#187;</a></td>"+
"<td style=\"font:1pt\">&nbsp;<td></tr></table></body></html>";
with (frames['frScroll'].document) {
open("text/html","replace");
write(szHTML);
close();
}
szHTML =
"<html><head>"+
"<style>A:link,A:visited,A:active {text-decoration:none;"+"color:"+c_rgszClr[3]+";}"+
".clTab {cursor:hand;background:"+c_rgszClr[1]+";font:9pt 宋体;padding-left:3px;padding-right:3px;text-align:center;}"+
".clBorder {background:"+c_rgszClr[2]+";font:1pt;}"+
"</style></head><body onload=\"parent.fnInit();\" onselectstart=\"event.returnValue=false;\" ondragstart=\"event.returnValue=false;\" bgcolor="+c_rgszClr[4]+
" topmargin=0 leftmargin=0><table id=tbTabs cellpadding=0 cellspacing=0>";
var iCellCount=(c_lTabs+1)*2;
var i;
for (i=0;i<iCellCount;i+=2)
szHTML+="<col width=1><col>";
var iRow;
for (iRow=0;iRow<6;iRow++) {
szHTML+="<tr>";
if (iRow==5)
szHTML+="<td colspan="+iCellCount+"></td>";
else {
if (iRow==0) {
for(i=0;i<iCellCount;i++)
szHTML+="<td height=1 class=\"clBorder\"></td>";
} else if (iRow==1) {
for(i=0;i<c_lTabs;i++) {
szHTML+="<td height=1 nowrap class=\"clBorder\">&nbsp;</td>";
szHTML+=
"<td id=tdTab height=1 nowrap class=\"clTab\" onmouseover=\"parent.fnMouseOverTab("+i+");\" onmouseout=\"parent.fnMouseOutTab("+i+");\">"+
"<a href=\""+document.all.item("shLink")[i].href+"\" target=\"frSheet\" id=aTab>&nbsp;"+c_rgszSh[i]+"&nbsp;</a></td>";
}
szHTML+="<td id=tdTab height=1 nowrap class=\"clBorder\"><a id=aTab>&nbsp;</a></td><td width=100%></td>";
} else if (iRow==2) {
for (i=0;i<c_lTabs;i++)
szHTML+="<td height=1></td><td height=1 class=\"clBorder\"></td>";
szHTML+="<td height=1></td><td height=1></td>";
} else if (iRow==3) {
for (i=0;i<iCellCount;i++)
szHTML+="<td height=1></td>";
} else if (iRow==4) {
for (i=0;i<c_lTabs;i++)
szHTML+="<td height=1 width=1></td><td height=1></td>";
szHTML+="<td height=1 width=1></td><td></td>";
}
}
szHTML+="</tr>";
}
szHTML+="</table></body></html>";
with (frames['frTabs'].document) {
open("text/html","replace");
charset=document.charset;
write(szHTML);
close();
}
}
function fnInit()
{
g_rglTabX[0]=0;
var i;
for (i=1;i<=c_lTabs;i++)
with (frames['frTabs'].document.all.tbTabs.rows[1].cells[fnTabToCol(i-1)])
g_rglTabX[i]=offsetLeft+offsetWidth-6;
}
function fnTabToCol(iTab)
{
return 2*iTab+1;
}
function fnNextTab(fDir)
{
var iNextTab=-1;
var i;
with (frames['frTabs'].document.body) {
if (fDir==0) {
if (scrollLeft>0) {
for (i=0;i<c_lTabs&&g_rglTabX[i]<scrollLeft;i++);
if (i<c_lTabs)
iNextTab=i-1;
}
} else {
if (g_rglTabX[c_lTabs]+6>offsetWidth+scrollLeft) {
for (i=0;i<c_lTabs&&g_rglTabX[i]<=scrollLeft;i++);
if (i<c_lTabs)
iNextTab=i;
}
}
}
return iNextTab;
}
function fnScrollTabs(fDir)
{
var iNextTab=fnNextTab(fDir);
if (iNextTab>=0) {
frames['frTabs'].scroll(g_rglTabX[iNextTab],0);
return true;
} else
return false;
}
function fnFastScrollTabs(fDir)
{
if (c_lTabs>16)
frames['frTabs'].scroll(g_rglTabX[fDir?c_lTabs-1:0],0);
else
if (fnScrollTabs(fDir)>0) window.setTimeout("fnFastScrollTabs("+fDir+");",5);
}
function fnSetTabProps(iTab,fActive)
{
var iCol=fnTabToCol(iTab);
var i;
if (iTab>=0) {
with (frames['frTabs'].document.all) {
with (tbTabs) {
for (i=0;i<=4;i++) {
with (rows[i]) {
if (i==0)
cells[iCol].style.background=c_rgszClr[fActive?0:2];
else if (i>0 && i<4) {
if (fActive) {
cells[iCol-1].style.background=c_rgszClr[2];
cells[iCol].style.background=c_rgszClr[0];
cells[iCol+1].style.background=c_rgszClr[2];
} else {
if (i==1) {
cells[iCol-1].style.background=c_rgszClr[2];
cells[iCol].style.background=c_rgszClr[1];
cells[iCol+1].style.background=c_rgszClr[2];
} else {
cells[iCol-1].style.background=c_rgszClr[4];
cells[iCol].style.background=c_rgszClr[(i==2)?2:4];
cells[iCol+1].style.background=c_rgszClr[4];
}
}
} else
cells[iCol].style.background=c_rgszClr[fActive?2:4];
}
}
}
with (aTab[iTab].style) {
cursor=(fActive?"default":"hand");
color=c_rgszClr[3];
}
}
}
}
function fnMouseOverScroll(iCtl)
{
frames['frScroll'].document.all.tdScroll[iCtl].style.color=c_rgszClr[7];
}
function fnMouseOutScroll(iCtl)
{
frames['frScroll'].document.all.tdScroll[iCtl].style.color=c_rgszClr[6];
}
function fnMouseOverTab(iTab)
{
if (iTab!=g_iShCur) {
var iCol=fnTabToCol(iTab);
with (frames['frTabs'].document.all) {
tdTab[iTab].style.background=c_rgszClr[5];
}
}
}
function fnMouseOutTab(iTab)
{
if (iTab>=0) {
var elFrom=frames['frTabs'].event.srcElement;
var elTo=frames['frTabs'].event.toElement;
if ((!elTo) ||
(elFrom.tagName==elTo.tagName) ||
(elTo.tagName=="A" && elTo.parentElement!=elFrom) ||
(elFrom.tagName=="A" && elFrom.parentElement!=elTo)) {
if (iTab!=g_iShCur) {
with (frames['frTabs'].document.all) {
tdTab[iTab].style.background=c_rgszClr[1];
}
}
}
}
}
function fnSetActiveSheet(iSh)
{
if (iSh!=g_iShCur) {
fnSetTabProps(g_iShCur,false);
fnSetTabProps(iSh,true);
g_iShCur=iSh;
}
}
window.g_iIEVer=fnGetIEVer();
if (window.g_iIEVer>=4)
fnBuildFrameset();
//-->
</script>
<![endif]><!--[if gte mso 9]><xml>
<x:ExcelWorkbook>
<x:ExcelWorksheets>
<x:ExcelWorksheet>
<x:Name>子弹轨迹</x:Name>
<x:WorksheetSource HRef="d单位G071.files/sheet001.html"/>
</x:ExcelWorksheet>
<x:ExcelWorksheet>
<x:Name>技能时间轴</x:Name>
<x:WorksheetSource HRef="d单位G071.files/sheet002.html"/>
</x:ExcelWorksheet>
<x:ExcelWorksheet>
<x:Name>战斗常量</x:Name>
<x:WorksheetSource HRef="d单位G071.files/sheet003.html"/>
</x:ExcelWorksheet>
<x:ExcelWorksheet>
<x:Name>工具表设置</x:Name>
<x:WorksheetSource HRef="d单位G071.files/sheet004.html"/>
</x:ExcelWorksheet>
<x:ExcelWorksheet>
<x:Name>单位消球对应</x:Name>
<x:WorksheetSource HRef="d单位G071.files/sheet005.html"/>
</x:ExcelWorksheet>
<x:ExcelWorksheet>
<x:Name>同步所有宏</x:Name>
<x:WorksheetSource HRef="d单位G071.files/sheet006.html"/>
</x:ExcelWorksheet>
<x:ExcelWorksheet>
<x:Name>帧事件类型</x:Name>
<x:WorksheetSource HRef="d单位G071.files/sheet007.html"/>
</x:ExcelWorksheet>
<x:ExcelWorksheet>
<x:Name>模型对应</x:Name>
<x:WorksheetSource HRef="d单位G071.files/sheet008.html"/>
</x:ExcelWorksheet>
<x:ExcelWorksheet>
<x:Name>单位ID对应</x:Name>
<x:WorksheetSource HRef="d单位G071.files/sheet009.html"/>
</x:ExcelWorksheet>
<x:ExcelWorksheet>
<x:Name>单位技能对应</x:Name>
<x:WorksheetSource HRef="d单位G071.files/sheet010.html"/>
</x:ExcelWorksheet>
<x:ExcelWorksheet>
<x:Name>技能事件</x:Name>
<x:WorksheetSource HRef="d单位G071.files/sheet011.html"/>
</x:ExcelWorksheet>
<x:ExcelWorksheet>
<x:Name>单位初始属性</x:Name>
<x:WorksheetSource HRef="d单位G071.files/sheet012.html"/>
</x:ExcelWorksheet>
<x:ExcelWorksheet>
<x:Name>角色行为树</x:Name>
<x:WorksheetSource HRef="d单位G071.files/sheet013.html"/>
</x:ExcelWorksheet>
<x:ExcelWorksheet>
<x:Name>行为类型</x:Name>
<x:WorksheetSource HRef="d单位G071.files/sheet014.html"/>
</x:ExcelWorksheet>
<x:ExcelWorksheet>
<x:Name>组合列表</x:Name>
<x:WorksheetSource HRef="d单位G071.files/sheet015.html"/>
</x:ExcelWorksheet>
<x:ExcelWorksheet>
<x:Name>建表表头</x:Name>
<x:WorksheetSource HRef="d单位G071.files/sheet016.html"/>
</x:ExcelWorksheet>
<x:ExcelWorksheet>
<x:Name>子弹搜索器</x:Name>
<x:WorksheetSource HRef="d单位G071.files/sheet017.html"/>
</x:ExcelWorksheet>
</x:ExcelWorksheets>
<x:Stylesheet HRef="d单位G071.files/stylesheet.css"/>
<x:WindowHeight>16900</x:WindowHeight>
<x:WindowWidth>30940</x:WindowWidth>
<x:WindowTopX>32767</x:WindowTopX>
<x:WindowTopY>32767</x:WindowTopY>
<x:TabRatio>789</x:TabRatio>
<x:ActiveSheet>11</x:ActiveSheet>
<x:ProtectStructure>False</x:ProtectStructure>
<x:ProtectWindows>False</x:ProtectWindows>
</x:ExcelWorkbook>
</xml><![endif]-->
</head>
<frameset rows="*,39" border=0 width=0 frameborder=no framespacing=0>
<frame src="d单位G071.files/sheet012.html" name="frSheet">
<frame src="d单位G071.files/tabstrip.html" name="frTabs" marginwidth=0 marginheight=0>
<noframes>
<body>
<p>此页面使用了框架,而您的浏览器不支持框架。</p>
</body>
</noframes>
</frameset>
</html>

View File

@ -0,0 +1,17 @@
<xml xmlns:o="urn:schemas-microsoft-com:office:office">
<o:MainFile HRef="../g关卡C036.html"/>
<o:File HRef="stylesheet.css"/>
<o:File HRef="tabstrip.html"/>
<o:File HRef="sheet001.html"/>
<o:File HRef="sheet002.html"/>
<o:File HRef="sheet003.html"/>
<o:File HRef="sheet004.html"/>
<o:File HRef="sheet005.html"/>
<o:File HRef="sheet006.html"/>
<o:File HRef="sheet007.html"/>
<o:File HRef="sheet008.html"/>
<o:File HRef="sheet009.html"/>
<o:File HRef="sheet010.html"/>
<o:File HRef="sheet011.html"/>
<o:File HRef="filelist.xml"/>
</xml>

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,109 @@
<html xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=Content-Type content="text/html; charset=gb2312">
<meta name=ProgId content=Excel.Sheet>
<meta name=Generator content="Microsoft Excel 15">
<link id=Main-File rel=Main-File href="../g关卡C036.html">
<link rel=File-List href=filelist.xml>
<title>个人测试关卡</title>
<link rel=Stylesheet href=stylesheet.css>
<style>
<!--table
{mso-displayed-decimal-separator:"\.";
mso-displayed-thousand-separator:"\,";}
@page
{margin:.75in .7in .75in .7in;
mso-header-margin:.3in;
mso-footer-margin:.3in;}
ruby
{ruby-align:left;}
rt
{color:windowtext;
font-size:9.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:宋体;
mso-generic-font-family:auto;
mso-font-charset:134;
mso-char-type:none;
display:none;}
-->
</style>
<![if !supportTabStrip]><script language="JavaScript">
<!--
function fnUpdateTabs()
{
if (parent.window.g_iIEVer>=4) {
if (parent.document.readyState=="complete"
&& parent.frames['frTabs'].document.readyState=="complete")
parent.fnSetActiveSheet(1);
else
window.setTimeout("fnUpdateTabs();",150);
}
}
if (window.name!="frSheet")
window.location.replace("../g关卡C036.html");
else
fnUpdateTabs();
//-->
</script>
<![endif]>
</head>
<body link="#0563C1" vlink="#954F72">
<table border=0 cellpadding=0 cellspacing=0 width=726 style='border-collapse:
collapse;table-layout:fixed;width:545pt'>
<col width=163 style='mso-width-source:userset;mso-width-alt:5678;width:122pt'>
<col width=115 style='mso-width-source:userset;mso-width-alt:4026;width:87pt'>
<col width=64 span=7 style='width:48pt'>
<tr height=19 style='height:14.0pt'>
<td height=19 width=163 style='height:14.0pt;width:122pt'>设置</td>
<td width=115 style='width:87pt'>说明</td>
<td width=64 style='width:48pt'>参数1</td>
<td width=64 style='width:48pt'>参数2</td>
<td width=64 style='width:48pt'>参数3</td>
<td width=64 style='width:48pt'>参数4</td>
<td width=64 style='width:48pt'>参数5</td>
<td width=64 style='width:48pt'>参数6</td>
<td width=64 style='width:48pt'>参数7</td>
</tr>
<tr height=168 style='height:126.0pt'>
<td height=168 style='height:126.0pt'>行为节点显示注释</td>
<td class=xl80 width=115 style='width:87pt'>0无操作<br>
1编辑相关单元格后显示注释<br>
2编辑相关单元格后删除注释<br>
考虑到Excel注释会占用大量资源的关系不建议使用。</td>
<td align=right>0</td>
<td colspan=6 style='mso-ignore:colspan'></td>
</tr>
<tr height=56 style='height:42.0pt'>
<td height=56 style='height:42.0pt'>行为表格顶部显示说明</td>
<td class=xl80 width=115 style='width:87pt'>0无操作<br>
1编辑相关单元格后显示说明</td>
<td align=right>1</td>
<td colspan=6 style='mso-ignore:colspan'></td>
</tr>
<![if supportMisalignedColumns]>
<tr height=0 style='display:none'>
<td width=163 style='width:122pt'></td>
<td width=115 style='width:87pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
</tr>
<![endif]>
</table>
</body>
</html>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,485 @@
<html xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=Content-Type content="text/html; charset=gb2312">
<meta name=ProgId content=Excel.Sheet>
<meta name=Generator content="Microsoft Excel 15">
<link id=Main-File rel=Main-File href="../g关卡C036.html">
<link rel=File-List href=filelist.xml>
<title>个人测试关卡</title>
<link rel=Stylesheet href=stylesheet.css>
<style>
<!--table
{mso-displayed-decimal-separator:"\.";
mso-displayed-thousand-separator:"\,";}
@page
{margin:.75in .7in .75in .7in;
mso-header-margin:.3in;
mso-footer-margin:.3in;}
ruby
{ruby-align:left;}
rt
{color:windowtext;
font-size:9.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:宋体;
mso-generic-font-family:auto;
mso-font-charset:134;
mso-char-type:none;
display:none;}
-->
</style>
<![if !supportTabStrip]><script language="JavaScript">
<!--
function fnUpdateTabs()
{
if (parent.window.g_iIEVer>=4) {
if (parent.document.readyState=="complete"
&& parent.frames['frTabs'].document.readyState=="complete")
parent.fnSetActiveSheet(7);
else
window.setTimeout("fnUpdateTabs();",150);
}
}
if (window.name!="frSheet")
window.location.replace("../g关卡C036.html");
else
fnUpdateTabs();
//-->
</script>
<![endif]>
</head>
<body link="#0563C1" vlink="#954F72">
<table border=0 cellpadding=0 cellspacing=0 width=8141 style='border-collapse:
collapse;table-layout:fixed;width:6133pt'>
<col width=102 style='mso-width-source:userset;mso-width-alt:3560;width:77pt'>
<col width=149 style='mso-width-source:userset;mso-width-alt:5213;width:112pt'>
<col width=159 span=2 style='mso-width-source:userset;mso-width-alt:5538;
width:119pt'>
<col width=175 style='mso-width-source:userset;mso-width-alt:6120;width:132pt'>
<col width=142 style='mso-width-source:userset;mso-width-alt:4957;width:107pt'>
<col width=126 span=7 style='mso-width-source:userset;mso-width-alt:4398;
width:95pt'>
<col width=215 span=2 style='mso-width-source:userset;mso-width-alt:7517;
width:162pt'>
<col width=183 span=2 style='mso-width-source:userset;mso-width-alt:6400;
width:138pt'>
<col width=191 span=3 style='mso-width-source:userset;mso-width-alt:6679;
width:144pt'>
<col width=199 style='mso-width-source:userset;mso-width-alt:6958;width:150pt'>
<col width=215 style='mso-width-source:userset;mso-width-alt:7517;width:162pt'>
<col width=199 style='mso-width-source:userset;mso-width-alt:6958;width:150pt'>
<col width=110 style='mso-width-source:userset;mso-width-alt:3840;width:83pt'>
<col width=102 style='mso-width-source:userset;mso-width-alt:3560;width:77pt'>
<col width=118 span=3 style='mso-width-source:userset;mso-width-alt:4119;
width:89pt'>
<col width=159 style='mso-width-source:userset;mso-width-alt:5538;width:119pt'>
<col width=142 style='mso-width-source:userset;mso-width-alt:4957;width:107pt'>
<col width=207 style='mso-width-source:userset;mso-width-alt:7214;width:155pt'>
<col width=191 style='mso-width-source:userset;mso-width-alt:6679;width:144pt'>
<col width=183 style='mso-width-source:userset;mso-width-alt:6400;width:138pt'>
<col width=167 style='mso-width-source:userset;mso-width-alt:5841;width:126pt'>
<col width=215 style='mso-width-source:userset;mso-width-alt:7517;width:162pt'>
<col width=199 style='mso-width-source:userset;mso-width-alt:6958;width:150pt'>
<col width=167 style='mso-width-source:userset;mso-width-alt:5841;width:126pt'>
<col width=135 style='mso-width-source:userset;mso-width-alt:4701;width:101pt'>
<col width=110 style='mso-width-source:userset;mso-width-alt:3840;width:83pt'>
<col width=142 style='mso-width-source:userset;mso-width-alt:4957;width:107pt'>
<col width=102 span=2 style='mso-width-source:userset;mso-width-alt:3560;
width:77pt'>
<col width=183 span=2 style='mso-width-source:userset;mso-width-alt:6400;
width:138pt'>
<col width=135 span=2 style='mso-width-source:userset;mso-width-alt:4701;
width:101pt'>
<col width=102 span=9 style='mso-width-source:userset;mso-width-alt:3560;
width:77pt'>
<col width=25 span=2 style='mso-width-source:userset;mso-width-alt:861;
width:19pt'>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right width=102 style='height:14.0pt;width:77pt'>1</td>
<td align=right width=149 style='width:112pt'>2</td>
<td align=right width=159 style='width:119pt'>3</td>
<td align=right width=159 style='width:119pt'>4</td>
<td align=right width=175 style='width:132pt'>5</td>
<td align=right width=142 style='width:107pt'>6</td>
<td align=right width=126 style='width:95pt'>7</td>
<td align=right width=126 style='width:95pt'>8</td>
<td align=right width=126 style='width:95pt'>9</td>
<td align=right width=126 style='width:95pt'>10</td>
<td align=right width=126 style='width:95pt'>11</td>
<td align=right width=126 style='width:95pt'>12</td>
<td align=right width=126 style='width:95pt'>13</td>
<td align=right width=215 style='width:162pt'>14</td>
<td align=right width=215 style='width:162pt'>15</td>
<td align=right width=183 style='width:138pt'>16</td>
<td align=right width=183 style='width:138pt'>17</td>
<td align=right width=191 style='width:144pt'>18</td>
<td align=right width=191 style='width:144pt'>19</td>
<td align=right width=191 style='width:144pt'>20</td>
<td align=right width=199 style='width:150pt'>21</td>
<td align=right width=215 style='width:162pt'>22</td>
<td align=right width=199 style='width:150pt'>23</td>
<td align=right width=110 style='width:83pt'>24</td>
<td align=right width=102 style='width:77pt'>25</td>
<td align=right width=118 style='width:89pt'>26</td>
<td align=right width=118 style='width:89pt'>27</td>
<td align=right width=118 style='width:89pt'>28</td>
<td align=right width=159 style='width:119pt'>29</td>
<td align=right width=142 style='width:107pt'>30</td>
<td align=right width=207 style='width:155pt'>31</td>
<td align=right width=191 style='width:144pt'>32</td>
<td align=right width=183 style='width:138pt'>33</td>
<td align=right width=167 style='width:126pt'>34</td>
<td align=right width=215 style='width:162pt'>35</td>
<td align=right width=199 style='width:150pt'>36</td>
<td align=right width=167 style='width:126pt'>37</td>
<td align=right width=135 style='width:101pt'>38</td>
<td align=right width=110 style='width:83pt'>39</td>
<td align=right width=142 style='width:107pt'>40</td>
<td align=right width=102 style='width:77pt'>41</td>
<td align=right width=102 style='width:77pt'>42</td>
<td align=right width=183 style='width:138pt'>43</td>
<td align=right width=183 style='width:138pt'>44</td>
<td align=right width=135 style='width:101pt'>45</td>
<td align=right width=135 style='width:101pt'>46</td>
<td align=right width=102 style='width:77pt'>47</td>
<td align=right width=102 style='width:77pt'>48</td>
<td align=right width=102 style='width:77pt'>49</td>
<td align=right width=102 style='width:77pt'>50</td>
<td align=right width=102 style='width:77pt'>51</td>
<td align=right width=102 style='width:77pt'>52</td>
<td align=right width=102 style='width:77pt'>53</td>
<td align=right width=102 style='width:77pt'>54</td>
<td align=right width=102 style='width:77pt'>55</td>
<td align=right width=25 style='width:19pt'>56</td>
<td align=right width=25 style='width:19pt'>57</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 colspan=57 style='height:14.0pt;mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>Map</td>
<td></td>
<td>关卡</td>
<td colspan=54 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>Id</td>
<td>Behavior</td>
<td>Name</td>
<td>Environment</td>
<td>TerrainRoot</td>
<td>CloseLoadingDelay</td>
<td>IsAsyncLoadNpc</td>
<td>SwitchNpcCd</td>
<td>SceneCamera</td>
<td>CameraId</td>
<td>Terrains[1]</td>
<td>Terrains[2]</td>
<td>Terrains[3]</td>
<td>Position[1]</td>
<td>Position[2]</td>
<td>Position[3]</td>
<td>Rotation[1]</td>
<td>Rotation[2]</td>
<td>Rotation[3]</td>
<td colspan=38 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 colspan=57 style='height:14.0pt;mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>Magic</td>
<td></td>
<td>效果</td>
<td colspan=54 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>Id</td>
<td>Name</td>
<td>Level[1]</td>
<td>Level[2]</td>
<td>Level[3]</td>
<td>Level[4]</td>
<td>Level[5]</td>
<td>Level[6]</td>
<td>Level[7]</td>
<td>Level[8]</td>
<td>Level[9]</td>
<td>Level[10]</td>
<td>Level[11]</td>
<td>Level[12]</td>
<td>Level[13]</td>
<td>Level[14]</td>
<td>Level[15]</td>
<td>Level[16]</td>
<td>Level[17]</td>
<td>Level[18]</td>
<td>Level[19]</td>
<td>Level[20]</td>
<td>Level[21]</td>
<td>Level[22]</td>
<td>Level[23]</td>
<td>Level[24]</td>
<td>Level[25]</td>
<td>Level[26]</td>
<td>Level[27]</td>
<td>Level[28]</td>
<td>Level[29]</td>
<td>Level[30]</td>
<td colspan=25 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 colspan=57 style='height:14.0pt;mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>BehaviorNode</td>
<td></td>
<td>行为树节点</td>
<td colspan=54 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>Id</td>
<td>Type</td>
<td>Negative</td>
<td>Name</td>
<td>Param</td>
<td>Children[1]</td>
<td>Children[2]</td>
<td>Children[3]</td>
<td>Children[4]</td>
<td>Children[5]</td>
<td>Children[6]</td>
<td>Children[7]</td>
<td>Children[8]</td>
<td>Children[9]</td>
<td>Children[10]</td>
<td>Children[11]</td>
<td>Children[12]</td>
<td>Children[13]</td>
<td>Children[14]</td>
<td>Children[15]</td>
<td>Children[16]</td>
<td>Children[17]</td>
<td>Children[18]</td>
<td>Children[19]</td>
<td>Children[20]</td>
<td>Children[21]</td>
<td>Children[22]</td>
<td>Children[23]</td>
<td>Children[24]</td>
<td>Children[25]</td>
<td>Children[26]</td>
<td>Children[27]</td>
<td>Children[28]</td>
<td>Children[29]</td>
<td>Children[30]</td>
<td>Children[31]</td>
<td>Children[32]</td>
<td>Children[33]</td>
<td>Children[34]</td>
<td>Children[35]</td>
<td>Children[36]</td>
<td>Children[37]</td>
<td>Children[38]</td>
<td>Children[39]</td>
<td>Children[40]</td>
<td>Children[41]</td>
<td>Children[42]</td>
<td>Children[43]</td>
<td>Children[44]</td>
<td>Children[45]</td>
<td>Children[46]</td>
<td>Children[47]</td>
<td>Children[48]</td>
<td>Children[49]</td>
<td>Children[50]</td>
<td colspan=2 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 colspan=57 style='height:14.0pt;mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>BeHavior</td>
<td></td>
<td>行为树</td>
<td colspan=54 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>Id</td>
<td>Type</td>
<td>Priority</td>
<td>PrefixRoot</td>
<td>Root</td>
<td>PreLoadRoot</td>
<td>RemoveRoot</td>
<td colspan=50 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 colspan=57 style='height:14.0pt;mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>FightCamera</td>
<td></td>
<td>摄像机</td>
<td colspan=54 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>Id</td>
<td>NewScheme</td>
<td>DollyInCoefficient</td>
<td>DollyOutCoefficient</td>
<td>HeightUpCoefficient</td>
<td>HeightDownCoefficie<span style='display:none'>nt</span></td>
<td>HeightOffset</td>
<td>MinHeight</td>
<td>MaxHeight</td>
<td>RotationSpeed</td>
<td>ExpBase</td>
<td>BufferRadian</td>
<td>DefaultOffset</td>
<td>DefaultDistance</td>
<td>DefaultHeight</td>
<td>DefaultMovementCoefficie<span style='display:none'>nt</span></td>
<td>DefaultRotationCoefficie<span style='display:none'>nt</span></td>
<td>DefaultMinDistance</td>
<td>DefaultMaxDistance</td>
<td>FocusMinDistance</td>
<td>FocusMaxDistance</td>
<td>FocusHeight</td>
<td>FocusMovementCoefficient</td>
<td>FocusHorizonta<span style='display:none'>lCoefficient</span></td>
<td>FocusVertical<span style='display:none'>Coefficient</span></td>
<td>FocusMaxAngle</td>
<td>MaxDistance</td>
<td>DeadZoneRadius</td>
<td>HardZoneRadius</td>
<td>DeadZoneHeight</td>
<td>RecenterCoefficient</td>
<td>RecenterThreshold</td>
<td>HorizontalDragSensitivity</td>
<td>VerticalDragSensitivit<span style='display:none'>y</span></td>
<td>MaxHorizontalDragSpeed</td>
<td>MaxVerticalDragSpeed</td>
<td>HorizontalDragAccelera<span style='display:none'>tion</span></td>
<td>VerticalDragAccele<span style='display:none'>ration</span></td>
<td>RotationOverri<span style='display:none'>deTime</span></td>
<td>ScaleSensitivity</td>
<td>MaxScaleSpeed</td>
<td>ScaleAccelera<span style='display:none'>tion</span></td>
<td>DefaultFOV</td>
<td>DefaultToFocusDuration</td>
<td>FocusToDefaultDura<span style='display:none'>tion</span></td>
<td>MinVerticalAngle</td>
<td>MaxVerticalAn<span style='display:none'>gle</span></td>
<td colspan=2 style='mso-ignore:colspan'>DampTerrainHeightType</td>
<td colspan=8 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 colspan=57 style='height:14.0pt;mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>Terrain</td>
<td></td>
<td>地图点</td>
<td colspan=54 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>Id</td>
<td>Name</td>
<td>Info</td>
<td>BornPosition[1]</td>
<td>BornPosition[2]</td>
<td>BornPosition[3]</td>
<td>BornPosition[4]</td>
<td>BornPosition[5]</td>
<td>BornPosition[6]</td>
<td>LookPosition[1]</td>
<td>LookPosition[2]</td>
<td>LookPosition[3]</td>
<td>LookPosition[4]</td>
<td>LookPosition[5]</td>
<td>LookPosition[6]</td>
<td>DefaultObstacleArea[1]</td>
<td>DefaultObstacleArea[2]</td>
<td>DefaultObstacleArea[3]</td>
<td>DefaultObstacleArea[4]</td>
<td>DefaultDynamicObject[1]</td>
<td>DefaultDynamicObject[2]</td>
<td>DefaultDynamicObject[3]</td>
<td>DefaultDynamicObject[4]</td>
<td colspan=34 style='mso-ignore:colspan'></td>
</tr>
<![if supportMisalignedColumns]>
<tr height=0 style='display:none'>
<td width=102 style='width:77pt'></td>
<td width=149 style='width:112pt'></td>
<td width=159 style='width:119pt'></td>
<td width=159 style='width:119pt'></td>
<td width=175 style='width:132pt'></td>
<td width=142 style='width:107pt'></td>
<td width=126 style='width:95pt'></td>
<td width=126 style='width:95pt'></td>
<td width=126 style='width:95pt'></td>
<td width=126 style='width:95pt'></td>
<td width=126 style='width:95pt'></td>
<td width=126 style='width:95pt'></td>
<td width=126 style='width:95pt'></td>
<td width=215 style='width:162pt'></td>
<td width=215 style='width:162pt'></td>
<td width=183 style='width:138pt'></td>
<td width=183 style='width:138pt'></td>
<td width=191 style='width:144pt'></td>
<td width=191 style='width:144pt'></td>
<td width=191 style='width:144pt'></td>
<td width=199 style='width:150pt'></td>
<td width=215 style='width:162pt'></td>
<td width=199 style='width:150pt'></td>
<td width=110 style='width:83pt'></td>
<td width=102 style='width:77pt'></td>
<td width=118 style='width:89pt'></td>
<td width=118 style='width:89pt'></td>
<td width=118 style='width:89pt'></td>
<td width=159 style='width:119pt'></td>
<td width=142 style='width:107pt'></td>
<td width=207 style='width:155pt'></td>
<td width=191 style='width:144pt'></td>
<td width=183 style='width:138pt'></td>
<td width=167 style='width:126pt'></td>
<td width=215 style='width:162pt'></td>
<td width=199 style='width:150pt'></td>
<td width=167 style='width:126pt'></td>
<td width=135 style='width:101pt'></td>
<td width=110 style='width:83pt'></td>
<td width=142 style='width:107pt'></td>
<td width=102 style='width:77pt'></td>
<td width=102 style='width:77pt'></td>
<td width=183 style='width:138pt'></td>
<td width=183 style='width:138pt'></td>
<td width=135 style='width:101pt'></td>
<td width=135 style='width:101pt'></td>
<td width=102 style='width:77pt'></td>
<td width=102 style='width:77pt'></td>
<td width=102 style='width:77pt'></td>
<td width=102 style='width:77pt'></td>
<td width=102 style='width:77pt'></td>
<td width=102 style='width:77pt'></td>
<td width=102 style='width:77pt'></td>
<td width=102 style='width:77pt'></td>
<td width=102 style='width:77pt'></td>
<td width=25 style='width:19pt'></td>
<td width=25 style='width:19pt'></td>
</tr>
<![endif]>
</table>
</body>
</html>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,208 @@
<html xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=Content-Type content="text/html; charset=gb2312">
<meta name=ProgId content=Excel.Sheet>
<meta name=Generator content="Microsoft Excel 15">
<link id=Main-File rel=Main-File href="../g关卡C036.html">
<link rel=File-List href=filelist.xml>
<title>个人测试关卡</title>
<link rel=Stylesheet href=stylesheet.css>
<style>
<!--table
{mso-displayed-decimal-separator:"\.";
mso-displayed-thousand-separator:"\,";}
@page
{margin:.75in .7in .75in .7in;
mso-header-margin:.3in;
mso-footer-margin:.3in;}
ruby
{ruby-align:left;}
rt
{color:windowtext;
font-size:9.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:宋体;
mso-generic-font-family:auto;
mso-font-charset:134;
mso-char-type:none;
display:none;}
-->
</style>
<![if !supportTabStrip]><script language="JavaScript">
<!--
function fnUpdateTabs()
{
if (parent.window.g_iIEVer>=4) {
if (parent.document.readyState=="complete"
&& parent.frames['frTabs'].document.readyState=="complete")
parent.fnSetActiveSheet(10);
else
window.setTimeout("fnUpdateTabs();",150);
}
}
if (window.name!="frSheet")
window.location.replace("../g关卡C036.html");
else
fnUpdateTabs();
//-->
</script>
<![endif]>
</head>
<body link="#0563C1" vlink="#954F72">
<table border=0 cellpadding=0 cellspacing=0 width=1536 style='border-collapse:
collapse;table-layout:fixed;width:1152pt'>
<col width=64 span=24 style='width:48pt'>
<tr height=19 style='height:14.0pt'>
<td height=19 width=64 style='height:14.0pt;width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>1</td>
<td align=right>2</td>
<td align=right>3</td>
<td align=right>4</td>
<td align=right>5</td>
<td align=right>6</td>
<td align=right>7</td>
<td align=right>8</td>
<td align=right>10</td>
<td align=right>11</td>
<td align=right>12</td>
<td align=right>13</td>
<td align=right>14</td>
<td align=right>16</td>
<td align=right>17</td>
<td align=right>18</td>
<td align=right>19</td>
<td align=right>20</td>
<td align=right>21</td>
<td align=right>22</td>
<td align=right>23</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 colspan=2 style='height:14.0pt;mso-ignore:colspan'>此列之后严禁修改</td>
<td colspan=22 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>id</td>
<td>Name</td>
<td>Info</td>
<td>BornPosi<span style='display:none'>tion[1]</span></td>
<td>BornPosi<span style='display:none'>tion[2]</span></td>
<td>BornPosi<span style='display:none'>tion[3]</span></td>
<td>BornPosi<span style='display:none'>tion[4]</span></td>
<td>BornPosi<span style='display:none'>tion[5]</span></td>
<td>LookPosi<span style='display:none'>tion[1]</span></td>
<td>LookPosi<span style='display:none'>tion[2]</span></td>
<td>LookPosi<span style='display:none'>tion[3]</span></td>
<td>LookPosi<span style='display:none'>tion[4]</span></td>
<td>LookPosi<span style='display:none'>tion[5]</span></td>
<td>DefaultO<span style='display:none'>bstacleArea[1]</span></td>
<td>DefaultO<span style='display:none'>bstacleArea[2]</span></td>
<td>DefaultO<span style='display:none'>bstacleArea[3]</span></td>
<td>DefaultO<span style='display:none'>bstacleArea[4]</span></td>
<td>DefaultD<span style='display:none'>ynamicObject[1]</span></td>
<td>DefaultD<span style='display:none'>ynamicObject[2]</span></td>
<td>DefaultD<span style='display:none'>ynamicObject[3]</span></td>
<td colspan=3 style='mso-ignore:colspan'>DefaultDynamicObject[4]</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'></td>
<td align=right>0</td>
<td align=right>0</td>
<td>PB1</td>
<td colspan=4 style='mso-ignore:colspan'></td>
<td>B101</td>
<td colspan=15 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>地点组ID</td>
<td>地图名</td>
<td>地图地点<span style='display:none'></span></td>
<td>出生点1</td>
<td>出生点2</td>
<td>出生点3</td>
<td>出生点4</td>
<td>出生点5</td>
<td>出生看向<span style='display:none'>点1</span></td>
<td>出生看向<span style='display:none'>点2</span></td>
<td>出生看向<span style='display:none'>点3</span></td>
<td>出生看向<span style='display:none'>点4</span></td>
<td>出生看向<span style='display:none'>点5</span></td>
<td>默认区域<span style='display:none'>为障碍1</span></td>
<td>默认区域<span style='display:none'>为障碍2</span></td>
<td>默认区域<span style='display:none'>为障碍3</span></td>
<td>默认区域<span style='display:none'>为障碍4</span></td>
<td>默认物件<span style='display:none'>显示1</span></td>
<td>默认物件<span style='display:none'>显示2</span></td>
<td>默认物件<span style='display:none'>显示3</span></td>
<td colspan=2 style='mso-ignore:colspan'>默认物件显示4</td>
<td colspan=2 style='mso-ignore:colspan'></td>
</tr>
<![if supportMisalignedColumns]>
<tr height=0 style='display:none'>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
</tr>
<![endif]>
</table>
</body>
</html>

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,42 @@
<html>
<head>
<meta http-equiv=Content-Type content="text/html; charset=gb2312">
<meta name=ProgId content=Excel.Sheet>
<meta name=Generator content="Microsoft Excel 15">
<link id=Main-File rel=Main-File href="../g关卡C036.html">
<script language="JavaScript">
<!--
if (window.name!="frTabs")
window.location.replace(document.all.item("Main-File").href);
//-->
</script>
<style>
<!--
A {
text-decoration:none;
color:#000000;
font-size:9pt;
}
-->
</style>
</head>
<body topmargin=0 leftmargin=0 bgcolor="#808080">
<table border=0 cellspacing=1>
<tr>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet001.html" target="frSheet"><font face="宋体" color="#000000">同步所有宏</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet002.html" target="frSheet"><font face="宋体" color="#000000">工具表设置</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet003.html" target="frSheet"><font face="宋体" color="#000000">怪物等级导入</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet004.html" target="frSheet"><font face="宋体" color="#000000">关卡</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet005.html" target="frSheet"><font face="宋体" color="#000000">行为树</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet006.html" target="frSheet"><font face="宋体" color="#000000">常用Buff</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet007.html" target="frSheet"><font face="宋体" color="#000000">行为类型</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet008.html" target="frSheet"><font face="宋体" color="#000000">建表表头</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet009.html" target="frSheet"><font face="宋体" color="#000000">三星条件对应</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet010.html" target="frSheet"><font face="宋体" color="#000000">组合列表</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet011.html" target="frSheet"><font face="宋体" color="#000000">地点组</font></a>&nbsp;</small></small></b></td>
</tr>
</table>
</body>
</html>

View File

@ -0,0 +1,388 @@
<html xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta name="Excel Workbook Frameset">
<meta http-equiv=Content-Type content="text/html; charset=gb2312">
<meta name=ProgId content=Excel.Sheet>
<meta name=Generator content="Microsoft Excel 15">
<link rel=File-List href="g关卡C036.files/filelist.xml">
<title>个人测试关卡</title>
<![if !supportTabStrip]>
<link id="shLink" href="g关卡C036.files/sheet001.html">
<link id="shLink" href="g关卡C036.files/sheet002.html">
<link id="shLink" href="g关卡C036.files/sheet003.html">
<link id="shLink" href="g关卡C036.files/sheet004.html">
<link id="shLink" href="g关卡C036.files/sheet005.html">
<link id="shLink" href="g关卡C036.files/sheet006.html">
<link id="shLink" href="g关卡C036.files/sheet007.html">
<link id="shLink" href="g关卡C036.files/sheet008.html">
<link id="shLink" href="g关卡C036.files/sheet009.html">
<link id="shLink" href="g关卡C036.files/sheet010.html">
<link id="shLink" href="g关卡C036.files/sheet011.html">
<link id="shLink">
<script language="JavaScript">
<!--
var c_lTabs=11;
var c_rgszSh=new Array(c_lTabs);
c_rgszSh[0] = "同步所有宏";
c_rgszSh[1] = "工具表设置";
c_rgszSh[2] = "怪物等级导入";
c_rgszSh[3] = "关卡";
c_rgszSh[4] = "行为树";
c_rgszSh[5] = "常用Buff";
c_rgszSh[6] = "行为类型";
c_rgszSh[7] = "建表表头";
c_rgszSh[8] = "三星条件对应";
c_rgszSh[9] = "组合列表";
c_rgszSh[10] = "地点组";
var c_rgszClr=new Array(8);
c_rgszClr[0]="window";
c_rgszClr[1]="buttonface";
c_rgszClr[2]="windowframe";
c_rgszClr[3]="windowtext";
c_rgszClr[4]="threedlightshadow";
c_rgszClr[5]="threedhighlight";
c_rgszClr[6]="threeddarkshadow";
c_rgszClr[7]="threedshadow";
var g_iShCur;
var g_rglTabX=new Array(c_lTabs);
function fnGetIEVer()
{
var ua=window.navigator.userAgent
var msie=ua.indexOf("MSIE")
if (msie>0 && window.navigator.platform=="Win32")
return parseInt(ua.substring(msie+5,ua.indexOf(".", msie)));
else
return 0;
}
function fnBuildFrameset()
{
var szHTML="<frameset rows=\"*,18\" border=0 width=0 frameborder=no framespacing=0>"+
"<frame src=\""+document.all.item("shLink")[6].href+"\" name=\"frSheet\" noresize>"+
"<frameset cols=\"54,*\" border=0 width=0 frameborder=no framespacing=0>"+
"<frame src=\"\" name=\"frScroll\" marginwidth=0 marginheight=0 scrolling=no>"+
"<frame src=\"\" name=\"frTabs\" marginwidth=0 marginheight=0 scrolling=no>"+
"</frameset></frameset><plaintext>";
with (document) {
open("text/html","replace");
write(szHTML);
close();
}
fnBuildTabStrip();
}
function fnBuildTabStrip()
{
var szHTML=
"<html><head><style>.clScroll {font:8pt Courier New;color:"+c_rgszClr[6]+";cursor:default;line-height:10pt;}"+
".clScroll2 {font:10pt Arial;color:"+c_rgszClr[6]+";cursor:default;line-height:11pt;}</style></head>"+
"<body onclick=\"event.returnValue=false;\" ondragstart=\"event.returnValue=false;\" onselectstart=\"event.returnValue=false;\" bgcolor="+c_rgszClr[4]+" topmargin=0 leftmargin=0><table cellpadding=0 cellspacing=0 width=100%>"+
"<tr><td colspan=6 height=1 bgcolor="+c_rgszClr[2]+"></td></tr>"+
"<tr><td style=\"font:1pt\">&nbsp;<td>"+
"<td valign=top id=tdScroll class=\"clScroll\" onclick=\"parent.fnFastScrollTabs(0);\" onmouseover=\"parent.fnMouseOverScroll(0);\" onmouseout=\"parent.fnMouseOutScroll(0);\"><a>&#171;</a></td>"+
"<td valign=top id=tdScroll class=\"clScroll2\" onclick=\"parent.fnScrollTabs(0);\" ondblclick=\"parent.fnScrollTabs(0);\" onmouseover=\"parent.fnMouseOverScroll(1);\" onmouseout=\"parent.fnMouseOutScroll(1);\"><a>&lt</a></td>"+
"<td valign=top id=tdScroll class=\"clScroll2\" onclick=\"parent.fnScrollTabs(1);\" ondblclick=\"parent.fnScrollTabs(1);\" onmouseover=\"parent.fnMouseOverScroll(2);\" onmouseout=\"parent.fnMouseOutScroll(2);\"><a>&gt</a></td>"+
"<td valign=top id=tdScroll class=\"clScroll\" onclick=\"parent.fnFastScrollTabs(1);\" onmouseover=\"parent.fnMouseOverScroll(3);\" onmouseout=\"parent.fnMouseOutScroll(3);\"><a>&#187;</a></td>"+
"<td style=\"font:1pt\">&nbsp;<td></tr></table></body></html>";
with (frames['frScroll'].document) {
open("text/html","replace");
write(szHTML);
close();
}
szHTML =
"<html><head>"+
"<style>A:link,A:visited,A:active {text-decoration:none;"+"color:"+c_rgszClr[3]+";}"+
".clTab {cursor:hand;background:"+c_rgszClr[1]+";font:9pt 宋体;padding-left:3px;padding-right:3px;text-align:center;}"+
".clBorder {background:"+c_rgszClr[2]+";font:1pt;}"+
"</style></head><body onload=\"parent.fnInit();\" onselectstart=\"event.returnValue=false;\" ondragstart=\"event.returnValue=false;\" bgcolor="+c_rgszClr[4]+
" topmargin=0 leftmargin=0><table id=tbTabs cellpadding=0 cellspacing=0>";
var iCellCount=(c_lTabs+1)*2;
var i;
for (i=0;i<iCellCount;i+=2)
szHTML+="<col width=1><col>";
var iRow;
for (iRow=0;iRow<6;iRow++) {
szHTML+="<tr>";
if (iRow==5)
szHTML+="<td colspan="+iCellCount+"></td>";
else {
if (iRow==0) {
for(i=0;i<iCellCount;i++)
szHTML+="<td height=1 class=\"clBorder\"></td>";
} else if (iRow==1) {
for(i=0;i<c_lTabs;i++) {
szHTML+="<td height=1 nowrap class=\"clBorder\">&nbsp;</td>";
szHTML+=
"<td id=tdTab height=1 nowrap class=\"clTab\" onmouseover=\"parent.fnMouseOverTab("+i+");\" onmouseout=\"parent.fnMouseOutTab("+i+");\">"+
"<a href=\""+document.all.item("shLink")[i].href+"\" target=\"frSheet\" id=aTab>&nbsp;"+c_rgszSh[i]+"&nbsp;</a></td>";
}
szHTML+="<td id=tdTab height=1 nowrap class=\"clBorder\"><a id=aTab>&nbsp;</a></td><td width=100%></td>";
} else if (iRow==2) {
for (i=0;i<c_lTabs;i++)
szHTML+="<td height=1></td><td height=1 class=\"clBorder\"></td>";
szHTML+="<td height=1></td><td height=1></td>";
} else if (iRow==3) {
for (i=0;i<iCellCount;i++)
szHTML+="<td height=1></td>";
} else if (iRow==4) {
for (i=0;i<c_lTabs;i++)
szHTML+="<td height=1 width=1></td><td height=1></td>";
szHTML+="<td height=1 width=1></td><td></td>";
}
}
szHTML+="</tr>";
}
szHTML+="</table></body></html>";
with (frames['frTabs'].document) {
open("text/html","replace");
charset=document.charset;
write(szHTML);
close();
}
}
function fnInit()
{
g_rglTabX[0]=0;
var i;
for (i=1;i<=c_lTabs;i++)
with (frames['frTabs'].document.all.tbTabs.rows[1].cells[fnTabToCol(i-1)])
g_rglTabX[i]=offsetLeft+offsetWidth-6;
}
function fnTabToCol(iTab)
{
return 2*iTab+1;
}
function fnNextTab(fDir)
{
var iNextTab=-1;
var i;
with (frames['frTabs'].document.body) {
if (fDir==0) {
if (scrollLeft>0) {
for (i=0;i<c_lTabs&&g_rglTabX[i]<scrollLeft;i++);
if (i<c_lTabs)
iNextTab=i-1;
}
} else {
if (g_rglTabX[c_lTabs]+6>offsetWidth+scrollLeft) {
for (i=0;i<c_lTabs&&g_rglTabX[i]<=scrollLeft;i++);
if (i<c_lTabs)
iNextTab=i;
}
}
}
return iNextTab;
}
function fnScrollTabs(fDir)
{
var iNextTab=fnNextTab(fDir);
if (iNextTab>=0) {
frames['frTabs'].scroll(g_rglTabX[iNextTab],0);
return true;
} else
return false;
}
function fnFastScrollTabs(fDir)
{
if (c_lTabs>16)
frames['frTabs'].scroll(g_rglTabX[fDir?c_lTabs-1:0],0);
else
if (fnScrollTabs(fDir)>0) window.setTimeout("fnFastScrollTabs("+fDir+");",5);
}
function fnSetTabProps(iTab,fActive)
{
var iCol=fnTabToCol(iTab);
var i;
if (iTab>=0) {
with (frames['frTabs'].document.all) {
with (tbTabs) {
for (i=0;i<=4;i++) {
with (rows[i]) {
if (i==0)
cells[iCol].style.background=c_rgszClr[fActive?0:2];
else if (i>0 && i<4) {
if (fActive) {
cells[iCol-1].style.background=c_rgszClr[2];
cells[iCol].style.background=c_rgszClr[0];
cells[iCol+1].style.background=c_rgszClr[2];
} else {
if (i==1) {
cells[iCol-1].style.background=c_rgszClr[2];
cells[iCol].style.background=c_rgszClr[1];
cells[iCol+1].style.background=c_rgszClr[2];
} else {
cells[iCol-1].style.background=c_rgszClr[4];
cells[iCol].style.background=c_rgszClr[(i==2)?2:4];
cells[iCol+1].style.background=c_rgszClr[4];
}
}
} else
cells[iCol].style.background=c_rgszClr[fActive?2:4];
}
}
}
with (aTab[iTab].style) {
cursor=(fActive?"default":"hand");
color=c_rgszClr[3];
}
}
}
}
function fnMouseOverScroll(iCtl)
{
frames['frScroll'].document.all.tdScroll[iCtl].style.color=c_rgszClr[7];
}
function fnMouseOutScroll(iCtl)
{
frames['frScroll'].document.all.tdScroll[iCtl].style.color=c_rgszClr[6];
}
function fnMouseOverTab(iTab)
{
if (iTab!=g_iShCur) {
var iCol=fnTabToCol(iTab);
with (frames['frTabs'].document.all) {
tdTab[iTab].style.background=c_rgszClr[5];
}
}
}
function fnMouseOutTab(iTab)
{
if (iTab>=0) {
var elFrom=frames['frTabs'].event.srcElement;
var elTo=frames['frTabs'].event.toElement;
if ((!elTo) ||
(elFrom.tagName==elTo.tagName) ||
(elTo.tagName=="A" && elTo.parentElement!=elFrom) ||
(elFrom.tagName=="A" && elFrom.parentElement!=elTo)) {
if (iTab!=g_iShCur) {
with (frames['frTabs'].document.all) {
tdTab[iTab].style.background=c_rgszClr[1];
}
}
}
}
}
function fnSetActiveSheet(iSh)
{
if (iSh!=g_iShCur) {
fnSetTabProps(g_iShCur,false);
fnSetTabProps(iSh,true);
g_iShCur=iSh;
}
}
window.g_iIEVer=fnGetIEVer();
if (window.g_iIEVer>=4)
fnBuildFrameset();
//-->
</script>
<![endif]><!--[if gte mso 9]><xml>
<x:ExcelWorkbook>
<x:ExcelWorksheets>
<x:ExcelWorksheet>
<x:Name>同步所有宏</x:Name>
<x:WorksheetSource HRef="g关卡C036.files/sheet001.html"/>
</x:ExcelWorksheet>
<x:ExcelWorksheet>
<x:Name>工具表设置</x:Name>
<x:WorksheetSource HRef="g关卡C036.files/sheet002.html"/>
</x:ExcelWorksheet>
<x:ExcelWorksheet>
<x:Name>怪物等级导入</x:Name>
<x:WorksheetSource HRef="g关卡C036.files/sheet003.html"/>
</x:ExcelWorksheet>
<x:ExcelWorksheet>
<x:Name>关卡</x:Name>
<x:WorksheetSource HRef="g关卡C036.files/sheet004.html"/>
</x:ExcelWorksheet>
<x:ExcelWorksheet>
<x:Name>行为树</x:Name>
<x:WorksheetSource HRef="g关卡C036.files/sheet005.html"/>
</x:ExcelWorksheet>
<x:ExcelWorksheet>
<x:Name>常用Buff</x:Name>
<x:WorksheetSource HRef="g关卡C036.files/sheet006.html"/>
</x:ExcelWorksheet>
<x:ExcelWorksheet>
<x:Name>行为类型</x:Name>
<x:WorksheetSource HRef="g关卡C036.files/sheet007.html"/>
</x:ExcelWorksheet>
<x:ExcelWorksheet>
<x:Name>建表表头</x:Name>
<x:WorksheetSource HRef="g关卡C036.files/sheet008.html"/>
</x:ExcelWorksheet>
<x:ExcelWorksheet>
<x:Name>三星条件对应</x:Name>
<x:WorksheetSource HRef="g关卡C036.files/sheet009.html"/>
</x:ExcelWorksheet>
<x:ExcelWorksheet>
<x:Name>组合列表</x:Name>
<x:WorksheetSource HRef="g关卡C036.files/sheet010.html"/>
</x:ExcelWorksheet>
<x:ExcelWorksheet>
<x:Name>地点组</x:Name>
<x:WorksheetSource HRef="g关卡C036.files/sheet011.html"/>
</x:ExcelWorksheet>
</x:ExcelWorksheets>
<x:Stylesheet HRef="g关卡C036.files/stylesheet.css"/>
<x:WindowHeight>21100</x:WindowHeight>
<x:WindowWidth>32767</x:WindowWidth>
<x:WindowTopX>32767</x:WindowTopX>
<x:WindowTopY>32767</x:WindowTopY>
<x:ActiveSheet>6</x:ActiveSheet>
<x:StartupPrompt>True</x:StartupPrompt>
<x:ProtectStructure>False</x:ProtectStructure>
<x:ProtectWindows>False</x:ProtectWindows>
</x:ExcelWorkbook>
</xml><![endif]-->
</head>
<frameset rows="*,39" border=0 width=0 frameborder=no framespacing=0>
<frame src="g关卡C036.files/sheet007.html" name="frSheet">
<frame src="g关卡C036.files/tabstrip.html" name="frTabs" marginwidth=0 marginheight=0>
<noframes>
<body>
<p>此页面使用了框架,而您的浏览器不支持框架。</p>
</body>
</noframes>
</frameset>
</html>

View File

@ -0,0 +1,21 @@
<xml xmlns:o="urn:schemas-microsoft-com:office:office">
<o:MainFile HRef="../x效果C054.html"/>
<o:File HRef="stylesheet.css"/>
<o:File HRef="tabstrip.html"/>
<o:File HRef="sheet001.html"/>
<o:File HRef="sheet002.html"/>
<o:File HRef="sheet003.html"/>
<o:File HRef="sheet004.html"/>
<o:File HRef="sheet005.html"/>
<o:File HRef="sheet006.html"/>
<o:File HRef="sheet007.html"/>
<o:File HRef="sheet008.html"/>
<o:File HRef="sheet009.html"/>
<o:File HRef="sheet010.html"/>
<o:File HRef="sheet011.html"/>
<o:File HRef="sheet012.html"/>
<o:File HRef="sheet013.html"/>
<o:File HRef="sheet014.html"/>
<o:File HRef="sheet015.html"/>
<o:File HRef="filelist.xml"/>
</xml>

View File

@ -0,0 +1,155 @@
<html xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=Content-Type content="text/html; charset=gb2312">
<meta name=ProgId content=Excel.Sheet>
<meta name=Generator content="Microsoft Excel 15">
<link id=Main-File rel=Main-File href="../x效果C054.html">
<link rel=File-List href=filelist.xml>
<title>效果表 - 关卡 - 李亦臻</title>
<link rel=Stylesheet href=stylesheet.css>
<style>
<!--table
{mso-displayed-decimal-separator:"\.";
mso-displayed-thousand-separator:"\,";}
@page
{margin:.75in .7in .75in .7in;
mso-header-margin:.3in;
mso-footer-margin:.3in;}
ruby
{ruby-align:left;}
rt
{color:windowtext;
font-size:9.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:宋体;
mso-generic-font-family:auto;
mso-font-charset:134;
mso-char-type:none;
display:none;}
-->
</style>
<![if !supportTabStrip]><script language="JavaScript">
<!--
function fnUpdateTabs()
{
if (parent.window.g_iIEVer>=4) {
if (parent.document.readyState=="complete"
&& parent.frames['frTabs'].document.readyState=="complete")
parent.fnSetActiveSheet(0);
else
window.setTimeout("fnUpdateTabs();",150);
}
}
if (window.name!="frSheet")
window.location.replace("../x效果C054.html");
else
fnUpdateTabs();
//-->
</script>
<![endif]>
</head>
<body link="#0563C1" vlink="#954F72">
<table border=0 cellpadding=0 cellspacing=0 width=707 style='border-collapse:
collapse;table-layout:fixed;width:530pt'>
<col width=131 style='mso-width-source:userset;mso-width-alt:4561;width:98pt'>
<col width=64 span=9 style='width:48pt'>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right width=131 style='height:14.0pt;width:98pt'>640540000</td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>609</td>
<td colspan=9 style='mso-ignore:colspan'></td>
</tr>
<tr height=133 style='height:98.0pt;mso-xlrowspan:7'>
<td height=133 colspan=10 style='height:98.0pt;mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14314 style='height:14.0pt'>双击同步表头</td>
<td colspan=9 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14314 style='height:14.0pt'>双击同步代码</td>
<td colspan=9 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14314 style='height:14.0pt'></td>
<td colspan=9 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14315 style='height:14.0pt'></td>
<td colspan=9 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14315 style='height:14.0pt'>日期勿手动修改</td>
<td colspan=9 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14315 style='height:14.0pt'>自动生成日期</td>
<td class=xl14318 align=center>########</td>
<td colspan=8 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14315 style='height:14.0pt'>自动更新代码日期</td>
<td colspan=9 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14315 style='height:14.0pt'>自动运行脚本日期</td>
<td colspan=9 style='mso-ignore:colspan'></td>
</tr>
<tr height=988 style='height:728.0pt;mso-xlrowspan:52'>
<td height=988 colspan=10 style='height:728.0pt;mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 colspan=9 style='height:14.0pt;mso-ignore:colspan'></td>
<td align=right>4933</td>
</tr>
<tr height=361 style='height:266.0pt;mso-xlrowspan:19'>
<td height=361 colspan=10 style='height:266.0pt;mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 colspan=9 style='height:14.0pt;mso-ignore:colspan'></td>
<td align=right>4933</td>
</tr>
<tr height=171 style='height:126.0pt;mso-xlrowspan:9'>
<td height=171 colspan=10 style='height:126.0pt;mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 colspan=9 style='height:14.0pt;mso-ignore:colspan'></td>
<td align=right>139</td>
</tr>
<![if supportMisalignedColumns]>
<tr height=0 style='display:none'>
<td width=131 style='width:98pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
</tr>
<![endif]>
</table>
</body>
</html>

View File

@ -0,0 +1,107 @@
<html xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=Content-Type content="text/html; charset=gb2312">
<meta name=ProgId content=Excel.Sheet>
<meta name=Generator content="Microsoft Excel 15">
<link id=Main-File rel=Main-File href="../x效果C054.html">
<link rel=File-List href=filelist.xml>
<title>效果表 - 关卡 - 李亦臻</title>
<link rel=Stylesheet href=stylesheet.css>
<style>
<!--table
{mso-displayed-decimal-separator:"\.";
mso-displayed-thousand-separator:"\,";}
@page
{margin:.75in .7in .75in .7in;
mso-header-margin:.3in;
mso-footer-margin:.3in;}
ruby
{ruby-align:left;}
rt
{color:windowtext;
font-size:9.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:宋体;
mso-generic-font-family:auto;
mso-font-charset:134;
mso-char-type:none;
display:none;}
-->
</style>
<![if !supportTabStrip]><script language="JavaScript">
<!--
function fnUpdateTabs()
{
if (parent.window.g_iIEVer>=4) {
if (parent.document.readyState=="complete"
&& parent.frames['frTabs'].document.readyState=="complete")
parent.fnSetActiveSheet(1);
else
window.setTimeout("fnUpdateTabs();",150);
}
}
if (window.name!="frSheet")
window.location.replace("../x效果C054.html");
else
fnUpdateTabs();
//-->
</script>
<![endif]>
</head>
<body link="#0563C1" vlink="#954F72">
<table border=0 cellpadding=0 cellspacing=0 width=576 style='border-collapse:
collapse;table-layout:fixed;width:432pt'>
<col width=64 span=9 style='width:48pt'>
<tr height=19 style='height:14.0pt'>
<td height=19 width=64 style='height:14.0pt;width:48pt'>设置</td>
<td width=64 style='width:48pt'>说明</td>
<td width=64 style='width:48pt'>参数1</td>
<td width=64 style='width:48pt'>参数2</td>
<td width=64 style='width:48pt'>参数3</td>
<td width=64 style='width:48pt'>参数4</td>
<td width=64 style='width:48pt'>参数5</td>
<td width=64 style='width:48pt'>参数6</td>
<td width=64 style='width:48pt'>参数7</td>
</tr>
<tr height=317 style='height:238.0pt'>
<td height=317 style='height:238.0pt'>行为节点<span style='display:none'>显示注释</span></td>
<td class=xl14310 width=64 style='width:48pt'>0无操作<br>
1编辑相关单元格后显示注释<br>
2编辑相关单元格后删除注释<br>
考虑到Excel注释会占用大量资源的关系不建议使用。</td>
<td align=right>0</td>
<td colspan=6 style='mso-ignore:colspan'></td>
</tr>
<tr height=112 style='height:84.0pt'>
<td height=112 style='height:84.0pt'>行为表格<span style='display:none'>顶部显示说明</span></td>
<td class=xl14310 width=64 style='width:48pt'>0无操作<br>
1编辑相关单元格后显示说明</td>
<td align=right>1</td>
<td colspan=6 style='mso-ignore:colspan'></td>
</tr>
<![if supportMisalignedColumns]>
<tr height=0 style='display:none'>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
</tr>
<![endif]>
</table>
</body>
</html>

View File

@ -0,0 +1,106 @@
<html xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=Content-Type content="text/html; charset=gb2312">
<meta name=ProgId content=Excel.Sheet>
<meta name=Generator content="Microsoft Excel 15">
<link id=Main-File rel=Main-File href="../x效果C054.html">
<link rel=File-List href=filelist.xml>
<title>效果表 - 关卡 - 李亦臻</title>
<link rel=Stylesheet href=stylesheet.css>
<style>
<!--table
{mso-displayed-decimal-separator:"\.";
mso-displayed-thousand-separator:"\,";}
@page
{margin:.75in .7in .75in .7in;
mso-header-margin:.3in;
mso-footer-margin:.3in;}
ruby
{ruby-align:left;}
rt
{color:windowtext;
font-size:9.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:宋体;
mso-generic-font-family:auto;
mso-font-charset:134;
mso-char-type:none;
display:none;}
-->
</style>
<![if !supportTabStrip]><script language="JavaScript">
<!--
function fnUpdateTabs()
{
if (parent.window.g_iIEVer>=4) {
if (parent.document.readyState=="complete"
&& parent.frames['frTabs'].document.readyState=="complete")
parent.fnSetActiveSheet(2);
else
window.setTimeout("fnUpdateTabs();",150);
}
}
if (window.name!="frSheet")
window.location.replace("../x效果C054.html");
else
fnUpdateTabs();
//-->
</script>
<![endif]>
</head>
<body link="#0563C1" vlink="#954F72">
<table border=0 cellpadding=0 cellspacing=0 width=576 style='border-collapse:
collapse;table-layout:fixed;width:432pt'>
<col width=64 span=9 style='width:48pt'>
<tr height=19 style='height:14.0pt'>
<td height=19 width=64 style='height:14.0pt;width:48pt'>设置</td>
<td width=64 style='width:48pt'>说明</td>
<td width=64 style='width:48pt'>参数1</td>
<td width=64 style='width:48pt'>参数2</td>
<td width=64 style='width:48pt'>参数3</td>
<td width=64 style='width:48pt'>参数4</td>
<td width=64 style='width:48pt'>参数5</td>
<td width=64 style='width:48pt'>参数6</td>
<td width=64 style='width:48pt'>参数7</td>
</tr>
<tr height=355 style='height:266.0pt'>
<td height=355 style='height:266.0pt'>强制刷新<span style='display:none'>独立设置标志位</span></td>
<td class=xl14310 width=64 style='width:48pt'>请注意:此表格的改填参数内容,不能更改格式和顺序。<br>
此参数为0时已有的参数不会同步公共表格。<br>
此参数为1时已有的参数强制同步公共表格。</td>
<td align=right>0</td>
<td colspan=6 style='mso-ignore:colspan'></td>
</tr>
<tr height=205 style='height:154.0pt'>
<td height=205 style='height:154.0pt'>MagicLev<span style='display:none'>el最大列数</span></td>
<td class=xl14310 width=64 style='width:48pt'>当前配置表里你需要最大的Magic等级参数数量<br>
超过此数量的Magic等级参数将不被导出</td>
<td align=right>50</td>
<td colspan=6 style='mso-ignore:colspan'></td>
</tr>
<![if supportMisalignedColumns]>
<tr height=0 style='display:none'>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
</tr>
<![endif]>
</table>
</body>
</html>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,329 @@
<html xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=Content-Type content="text/html; charset=gb2312">
<meta name=ProgId content=Excel.Sheet>
<meta name=Generator content="Microsoft Excel 15">
<link id=Main-File rel=Main-File href="../x效果C054.html">
<link rel=File-List href=filelist.xml>
<title>效果表 - 关卡 - 李亦臻</title>
<link rel=Stylesheet href=stylesheet.css>
<style>
<!--table
{mso-displayed-decimal-separator:"\.";
mso-displayed-thousand-separator:"\,";}
@page
{margin:.75in .7in .75in .7in;
mso-header-margin:.3in;
mso-footer-margin:.3in;}
ruby
{ruby-align:left;}
rt
{color:windowtext;
font-size:9.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:宋体;
mso-generic-font-family:auto;
mso-font-charset:134;
mso-char-type:none;
display:none;}
-->
</style>
<![if !supportTabStrip]><script language="JavaScript">
<!--
function fnUpdateTabs()
{
if (parent.window.g_iIEVer>=4) {
if (parent.document.readyState=="complete"
&& parent.frames['frTabs'].document.readyState=="complete")
parent.fnSetActiveSheet(7);
else
window.setTimeout("fnUpdateTabs();",150);
}
}
if (window.name!="frSheet")
window.location.replace("../x效果C054.html");
else
fnUpdateTabs();
//-->
</script>
<![endif]>
</head>
<body link="#0563C1" vlink="#954F72">
<table border=0 cellpadding=0 cellspacing=0 width=473 style='border-collapse:
collapse;table-layout:fixed;width:355pt'>
<col width=64 style='width:48pt'>
<col width=217 style='mso-width-source:userset;mso-width-alt:7586;width:163pt'>
<col width=64 span=3 style='width:48pt'>
<tr height=19 style='height:14.0pt'>
<td height=19 width=64 style='height:14.0pt;width:48pt'>Npc状态I<span
style='display:none'>D</span></td>
<td width=217 style='width:163pt'>状态中文名</td>
<td colspan=2 width=128 style='mso-ignore:colspan;width:96pt'>状态程序名</td>
<td width=64 style='width:48pt'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>1</td>
<td>不能被子弹搜索</td>
<td colspan=2 style='mso-ignore:colspan'>ImmuneToMissile</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>2</td>
<td>不能被阵营1子弹搜索</td>
<td colspan=3 style='mso-ignore:colspan'>ImmuneToMissileCamp1</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>3</td>
<td>不能被阵营2子弹搜索</td>
<td colspan=3 style='mso-ignore:colspan'>ImmuneToMissileCamp2</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>4</td>
<td>不能被阵营3子弹搜索</td>
<td colspan=3 style='mso-ignore:colspan'>ImmuneToMissileCamp3</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>5</td>
<td>不能被阵营4子弹搜索</td>
<td colspan=3 style='mso-ignore:colspan'>ImmuneToMissileCamp4</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>11</td>
<td>不能被Npc行为树搜索</td>
<td colspan=2 style='mso-ignore:colspan'>ImmuneToBehavior</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>12</td>
<td>不能被阵营1Npc行为树搜索</td>
<td colspan=3 style='mso-ignore:colspan'>ImmuneToBehaviorCamp1</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>13</td>
<td>不能被阵营2Npc行为树搜索</td>
<td colspan=3 style='mso-ignore:colspan'>ImmuneToBehaviorCamp2</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>14</td>
<td>不能被阵营3Npc行为树搜索</td>
<td colspan=3 style='mso-ignore:colspan'>ImmuneToBehaviorCamp3</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>15</td>
<td>不能被阵营4Npc行为树搜索</td>
<td colspan=3 style='mso-ignore:colspan'>ImmuneToBehaviorCamp4</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>21</td>
<td>我移动不受碰撞(状态)</td>
<td colspan=3 style='mso-ignore:colspan'>IgnoreCollisionToNpc</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>22</td>
<td>其他单位移动不受我碰撞(状态)</td>
<td colspan=3 style='mso-ignore:colspan'>IgnoreCollisionFromNpc</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>23</td>
<td>眩晕(动作+禁止施法+禁止移动)</td>
<td>Stun</td>
<td colspan=2 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>24</td>
<td>禁止施法</td>
<td colspan=2 style='mso-ignore:colspan'>ForbidSkill</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>25</td>
<td>禁止移动</td>
<td colspan=2 style='mso-ignore:colspan'>ForbidMove</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>26</td>
<td>无敌(免疫受击+免疫伤害+免疫抓<span style='display:none'>取+免疫牵引)</span></td>
<td colspan=2 style='mso-ignore:colspan'>Invincible</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>27</td>
<td>免疫受击</td>
<td colspan=2 style='mso-ignore:colspan'>ImmuneToBeHit</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>28</td>
<td>免疫伤害</td>
<td colspan=2 style='mso-ignore:colspan'>ImmuneDamage</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>29</td>
<td>免疫治疗</td>
<td colspan=2 style='mso-ignore:colspan'>ImmuneCure</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>30</td>
<td>石化(动作+禁止施法+禁止移动)</td>
<td>Petrify</td>
<td colspan=2 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>31</td>
<td>免疫普攻受击</td>
<td colspan=3 style='mso-ignore:colspan'>ImmuneToAttackBeHit</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>32</td>
<td>免疫牵引</td>
<td colspan=2 style='mso-ignore:colspan'>ImmuneToDrag</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>33</td>
<td>无视场景障碍</td>
<td colspan=3 style='mso-ignore:colspan'>IgnoreSceneObstacle</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>34</td>
<td>无视动态障碍</td>
<td colspan=3 style='mso-ignore:colspan'>IgnoreDynamicObstacle</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>35</td>
<td>免疫抓取</td>
<td colspan=2 style='mso-ignore:colspan'>ImmuneToCatch</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>36</td>
<td>免疫霸体扣除</td>
<td colspan=2 style='mso-ignore:colspan'>ImmuneEndure</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>37</td>
<td>忽略被击特效</td>
<td colspan=3 style='mso-ignore:colspan'>IgnoreBeHitEffect</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>38</td>
<td>忽略骨骼抖动</td>
<td colspan=2 style='mso-ignore:colspan'>IgnoreBoneShake</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>39</td>
<td>忽略闪避间隔</td>
<td colspan=3 style='mso-ignore:colspan'>IgnoreDodgeLimitInterval</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>40</td>
<td>闪避时会被子弹击中</td>
<td colspan=3 style='mso-ignore:colspan'>DodgeEnableDamage</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>41</td>
<td>免疫顿帧</td>
<td colspan=2 style='mso-ignore:colspan'>IgnoreTimeScale</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>42</td>
<td>子弹击中后穿透</td>
<td colspan=3 style='mso-ignore:colspan'>PreventMissileRemove</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>43</td>
<td>关闭子弹特效</td>
<td colspan=3 style='mso-ignore:colspan'>IgnoreMissileEffect</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>44</td>
<td>关闭语音</td>
<td>MuteCv</td>
<td colspan=2 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>45</td>
<td>禁止普通伤害输出</td>
<td colspan=3 style='mso-ignore:colspan'>ForbidNormalDamageOutput</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>46</td>
<td>只能被召唤自己的npc的子弹搜索</td>
<td colspan=3 style='mso-ignore:colspan'>OnlyMissileByMaster</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>47</td>
<td>关闭音效</td>
<td colspan=2 style='mso-ignore:colspan'>MuteSound</td>
<td></td>
</tr>
<tr height=149 style='height:112.0pt'>
<td height=149 align=right style='height:112.0pt'>48</td>
<td class=xl14310 width=217 style='width:163pt'>元素转换<br>
V2.11 新加职业专用特殊状态拥有此状态的Npc给其他Npc添加属性相关Buff时会转为全属性<br>
文档https://kurogame.feishu.cn/sheets/BChlsSl6GhIkiUtaF6Ic7g1Knbd?from=from_copylink</td>
<td colspan=2 style='mso-ignore:colspan'>TranslateMagic</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>49</td>
<td>免疫积蓄</td>
<td colspan=3 style='mso-ignore:colspan'>ImmuneAccumulator</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>50</td>
<td>禁止跳跃</td>
<td colspan=2 style='mso-ignore:colspan'>ForbidJump</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>51</td>
<td>不同步逻辑动画</td>
<td colspan=2 style='mso-ignore:colspan'>NotSyncAnim</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>52</td>
<td>免疫落穴</td>
<td colspan=2 style='mso-ignore:colspan'>ImmuneTrapHole</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>53</td>
<td>V3.4TL演出中</td>
<td colspan=3 style='mso-ignore:colspan'>InTimelinePerformance</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>54</td>
<td>3D关卡忽略特殊碰撞</td>
<td colspan=3 style='mso-ignore:colspan'>IgnoreSpecialCollider</td>
</tr>
<![if supportMisalignedColumns]>
<tr height=0 style='display:none'>
<td width=64 style='width:48pt'></td>
<td width=217 style='width:163pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
</tr>
<![endif]>
</table>
</body>
</html>

View File

@ -0,0 +1,653 @@
<html xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=Content-Type content="text/html; charset=gb2312">
<meta name=ProgId content=Excel.Sheet>
<meta name=Generator content="Microsoft Excel 15">
<link id=Main-File rel=Main-File href="../x效果C054.html">
<link rel=File-List href=filelist.xml>
<title>效果表 - 关卡 - 李亦臻</title>
<link rel=Stylesheet href=stylesheet.css>
<style>
<!--table
{mso-displayed-decimal-separator:"\.";
mso-displayed-thousand-separator:"\,";}
@page
{margin:.75in .7in .75in .7in;
mso-header-margin:.3in;
mso-footer-margin:.3in;}
ruby
{ruby-align:left;}
rt
{color:windowtext;
font-size:9.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:宋体;
mso-generic-font-family:auto;
mso-font-charset:134;
mso-char-type:none;
display:none;}
-->
</style>
<![if !supportTabStrip]><script language="JavaScript">
<!--
function fnUpdateTabs()
{
if (parent.window.g_iIEVer>=4) {
if (parent.document.readyState=="complete"
&& parent.frames['frTabs'].document.readyState=="complete")
parent.fnSetActiveSheet(8);
else
window.setTimeout("fnUpdateTabs();",150);
}
}
if (window.name!="frSheet")
window.location.replace("../x效果C054.html");
else
fnUpdateTabs();
//-->
</script>
<![endif]>
</head>
<body link="#0563C1" vlink="#954F72" class=xl14301>
<table border=0 cellpadding=0 cellspacing=0 width=2344 style='border-collapse:
collapse;table-layout:fixed;width:1774pt'>
<col class=xl14301 width=66 style='width:50pt'>
<col class=xl14301 width=298 style='mso-width-source:userset;mso-width-alt:
10402;width:224pt'>
<col class=xl14301 width=66 span=30 style='width:50pt'>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14301 colspan=2 width=364 style='height:14.0pt;
mso-ignore:colspan;width:274pt'>id尾数不能是0</td>
<td class=xl14301 colspan=3 width=198 style='mso-ignore:colspan;width:150pt'>本表改结构要改代码<ruby><font
class="font6"><rt class=font6></rt></font></ruby></td>
<td class=xl14301 width=66 style='width:50pt'></td>
<td class=xl14301 width=66 style='width:50pt'></td>
<td class=xl14301 width=66 style='width:50pt'></td>
<td class=xl14301 width=66 style='width:50pt'></td>
<td class=xl14301 width=66 style='width:50pt'></td>
<td class=xl14301 width=66 style='width:50pt'></td>
<td class=xl14301 width=66 style='width:50pt'></td>
<td class=xl14301 width=66 style='width:50pt'></td>
<td class=xl14301 width=66 style='width:50pt'></td>
<td class=xl14301 width=66 style='width:50pt'></td>
<td class=xl14301 width=66 style='width:50pt'></td>
<td class=xl14301 width=66 style='width:50pt'></td>
<td class=xl14301 width=66 style='width:50pt'></td>
<td class=xl14301 width=66 style='width:50pt'></td>
<td class=xl14301 width=66 style='width:50pt'></td>
<td class=xl14301 width=66 style='width:50pt'></td>
<td class=xl14301 width=66 style='width:50pt'></td>
<td class=xl14301 width=66 style='width:50pt'></td>
<td class=xl14301 width=66 style='width:50pt'></td>
<td class=xl14301 width=66 style='width:50pt'></td>
<td class=xl14301 width=66 style='width:50pt'></td>
<td class=xl14301 width=66 style='width:50pt'></td>
<td class=xl14301 width=66 style='width:50pt'></td>
<td class=xl14301 width=66 style='width:50pt'></td>
<td class=xl14301 width=66 style='width:50pt'></td>
<td class=xl14301 width=66 style='width:50pt'></td>
<td class=xl14301 width=66 style='width:50pt'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14301 style='height:14.0pt'></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14301 style='height:14.0pt'></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14301 style='height:14.0pt'></td>
<td class=xl14301>不能空!</td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14301 style='height:14.0pt'></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14302 style='height:14.0pt'>id<ruby><font class="font6"><rt
class=font6></rt></font></ruby></td>
<td class=xl14302 style='border-left:none'>描述<ruby><font class="font6"><rt
class=font6></rt></font></ruby></td>
<td class=xl14302 style='border-left:none'>类型1<ruby><font class="font6"><rt
class=font6></rt></font></ruby></td>
<td class=xl14302 style='border-left:none'>类型2<ruby><font class="font6"><rt
class=font6></rt></font></ruby></td>
<td class=xl14302 style='border-left:none'>类型3</td>
<td class=xl14302 style='border-left:none'>类型4</td>
<td class=xl14302 style='border-left:none'>类型5</td>
<td class=xl14302 style='border-left:none'>类型6</td>
<td class=xl14302 style='border-left:none'>类型7</td>
<td class=xl14302 style='border-left:none'>类型8</td>
<td class=xl14302 style='border-left:none'>类型9</td>
<td class=xl14302 style='border-left:none'>类型10</td>
<td class=xl14302 style='border-left:none'>类型11</td>
<td class=xl14302 style='border-left:none'>类型12</td>
<td class=xl14302 style='border-left:none'>类型13</td>
<td class=xl14302 style='border-left:none'>类型14</td>
<td class=xl14302 style='border-left:none'>类型15</td>
<td class=xl14302 style='border-left:none'>类型16</td>
<td class=xl14302 style='border-left:none'>类型17</td>
<td class=xl14302 style='border-left:none'>类型18</td>
<td class=xl14302 style='border-left:none'>类型19</td>
<td class=xl14302 style='border-left:none'>类型20</td>
<td class=xl14302 style='border-left:none'>类型21</td>
<td class=xl14302 style='border-left:none'>类型22</td>
<td class=xl14302 style='border-left:none'>类型23</td>
<td class=xl14302 style='border-left:none'>类型24</td>
<td class=xl14302 style='border-left:none'>类型25</td>
<td class=xl14302 style='border-left:none'>类型26</td>
<td class=xl14302 style='border-left:none'>类型27</td>
<td class=xl14302 style='border-left:none'>类型28</td>
<td class=xl14302 style='border-left:none'>类型29</td>
<td class=xl14302 style='border-left:none'>类型30</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14301 style='height:14.0pt'>1</td>
<td class=xl14301>buff<ruby><font class="font6"><rt class=font6></rt></font></ruby></td>
<td class=xl14301>110</td>
<td class=xl14301>1111</td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14301 style='height:14.0pt'>2</td>
<td class=xl14301>debuff</td>
<td class=xl14301>110</td>
<td class=xl14301>1111</td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14301 style='height:14.0pt'>3</td>
<td class=xl14301>闪避类无敌</td>
<td class=xl14301>10011</td>
<td class=xl14301>10021</td>
<td class=xl14301>10031</td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14301 style='height:14.0pt'>4</td>
<td class=xl14301>修改视角</td>
<td class=xl14301>10003</td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14301 style='height:14.0pt'>5</td>
<td class=xl14301>SP获得</td>
<td class=xl14301>201</td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14301 style='height:14.0pt'>11</td>
<td class=xl14301>禁锢</td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14301 style='height:14.0pt'>12</td>
<td class=xl14301>眩晕(免疫禁锢)</td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14301 style='height:14.0pt'>13</td>
<td class=xl14301>冰冻(免疫禁锢与眩晕)</td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14301 style='height:14.0pt'>9020023</td>
<td class=xl14301>黑蜘蛛</td>
<td class=xl14301>9020023</td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14301 style='height:14.0pt'>5103013</td>
<td class=xl14301>暴击</td>
<td class=xl14301>5103013</td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
<td class=xl14301></td>
</tr>
<![if supportMisalignedColumns]>
<tr height=0 style='display:none'>
<td width=66 style='width:50pt'></td>
<td width=298 style='width:224pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
</tr>
<![endif]>
</table>
</body>
</html>

View File

@ -0,0 +1,316 @@
<html xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=Content-Type content="text/html; charset=gb2312">
<meta name=ProgId content=Excel.Sheet>
<meta name=Generator content="Microsoft Excel 15">
<link id=Main-File rel=Main-File href="../x效果C054.html">
<link rel=File-List href=filelist.xml>
<title>效果表 - 关卡 - 李亦臻</title>
<link rel=Stylesheet href=stylesheet.css>
<style>
<!--table
{mso-displayed-decimal-separator:"\.";
mso-displayed-thousand-separator:"\,";}
@page
{margin:.75in .7in .75in .7in;
mso-header-margin:.3in;
mso-footer-margin:.3in;}
ruby
{ruby-align:left;}
rt
{color:windowtext;
font-size:9.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:宋体;
mso-generic-font-family:auto;
mso-font-charset:134;
mso-char-type:none;
display:none;}
-->
</style>
<![if !supportTabStrip]><script language="JavaScript">
<!--
function fnUpdateTabs()
{
if (parent.window.g_iIEVer>=4) {
if (parent.document.readyState=="complete"
&& parent.frames['frTabs'].document.readyState=="complete")
parent.fnSetActiveSheet(9);
else
window.setTimeout("fnUpdateTabs();",150);
}
}
if (window.name!="frSheet")
window.location.replace("../x效果C054.html");
else
fnUpdateTabs();
//-->
</script>
<![endif]>
</head>
<body link="#0563C1" vlink="#954F72">
<table border=0 cellpadding=0 cellspacing=0 width=687 style='border-collapse:
collapse;table-layout:fixed;width:516pt'>
<col width=113 style='mso-width-source:userset;mso-width-alt:3956;width:85pt'>
<col width=126 style='mso-width-source:userset;mso-width-alt:4398;width:95pt'>
<col width=64 span=7 style='width:48pt'>
<tr height=19 style='height:14.0pt'>
<td height=19 width=113 style='height:14.0pt;width:85pt'>类型</td>
<td width=126 style='width:95pt'>描述</td>
<td width=64 style='width:48pt'>注释</td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnFrame</td>
<td><a name=触发时机类型>每帧触发</a></td>
<td colspan=7 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnAfterFrame</td>
<td>帧末执行</td>
<td colspan=7 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnSwitchNpc</td>
<td>角色切换</td>
<td colspan=7 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnBeforeCure</td>
<td>治疗计算前</td>
<td colspan=2 style='mso-ignore:colspan'>注意治疗循环调用</td>
<td colspan=5 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnAfterCure</td>
<td>治疗计算后</td>
<td colspan=2 style='mso-ignore:colspan'>注意治疗循环调用</td>
<td colspan=5 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnCure</td>
<td>治疗结算后</td>
<td colspan=7 style='mso-ignore:colspan'>只用来获取数据,不允许造成伤害和治疗等复杂套娃逻辑。</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnBeforeDamage</td>
<td>伤害计算前</td>
<td colspan=2 style='mso-ignore:colspan'>注意伤害循环调用</td>
<td colspan=5 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnAfterDamage</td>
<td>伤害计算后</td>
<td colspan=2 style='mso-ignore:colspan'>注意伤害循环调用</td>
<td colspan=5 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnDamage</td>
<td>伤害结算后</td>
<td colspan=7 style='mso-ignore:colspan'>只用来获取数据,不允许造成伤害和治疗等复杂套娃逻辑。</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnBeforeAcuumul<span style='display:none'>atorChange</span></td>
<td>积蓄值计算前</td>
<td colspan=7 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnAfterAcuumula<span style='display:none'>torChange</span></td>
<td>积蓄值计算后</td>
<td colspan=7 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnAcuumulatorSt<span style='display:none'>ateChange</span></td>
<td>积蓄槽状态变化</td>
<td colspan=7 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnNpcWillDie</td>
<td>将要死亡</td>
<td colspan=7 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnNpcDestinedDe<span style='display:none'>ath</span></td>
<td>进入濒死(命定之死<span style='display:none'>)</span></td>
<td colspan=2 style='mso-ignore:colspan'>禁止修改角色Hp</td>
<td colspan=5 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnNpcDie</td>
<td>已经死亡</td>
<td colspan=2 style='mso-ignore:colspan'>禁止修改角色Hp</td>
<td colspan=5 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnSkill</td>
<td>技能释放</td>
<td colspan=3 style='mso-ignore:colspan'>禁止打断技能,释放技能</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnAfterCastSkil<span style='display:none'>l</span></td>
<td>技能释放后</td>
<td colspan=7 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnBeforeBeHit</td>
<td>受击前</td>
<td colspan=7 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnBeHit</td>
<td>受击</td>
<td colspan=7 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnEvent</td>
<td>事件&#12175;为树</td>
<td colspan=7 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnBall</td>
<td>出球</td>
<td colspan=7 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnPreAddBall</td>
<td>预加球</td>
<td colspan=7 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnAfterPreAddBa<span style='display:none'>ll</span></td>
<td>预加球成功后</td>
<td colspan=7 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnRemoveBall</td>
<td>删除球</td>
<td colspan=7 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnDodge</td>
<td colspan=2 style='mso-ignore:colspan'>闪避后(角色执行)</td>
<td colspan=6 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnBeDodge</td>
<td>被闪避后</td>
<td colspan=7 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnSkillFinish</td>
<td>技能结束</td>
<td colspan=7 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnSkillAbort</td>
<td>技能打断</td>
<td colspan=7 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnSkillKeyFrame</td>
<td>技能帧事件</td>
<td colspan=3 style='mso-ignore:colspan'>不允许创建Npc和移除Npc</td>
<td colspan=4 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnAfterProtecto<span style='display:none'>rHurt</span></td>
<td>护盾值扣除后</td>
<td colspan=7 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnMissileCollis<span style='display:none'>ion</span></td>
<td>子弹间碰撞</td>
<td colspan=7 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnMissileRemove</td>
<td>子弹销毁</td>
<td colspan=7 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnBeforeChangeA<span style='display:none'>ttrib</span></td>
<td>属性修改前</td>
<td colspan=7 style='mso-ignore:colspan'>不允许 修改属性,或 通过其他节点修改属性(如造成伤害来修改HP)</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnAfterChangeAt<span style='display:none'>trib</span></td>
<td>属性修改后</td>
<td colspan=7 style='mso-ignore:colspan'>不允许 修改属性,或 通过其他节点修改属性(如造成伤害来修改HP)</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnExitSkillActi<span style='display:none'>on</span></td>
<td>技能状态退出</td>
<td colspan=7 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnPreAddBallFai<span style='display:none'>led</span></td>
<td>预加球失败</td>
<td colspan=7 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnFightSettingC<span style='display:none'>g</span></td>
<td>进场退场动画</td>
<td colspan=7 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnBeforeBloodBo<span style='display:none'>rneCure</span></td>
<td>虚血回复前</td>
<td colspan=7 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnBeforeSettle</td>
<td>结算前</td>
<td colspan=7 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnAfterActionFS<span style='display:none'>MChange</span></td>
<td>动作状态改变后</td>
<td colspan=7 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnAfterMoveFSMC<span style='display:none'>hange</span></td>
<td>移动状态改变后</td>
<td colspan=7 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnAfterJumpFSMC<span style='display:none'>hange</span></td>
<td>跳跃状态改变后</td>
<td colspan=7 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>OnAfterHitFSMCh<span style='display:none'>ange</span></td>
<td>受击状态改变后</td>
<td colspan=7 style='mso-ignore:colspan'></td>
</tr>
<![if supportMisalignedColumns]>
<tr height=0 style='display:none'>
<td width=113 style='width:85pt'></td>
<td width=126 style='width:95pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
<td width=64 style='width:48pt'></td>
</tr>
<![endif]>
</table>
</body>
</html>

View File

@ -0,0 +1,914 @@
<html xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=Content-Type content="text/html; charset=gb2312">
<meta name=ProgId content=Excel.Sheet>
<meta name=Generator content="Microsoft Excel 15">
<link id=Main-File rel=Main-File href="../x效果C054.html">
<link rel=File-List href=filelist.xml>
<title>效果表 - 关卡 - 李亦臻</title>
<link rel=Stylesheet href=stylesheet.css>
<style>
<!--table
{mso-displayed-decimal-separator:"\.";
mso-displayed-thousand-separator:"\,";}
@page
{margin:.75in .7in .75in .7in;
mso-header-margin:.3in;
mso-footer-margin:.3in;}
ruby
{ruby-align:left;}
rt
{color:windowtext;
font-size:9.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:宋体;
mso-generic-font-family:auto;
mso-font-charset:134;
mso-char-type:none;
display:none;}
-->
</style>
<![if !supportTabStrip]><script language="JavaScript">
<!--
function fnUpdateTabs()
{
if (parent.window.g_iIEVer>=4) {
if (parent.document.readyState=="complete"
&& parent.frames['frTabs'].document.readyState=="complete")
parent.fnSetActiveSheet(10);
else
window.setTimeout("fnUpdateTabs();",150);
}
}
if (window.name!="frSheet")
window.location.replace("../x效果C054.html");
else
fnUpdateTabs();
//-->
</script>
<![endif]>
</head>
<body link="#0563C1" vlink="#954F72">
<table border=0 cellpadding=0 cellspacing=0 width=522 style='border-collapse:
collapse;table-layout:fixed;width:393pt'>
<col width=33 style='mso-width-source:userset;mso-width-alt:1163;width:25pt'>
<col width=226 style='mso-width-source:userset;mso-width-alt:7889;width:170pt'>
<col width=199 style='mso-width-source:userset;mso-width-alt:6958;width:150pt'>
<col width=64 style='width:48pt'>
<tr height=19 style='height:14.0pt'>
<td height=19 width=33 style='height:14.0pt;width:25pt'>Id</td>
<td width=226 style='width:170pt'>类型</td>
<td width=199 style='width:150pt'>名字</td>
<td width=64 style='width:48pt'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>1</td>
<td>生命</td>
<td>Life</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>2</td>
<td>能量</td>
<td>Energy</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>3</td>
<td>跑速度</td>
<td>RunSpeed</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>4</td>
<td>走速度</td>
<td>WalkSpeed</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>5</td>
<td>转身角速度</td>
<td>TurnRoundSpeed</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>6</td>
<td>出球间隔</td>
<td>BallInterval</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>7</td>
<td>普通伤害免疫</td>
<td>DamageNormalImmunity</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>8</td>
<td>元素伤害免疫</td>
<td>DamageMagicImmunity</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>9</td>
<td>反普通伤害免疫</td>
<td>AntiDamageNormalImmunity</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>10</td>
<td>反元素伤害免疫</td>
<td>AntiDamageMagicImmunity</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>11</td>
<td>攻击</td>
<td>AttackNormal</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>12</td>
<td>火元素攻击</td>
<td>AttackMagic1</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>13</td>
<td>雷元素攻击</td>
<td>AttackMagic2</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>14</td>
<td>冰元素攻击</td>
<td>AttackMagic3</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>15</td>
<td>暗元素攻击</td>
<td>AttackMagic4</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>16</td>
<td>空元素攻击</td>
<td>AttackMagic5</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>17</td>
<td>反普通攻击</td>
<td>AntiAttackNormal</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>18</td>
<td>反火元素攻击</td>
<td>AntiAttackMagic1</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>19</td>
<td>反雷元素攻击</td>
<td>AntiAttackMagic2</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>20</td>
<td>反冰元素攻击</td>
<td>AntiAttackMagic3</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>21</td>
<td>反暗元素攻击</td>
<td>AntiAttackMagic4</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>22</td>
<td>反空元素攻击</td>
<td>AntiAttackMagic5</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>23</td>
<td>防御</td>
<td>DefenseNormal</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>24</td>
<td>反普通防御</td>
<td>AntiDefenseNormal</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>25</td>
<td>总伤害加深率</td>
<td>DamageChangeP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>26</td>
<td>普通伤害加深率</td>
<td>DamageNormalChangeP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>27</td>
<td>火元素伤害加深率</td>
<td>DamageMagic1ChangeP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>28</td>
<td>雷元素伤害加深率</td>
<td>DamageMagic2ChangeP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>29</td>
<td>冰元素伤害加深率</td>
<td>DamageMagic3ChangeP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>30</td>
<td>暗元素伤害加深率</td>
<td>DamageMagic4ChangeP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>31</td>
<td>光空素伤害加深率</td>
<td>DamageMagic5ChangeP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>32</td>
<td>反总伤害加深率</td>
<td>AntiDamageChangeP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>33</td>
<td>反普通伤害加深率</td>
<td>AntiDamageNormalChangeP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>34</td>
<td>反火元素伤害加深率</td>
<td>AntiDamageMagic1ChangeP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>35</td>
<td>反雷元素伤害加深率</td>
<td>AntiDamageMagic2ChangeP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>36</td>
<td>反冰元素伤害加深率</td>
<td>AntiDamageMagic3ChangeP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>37</td>
<td>反暗元素伤害加深率</td>
<td>AntiDamageMagic4ChangeP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>38</td>
<td>反空元素伤害加深率</td>
<td>AntiDamageMagic5ChangeP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>39</td>
<td>###</td>
<td colspan=2 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>40</td>
<td>机械伤害率</td>
<td>Damage1P</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>41</td>
<td>异能伤害率</td>
<td>Damage2P</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>42</td>
<td>生物伤害率</td>
<td>Damage3P</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>43</td>
<td>###</td>
<td colspan=2 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>44</td>
<td>会心</td>
<td>Crit</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>45</td>
<td>暴击率</td>
<td>CritP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>46</td>
<td>暴击伤害率</td>
<td>CritDamageP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>47</td>
<td>反暴击率</td>
<td>AntiCritP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>48</td>
<td>反暴击伤害率</td>
<td>AntiCritDamageP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>49</td>
<td>吸血</td>
<td>Lifesteal</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>50</td>
<td>吸血率</td>
<td>LifestealP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>51</td>
<td>治疗加深率</td>
<td>CureChangeP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>52</td>
<td>反治疗加深率</td>
<td>AntiCureChangeP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>53</td>
<td>霸体值</td>
<td>Endure</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>54</td>
<td>仇恨加深率</td>
<td>ThreatRateP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>55</td>
<td>闪避能量值</td>
<td>DodgeEnergy</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>56</td>
<td>闪避能量自动回复(能量值/帧1<span style='display:none'>s=20帧</span></td>
<td>DodgeEnergyAutoRecovery</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>57</td>
<td>自定义能量值</td>
<td>CustomEnergy</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>69</td>
<td>物理弱点率</td>
<td>NormalWeaknessP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>70</td>
<td>火元素弱点率</td>
<td>Magic1WeaknessP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>71</td>
<td>雷元素弱点率</td>
<td>Magic2WeaknessP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>72</td>
<td>冰元素弱点率</td>
<td>Magic3WeaknessP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>73</td>
<td>暗元素弱点率</td>
<td>Magic4WeaknessP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>74</td>
<td>疾跑速度(逻辑单位/帧</td>
<td>SprintSpeed</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>75</td>
<td>自定义能量组1</td>
<td>CustomEnergyGroup1</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>76</td>
<td>自定义能量组2</td>
<td>CustomEnergyGroup2</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>77</td>
<td>自定义能量组3</td>
<td>CustomEnergyGroup3</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>78</td>
<td>自定义能量组4</td>
<td>CustomEnergyGroup4</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>79</td>
<td>骇入值</td>
<td>Hack</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>80</td>
<td>骇入加深率</td>
<td>HackChangeP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>81</td>
<td>骇入抵抗率</td>
<td>AntiHackChangeP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>82</td>
<td>骇入值自动回复</td>
<td>HackAutoRecovery</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>83</td>
<td>技能倍率加深率</td>
<td>SkillDamageChangeP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>84</td>
<td>怪物处决值减少时的动态评分系数</td>
<td colspan=2 style='mso-ignore:colspan'>ReduceHackDynamicScoringCoe</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>85</td>
<td>怪物受到处决的动态评分系数</td>
<td colspan=2 style='mso-ignore:colspan'>BeExecutedDynamicScoringCoe</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>86</td>
<td>动态评分点数获取提升率</td>
<td>ExecuteScoreChangeP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>87</td>
<td>动态评分点数获取提升值</td>
<td>ExecuteScoreChangeV</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>88</td>
<td>动态评分每秒固定点数下降提升率</td>
<td colspan=2 style='mso-ignore:colspan'>ReduceScorePerSecondChangeP</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>89</td>
<td>动态评分每秒固定点数下降提升值</td>
<td colspan=2 style='mso-ignore:colspan'>ReduceScorePerSecondChangeV</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>90</td>
<td>受伤时动态评分点数下降提升率</td>
<td colspan=2 style='mso-ignore:colspan'>ReduceScoreWhenBeDamagedChangeP</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>91</td>
<td>受伤时动态评分点数下降提升值</td>
<td colspan=2 style='mso-ignore:colspan'>ReduceScoreWhenBeDamagedChangeV</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>92</td>
<td>伤害增幅</td>
<td>DamageAmplificationFactorP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>93</td>
<td>基础破盾效率</td>
<td>BrokenProtectorHp</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>94</td>
<td>额外破盾提升</td>
<td>BrokenProtectorHpChangeP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>95</td>
<td>额外破盾抗性</td>
<td colspan=2 style='mso-ignore:colspan'>AntiBrokenProtectorHpChangeP</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>96</td>
<td>全属性增伤</td>
<td>AllMagicDamageChangeP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>97</td>
<td>全属性减抗</td>
<td>AllMagicAntiChangeP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>98</td>
<td>空元素弱点</td>
<td>Magic5WeaknessP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>99</td>
<td>稳态力场</td>
<td>ProtectorHp</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>100</td>
<td>基础异常积蓄值加深率</td>
<td>BurnDamageP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>101</td>
<td>点燃伤害额外加成</td>
<td>BurnDamageExtraP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>102</td>
<td>点燃伤害抵抗</td>
<td>AntiBurnDamageP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>103</td>
<td>点燃积蓄效率提升</td>
<td>BurnAccumulatorP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>104</td>
<td>点燃积蓄效率抗性</td>
<td>BurnAntiAccumulatorP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>105</td>
<td>剑气积蓄槽效率提升</td>
<td>SwordPowerAccumulatorP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>106</td>
<td>剑气积蓄槽效率抗性</td>
<td>SwordPowerAntiAccumulatorP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>107</td>
<td>次元斩基础伤害加成</td>
<td>SwordPowerDamageP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>108</td>
<td>次元斩额外伤害加成</td>
<td>SwordPowerDamageExtraP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>109</td>
<td>次元斩伤害抗性</td>
<td>AntiSwordPowerP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>110</td>
<td>次元斩弱点</td>
<td>SwordPowerWeaknessP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>111</td>
<td>点燃伤害弱点</td>
<td>BurnDamageWeaknessP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>112</td>
<td>雷盾积蓄槽效率提升</td>
<td>ThunderShieldAccumulatorP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>113</td>
<td>雷盾积蓄槽效率抗性</td>
<td colspan=2 style='mso-ignore:colspan'>ThunderShieldAntiAccumulatorP</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>114</td>
<td>雷盾额外伤害加成</td>
<td>ThunderShieldDamageExtraP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>115</td>
<td>雷盾伤害抗性</td>
<td>AntiThunderShieldP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>116</td>
<td>雷盾伤害弱点</td>
<td>ThunderShieldWeaknessP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>117</td>
<td>冰结积蓄槽效率提升</td>
<td>FreezeAccumulatorP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>118</td>
<td>冰结积蓄槽效率抗性</td>
<td>FreezeAntiAccumulatorP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>119</td>
<td>冰结额外伤害加成</td>
<td>FreezeDamageExtraP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>120</td>
<td>冰结伤害抗性</td>
<td>AntiFreezeP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>121</td>
<td>冰结伤害弱点</td>
<td>FreezeWeaknessP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>122</td>
<td>走跳速度</td>
<td>IdleJumpSpeed</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>123</td>
<td>跑跳速度</td>
<td>RunJumpSpeed</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>124</td>
<td>跳跃转角速度</td>
<td>JumpTurnRoundSpeed</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>127</td>
<td>辐射伤害额外加成</td>
<td>FalloutDamageExtraP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>128</td>
<td>辐射伤害抵抗</td>
<td>FalloutAntiDamageP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>129</td>
<td>辐射弱点</td>
<td>FalloutWeaknessP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>130</td>
<td>辐射积蓄槽效率提升</td>
<td>FalloutAccumulatorP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>131</td>
<td>辐射积蓄槽效率抗性</td>
<td>FalloutAntiAccumulatorP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>132</td>
<td>跳跃加速度</td>
<td>JumpAcceleration</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>133</td>
<td>虚血</td>
<td>BloodBorne</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>134</td>
<td>虚血衰减(毫秒)</td>
<td>BloodBorneAttenuationTime</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>135</td>
<td>虚血扣除速度(/秒)</td>
<td>BloodBorneDeductSpeed</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>136</td>
<td>虚血恢复CD毫秒</td>
<td>BloodBorneResetCD</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>137</td>
<td>虚血转化比率</td>
<td>BloodBorneChangeRateP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>138</td>
<td>光噪积蓄槽效率提升</td>
<td>LightNoiseAccumulatorP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>139</td>
<td>光噪积蓄槽效率抗性</td>
<td>LightNoiseAntiAccumulatorP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>140</td>
<td>光噪额外伤害加成</td>
<td>LightNoiseDamageExtraP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>141</td>
<td>光噪伤害抗性</td>
<td>AntiLightNoiseP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>142</td>
<td>光噪伤害弱点</td>
<td>LightNoiseWeaknessP</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>143</td>
<td>伤害倍率强化</td>
<td>DamageChangePEx</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>144</td>
<td>生命树能量1</td>
<td>LifeEnergy1</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>145</td>
<td>生命树能量2</td>
<td>LifeEnergy2</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>146</td>
<td>生命树能量3</td>
<td>LifeEnergy3</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>147</td>
<td>生命树能量4</td>
<td>LifeEnergy4</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>148</td>
<td>生命树能量5</td>
<td>LifeEnergy5</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>149</td>
<td>生命树能量6</td>
<td>LifeEnergy6</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>150</td>
<td>生命树能量7</td>
<td>LifeEnergy7</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>151</td>
<td>生命树能量8</td>
<td>LifeEnergy8</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>152</td>
<td>生命树能量9</td>
<td>LifeEnergy9</td>
<td></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right style='height:14.0pt'>153</td>
<td>生命树能量10</td>
<td>LifeEnergy10</td>
<td></td>
</tr>
<![if supportMisalignedColumns]>
<tr height=0 style='display:none'>
<td width=33 style='width:25pt'></td>
<td width=226 style='width:170pt'></td>
<td width=199 style='width:150pt'></td>
<td width=64 style='width:48pt'></td>
</tr>
<![endif]>
</table>
</body>
</html>

View File

@ -0,0 +1,802 @@
<html xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=Content-Type content="text/html; charset=gb2312">
<meta name=ProgId content=Excel.Sheet>
<meta name=Generator content="Microsoft Excel 15">
<link id=Main-File rel=Main-File href="../x效果C054.html">
<link rel=File-List href=filelist.xml>
<title>效果表 - 关卡 - 李亦臻</title>
<link rel=Stylesheet href=stylesheet.css>
<style>
<!--table
{mso-displayed-decimal-separator:"\.";
mso-displayed-thousand-separator:"\,";}
@page
{margin:.75in .7in .75in .7in;
mso-header-margin:.3in;
mso-footer-margin:.3in;}
ruby
{ruby-align:left;}
rt
{color:windowtext;
font-size:9.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:宋体;
mso-generic-font-family:auto;
mso-font-charset:134;
mso-char-type:none;
display:none;}
-->
</style>
<![if !supportTabStrip]><script language="JavaScript">
<!--
function fnUpdateTabs()
{
if (parent.window.g_iIEVer>=4) {
if (parent.document.readyState=="complete"
&& parent.frames['frTabs'].document.readyState=="complete")
parent.fnSetActiveSheet(11);
else
window.setTimeout("fnUpdateTabs();",150);
}
}
if (window.name!="frSheet")
window.location.replace("../x效果C054.html");
else
fnUpdateTabs();
//-->
</script>
<![endif]>
</head>
<body link="#0563C1" vlink="#954F72" class=xl14306>
<table border=0 cellpadding=0 cellspacing=0 width=1293 style='border-collapse:
collapse;table-layout:fixed;width:979pt'>
<col class=xl14306 width=66 style='width:50pt'>
<col class=xl14306 width=105 style='mso-width-source:userset;mso-width-alt:
3677;width:79pt'>
<col class=xl14306 width=66 span=17 style='width:50pt'>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 width=66 style='height:14.0pt;width:50pt'>Id</td>
<td class=xl14306 width=105 style='width:79pt'>类型</td>
<td class=xl14306 width=66 style='width:50pt'>说明</td>
<td class=xl14306 width=66 style='width:50pt'></td>
<td class=xl14306 width=66 style='width:50pt'></td>
<td class=xl14306 width=66 style='width:50pt'></td>
<td class=xl14306 width=66 style='width:50pt'></td>
<td class=xl14306 width=66 style='width:50pt'></td>
<td class=xl14306 width=66 style='width:50pt'></td>
<td class=xl14306 width=66 style='width:50pt'></td>
<td class=xl14306 width=66 style='width:50pt'></td>
<td class=xl14306 width=66 style='width:50pt'></td>
<td class=xl14306 width=66 style='width:50pt'></td>
<td class=xl14306 width=66 style='width:50pt'></td>
<td class=xl14306 width=66 style='width:50pt'></td>
<td class=xl14306 width=66 style='width:50pt'></td>
<td class=xl14306 width=66 style='width:50pt'></td>
<td class=xl14306 width=66 style='width:50pt'></td>
<td class=xl14306 width=66 style='width:50pt'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>11</td>
<td class=xl14306>红1</td>
<td class=xl14306>红球一消</td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>12</td>
<td class=xl14306>红2</td>
<td class=xl14306>红球二消</td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>13</td>
<td class=xl14306>红3</td>
<td class=xl14306>红球三消</td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>21</td>
<td class=xl14306>蓝1</td>
<td class=xl14306>蓝球一消</td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>22</td>
<td class=xl14306>蓝2</td>
<td class=xl14306>蓝球二消</td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>23</td>
<td class=xl14306>蓝3</td>
<td class=xl14306>蓝球三消</td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>31</td>
<td class=xl14306>黄1</td>
<td class=xl14306>黄球一消</td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>32</td>
<td class=xl14306>黄2</td>
<td class=xl14306>黄球二消</td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>33</td>
<td class=xl14306>黄3</td>
<td class=xl14306>黄球三消</td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>41</td>
<td class=xl14306>特1</td>
<td class=xl14306 colspan=2 style='mso-ignore:colspan'>特殊球一消</td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>42</td>
<td class=xl14306>特2</td>
<td class=xl14306 colspan=2 style='mso-ignore:colspan'>特殊球二消</td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>43</td>
<td class=xl14306>特3</td>
<td class=xl14306 colspan=2 style='mso-ignore:colspan'>特殊球三消</td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>45</td>
<td class=xl14306>感电</td>
<td class=xl14306>感电</td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>1</td>
<td class=xl14306>怪物伤害</td>
<td class=xl14306 colspan=3 style='mso-ignore:colspan'>非持续性伤害,比如扳手挥击</td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>2</td>
<td class=xl14306>普攻</td>
<td class=xl14306>普攻</td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>3</td>
<td class=xl14306>特殊</td>
<td class=xl14306 colspan=3 style='mso-ignore:colspan'>特殊,各种被动伤害等</td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>4</td>
<td class=xl14306>大招</td>
<td class=xl14306>大招</td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>5</td>
<td class=xl14306>出场</td>
<td class=xl14306 colspan=2 style='mso-ignore:colspan'>非QTE出场</td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>6</td>
<td class=xl14306>QTE</td>
<td class=xl14306>QTE出场</td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>7</td>
<td class=xl14306>其他</td>
<td class=xl14306 colspan=2 style='mso-ignore:colspan'>武器等附加伤害</td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>8</td>
<td class=xl14306>怪物伤害</td>
<td class=xl14306 colspan=3 style='mso-ignore:colspan'>持续性伤害,比如地火</td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>50</td>
<td class=xl14306>词缀伤害</td>
<td class=xl14306>词缀伤害</td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>51</td>
<td class=xl14306>特殊词缀伤害</td>
<td class=xl14306 colspan=4 style='mso-ignore:colspan'>特殊词缀伤害,目前用于病毒词缀</td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>61</td>
<td class=xl14306>宠物直接伤害</td>
<td class=xl14306 colspan=3 style='mso-ignore:colspan'>宠物技能直接造成伤害</td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>62</td>
<td class=xl14306>宠物间接伤害</td>
<td class=xl14306 colspan=3 style='mso-ignore:colspan'>宠物标记被其他触发</td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>63</td>
<td class=xl14306>宠物词缀伤害</td>
<td class=xl14306 colspan=2 style='mso-ignore:colspan'>宠物专属词缀伤害</td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>64</td>
<td class=xl14306>宠物联动伤害</td>
<td class=xl14306 colspan=2 style='mso-ignore:colspan'>宠物强交互</td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>71</td>
<td class=xl14306>通过焚烧积蓄槽<span style='display:none'>造成的伤害</span></td>
<td class=xl14306 colspan=17 style='mso-ignore:colspan'>由积蓄槽效果造成的伤害(点燃、流血等),注意!如果想实现“大招命中点燃时额外造成爆燃伤害”类似的效果,请注意伤害上下文中判断伤害类型,以免死循环</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>72</td>
<td class=xl14306>通过真意斩积蓄<span style='display:none'>槽造成的伤害</span></td>
<td class=xl14306 colspan=17 style='mso-ignore:colspan'>由积蓄槽效果造成的伤害(点燃、流血等),注意!如果想实现“大招命中点燃时额外造成爆燃伤害”类似的效果,请注意伤害上下文中判断伤害类型,以免死循环</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>73</td>
<td class=xl14306>通过雷盾积蓄槽<span style='display:none'>造成的伤害</span></td>
<td class=xl14306 colspan=17 style='mso-ignore:colspan'>由积蓄槽效果造成的伤害(点燃、流血等),注意!如果想实现“大招命中点燃时额外造成爆燃伤害”类似的效果,请注意伤害上下文中判断伤害类型,以免死循环</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>74</td>
<td class=xl14306>通过冰结积蓄槽<span style='display:none'>造成的伤害</span></td>
<td class=xl14306 colspan=17 style='mso-ignore:colspan'>由积蓄槽效果造成的伤害(点燃、流血等),注意!如果想实现“大招命中点燃时额外造成爆燃伤害”类似的效果,请注意伤害上下文中判断伤害类型,以免死循环</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>75</td>
<td class=xl14306>通过辐射积蓄槽<span style='display:none'>造成的伤害</span></td>
<td class=xl14306 colspan=17 style='mso-ignore:colspan'>由积蓄槽效果造成的伤害(点燃、流血等),注意!如果想实现“大招命中点燃时额外造成爆燃伤害”类似的效果,请注意伤害上下文中判断伤害类型,以免死循环</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>76</td>
<td class=xl14306>通过光效应积蓄<span style='display:none'>造成的伤害</span></td>
<td class=xl14306 colspan=17 style='mso-ignore:colspan'>由积蓄槽效果造成的伤害(点燃、流血等),注意!如果想实现“大招命中点燃时额外造成爆燃伤害”类似的效果,请注意伤害上下文中判断伤害类型,以免死循环</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>99</td>
<td class=xl14306>病毒伤害</td>
<td class=xl14306 colspan=2 style='mso-ignore:colspan'>BOSS关的病毒伤害</td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>100</td>
<td class=xl14306>处决</td>
<td class=xl14306 colspan=2 style='mso-ignore:colspan'>处决秒杀伤害</td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>101</td>
<td class=xl14306>处决区域伤害</td>
<td class=xl14306 colspan=5 style='mso-ignore:colspan'>处决技能对子弹范围内全部目标造成的伤害</td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>102</td>
<td class=xl14306>见切</td>
<td class=xl14306 colspan=3 style='mso-ignore:colspan'>见切技能对被见切目标伤害</td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>103</td>
<td class=xl14306>见切区域伤害</td>
<td class=xl14306 colspan=5 style='mso-ignore:colspan'>见切技能对子弹范围内全部目标造成的伤害</td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 class=xl14306 style='height:14.0pt'>104</td>
<td class=xl14306>拼刀成功伤害</td>
<td class=xl14306 colspan=4 style='mso-ignore:colspan'>拼刀成功时对被拼刀怪物造成的伤害</td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
<td class=xl14306></td>
</tr>
<![if supportMisalignedColumns]>
<tr height=0 style='display:none'>
<td width=66 style='width:50pt'></td>
<td width=105 style='width:79pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
</tr>
<![endif]>
</table>
</body>
</html>

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,995 @@
<html xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=Content-Type content="text/html; charset=gb2312">
<meta name=ProgId content=Excel.Sheet>
<meta name=Generator content="Microsoft Excel 15">
<link id=Main-File rel=Main-File href="../x效果C054.html">
<link rel=File-List href=filelist.xml>
<title>效果表 - 关卡 - 李亦臻</title>
<link rel=Stylesheet href=stylesheet.css>
<style>
<!--table
{mso-displayed-decimal-separator:"\.";
mso-displayed-thousand-separator:"\,";}
@page
{margin:.75in .7in .75in .7in;
mso-header-margin:.3in;
mso-footer-margin:.3in;}
ruby
{ruby-align:left;}
rt
{color:windowtext;
font-size:9.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:宋体;
mso-generic-font-family:auto;
mso-font-charset:134;
mso-char-type:none;
display:none;}
-->
</style>
<![if !supportTabStrip]><script language="JavaScript">
<!--
function fnUpdateTabs()
{
if (parent.window.g_iIEVer>=4) {
if (parent.document.readyState=="complete"
&& parent.frames['frTabs'].document.readyState=="complete")
parent.fnSetActiveSheet(13);
else
window.setTimeout("fnUpdateTabs();",150);
}
}
if (window.name!="frSheet")
window.location.replace("../x效果C054.html");
else
fnUpdateTabs();
//-->
</script>
<![endif]>
</head>
<body link="#0563C1" vlink="#954F72">
<table border=0 cellpadding=0 cellspacing=0 width=16896 style='border-collapse:
collapse;table-layout:fixed;width:12800pt'>
<col width=66 span=256 style='width:50pt'>
<tr height=19 style='height:14.0pt'>
<td height=19 align=right width=66 style='height:14.0pt;width:50pt'>1</td>
<td align=right width=66 style='width:50pt'>2</td>
<td align=right width=66 style='width:50pt'>3</td>
<td align=right width=66 style='width:50pt'>4</td>
<td align=right width=66 style='width:50pt'>5</td>
<td align=right width=66 style='width:50pt'>6</td>
<td align=right width=66 style='width:50pt'>7</td>
<td align=right width=66 style='width:50pt'>8</td>
<td align=right width=66 style='width:50pt'>9</td>
<td align=right width=66 style='width:50pt'>10</td>
<td align=right width=66 style='width:50pt'>11</td>
<td align=right width=66 style='width:50pt'>12</td>
<td align=right width=66 style='width:50pt'>13</td>
<td align=right width=66 style='width:50pt'>14</td>
<td align=right width=66 style='width:50pt'>15</td>
<td align=right width=66 style='width:50pt'>16</td>
<td align=right width=66 style='width:50pt'>17</td>
<td align=right width=66 style='width:50pt'>18</td>
<td align=right width=66 style='width:50pt'>19</td>
<td align=right width=66 style='width:50pt'>20</td>
<td align=right width=66 style='width:50pt'>21</td>
<td align=right width=66 style='width:50pt'>22</td>
<td align=right width=66 style='width:50pt'>23</td>
<td align=right width=66 style='width:50pt'>24</td>
<td align=right width=66 style='width:50pt'>25</td>
<td align=right width=66 style='width:50pt'>26</td>
<td align=right width=66 style='width:50pt'>27</td>
<td align=right width=66 style='width:50pt'>28</td>
<td align=right width=66 style='width:50pt'>29</td>
<td align=right width=66 style='width:50pt'>30</td>
<td align=right width=66 style='width:50pt'>31</td>
<td align=right width=66 style='width:50pt'>32</td>
<td align=right width=66 style='width:50pt'>33</td>
<td align=right width=66 style='width:50pt'>34</td>
<td align=right width=66 style='width:50pt'>35</td>
<td align=right width=66 style='width:50pt'>36</td>
<td align=right width=66 style='width:50pt'>37</td>
<td align=right width=66 style='width:50pt'>38</td>
<td align=right width=66 style='width:50pt'>39</td>
<td align=right width=66 style='width:50pt'>40</td>
<td align=right width=66 style='width:50pt'>41</td>
<td align=right width=66 style='width:50pt'>42</td>
<td align=right width=66 style='width:50pt'>43</td>
<td align=right width=66 style='width:50pt'>44</td>
<td align=right width=66 style='width:50pt'>45</td>
<td align=right width=66 style='width:50pt'>46</td>
<td align=right width=66 style='width:50pt'>47</td>
<td align=right width=66 style='width:50pt'>48</td>
<td align=right width=66 style='width:50pt'>49</td>
<td align=right width=66 style='width:50pt'>50</td>
<td align=right width=66 style='width:50pt'>51</td>
<td align=right width=66 style='width:50pt'>52</td>
<td align=right width=66 style='width:50pt'>53</td>
<td align=right width=66 style='width:50pt'>54</td>
<td align=right width=66 style='width:50pt'>55</td>
<td align=right width=66 style='width:50pt'>56</td>
<td align=right width=66 style='width:50pt'>57</td>
<td align=right width=66 style='width:50pt'>58</td>
<td align=right width=66 style='width:50pt'>59</td>
<td align=right width=66 style='width:50pt'>60</td>
<td align=right width=66 style='width:50pt'>61</td>
<td align=right width=66 style='width:50pt'>62</td>
<td align=right width=66 style='width:50pt'>63</td>
<td align=right width=66 style='width:50pt'>64</td>
<td align=right width=66 style='width:50pt'>65</td>
<td align=right width=66 style='width:50pt'>66</td>
<td align=right width=66 style='width:50pt'>67</td>
<td align=right width=66 style='width:50pt'>68</td>
<td align=right width=66 style='width:50pt'>69</td>
<td align=right width=66 style='width:50pt'>70</td>
<td align=right width=66 style='width:50pt'>71</td>
<td align=right width=66 style='width:50pt'>72</td>
<td align=right width=66 style='width:50pt'>73</td>
<td align=right width=66 style='width:50pt'>74</td>
<td align=right width=66 style='width:50pt'>75</td>
<td align=right width=66 style='width:50pt'>76</td>
<td align=right width=66 style='width:50pt'>77</td>
<td align=right width=66 style='width:50pt'>78</td>
<td align=right width=66 style='width:50pt'>79</td>
<td align=right width=66 style='width:50pt'>80</td>
<td align=right width=66 style='width:50pt'>81</td>
<td align=right width=66 style='width:50pt'>82</td>
<td align=right width=66 style='width:50pt'>83</td>
<td align=right width=66 style='width:50pt'>84</td>
<td align=right width=66 style='width:50pt'>85</td>
<td align=right width=66 style='width:50pt'>86</td>
<td align=right width=66 style='width:50pt'>87</td>
<td align=right width=66 style='width:50pt'>88</td>
<td align=right width=66 style='width:50pt'>89</td>
<td align=right width=66 style='width:50pt'>90</td>
<td align=right width=66 style='width:50pt'>91</td>
<td align=right width=66 style='width:50pt'>92</td>
<td align=right width=66 style='width:50pt'>93</td>
<td align=right width=66 style='width:50pt'>94</td>
<td align=right width=66 style='width:50pt'>95</td>
<td align=right width=66 style='width:50pt'>96</td>
<td align=right width=66 style='width:50pt'>97</td>
<td align=right width=66 style='width:50pt'>98</td>
<td align=right width=66 style='width:50pt'>99</td>
<td align=right width=66 style='width:50pt'>100</td>
<td align=right width=66 style='width:50pt'>101</td>
<td align=right width=66 style='width:50pt'>102</td>
<td align=right width=66 style='width:50pt'>103</td>
<td align=right width=66 style='width:50pt'>104</td>
<td align=right width=66 style='width:50pt'>105</td>
<td align=right width=66 style='width:50pt'>106</td>
<td align=right width=66 style='width:50pt'>107</td>
<td align=right width=66 style='width:50pt'>108</td>
<td align=right width=66 style='width:50pt'>109</td>
<td align=right width=66 style='width:50pt'>110</td>
<td align=right width=66 style='width:50pt'>111</td>
<td align=right width=66 style='width:50pt'>112</td>
<td align=right width=66 style='width:50pt'>113</td>
<td align=right width=66 style='width:50pt'>114</td>
<td align=right width=66 style='width:50pt'>115</td>
<td align=right width=66 style='width:50pt'>116</td>
<td align=right width=66 style='width:50pt'>117</td>
<td align=right width=66 style='width:50pt'>118</td>
<td align=right width=66 style='width:50pt'>119</td>
<td align=right width=66 style='width:50pt'>120</td>
<td align=right width=66 style='width:50pt'>121</td>
<td align=right width=66 style='width:50pt'>122</td>
<td align=right width=66 style='width:50pt'>123</td>
<td align=right width=66 style='width:50pt'>124</td>
<td align=right width=66 style='width:50pt'>125</td>
<td align=right width=66 style='width:50pt'>126</td>
<td align=right width=66 style='width:50pt'>127</td>
<td align=right width=66 style='width:50pt'>128</td>
<td align=right width=66 style='width:50pt'>129</td>
<td align=right width=66 style='width:50pt'>130</td>
<td align=right width=66 style='width:50pt'>131</td>
<td align=right width=66 style='width:50pt'>132</td>
<td align=right width=66 style='width:50pt'>133</td>
<td align=right width=66 style='width:50pt'>134</td>
<td align=right width=66 style='width:50pt'>135</td>
<td align=right width=66 style='width:50pt'>136</td>
<td align=right width=66 style='width:50pt'>137</td>
<td align=right width=66 style='width:50pt'>138</td>
<td align=right width=66 style='width:50pt'>139</td>
<td align=right width=66 style='width:50pt'>140</td>
<td align=right width=66 style='width:50pt'>141</td>
<td align=right width=66 style='width:50pt'>142</td>
<td align=right width=66 style='width:50pt'>143</td>
<td align=right width=66 style='width:50pt'>144</td>
<td align=right width=66 style='width:50pt'>145</td>
<td align=right width=66 style='width:50pt'>146</td>
<td align=right width=66 style='width:50pt'>147</td>
<td align=right width=66 style='width:50pt'>148</td>
<td align=right width=66 style='width:50pt'>149</td>
<td align=right width=66 style='width:50pt'>150</td>
<td align=right width=66 style='width:50pt'>151</td>
<td align=right width=66 style='width:50pt'>152</td>
<td align=right width=66 style='width:50pt'>153</td>
<td align=right width=66 style='width:50pt'>154</td>
<td align=right width=66 style='width:50pt'>155</td>
<td align=right width=66 style='width:50pt'>156</td>
<td align=right width=66 style='width:50pt'>157</td>
<td align=right width=66 style='width:50pt'>158</td>
<td align=right width=66 style='width:50pt'>159</td>
<td align=right width=66 style='width:50pt'>160</td>
<td align=right width=66 style='width:50pt'>161</td>
<td align=right width=66 style='width:50pt'>162</td>
<td align=right width=66 style='width:50pt'>163</td>
<td align=right width=66 style='width:50pt'>164</td>
<td align=right width=66 style='width:50pt'>165</td>
<td align=right width=66 style='width:50pt'>166</td>
<td align=right width=66 style='width:50pt'>167</td>
<td align=right width=66 style='width:50pt'>168</td>
<td align=right width=66 style='width:50pt'>169</td>
<td align=right width=66 style='width:50pt'>170</td>
<td align=right width=66 style='width:50pt'>171</td>
<td align=right width=66 style='width:50pt'>172</td>
<td align=right width=66 style='width:50pt'>173</td>
<td align=right width=66 style='width:50pt'>174</td>
<td align=right width=66 style='width:50pt'>175</td>
<td align=right width=66 style='width:50pt'>176</td>
<td align=right width=66 style='width:50pt'>177</td>
<td align=right width=66 style='width:50pt'>178</td>
<td align=right width=66 style='width:50pt'>179</td>
<td align=right width=66 style='width:50pt'>180</td>
<td align=right width=66 style='width:50pt'>181</td>
<td align=right width=66 style='width:50pt'>182</td>
<td align=right width=66 style='width:50pt'>183</td>
<td align=right width=66 style='width:50pt'>184</td>
<td align=right width=66 style='width:50pt'>185</td>
<td align=right width=66 style='width:50pt'>186</td>
<td align=right width=66 style='width:50pt'>187</td>
<td align=right width=66 style='width:50pt'>188</td>
<td align=right width=66 style='width:50pt'>189</td>
<td align=right width=66 style='width:50pt'>190</td>
<td align=right width=66 style='width:50pt'>191</td>
<td align=right width=66 style='width:50pt'>192</td>
<td align=right width=66 style='width:50pt'>193</td>
<td align=right width=66 style='width:50pt'>194</td>
<td align=right width=66 style='width:50pt'>195</td>
<td align=right width=66 style='width:50pt'>196</td>
<td align=right width=66 style='width:50pt'>197</td>
<td align=right width=66 style='width:50pt'>198</td>
<td align=right width=66 style='width:50pt'>199</td>
<td align=right width=66 style='width:50pt'>200</td>
<td align=right width=66 style='width:50pt'>201</td>
<td align=right width=66 style='width:50pt'>202</td>
<td align=right width=66 style='width:50pt'>203</td>
<td align=right width=66 style='width:50pt'>204</td>
<td align=right width=66 style='width:50pt'>205</td>
<td align=right width=66 style='width:50pt'>206</td>
<td align=right width=66 style='width:50pt'>207</td>
<td align=right width=66 style='width:50pt'>208</td>
<td align=right width=66 style='width:50pt'>209</td>
<td align=right width=66 style='width:50pt'>210</td>
<td align=right width=66 style='width:50pt'>211</td>
<td align=right width=66 style='width:50pt'>212</td>
<td align=right width=66 style='width:50pt'>213</td>
<td align=right width=66 style='width:50pt'>214</td>
<td align=right width=66 style='width:50pt'>215</td>
<td align=right width=66 style='width:50pt'>216</td>
<td align=right width=66 style='width:50pt'>217</td>
<td align=right width=66 style='width:50pt'>218</td>
<td align=right width=66 style='width:50pt'>219</td>
<td align=right width=66 style='width:50pt'>220</td>
<td align=right width=66 style='width:50pt'>221</td>
<td align=right width=66 style='width:50pt'>222</td>
<td align=right width=66 style='width:50pt'>223</td>
<td align=right width=66 style='width:50pt'>224</td>
<td align=right width=66 style='width:50pt'>225</td>
<td align=right width=66 style='width:50pt'>226</td>
<td align=right width=66 style='width:50pt'>227</td>
<td align=right width=66 style='width:50pt'>228</td>
<td align=right width=66 style='width:50pt'>229</td>
<td align=right width=66 style='width:50pt'>230</td>
<td align=right width=66 style='width:50pt'>231</td>
<td align=right width=66 style='width:50pt'>232</td>
<td align=right width=66 style='width:50pt'>233</td>
<td align=right width=66 style='width:50pt'>234</td>
<td align=right width=66 style='width:50pt'>235</td>
<td align=right width=66 style='width:50pt'>236</td>
<td align=right width=66 style='width:50pt'>237</td>
<td align=right width=66 style='width:50pt'>238</td>
<td align=right width=66 style='width:50pt'>239</td>
<td align=right width=66 style='width:50pt'>240</td>
<td align=right width=66 style='width:50pt'>241</td>
<td align=right width=66 style='width:50pt'>242</td>
<td align=right width=66 style='width:50pt'>243</td>
<td align=right width=66 style='width:50pt'>244</td>
<td align=right width=66 style='width:50pt'>245</td>
<td align=right width=66 style='width:50pt'>246</td>
<td align=right width=66 style='width:50pt'>247</td>
<td align=right width=66 style='width:50pt'>248</td>
<td align=right width=66 style='width:50pt'>249</td>
<td align=right width=66 style='width:50pt'>250</td>
<td align=right width=66 style='width:50pt'>251</td>
<td align=right width=66 style='width:50pt'>252</td>
<td align=right width=66 style='width:50pt'>253</td>
<td align=right width=66 style='width:50pt'>254</td>
<td align=right width=66 style='width:50pt'>255</td>
<td width=66 style='width:50pt'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 colspan=256 style='height:14.0pt;mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>Buff</td>
<td></td>
<td>状态</td>
<td colspan=253 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>Id</td>
<td>Name</td>
<td>Desc</td>
<td>Delay</td>
<td>Duration</td>
<td>EffectTy<span style='display:none'>pe</span></td>
<td>AffixId</td>
<td>GroupIds</td>
<td>Limit</td>
<td>Cd</td>
<td>Kind</td>
<td>Cover</td>
<td>Mutex</td>
<td>Magic</td>
<td>Effect</td>
<td>EffectJo<span style='display:none'>int</span></td>
<td>TriggerM<span style='display:none'>agic</span></td>
<td>TriggerI<span style='display:none'>nterval</span></td>
<td>TriggerO<span style='display:none'>nAdd</span></td>
<td>Icon</td>
<td>DyingRem<span style='display:none'>ove</span></td>
<td>EndMagic</td>
<td>ShowType</td>
<td>RebornRe<span style='display:none'>tain</span></td>
<td colspan=2 style='mso-ignore:colspan'>IsWeaponEffect</td>
<td colspan=230 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 colspan=256 style='height:14.0pt;mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>Magic</td>
<td></td>
<td>效果</td>
<td colspan=253 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>Id</td>
<td>Name</td>
<td>MagicKind</td>
<td>Level[1]</td>
<td>Level[2]</td>
<td>Level[3]</td>
<td>Level[4]</td>
<td>Level[5]</td>
<td>Level[6]</td>
<td>Level[7]</td>
<td>Level[8]</td>
<td>Level[9]</td>
<td>Level[10]</td>
<td>Level[11]</td>
<td>Level[12]</td>
<td>Level[13]</td>
<td>Level[14]</td>
<td>Level[15]</td>
<td>Level[16]</td>
<td>Level[17]</td>
<td>Level[18]</td>
<td>Level[19]</td>
<td>Level[20]</td>
<td>Level[21]</td>
<td>Level[22]</td>
<td>Level[23]</td>
<td>Level[24]</td>
<td>Level[25]</td>
<td>Level[26]</td>
<td>Level[27]</td>
<td>Level[28]</td>
<td>Level[29]</td>
<td>Level[30]</td>
<td>Level[31]</td>
<td>Level[32]</td>
<td>Level[33]</td>
<td>Level[34]</td>
<td>Level[35]</td>
<td>Level[36]</td>
<td>Level[37]</td>
<td>Level[38]</td>
<td>Level[39]</td>
<td>Level[40]</td>
<td>Level[41]</td>
<td>Level[42]</td>
<td>Level[43]</td>
<td>Level[44]</td>
<td>Level[45]</td>
<td>Level[46]</td>
<td>Level[47]</td>
<td>Level[48]</td>
<td>Level[49]</td>
<td>Level[50]</td>
<td>Level[51]</td>
<td>Level[52]</td>
<td>Level[53]</td>
<td>Level[54]</td>
<td colspan=2 style='mso-ignore:colspan'>Level[55]</td>
<td colspan=197 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 colspan=256 style='height:14.0pt;mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 colspan=2 style='height:14.0pt;mso-ignore:colspan'>BehaviorNode</td>
<td colspan=2 style='mso-ignore:colspan'>行为树节点</td>
<td colspan=252 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>Id</td>
<td>Type</td>
<td>Negative</td>
<td>Name</td>
<td>Param</td>
<td>Children<span style='display:none'>[1]</span></td>
<td>Children<span style='display:none'>[2]</span></td>
<td>Children<span style='display:none'>[3]</span></td>
<td>Children<span style='display:none'>[4]</span></td>
<td>Children<span style='display:none'>[5]</span></td>
<td>Children<span style='display:none'>[6]</span></td>
<td>Children<span style='display:none'>[7]</span></td>
<td>Children<span style='display:none'>[8]</span></td>
<td>Children<span style='display:none'>[9]</span></td>
<td>Children<span style='display:none'>[10]</span></td>
<td>Children<span style='display:none'>[11]</span></td>
<td>Children<span style='display:none'>[12]</span></td>
<td>Children<span style='display:none'>[13]</span></td>
<td>Children<span style='display:none'>[14]</span></td>
<td>Children<span style='display:none'>[15]</span></td>
<td>Children<span style='display:none'>[16]</span></td>
<td>Children<span style='display:none'>[17]</span></td>
<td>Children<span style='display:none'>[18]</span></td>
<td>Children<span style='display:none'>[19]</span></td>
<td>Children<span style='display:none'>[20]</span></td>
<td>Children<span style='display:none'>[21]</span></td>
<td>Children<span style='display:none'>[22]</span></td>
<td>Children<span style='display:none'>[23]</span></td>
<td>Children<span style='display:none'>[24]</span></td>
<td>Children<span style='display:none'>[25]</span></td>
<td>Children<span style='display:none'>[26]</span></td>
<td>Children<span style='display:none'>[27]</span></td>
<td>Children<span style='display:none'>[28]</span></td>
<td>Children<span style='display:none'>[29]</span></td>
<td>Children<span style='display:none'>[30]</span></td>
<td>Children<span style='display:none'>[31]</span></td>
<td>Children<span style='display:none'>[32]</span></td>
<td>Children<span style='display:none'>[33]</span></td>
<td>Children<span style='display:none'>[34]</span></td>
<td>Children<span style='display:none'>[35]</span></td>
<td>Children<span style='display:none'>[36]</span></td>
<td>Children<span style='display:none'>[37]</span></td>
<td>Children<span style='display:none'>[38]</span></td>
<td>Children<span style='display:none'>[39]</span></td>
<td>Children<span style='display:none'>[40]</span></td>
<td>Children<span style='display:none'>[41]</span></td>
<td>Children<span style='display:none'>[42]</span></td>
<td>Children<span style='display:none'>[43]</span></td>
<td>Children<span style='display:none'>[44]</span></td>
<td>Children<span style='display:none'>[45]</span></td>
<td>Children<span style='display:none'>[46]</span></td>
<td>Children<span style='display:none'>[47]</span></td>
<td>Children<span style='display:none'>[48]</span></td>
<td>Children<span style='display:none'>[49]</span></td>
<td>Children<span style='display:none'>[50]</span></td>
<td>Children<span style='display:none'>[51]</span></td>
<td>Children<span style='display:none'>[52]</span></td>
<td>Children<span style='display:none'>[53]</span></td>
<td>Children<span style='display:none'>[54]</span></td>
<td>Children<span style='display:none'>[55]</span></td>
<td>Children<span style='display:none'>[56]</span></td>
<td>Children<span style='display:none'>[57]</span></td>
<td>Children<span style='display:none'>[58]</span></td>
<td>Children<span style='display:none'>[59]</span></td>
<td>Children<span style='display:none'>[60]</span></td>
<td>Children<span style='display:none'>[61]</span></td>
<td>Children<span style='display:none'>[62]</span></td>
<td>Children<span style='display:none'>[63]</span></td>
<td>Children<span style='display:none'>[64]</span></td>
<td>Children<span style='display:none'>[65]</span></td>
<td>Children<span style='display:none'>[66]</span></td>
<td>Children<span style='display:none'>[67]</span></td>
<td>Children<span style='display:none'>[68]</span></td>
<td>Children<span style='display:none'>[69]</span></td>
<td>Children<span style='display:none'>[70]</span></td>
<td>Children<span style='display:none'>[71]</span></td>
<td>Children<span style='display:none'>[72]</span></td>
<td>Children<span style='display:none'>[73]</span></td>
<td>Children<span style='display:none'>[74]</span></td>
<td>Children<span style='display:none'>[75]</span></td>
<td>Children<span style='display:none'>[76]</span></td>
<td>Children<span style='display:none'>[77]</span></td>
<td>Children<span style='display:none'>[78]</span></td>
<td>Children<span style='display:none'>[79]</span></td>
<td>Children<span style='display:none'>[80]</span></td>
<td>Children<span style='display:none'>[81]</span></td>
<td>Children<span style='display:none'>[82]</span></td>
<td>Children<span style='display:none'>[83]</span></td>
<td>Children<span style='display:none'>[84]</span></td>
<td>Children<span style='display:none'>[85]</span></td>
<td>Children<span style='display:none'>[86]</span></td>
<td>Children<span style='display:none'>[87]</span></td>
<td>Children<span style='display:none'>[88]</span></td>
<td>Children<span style='display:none'>[89]</span></td>
<td>Children<span style='display:none'>[90]</span></td>
<td>Children<span style='display:none'>[91]</span></td>
<td>Children<span style='display:none'>[92]</span></td>
<td>Children<span style='display:none'>[93]</span></td>
<td>Children<span style='display:none'>[94]</span></td>
<td>Children<span style='display:none'>[95]</span></td>
<td>Children<span style='display:none'>[96]</span></td>
<td>Children<span style='display:none'>[97]</span></td>
<td>Children<span style='display:none'>[98]</span></td>
<td>Children<span style='display:none'>[99]</span></td>
<td>Children<span style='display:none'>[100]</span></td>
<td>Children<span style='display:none'>[101]</span></td>
<td>Children<span style='display:none'>[102]</span></td>
<td>Children<span style='display:none'>[103]</span></td>
<td>Children<span style='display:none'>[104]</span></td>
<td>Children<span style='display:none'>[105]</span></td>
<td>Children<span style='display:none'>[106]</span></td>
<td>Children<span style='display:none'>[107]</span></td>
<td>Children<span style='display:none'>[108]</span></td>
<td>Children<span style='display:none'>[109]</span></td>
<td>Children<span style='display:none'>[110]</span></td>
<td>Children<span style='display:none'>[111]</span></td>
<td>Children<span style='display:none'>[112]</span></td>
<td>Children<span style='display:none'>[113]</span></td>
<td>Children<span style='display:none'>[114]</span></td>
<td>Children<span style='display:none'>[115]</span></td>
<td>Children<span style='display:none'>[116]</span></td>
<td>Children<span style='display:none'>[117]</span></td>
<td>Children<span style='display:none'>[118]</span></td>
<td>Children<span style='display:none'>[119]</span></td>
<td>Children<span style='display:none'>[120]</span></td>
<td>Children<span style='display:none'>[121]</span></td>
<td>Children<span style='display:none'>[122]</span></td>
<td>Children<span style='display:none'>[123]</span></td>
<td>Children<span style='display:none'>[124]</span></td>
<td>Children<span style='display:none'>[125]</span></td>
<td>Children<span style='display:none'>[126]</span></td>
<td>Children<span style='display:none'>[127]</span></td>
<td>Children<span style='display:none'>[128]</span></td>
<td>Children<span style='display:none'>[129]</span></td>
<td>Children<span style='display:none'>[130]</span></td>
<td>Children<span style='display:none'>[131]</span></td>
<td>Children<span style='display:none'>[132]</span></td>
<td>Children<span style='display:none'>[133]</span></td>
<td>Children<span style='display:none'>[134]</span></td>
<td>Children<span style='display:none'>[135]</span></td>
<td>Children<span style='display:none'>[136]</span></td>
<td>Children<span style='display:none'>[137]</span></td>
<td>Children<span style='display:none'>[138]</span></td>
<td>Children<span style='display:none'>[139]</span></td>
<td>Children<span style='display:none'>[140]</span></td>
<td>Children<span style='display:none'>[141]</span></td>
<td>Children<span style='display:none'>[142]</span></td>
<td>Children<span style='display:none'>[143]</span></td>
<td>Children<span style='display:none'>[144]</span></td>
<td>Children<span style='display:none'>[145]</span></td>
<td>Children<span style='display:none'>[146]</span></td>
<td>Children<span style='display:none'>[147]</span></td>
<td>Children<span style='display:none'>[148]</span></td>
<td>Children<span style='display:none'>[149]</span></td>
<td>Children<span style='display:none'>[150]</span></td>
<td>Children<span style='display:none'>[151]</span></td>
<td>Children<span style='display:none'>[152]</span></td>
<td>Children<span style='display:none'>[153]</span></td>
<td>Children<span style='display:none'>[154]</span></td>
<td>Children<span style='display:none'>[155]</span></td>
<td>Children<span style='display:none'>[156]</span></td>
<td>Children<span style='display:none'>[157]</span></td>
<td>Children<span style='display:none'>[158]</span></td>
<td>Children<span style='display:none'>[159]</span></td>
<td>Children<span style='display:none'>[160]</span></td>
<td>Children<span style='display:none'>[161]</span></td>
<td>Children<span style='display:none'>[162]</span></td>
<td>Children<span style='display:none'>[163]</span></td>
<td>Children<span style='display:none'>[164]</span></td>
<td>Children<span style='display:none'>[165]</span></td>
<td>Children<span style='display:none'>[166]</span></td>
<td>Children<span style='display:none'>[167]</span></td>
<td>Children<span style='display:none'>[168]</span></td>
<td>Children<span style='display:none'>[169]</span></td>
<td>Children<span style='display:none'>[170]</span></td>
<td>Children<span style='display:none'>[171]</span></td>
<td>Children<span style='display:none'>[172]</span></td>
<td>Children<span style='display:none'>[173]</span></td>
<td>Children<span style='display:none'>[174]</span></td>
<td>Children<span style='display:none'>[175]</span></td>
<td>Children<span style='display:none'>[176]</span></td>
<td>Children<span style='display:none'>[177]</span></td>
<td>Children<span style='display:none'>[178]</span></td>
<td>Children<span style='display:none'>[179]</span></td>
<td>Children<span style='display:none'>[180]</span></td>
<td>Children<span style='display:none'>[181]</span></td>
<td>Children<span style='display:none'>[182]</span></td>
<td>Children<span style='display:none'>[183]</span></td>
<td>Children<span style='display:none'>[184]</span></td>
<td>Children<span style='display:none'>[185]</span></td>
<td>Children<span style='display:none'>[186]</span></td>
<td>Children<span style='display:none'>[187]</span></td>
<td>Children<span style='display:none'>[188]</span></td>
<td>Children<span style='display:none'>[189]</span></td>
<td>Children<span style='display:none'>[190]</span></td>
<td>Children<span style='display:none'>[191]</span></td>
<td>Children<span style='display:none'>[192]</span></td>
<td>Children<span style='display:none'>[193]</span></td>
<td>Children<span style='display:none'>[194]</span></td>
<td>Children<span style='display:none'>[195]</span></td>
<td>Children<span style='display:none'>[196]</span></td>
<td>Children<span style='display:none'>[197]</span></td>
<td>Children<span style='display:none'>[198]</span></td>
<td>Children<span style='display:none'>[199]</span></td>
<td>Children<span style='display:none'>[200]</span></td>
<td>Children<span style='display:none'>[201]</span></td>
<td>Children<span style='display:none'>[202]</span></td>
<td>Children<span style='display:none'>[203]</span></td>
<td>Children<span style='display:none'>[204]</span></td>
<td>Children<span style='display:none'>[205]</span></td>
<td>Children<span style='display:none'>[206]</span></td>
<td>Children<span style='display:none'>[207]</span></td>
<td>Children<span style='display:none'>[208]</span></td>
<td>Children<span style='display:none'>[209]</span></td>
<td>Children<span style='display:none'>[210]</span></td>
<td>Children<span style='display:none'>[211]</span></td>
<td>Children<span style='display:none'>[212]</span></td>
<td>Children<span style='display:none'>[213]</span></td>
<td>Children<span style='display:none'>[214]</span></td>
<td>Children<span style='display:none'>[215]</span></td>
<td>Children<span style='display:none'>[216]</span></td>
<td>Children<span style='display:none'>[217]</span></td>
<td>Children<span style='display:none'>[218]</span></td>
<td>Children<span style='display:none'>[219]</span></td>
<td>Children<span style='display:none'>[220]</span></td>
<td>Children<span style='display:none'>[221]</span></td>
<td>Children<span style='display:none'>[222]</span></td>
<td>Children<span style='display:none'>[223]</span></td>
<td>Children<span style='display:none'>[224]</span></td>
<td>Children<span style='display:none'>[225]</span></td>
<td>Children<span style='display:none'>[226]</span></td>
<td>Children<span style='display:none'>[227]</span></td>
<td>Children<span style='display:none'>[228]</span></td>
<td>Children<span style='display:none'>[229]</span></td>
<td>Children<span style='display:none'>[230]</span></td>
<td>Children<span style='display:none'>[231]</span></td>
<td>Children<span style='display:none'>[232]</span></td>
<td>Children<span style='display:none'>[233]</span></td>
<td>Children<span style='display:none'>[234]</span></td>
<td>Children<span style='display:none'>[235]</span></td>
<td>Children<span style='display:none'>[236]</span></td>
<td>Children<span style='display:none'>[237]</span></td>
<td>Children<span style='display:none'>[238]</span></td>
<td>Children<span style='display:none'>[239]</span></td>
<td>Children<span style='display:none'>[240]</span></td>
<td>Children<span style='display:none'>[241]</span></td>
<td>Children<span style='display:none'>[242]</span></td>
<td>Children<span style='display:none'>[243]</span></td>
<td>Children<span style='display:none'>[244]</span></td>
<td>Children<span style='display:none'>[245]</span></td>
<td>Children<span style='display:none'>[246]</span></td>
<td>Children<span style='display:none'>[247]</span></td>
<td>Children<span style='display:none'>[248]</span></td>
<td>Children<span style='display:none'>[249]</span></td>
<td colspan=2 style='mso-ignore:colspan'>Children[250]</td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 colspan=256 style='height:14.0pt;mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>BeHavior</td>
<td></td>
<td>行为树</td>
<td colspan=253 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>Id</td>
<td>Type</td>
<td>Priority</td>
<td>PrefixRo<span style='display:none'>ot</span></td>
<td>Root</td>
<td>PreLoadR<span style='display:none'>oot</span></td>
<td colspan=2 style='mso-ignore:colspan'>RemoveRoot</td>
<td colspan=248 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 colspan=256 style='height:14.0pt;mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>Sound</td>
<td></td>
<td>音效</td>
<td colspan=253 style='mso-ignore:colspan'></td>
</tr>
<tr height=19 style='height:14.0pt'>
<td height=19 style='height:14.0pt'>Id</td>
<td>Type</td>
<td>Priority</td>
<td>PrefixRo<span style='display:none'>ot</span></td>
<td>Root</td>
<td>PreLoadR<span style='display:none'>oot</span></td>
<td colspan=2 style='mso-ignore:colspan'>RemoveRoot</td>
<td colspan=248 style='mso-ignore:colspan'></td>
</tr>
<![if supportMisalignedColumns]>
<tr height=0 style='display:none'>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
<td width=66 style='width:50pt'></td>
</tr>
<![endif]>
</table>
</body>
</html>

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,404 @@
tr
{mso-height-source:auto;
mso-ruby-visibility:none;}
col
{mso-width-source:auto;
mso-ruby-visibility:none;}
br
{mso-data-placement:same-cell;}
ruby
{ruby-align:left;}
.style0
{mso-number-format:General;
text-align:general;
vertical-align:middle;
white-space:nowrap;
mso-rotate:0;
mso-background-source:auto;
mso-pattern:auto;
color:black;
font-size:11.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:ËÎÌå;
mso-generic-font-family:auto;
mso-font-charset:134;
border:none;
mso-protection:locked visible;
mso-style-name:³£¹æ;
mso-style-id:0;}
.style16
{mso-number-format:General;
text-align:general;
vertical-align:bottom;
white-space:nowrap;
mso-rotate:0;
mso-background-source:auto;
mso-pattern:auto;
color:black;
font-size:11.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:ËÎÌå;
mso-generic-font-family:auto;
mso-font-charset:134;
border:none;
mso-protection:locked visible;
mso-style-name:"³£¹æ 2";}
.style18
{mso-number-format:General;
text-align:general;
vertical-align:middle;
white-space:nowrap;
mso-rotate:0;
mso-background-source:auto;
mso-pattern:auto;
color:black;
font-size:11.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:ËÎÌå;
mso-generic-font-family:auto;
mso-font-charset:134;
border:none;
mso-protection:locked visible;
mso-style-name:"³£¹æ 5";}
.font6
{color:windowtext;
font-size:9.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:ËÎÌå;
mso-generic-font-family:auto;
mso-font-charset:134;}
.font10
{color:black;
font-size:9.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:ËÎÌå;
mso-generic-font-family:auto;
mso-font-charset:134;}
.font11
{color:black;
font-size:9.0pt;
font-weight:700;
font-style:normal;
text-decoration:none;
font-family:ËÎÌå;
mso-generic-font-family:auto;
mso-font-charset:134;}
td
{mso-style-parent:style0;
padding:0px;
mso-ignore:padding;
color:black;
font-size:11.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:ËÎÌå;
mso-generic-font-family:auto;
mso-font-charset:134;
mso-number-format:General;
text-align:general;
vertical-align:middle;
border:none;
mso-background-source:auto;
mso-pattern:auto;
mso-protection:locked visible;
white-space:nowrap;
mso-rotate:0;}
.xl14297
{mso-style-parent:style0;
vertical-align:bottom;}
.xl14298
{mso-style-parent:style0;
vertical-align:bottom;
white-space:normal;}
.xl14299
{mso-style-parent:style0;
color:white;
text-align:left;
vertical-align:bottom;
border:.5pt solid windowtext;
background:#2F75B5;
mso-pattern:black none;
white-space:normal;}
.xl14300
{mso-style-parent:style0;
text-align:left;
vertical-align:bottom;
white-space:normal;}
.xl14301
{mso-style-parent:style0;
text-align:left;
vertical-align:bottom;}
.xl14302
{mso-style-parent:style0;
color:white;
text-align:left;
vertical-align:bottom;
border:.5pt solid windowtext;
background:#2F75B5;
mso-pattern:black none;}
.xl14303
{mso-style-parent:style16;
text-align:left;
vertical-align:bottom;}
.xl14304
{mso-style-parent:style16;
vertical-align:bottom;}
.xl14305
{mso-style-parent:style0;
vertical-align:bottom;
background:#92D050;
mso-pattern:black none;}
.xl14306
{mso-style-parent:style0;
text-align:left;}
.xl14307
{mso-style-parent:style0;
text-align:left;
vertical-align:bottom;
border:.5pt solid windowtext;
background:#FFC000;
mso-pattern:black none;}
.xl14308
{mso-style-parent:style0;
color:red;
font-weight:700;
text-align:left;
vertical-align:bottom;
white-space:normal;}
.xl14309
{mso-style-parent:style0;
text-align:left;
vertical-align:bottom;
background:yellow;
mso-pattern:black none;}
.xl14310
{mso-style-parent:style0;
white-space:normal;}
.xl14311
{mso-style-parent:style0;
text-align:left;
vertical-align:bottom;
background:#E2EFDA;
mso-pattern:black none;}
.xl14312
{mso-style-parent:style0;
text-align:center;
background:#C6E0B4;
mso-pattern:black none;
white-space:normal;}
.xl14313
{mso-style-parent:style0;
font-weight:700;
text-align:left;
background:#E2EFDA;
mso-pattern:black none;
white-space:normal;}
.xl14314
{mso-style-parent:style18;
font-weight:700;}
.xl14315
{mso-style-parent:style18;}
.xl14316
{mso-style-parent:style16;
vertical-align:bottom;
white-space:normal;}
.xl14317
{mso-style-parent:style0;
vertical-align:bottom;
background:#92D050;
mso-pattern:black none;
white-space:normal;}
.xl14318
{mso-style-parent:style0;
mso-number-format:"General Date";}
.xl14319
{mso-style-parent:style0;
color:white;
font-weight:700;
text-align:left;
vertical-align:bottom;
background:#262626;
mso-pattern:black none;}
.xl14320
{mso-style-parent:style0;
vertical-align:top;}
.xl14321
{mso-style-parent:style0;
color:white;
text-align:left;
vertical-align:bottom;
background:#2F75B5;
mso-pattern:black none;
white-space:normal;}
.xl14322
{mso-style-parent:style0;
color:red;
text-align:left;
vertical-align:bottom;
background:black;
mso-pattern:black none;}
.xl14323
{mso-style-parent:style0;
color:red;
vertical-align:top;
background:black;
mso-pattern:black none;}
.xl14324
{mso-style-parent:style0;
font-family:΢ÈíÑźÚ, sans-serif;
mso-font-charset:134;
text-align:left;
vertical-align:bottom;}
.xl14325
{mso-style-parent:style0;
text-align:left;
vertical-align:top;
mso-protection:unlocked visible;}
.xl14326
{mso-style-parent:style0;
color:#7030A0;
font-weight:700;
text-align:left;
vertical-align:bottom;}
.xl14327
{mso-style-parent:style0;
text-align:left;
vertical-align:bottom;
background:#FFC000;
mso-pattern:black none;}
.xl14328
{mso-style-parent:style0;
color:#C00000;
font-family:΢ÈíÑźÚ, sans-serif;
mso-font-charset:134;
text-align:left;
vertical-align:bottom;}
.xl14329
{mso-style-parent:style0;
color:#C00000;
text-align:left;
vertical-align:bottom;}
.xl14330
{mso-style-parent:style0;
font-weight:700;
font-style:italic;
text-decoration:underline;
text-underline-style:single;
font-family:΢ÈíÑźÚ, sans-serif;
mso-font-charset:134;
text-align:left;
vertical-align:bottom;
background:#BFBFBF;
mso-pattern:black none;}
.xl14331
{mso-style-parent:style0;
font-weight:700;
font-style:italic;
text-decoration:underline;
text-underline-style:single;
font-family:΢ÈíÑźÚ, sans-serif;
mso-font-charset:134;
text-align:left;
vertical-align:bottom;
background:#D9D9D9;
mso-pattern:black none;}
.xl14332
{mso-style-parent:style0;
vertical-align:top;
white-space:normal;}
.xl14333
{mso-style-parent:style0;
text-align:right;
vertical-align:bottom;}
.xl14334
{mso-style-parent:style0;
font-weight:700;
text-align:left;
vertical-align:bottom;
background:#D9D9D9;
mso-pattern:black none;}
.xl14335
{mso-style-parent:style0;
font-weight:700;
text-align:left;
vertical-align:top;
background:#D9D9D9;
mso-pattern:black none;
mso-protection:unlocked visible;}
.xl14336
{mso-style-parent:style0;
font-weight:700;
vertical-align:top;
background:#BFBFBF;
mso-pattern:black none;}
.xl14337
{mso-style-parent:style0;
font-weight:700;
text-align:left;
vertical-align:bottom;
background:#BFBFBF;
mso-pattern:black none;}
.xl14338
{mso-style-parent:style0;
font-weight:700;
vertical-align:top;
background:#D9D9D9;
mso-pattern:black none;}
.xl14339
{mso-style-parent:style0;
font-weight:700;
text-align:left;
vertical-align:top;
background:#BFBFBF;
mso-pattern:black none;
mso-protection:unlocked visible;}
.xl14340
{mso-style-parent:style0;
text-align:left;
vertical-align:bottom;
background:#D9D9D9;
mso-pattern:black none;}
.xl14341
{mso-style-parent:style0;
text-align:left;
vertical-align:bottom;
background:#BFBFBF;
mso-pattern:black none;}
.xl14342
{mso-style-parent:style0;
vertical-align:bottom;
background:white;
mso-pattern:black none;}
.xl14343
{mso-style-parent:style0;
text-align:left;
vertical-align:bottom;
background:#00B0F0;
mso-pattern:black none;}
.xl14344
{mso-style-parent:style0;
text-align:left;
background:#00B050;
mso-pattern:black none;}
.xl14345
{mso-style-parent:style0;
color:red;
text-align:left;}
.xl14346
{mso-style-parent:style0;
color:#2F75B5;
font-family:΢ÈíÑźÚ, sans-serif;
mso-font-charset:134;
text-align:left;
vertical-align:bottom;}

View File

@ -0,0 +1,46 @@
<html>
<head>
<meta http-equiv=Content-Type content="text/html; charset=gb2312">
<meta name=ProgId content=Excel.Sheet>
<meta name=Generator content="Microsoft Excel 15">
<link id=Main-File rel=Main-File href="../x效果C054.html">
<script language="JavaScript">
<!--
if (window.name!="frTabs")
window.location.replace(document.all.item("Main-File").href);
//-->
</script>
<style>
<!--
A {
text-decoration:none;
color:#000000;
font-size:9pt;
}
-->
</style>
</head>
<body topmargin=0 leftmargin=0 bgcolor="#808080">
<table border=0 cellspacing=1>
<tr>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet001.html" target="frSheet"><font face="宋体" color="#000000">同步所有宏</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet002.html" target="frSheet"><font face="宋体" color="#000000">工具表设置</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet003.html" target="frSheet"><font face="宋体" color="#000000">效果表独立设置</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet004.html" target="frSheet"><font face="宋体" color="#000000">Buff类型</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet005.html" target="frSheet"><font face="宋体" color="#000000">效果</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet006.html" target="frSheet"><font face="宋体" color="#000000">行为树</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet007.html" target="frSheet"><font face="宋体" color="#000000">行为类型</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet008.html" target="frSheet"><font face="宋体" color="#000000">Npc状态类型</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet009.html" target="frSheet"><font face="宋体" color="#000000">类型组</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet010.html" target="frSheet"><font face="宋体" color="#000000">触发时机类型</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet011.html" target="frSheet"><font face="宋体" color="#000000">属性类型</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet012.html" target="frSheet"><font face="宋体" color="#000000">伤害类型</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet013.html" target="frSheet"><font face="宋体" color="#000000">效果类型</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet014.html" target="frSheet"><font face="宋体" color="#000000">建表表头</font></a>&nbsp;</small></small></b></td>
<td bgcolor="#FFFFFF" nowrap><b><small><small>&nbsp;<a href="sheet015.html" target="frSheet"><font face="宋体" color="#000000">组合列表</font></a>&nbsp;</small></small></b></td>
</tr>
</table>
</body>
</html>

Some files were not shown because too many files have changed in this diff Show More