@skyblock-finance/actions 0.14.0 → 0.16.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/materials/lily.json +79 -0
- package/data/materials/lotus.json +107 -0
- package/data/materials/mycelium.json +75 -0
- package/data/materials/red-sand.json +75 -0
- package/data/merchants/lotus-eater.json +16 -0
- package/data/minions/lily-pad.json +313 -0
- package/data/minions/mycelium.json +280 -0
- package/data/minions/red-sand.json +280 -0
- package/data/vanilla.json +91 -0
- package/dist/.tsbuildinfo +1 -1
- package/dist/data.d.ts +9 -1
- package/dist/data.js +28 -4
- 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 +27 -3
- package/source/npcs.ts +7 -0
- package/source/schema.ts +1 -0
- package/data/wood.json +0 -45
package/source/data.ts
CHANGED
|
@@ -5,7 +5,11 @@ import { actions as _gems } from '../data/gems.json'
|
|
|
5
5
|
import { actions as _gemstones } from '../data/gemstones.json'
|
|
6
6
|
import { actions as _materialsCoal } from '../data/materials/coal.json'
|
|
7
7
|
import { actions as _materialsDiamond } from '../data/materials/diamond.json'
|
|
8
|
+
import { actions as _materialsLily } from '../data/materials/lily.json'
|
|
9
|
+
import { actions as _materialsLotus } from '../data/materials/lotus.json'
|
|
8
10
|
import { actions as _materialsMithril } from '../data/materials/mithril.json'
|
|
11
|
+
import { actions as _materialsMycelium } from '../data/materials/mycelium.json'
|
|
12
|
+
import { actions as _materialsRedSand } from '../data/materials/red-sand.json'
|
|
9
13
|
import { actions as _adventurer } from '../data/merchants/adventurer.json'
|
|
10
14
|
import { actions as _bingo } from '../data/merchants/bingo.json'
|
|
11
15
|
import { actions as _bubu } from '../data/merchants/bubu.json'
|
|
@@ -14,6 +18,7 @@ import { actions as _einary } from '../data/merchants/einary.json'
|
|
|
14
18
|
import { actions as _elizabeth } from '../data/merchants/elizabeth.json'
|
|
15
19
|
import { actions as _fishingMerchant } from '../data/merchants/fishing-merchant.json'
|
|
16
20
|
import { actions as _hilda } from '../data/merchants/hilda.json'
|
|
21
|
+
import { actions as _lotusEater } from '../data/merchants/lotus-eater.json'
|
|
17
22
|
import { actions as _marthos } from '../data/merchants/marthos.json'
|
|
18
23
|
import { actions as _phillip } from '../data/merchants/phillip.json'
|
|
19
24
|
import { actions as _plumberJoe } from '../data/merchants/plumber-joe.json'
|
|
@@ -25,13 +30,16 @@ import { actions as _minionsCaveSpider } from '../data/minions/cave-spider.json'
|
|
|
25
30
|
import { actions as _minionsCreeper } from '../data/minions/creeper.json'
|
|
26
31
|
import { actions as _minionsEnderman } from '../data/minions/enderman.json'
|
|
27
32
|
import { actions as _minionsGhast } from '../data/minions/ghast.json'
|
|
33
|
+
import { actions as _minionsLilyPad } from '../data/minions/lily-pad.json'
|
|
34
|
+
import { actions as _minionsMycelium } from '../data/minions/mycelium.json'
|
|
35
|
+
import { actions as _minionsRedSand } from '../data/minions/red-sand.json'
|
|
28
36
|
import { actions as _minionsSkeleton } from '../data/minions/skeleton.json'
|
|
29
37
|
import { actions as _minionsSlime } from '../data/minions/slime.json'
|
|
30
38
|
import { actions as _minionsSpider } from '../data/minions/spider.json'
|
|
31
39
|
import { actions as _minionsVampire } from '../data/minions/vampire.json'
|
|
32
40
|
import { actions as _minionsZombie } from '../data/minions/zombie.json'
|
|
33
41
|
import { actions as _northStarsCrafts } from '../data/north-stars-crafts.json'
|
|
34
|
-
import { actions as
|
|
42
|
+
import { actions as _vanilla } from '../data/vanilla.json'
|
|
35
43
|
|
|
36
44
|
import { Action } from './types'
|
|
37
45
|
|
|
@@ -39,7 +47,11 @@ import { Action } from './types'
|
|
|
39
47
|
|
|
40
48
|
export const materialsCoal = _materialsCoal as Action[]
|
|
41
49
|
export const materialsDiamond = _materialsDiamond as Action[]
|
|
50
|
+
export const materialsLily = _materialsLily as Action[]
|
|
51
|
+
export const materialsLotus = _materialsLotus as Action[]
|
|
42
52
|
export const materialsMithril = _materialsMithril as Action[]
|
|
53
|
+
export const materialsMycelium = _materialsMycelium as Action[]
|
|
54
|
+
export const materialsRedSand = _materialsRedSand as Action[]
|
|
43
55
|
|
|
44
56
|
// merchants
|
|
45
57
|
|
|
@@ -51,6 +63,7 @@ export const einary = _einary as Action[]
|
|
|
51
63
|
export const elizabeth = _elizabeth as Action[]
|
|
52
64
|
export const fishingMerchant = _fishingMerchant as Action[]
|
|
53
65
|
export const hilda = _hilda as Action[]
|
|
66
|
+
export const lotusEater = _lotusEater as Action[]
|
|
54
67
|
export const marthos = _marthos as Action[]
|
|
55
68
|
export const phillip = _phillip as Action[]
|
|
56
69
|
export const plumberJoe = _plumberJoe as Action[]
|
|
@@ -65,6 +78,9 @@ export const minionsCaveSpider = _minionsCaveSpider as Action[]
|
|
|
65
78
|
export const minionsCreeper = _minionsCreeper as Action[]
|
|
66
79
|
export const minionsEnderman = _minionsEnderman as Action[]
|
|
67
80
|
export const minionsGhast = _minionsGhast as Action[]
|
|
81
|
+
export const minionsLilyPad = _minionsLilyPad as Action[]
|
|
82
|
+
export const minionsMycelium = _minionsMycelium as Action[]
|
|
83
|
+
export const minionsRedSand = _minionsRedSand as Action[]
|
|
68
84
|
export const minionsSkeleton = _minionsSkeleton as Action[]
|
|
69
85
|
export const minionsSlime = _minionsSlime as Action[]
|
|
70
86
|
export const minionsSpider = _minionsSpider as Action[]
|
|
@@ -79,7 +95,7 @@ export const forging = _forging as Action[]
|
|
|
79
95
|
export const gems = _gems as Action[]
|
|
80
96
|
export const gemstones = _gemstones as Action[]
|
|
81
97
|
export const northStarsCrafts = _northStarsCrafts as Action[]
|
|
82
|
-
export const
|
|
98
|
+
export const vanilla = _vanilla as Action[]
|
|
83
99
|
|
|
84
100
|
export const allActions: Action[] = [
|
|
85
101
|
...adventurer,
|
|
@@ -95,15 +111,23 @@ export const allActions: Action[] = [
|
|
|
95
111
|
...gems,
|
|
96
112
|
...gemstones,
|
|
97
113
|
...hilda,
|
|
114
|
+
...lotusEater,
|
|
98
115
|
...marthos,
|
|
99
116
|
...materialsCoal,
|
|
100
117
|
...materialsDiamond,
|
|
118
|
+
...materialsLily,
|
|
119
|
+
...materialsLotus,
|
|
101
120
|
...materialsMithril,
|
|
121
|
+
...materialsMycelium,
|
|
122
|
+
...materialsRedSand,
|
|
102
123
|
...minionsBlaze,
|
|
103
124
|
...minionsCaveSpider,
|
|
104
125
|
...minionsCreeper,
|
|
105
126
|
...minionsEnderman,
|
|
106
127
|
...minionsGhast,
|
|
128
|
+
...minionsLilyPad,
|
|
129
|
+
...minionsMycelium,
|
|
130
|
+
...minionsRedSand,
|
|
107
131
|
...minionsSkeleton,
|
|
108
132
|
...minionsSlime,
|
|
109
133
|
...minionsSpider,
|
|
@@ -115,5 +139,5 @@ export const allActions: Action[] = [
|
|
|
115
139
|
...seymour,
|
|
116
140
|
...skymart,
|
|
117
141
|
...smithmonger,
|
|
118
|
-
...
|
|
142
|
+
...vanilla,
|
|
119
143
|
]
|
package/source/npcs.ts
CHANGED
|
@@ -73,6 +73,13 @@ const _npcs: Record<NpcId, NpcMetadata> = {
|
|
|
73
73
|
},
|
|
74
74
|
name: 'Hilda',
|
|
75
75
|
},
|
|
76
|
+
LOTUS_EATER: {
|
|
77
|
+
links: {
|
|
78
|
+
communityWiki: 'https://hypixelskyblock.minecraft.wiki/w/The_Lotus_Eater',
|
|
79
|
+
hypixelWiki: null,
|
|
80
|
+
},
|
|
81
|
+
name: 'The Lotus Eater',
|
|
82
|
+
},
|
|
76
83
|
MARTHOS: {
|
|
77
84
|
links: {
|
|
78
85
|
communityWiki: 'https://hypixelskyblock.minecraft.wiki/w/Marthos',
|
package/source/schema.ts
CHANGED
package/data/wood.json
DELETED
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "./$schema.json",
|
|
3
|
-
"actions": [
|
|
4
|
-
{
|
|
5
|
-
"inputs": [{ "amount": 1, "id": "LOG", "type": "item" }],
|
|
6
|
-
"outputs": [{ "amount": 4, "id": "WOOD", "type": "item" }],
|
|
7
|
-
"place": [
|
|
8
|
-
{
|
|
9
|
-
"grid": [
|
|
10
|
-
{ "amount": 1, "id": "LOG", "type": "item" },
|
|
11
|
-
null,
|
|
12
|
-
null,
|
|
13
|
-
null,
|
|
14
|
-
null,
|
|
15
|
-
null,
|
|
16
|
-
null,
|
|
17
|
-
null,
|
|
18
|
-
null
|
|
19
|
-
],
|
|
20
|
-
"type": "workbench"
|
|
21
|
-
}
|
|
22
|
-
]
|
|
23
|
-
},
|
|
24
|
-
{
|
|
25
|
-
"inputs": [{ "amount": 2, "id": "WOOD", "type": "item" }],
|
|
26
|
-
"outputs": [{ "amount": 4, "id": "STICK", "type": "item" }],
|
|
27
|
-
"place": [
|
|
28
|
-
{
|
|
29
|
-
"grid": [
|
|
30
|
-
{ "amount": 1, "id": "WOOD", "type": "item" },
|
|
31
|
-
null,
|
|
32
|
-
null,
|
|
33
|
-
{ "amount": 1, "id": "WOOD", "type": "item" },
|
|
34
|
-
null,
|
|
35
|
-
null,
|
|
36
|
-
null,
|
|
37
|
-
null,
|
|
38
|
-
null
|
|
39
|
-
],
|
|
40
|
-
"type": "workbench"
|
|
41
|
-
}
|
|
42
|
-
]
|
|
43
|
-
}
|
|
44
|
-
]
|
|
45
|
-
}
|