@rpg-engine/long-bow 0.1.73 → 0.1.76
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/dist/long-bow.cjs.development.js +161 -1154
- package/dist/long-bow.cjs.development.js.map +1 -1
- package/dist/long-bow.cjs.production.min.js +1 -1
- package/dist/long-bow.cjs.production.min.js.map +1 -1
- package/dist/long-bow.esm.js +161 -1154
- package/dist/long-bow.esm.js.map +1 -1
- package/package.json +2 -2
- package/src/components/DraggableContainer.tsx +37 -46
- package/src/components/Item/Inventory/ItemSlot.tsx +1 -1
- package/src/mocks/atlas/items/items.json +151 -1139
- package/src/mocks/atlas/items/items.png +0 -0
- package/src/mocks/equipmentSet.mocks.ts +7 -7
|
Binary file
|
|
@@ -103,7 +103,7 @@ export const items: any = {
|
|
|
103
103
|
legs: {
|
|
104
104
|
_id: '3',
|
|
105
105
|
type: ItemType.Armor,
|
|
106
|
-
subType: ItemSubType.
|
|
106
|
+
subType: ItemSubType.Legs,
|
|
107
107
|
textureAtlas: 'items',
|
|
108
108
|
allowedEquipSlotType: [ItemSlotType.Legs],
|
|
109
109
|
isEquipable: false,
|
|
@@ -115,11 +115,11 @@ export const items: any = {
|
|
|
115
115
|
layer: 1,
|
|
116
116
|
isItemContainer: false,
|
|
117
117
|
isSolid: false,
|
|
118
|
-
key: '
|
|
119
|
-
texturePath: '
|
|
120
|
-
textureKey: '
|
|
121
|
-
name: '
|
|
122
|
-
description: '
|
|
118
|
+
key: 'leather-legs',
|
|
119
|
+
texturePath: 'legs/leather-legs.png',
|
|
120
|
+
textureKey: 'leather-legs',
|
|
121
|
+
name: 'Leather legs',
|
|
122
|
+
description: 'Protect your legs',
|
|
123
123
|
attack: 7,
|
|
124
124
|
defense: 3,
|
|
125
125
|
weight: 13,
|
|
@@ -127,7 +127,7 @@ export const items: any = {
|
|
|
127
127
|
x: 320,
|
|
128
128
|
y: 144,
|
|
129
129
|
scene: 'MainScene',
|
|
130
|
-
fullDescription: '
|
|
130
|
+
fullDescription: 'Leather legs',
|
|
131
131
|
createdAt: '2022-06-04T03:18:09.335Z',
|
|
132
132
|
updatedAt: '2022-06-04T18:16:49.056Z',
|
|
133
133
|
},
|