enefel 1.0.209 → 1.0.211

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.
Files changed (3) hide show
  1. package/career.js +6 -1
  2. package/package.json +1 -1
  3. package/skill.js +1 -0
package/career.js CHANGED
@@ -400,7 +400,12 @@ const CAREER = {
400
400
  double: "PS",
401
401
  normalCoach: "G",
402
402
  icons: ["necromantic-werewolf1"],
403
- skills: [SKILL_NAMES.CLAW, SKILL_NAMES.FRENZY, SKILL_NAMES.STAR],
403
+ skills: [
404
+ SKILL_NAMES.CLAW,
405
+ SKILL_NAMES.FRENZY,
406
+ SKILL_NAMES.STAR,
407
+ SKILL_NAMES.REGENERATION,
408
+ ],
404
409
  avatars: [AVATAR.WEREWOLF],
405
410
  badge: RACE.NECROMANTIC,
406
411
  range: 5,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "enefel",
3
- "version": "1.0.209",
3
+ "version": "1.0.211",
4
4
  "main": "index.js",
5
5
  "author": "Manest",
6
6
  "license": "MIT",
package/skill.js CHANGED
@@ -368,6 +368,7 @@ function getNoTurnoverSkill() {
368
368
  SKILL_NAMES.DUMP_OFF,
369
369
  SKILL_NAMES.HYPNOTIC_GAZE,
370
370
  SKILL_NAMES.FOUL_APPEARANCE,
371
+ SKILL_NAMES.JUMP_UP,
371
372
  ];
372
373
  }
373
374