@skyblock-finance/actions 0.7.2 → 0.9.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.
- package/data/gemstones.json +741 -0
- package/data/merchants/bulvar.json +118 -0
- package/dist/.tsbuildinfo +1 -1
- package/dist/data.d.ts +3 -1
- package/dist/data.js +7 -1
- package/dist/npcs.d.ts +1 -1
- package/dist/npcs.js +7 -0
- package/dist/schema.d.ts +4 -0
- package/dist/schema.js +1 -0
- package/package.json +1 -1
- package/source/data.ts +6 -0
- package/source/npcs.ts +7 -0
- package/source/schema.ts +1 -0
package/source/data.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import { actions as _adventurer } from '../data/merchants/adventurer.json'
|
|
2
2
|
import { actions as _bitsCrafts } from '../data/bits-crafts.json'
|
|
3
3
|
import { actions as _bubu } from '../data/merchants/bubu.json'
|
|
4
|
+
import { actions as _bulvar } from '../data/merchants/bulvar.json'
|
|
4
5
|
import { actions as _crimsonIsle } from '../data/crimson-isle.json'
|
|
5
6
|
import { actions as _einary } from '../data/merchants/einary.json'
|
|
6
7
|
import { actions as _elizabeth } from '../data/merchants/elizabeth.json'
|
|
7
8
|
import { actions as _fishingMerchant } from '../data/merchants/fishing-merchant.json'
|
|
8
9
|
import { actions as _gems } from '../data/gems.json'
|
|
10
|
+
import { actions as _gemstones } from '../data/gemstones.json'
|
|
9
11
|
import { actions as _northStarsCrafts } from '../data/north-stars-crafts.json'
|
|
10
12
|
import { actions as _phillip } from '../data/merchants/phillip.json'
|
|
11
13
|
import { actions as _plumberJoe } from '../data/merchants/plumber-joe.json'
|
|
@@ -19,6 +21,7 @@ import { Action } from './types'
|
|
|
19
21
|
|
|
20
22
|
export const adventurer = _adventurer as Action[]
|
|
21
23
|
export const bubu = _bubu as Action[]
|
|
24
|
+
export const bulvar = _bulvar as Action[]
|
|
22
25
|
export const einary = _einary as Action[]
|
|
23
26
|
export const elizabeth = _elizabeth as Action[]
|
|
24
27
|
export const fishingMerchant = _fishingMerchant as Action[]
|
|
@@ -33,6 +36,7 @@ export const smithmonger = _smithmonger as Action[]
|
|
|
33
36
|
export const bitsCrafts = _bitsCrafts as Action[]
|
|
34
37
|
export const crimsonIsle = _crimsonIsle as Action[]
|
|
35
38
|
export const gems = _gems as Action[]
|
|
39
|
+
export const gemstones = _gemstones as Action[]
|
|
36
40
|
export const northStarsCrafts = _northStarsCrafts as Action[]
|
|
37
41
|
export const wood = _wood as Action[]
|
|
38
42
|
|
|
@@ -40,11 +44,13 @@ export const allActions = [
|
|
|
40
44
|
...adventurer,
|
|
41
45
|
...bitsCrafts,
|
|
42
46
|
...bubu,
|
|
47
|
+
...bulvar,
|
|
43
48
|
...crimsonIsle,
|
|
44
49
|
...einary,
|
|
45
50
|
...elizabeth,
|
|
46
51
|
...fishingMerchant,
|
|
47
52
|
...gems,
|
|
53
|
+
...gemstones,
|
|
48
54
|
...northStarsCrafts,
|
|
49
55
|
...phillip,
|
|
50
56
|
...plumberJoe,
|
package/source/npcs.ts
CHANGED
|
@@ -30,6 +30,13 @@ const _npcs: Record<NpcId, NpcMetadata> = {
|
|
|
30
30
|
hypixelWiki: 'https://wiki.hypixel.net/Bubu',
|
|
31
31
|
},
|
|
32
32
|
},
|
|
33
|
+
BULVAR: {
|
|
34
|
+
name: 'Bulvar',
|
|
35
|
+
links: {
|
|
36
|
+
communityWiki: 'https://hypixelskyblock.minecraft.wiki/w/Bulvar',
|
|
37
|
+
hypixelWiki: 'https://wiki.hypixel.net/Bulvar',
|
|
38
|
+
},
|
|
39
|
+
},
|
|
33
40
|
ELIZABETH: {
|
|
34
41
|
name: 'Elizabeth',
|
|
35
42
|
links: {
|