@skyblock-finance/actions 0.18.1 → 0.20.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/$schema.json +84 -265
- package/data/aging-items.json +61 -0
- package/data/enchantments.json +8902 -0
- package/data/merchants/nemo.json +37 -0
- package/data/merchants/skymart.json +0 -138
- package/data/north-stars-crafts.json +0 -124
- package/dist/.tsbuildinfo +1 -1
- package/dist/data.d.ts +3 -0
- package/dist/data.js +10 -1
- package/dist/npcs.d.ts +1 -1
- package/dist/npcs.js +7 -0
- package/dist/schema.d.ts +10 -0
- package/dist/schema.js +2 -0
- package/package.json +1 -1
- package/source/data.ts +9 -0
- package/source/npcs.ts +7 -0
- package/source/schema.ts +2 -0
package/source/data.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
import { actions as _agingItems } from '../data/aging-items.json'
|
|
1
2
|
import { actions as _bitsCrafts } from '../data/bits-crafts.json'
|
|
2
3
|
import { actions as _crimsonIsle } from '../data/crimson-isle.json'
|
|
4
|
+
import { actions as _enchantments } from '../data/enchantments.json'
|
|
3
5
|
import { actions as _forging } from '../data/forging.json'
|
|
4
6
|
import { actions as _gems } from '../data/gems.json'
|
|
5
7
|
import { actions as _gemstones } from '../data/gemstones.json'
|
|
@@ -20,6 +22,7 @@ import { actions as _fishingMerchant } from '../data/merchants/fishing-merchant.
|
|
|
20
22
|
import { actions as _hilda } from '../data/merchants/hilda.json'
|
|
21
23
|
import { actions as _lotusEater } from '../data/merchants/lotus-eater.json'
|
|
22
24
|
import { actions as _marthos } from '../data/merchants/marthos.json'
|
|
25
|
+
import { actions as _nemo } from '../data/merchants/nemo.json'
|
|
23
26
|
import { actions as _phillip } from '../data/merchants/phillip.json'
|
|
24
27
|
import { actions as _plumberJoe } from '../data/merchants/plumber-joe.json'
|
|
25
28
|
import { actions as _researcherBeryl } from '../data/merchants/researcher-beryl.json'
|
|
@@ -66,6 +69,7 @@ export const fishingMerchant = _fishingMerchant as Action[]
|
|
|
66
69
|
export const hilda = _hilda as Action[]
|
|
67
70
|
export const lotusEater = _lotusEater as Action[]
|
|
68
71
|
export const marthos = _marthos as Action[]
|
|
72
|
+
export const nemo = _nemo as Action[]
|
|
69
73
|
export const phillip = _phillip as Action[]
|
|
70
74
|
export const plumberJoe = _plumberJoe as Action[]
|
|
71
75
|
export const researcherBeryl = _researcherBeryl as Action[]
|
|
@@ -91,8 +95,10 @@ export const minionsZombie = _minionsZombie as Action[]
|
|
|
91
95
|
|
|
92
96
|
// other
|
|
93
97
|
|
|
98
|
+
export const agingItems = _agingItems as Action[]
|
|
94
99
|
export const bitsCrafts = _bitsCrafts as Action[]
|
|
95
100
|
export const crimsonIsle = _crimsonIsle as Action[]
|
|
101
|
+
export const enchantments = _enchantments as Action[]
|
|
96
102
|
export const forging = _forging as Action[]
|
|
97
103
|
export const gems = _gems as Action[]
|
|
98
104
|
export const gemstones = _gemstones as Action[]
|
|
@@ -101,6 +107,7 @@ export const vanilla = _vanilla as Action[]
|
|
|
101
107
|
|
|
102
108
|
export const allActions: Action[] = [
|
|
103
109
|
...adventurer,
|
|
110
|
+
...agingItems,
|
|
104
111
|
...bingo,
|
|
105
112
|
...bitsCrafts,
|
|
106
113
|
...bubu,
|
|
@@ -108,6 +115,7 @@ export const allActions: Action[] = [
|
|
|
108
115
|
...crimsonIsle,
|
|
109
116
|
...einary,
|
|
110
117
|
...elizabeth,
|
|
118
|
+
...enchantments,
|
|
111
119
|
...fishingMerchant,
|
|
112
120
|
...forging,
|
|
113
121
|
...gems,
|
|
@@ -135,6 +143,7 @@ export const allActions: Action[] = [
|
|
|
135
143
|
...minionsSpider,
|
|
136
144
|
...minionsVampire,
|
|
137
145
|
...minionsZombie,
|
|
146
|
+
...nemo,
|
|
138
147
|
...northStarsCrafts,
|
|
139
148
|
...phillip,
|
|
140
149
|
...plumberJoe,
|
package/source/npcs.ts
CHANGED
|
@@ -87,6 +87,13 @@ const _npcs: Record<NpcId, NpcMetadata> = {
|
|
|
87
87
|
},
|
|
88
88
|
name: 'Marthos',
|
|
89
89
|
},
|
|
90
|
+
NEMO: {
|
|
91
|
+
links: {
|
|
92
|
+
communityWiki: 'https://hypixelskyblock.minecraft.wiki/w/Nemo',
|
|
93
|
+
hypixelWiki: 'https://wiki.hypixel.net/Nemo',
|
|
94
|
+
},
|
|
95
|
+
name: 'Nemo',
|
|
96
|
+
},
|
|
90
97
|
PHILLIP: {
|
|
91
98
|
links: {
|
|
92
99
|
communityWiki:
|
package/source/schema.ts
CHANGED
|
@@ -17,6 +17,7 @@ export const actionIoCurrencySchema = z.strictObject({
|
|
|
17
17
|
'forge-second',
|
|
18
18
|
'mote',
|
|
19
19
|
'north-star',
|
|
20
|
+
'online-second',
|
|
20
21
|
'pest',
|
|
21
22
|
'second',
|
|
22
23
|
'usd',
|
|
@@ -55,6 +56,7 @@ export const npcIdSchema = z.enum([
|
|
|
55
56
|
'HILDA',
|
|
56
57
|
'LOTUS_EATER',
|
|
57
58
|
'MARTHOS',
|
|
59
|
+
'NEMO',
|
|
58
60
|
'PHILLIP',
|
|
59
61
|
'PLUMBER_JOE',
|
|
60
62
|
'RESEARCHER_BERYL',
|