@paintswap/estfor-definitions 0.1.1 → 0.1.3

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/README.md CHANGED
@@ -13,7 +13,5 @@ Types and Constants for Estfor
13
13
 
14
14
  yarn add @estfor/definitions
15
15
 
16
- import { BRONZE_HELMET } from '@paintswap/estfor-definitions/dist/estforConstants'
17
-
18
- import { Skill } from '@paintswap/estfor-definitions/dist/estforTypes'
16
+ import { EstforConstants, EstforTypes } from '@paintswap/estfor-definitions'
19
17
 
@@ -40,7 +40,8 @@ export declare enum EquipPosition {
40
40
  MAGIC_BAG = 13,
41
41
  FOOD = 14,
42
42
  AUX = 15,
43
- BOOST_VIAL = 16
43
+ BOOST_VIAL = 16,
44
+ NO_POSITION = 17
44
45
  }
45
46
  export type Attire = {
46
47
  helmet: number;
@@ -113,3 +114,14 @@ export declare const defaultInputItem: {
113
114
  boostValue: number;
114
115
  boostDuration: number;
115
116
  };
117
+ export declare const noAttire: {
118
+ helmet: number;
119
+ amulet: number;
120
+ armor: number;
121
+ gauntlets: number;
122
+ tassets: number;
123
+ boots: number;
124
+ ring: number;
125
+ reserved1: number;
126
+ queueId: number;
127
+ };
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.defaultInputItem = exports.emptyStats = exports.EquipPosition = exports.Skill = exports.BoostType = void 0;
3
+ exports.noAttire = exports.defaultInputItem = exports.emptyStats = exports.EquipPosition = exports.Skill = exports.BoostType = void 0;
4
4
  var BoostType;
5
5
  (function (BoostType) {
6
6
  BoostType[BoostType["NONE"] = 0] = "NONE";
@@ -47,6 +47,7 @@ var EquipPosition;
47
47
  EquipPosition[EquipPosition["FOOD"] = 14] = "FOOD";
48
48
  EquipPosition[EquipPosition["AUX"] = 15] = "AUX";
49
49
  EquipPosition[EquipPosition["BOOST_VIAL"] = 16] = "BOOST_VIAL";
50
+ EquipPosition[EquipPosition["NO_POSITION"] = 17] = "NO_POSITION";
50
51
  })(EquipPosition = exports.EquipPosition || (exports.EquipPosition = {}));
51
52
  exports.emptyStats = {
52
53
  melee: 0,
@@ -68,3 +69,14 @@ exports.defaultInputItem = {
68
69
  boostValue: 0,
69
70
  boostDuration: 0,
70
71
  };
72
+ exports.noAttire = {
73
+ helmet: 0,
74
+ amulet: 0,
75
+ armor: 0,
76
+ gauntlets: 0,
77
+ tassets: 0,
78
+ boots: 0,
79
+ ring: 0,
80
+ reserved1: 0,
81
+ queueId: 0, // Doesn't matter
82
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paintswap/estfor-definitions",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "Types and constants for Estfor",
5
5
  "repository": {
6
6
  "type": "git",