@rpg-engine/long-bow 0.1.80 → 0.1.83
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/components/Button.d.ts +1 -0
- package/dist/components/Equipment/EquipmentSet.d.ts +2 -2
- package/dist/components/QuestInfo/index.d.ts +14 -0
- package/dist/long-bow.cjs.development.js +293 -261
- 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 +293 -261
- package/dist/long-bow.esm.js.map +1 -1
- package/dist/mocks/equipmentSet.mocks.d.ts +2 -2
- package/package.json +3 -3
- package/src/components/Button.tsx +3 -2
- package/src/components/Equipment/EquipmentSet.tsx +2 -2
- package/src/components/Item/Inventory/ItemSlot.tsx +6 -1
- package/src/components/QuestInfo/img/default.png +0 -0
- package/src/components/QuestInfo/index.tsx +147 -0
- package/src/components/SkillsContainer.tsx +15 -1
- package/src/mocks/atlas/items/items.json +273 -253
- package/src/mocks/atlas/items/items.png +0 -0
- package/src/mocks/equipmentSet.mocks.ts +2 -2
- package/src/mocks/itemContainer.mocks.ts +1 -1
|
Binary file
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import {
|
|
2
|
-
|
|
2
|
+
IEquipmentSet,
|
|
3
3
|
// IItem,
|
|
4
4
|
ItemSlotType,
|
|
5
5
|
ItemSubType,
|
|
@@ -332,7 +332,7 @@ export const items: any = {
|
|
|
332
332
|
},
|
|
333
333
|
};
|
|
334
334
|
|
|
335
|
-
export const equipmentSetMock:
|
|
335
|
+
export const equipmentSetMock: IEquipmentSet = {
|
|
336
336
|
_id: '629acef1c7c8e8002ff60736',
|
|
337
337
|
head: undefined,
|
|
338
338
|
armor: items.armor,
|
|
@@ -132,7 +132,7 @@ export const items: IItem[] = [
|
|
|
132
132
|
updatedAt: '2022-06-04T18:16:49.056Z',
|
|
133
133
|
},
|
|
134
134
|
{
|
|
135
|
-
_id: '
|
|
135
|
+
_id: '629acek4j7c8e8002fg60034',
|
|
136
136
|
type: ItemType.Consumable,
|
|
137
137
|
subType: ItemSubType.Accessory,
|
|
138
138
|
textureAtlas: 'items',
|