enefel 1.0.187 → 1.0.189
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/package.json +1 -1
- package/skill.js +11 -4
package/package.json
CHANGED
package/skill.js
CHANGED
|
@@ -292,6 +292,11 @@ const isActivableSkills = (skill) => {
|
|
|
292
292
|
return activables.includes(skill);
|
|
293
293
|
};
|
|
294
294
|
|
|
295
|
+
const isSelectPlayersSkills = (skill) => {
|
|
296
|
+
const activables = [];
|
|
297
|
+
return activables.includes(skill);
|
|
298
|
+
};
|
|
299
|
+
|
|
295
300
|
function getStarLimit(teamPlayers) {
|
|
296
301
|
const specialists = getPlayersWithSkill(
|
|
297
302
|
teamPlayers,
|
|
@@ -346,6 +351,7 @@ function getNoTurnoverSkill() {
|
|
|
346
351
|
SKILL_NAMES.UNCHANNELLED_FURY,
|
|
347
352
|
SKILL_NAMES.DUMP_OFF,
|
|
348
353
|
SKILL_NAMES.HYPNOTIC_GAZE,
|
|
354
|
+
SKILL_NAMES.FOUL_APPEARANCE,
|
|
349
355
|
];
|
|
350
356
|
}
|
|
351
357
|
|
|
@@ -409,6 +415,7 @@ const hasToAgilityJumpUp = (player) => {
|
|
|
409
415
|
module.exports = {
|
|
410
416
|
BIG_GUY_LIMIT,
|
|
411
417
|
getDisturbingPresenceMalus,
|
|
418
|
+
getNoTurnoverSkill,
|
|
412
419
|
getPlayersWithSkill,
|
|
413
420
|
getSkill,
|
|
414
421
|
getSkillDisplayedWithCarrer,
|
|
@@ -418,17 +425,17 @@ module.exports = {
|
|
|
418
425
|
hasSkill,
|
|
419
426
|
hasSkillDisplayableInfo,
|
|
420
427
|
hasToAgilityJumpUp,
|
|
428
|
+
hasUsedSkill,
|
|
421
429
|
helpSkillsToDisplay,
|
|
422
430
|
isActivableSkills,
|
|
431
|
+
isNoTurnoverSkill,
|
|
432
|
+
isSelectPlayersSkills,
|
|
423
433
|
isSpecialSkill,
|
|
424
434
|
SKILL_DURATION,
|
|
425
435
|
SKILL_INFO_ACTIVE,
|
|
426
436
|
SKILL_INFO_INACTIVE,
|
|
427
437
|
SKILL_NAMES,
|
|
428
|
-
SKILLS,
|
|
429
438
|
SKILL_TYPE,
|
|
439
|
+
SKILLS,
|
|
430
440
|
useSkill,
|
|
431
|
-
isNoTurnoverSkill,
|
|
432
|
-
getNoTurnoverSkill,
|
|
433
|
-
hasUsedSkill,
|
|
434
441
|
};
|