bnstooltips 1.10.2 → 1.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/Utilities/ISkill.d.ts +2 -0
- package/build/index.es.js +10 -0
- package/build/index.es.js.map +1 -1
- package/build/index.js +10 -0
- package/build/index.js.map +1 -1
- package/package.json +4 -4
package/build/index.js
CHANGED
|
@@ -7084,6 +7084,11 @@ function AddIds(subInfoGroups, skill) {
|
|
|
7084
7084
|
"Gcd group: ",
|
|
7085
7085
|
React__default["default"].createElement(BlueColoredText, { text: skill.GcdGroup.toString() })));
|
|
7086
7086
|
}
|
|
7087
|
+
if (skill.GcdDuration != null) {
|
|
7088
|
+
subInfoGroup.texts.push(React__default["default"].createElement("div", null,
|
|
7089
|
+
"Gcd duration: ",
|
|
7090
|
+
React__default["default"].createElement(BlueColoredText, { text: skill.GcdDuration.toString() })));
|
|
7091
|
+
}
|
|
7087
7092
|
if (skill.CdRecycle != null) {
|
|
7088
7093
|
subInfoGroup.texts.push(React__default["default"].createElement("div", null,
|
|
7089
7094
|
"Cd group: ",
|
|
@@ -7092,6 +7097,11 @@ function AddIds(subInfoGroups, skill) {
|
|
|
7092
7097
|
"Cd id: ",
|
|
7093
7098
|
React__default["default"].createElement(BlueColoredText, { text: skill.CdRecycle.Item2.toString() })));
|
|
7094
7099
|
}
|
|
7100
|
+
if (skill.RealCooldown != null) {
|
|
7101
|
+
subInfoGroup.texts.push(React__default["default"].createElement("div", null,
|
|
7102
|
+
"Real cooldown: ",
|
|
7103
|
+
React__default["default"].createElement(BlueColoredText, { text: skill.RealCooldown.toString() })));
|
|
7104
|
+
}
|
|
7095
7105
|
subInfoGroups.push(subInfoGroup);
|
|
7096
7106
|
}
|
|
7097
7107
|
function AddRealCastConds(subInfoGroups, skill) {
|