@wwawing/loader 3.6.12 → 3.7.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.
@@ -125,6 +125,7 @@ var TextLoader = (function () {
125
125
  wwaData.isVisibleStatusStrength = true;
126
126
  wwaData.isVisibleStatusDefence = true;
127
127
  wwaData.isVisibleStatusGold = true;
128
+ wwaData.isGameOverDisabled = false;
128
129
  return wwaData;
129
130
  };
130
131
  TextLoader.prototype.getMessageFromData = function () {
@@ -173,7 +173,8 @@ function createDefaultWWAData() {
173
173
  isVisibleStatusEnergy: undefined,
174
174
  isVisibleStatusStrength: undefined,
175
175
  isVisibleStatusDefence: undefined,
176
- isVisibleStatusGold: undefined
176
+ isVisibleStatusGold: undefined,
177
+ isGameOverDisabled: undefined,
177
178
  };
178
179
  }
179
180
  exports.createDefaultWWAData = createDefaultWWAData;
@@ -122,6 +122,7 @@ var TextLoader = (function () {
122
122
  wwaData.isVisibleStatusStrength = true;
123
123
  wwaData.isVisibleStatusDefence = true;
124
124
  wwaData.isVisibleStatusGold = true;
125
+ wwaData.isGameOverDisabled = false;
125
126
  return wwaData;
126
127
  };
127
128
  TextLoader.prototype.getMessageFromData = function () {
@@ -170,6 +170,7 @@ export function createDefaultWWAData() {
170
170
  isVisibleStatusEnergy: undefined,
171
171
  isVisibleStatusStrength: undefined,
172
172
  isVisibleStatusDefence: undefined,
173
- isVisibleStatusGold: undefined
173
+ isVisibleStatusGold: undefined,
174
+ isGameOverDisabled: undefined,
174
175
  };
175
176
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wwawing/loader",
3
- "version": "3.6.12",
3
+ "version": "3.7.0",
4
4
  "description": "a World Wide Adventure mapdata loader for client-side web applications",
5
5
  "main": "./lib/index.js",
6
6
  "module": "./module/index.js",
@@ -44,10 +44,10 @@
44
44
  },
45
45
  "homepage": "https://github.com/WWAWing/WWALoader#readme",
46
46
  "dependencies": {
47
- "@wwawing/event-emitter": "^3.6.12"
47
+ "@wwawing/event-emitter": "^3.7.0"
48
48
  },
49
49
  "devDependencies": {
50
- "@wwawing/common-interface": "^3.6.12",
50
+ "@wwawing/common-interface": "^3.7.0",
51
51
  "cross-env": "^7.0.3",
52
52
  "html-loader": "^2.1.2",
53
53
  "html-webpack-plugin": "^5.5.0",
@@ -65,8 +65,8 @@
65
65
  "access": "public"
66
66
  },
67
67
  "engines": {
68
- "node": ">=14",
68
+ "node": ">=16",
69
69
  "npm": ">=8"
70
70
  },
71
- "gitHead": "c2dc2390145ed99deebbdaab3ca87d5410da184b"
71
+ "gitHead": "1c82857afdf74bab9ff8f5c964b2d8f066aba9ea"
72
72
  }