@rpg-engine/long-bow 0.2.2 → 0.2.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rpg-engine/long-bow",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -83,7 +83,7 @@
83
83
  },
84
84
  "dependencies": {
85
85
  "@rollup/plugin-image": "^2.1.1",
86
- "@rpg-engine/shared": "^0.4.15",
86
+ "@rpg-engine/shared": "^0.4.22",
87
87
  "dayjs": "^1.11.2",
88
88
  "fs-extra": "^10.1.0",
89
89
  "lodash": "^4.17.21",
@@ -5,7 +5,7 @@ import {
5
5
  ActionsForMapContainer,
6
6
  ItemContainerType,
7
7
  ItemSocketEventsDisplayLabels,
8
- ItemType
8
+ ItemType,
9
9
  } from '@rpg-engine/shared';
10
10
 
11
11
  export interface IContextMenuItem {
@@ -3,7 +3,7 @@ import {
3
3
  IItemContainer,
4
4
  ItemSlotType,
5
5
  ItemSubType,
6
- ItemType
6
+ ItemType,
7
7
  } from '@rpg-engine/shared';
8
8
 
9
9
  export const items: IItem[] = [
@@ -244,7 +244,8 @@ export const items: IItem[] = [
244
244
  textureKey: 'bag',
245
245
  name: 'Bag',
246
246
  generateContainerSlots: 10,
247
- description: 'You see a bag. It has made using leather and it has 10 total slots.',
247
+ description:
248
+ 'You see a bag. It has made using leather and it has 10 total slots.',
248
249
  attack: 7,
249
250
  defense: 3,
250
251
  weight: 13,
@@ -252,10 +253,11 @@ export const items: IItem[] = [
252
253
  x: 320,
253
254
  y: 144,
254
255
  scene: 'MainScene',
255
- fullDescription: 'You see a bag. It has made using leather and it has 10 total slots.',
256
+ fullDescription:
257
+ 'You see a bag. It has made using leather and it has 10 total slots.',
256
258
  createdAt: '2022-06-04T03:18:09.335Z',
257
259
  updatedAt: '2022-06-04T18:16:49.056Z',
258
- }
260
+ },
259
261
  ];
260
262
 
261
263
  export const itemContainerMock: IItemContainer = {