enefel 2.2.1 → 2.2.2
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/career.ts +2 -2
- package/dist/career.d.ts +2 -2
- package/dist/career.js +1 -1
- package/dist/package-lock.json +2 -2
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/career.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
import { SKILL_NAMES } from "./skill";
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
enum RACE {
|
|
9
9
|
AMAZON = "amazon-career",
|
|
10
10
|
CHAOS_DWARF = "chaos-dwarf-career",
|
|
11
11
|
CHAOS = "chaos-career",
|
|
@@ -1969,4 +1969,4 @@ const getCareers = (): Record<CAREER_ID, Career> => {
|
|
|
1969
1969
|
return CAREER;
|
|
1970
1970
|
};
|
|
1971
1971
|
|
|
1972
|
-
export { AVATAR, AVATAR_RARITY, CAREER, CAREER_ID, getCareers };
|
|
1972
|
+
export { AVATAR, AVATAR_RARITY, CAREER, CAREER_ID, getCareers, RACE };
|
package/dist/career.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { SKILL_NAMES } from "./skill";
|
|
2
|
-
|
|
2
|
+
declare enum RACE {
|
|
3
3
|
AMAZON = "amazon-career",
|
|
4
4
|
CHAOS_DWARF = "chaos-dwarf-career",
|
|
5
5
|
CHAOS = "chaos-career",
|
|
@@ -173,4 +173,4 @@ type Career = {
|
|
|
173
173
|
};
|
|
174
174
|
declare const CAREER: Record<CAREER_ID, Career>;
|
|
175
175
|
declare const getCareers: () => Record<CAREER_ID, Career>;
|
|
176
|
-
export { AVATAR, AVATAR_RARITY, CAREER, CAREER_ID, getCareers };
|
|
176
|
+
export { AVATAR, AVATAR_RARITY, CAREER, CAREER_ID, getCareers, RACE };
|
package/dist/career.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
// AG: Agility
|
|
5
5
|
// AV: Armour Value
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.getCareers = exports.CAREER_ID = exports.CAREER = exports.AVATAR_RARITY = exports.AVATAR =
|
|
7
|
+
exports.RACE = exports.getCareers = exports.CAREER_ID = exports.CAREER = exports.AVATAR_RARITY = exports.AVATAR = void 0;
|
|
8
8
|
const skill_1 = require("./skill");
|
|
9
9
|
var RACE;
|
|
10
10
|
(function (RACE) {
|
package/dist/package-lock.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "enefel",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.2",
|
|
4
4
|
"lockfileVersion": 2,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "enefel",
|
|
9
|
-
"version": "2.2.
|
|
9
|
+
"version": "2.2.2",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"seedrandom": "3.0.5",
|
package/dist/package.json
CHANGED