@skyblock-finance/actions 0.13.0 → 0.15.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 +2 -0
- package/data/materials/lily.json +79 -0
- package/data/materials/mycelium.json +75 -0
- package/data/materials/red-sand.json +75 -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 +7 -1
- package/dist/data.js +22 -4
- package/dist/schema.d.ts +6 -0
- package/dist/schema.js +1 -0
- package/package.json +1 -1
- package/source/data.ts +21 -3
- package/source/schema.ts +1 -0
- package/data/wood.json +0 -45
package/source/data.ts
CHANGED
|
@@ -5,7 +5,10 @@ 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'
|
|
8
9
|
import { actions as _materialsMithril } from '../data/materials/mithril.json'
|
|
10
|
+
import { actions as _materialsMycelium } from '../data/materials/mycelium.json'
|
|
11
|
+
import { actions as _materialsRedSand } from '../data/materials/red-sand.json'
|
|
9
12
|
import { actions as _adventurer } from '../data/merchants/adventurer.json'
|
|
10
13
|
import { actions as _bingo } from '../data/merchants/bingo.json'
|
|
11
14
|
import { actions as _bubu } from '../data/merchants/bubu.json'
|
|
@@ -25,13 +28,16 @@ import { actions as _minionsCaveSpider } from '../data/minions/cave-spider.json'
|
|
|
25
28
|
import { actions as _minionsCreeper } from '../data/minions/creeper.json'
|
|
26
29
|
import { actions as _minionsEnderman } from '../data/minions/enderman.json'
|
|
27
30
|
import { actions as _minionsGhast } from '../data/minions/ghast.json'
|
|
31
|
+
import { actions as _minionsLilyPad } from '../data/minions/lily-pad.json'
|
|
32
|
+
import { actions as _minionsMycelium } from '../data/minions/mycelium.json'
|
|
33
|
+
import { actions as _minionsRedSand } from '../data/minions/red-sand.json'
|
|
28
34
|
import { actions as _minionsSkeleton } from '../data/minions/skeleton.json'
|
|
29
35
|
import { actions as _minionsSlime } from '../data/minions/slime.json'
|
|
30
36
|
import { actions as _minionsSpider } from '../data/minions/spider.json'
|
|
31
37
|
import { actions as _minionsVampire } from '../data/minions/vampire.json'
|
|
32
38
|
import { actions as _minionsZombie } from '../data/minions/zombie.json'
|
|
33
39
|
import { actions as _northStarsCrafts } from '../data/north-stars-crafts.json'
|
|
34
|
-
import { actions as
|
|
40
|
+
import { actions as _vanilla } from '../data/vanilla.json'
|
|
35
41
|
|
|
36
42
|
import { Action } from './types'
|
|
37
43
|
|
|
@@ -39,7 +45,10 @@ import { Action } from './types'
|
|
|
39
45
|
|
|
40
46
|
export const materialsCoal = _materialsCoal as Action[]
|
|
41
47
|
export const materialsDiamond = _materialsDiamond as Action[]
|
|
48
|
+
export const materialsLily = _materialsLily as Action[]
|
|
42
49
|
export const materialsMithril = _materialsMithril as Action[]
|
|
50
|
+
export const materialsMycelium = _materialsMycelium as Action[]
|
|
51
|
+
export const materialsRedSand = _materialsRedSand as Action[]
|
|
43
52
|
|
|
44
53
|
// merchants
|
|
45
54
|
|
|
@@ -65,6 +74,9 @@ export const minionsCaveSpider = _minionsCaveSpider as Action[]
|
|
|
65
74
|
export const minionsCreeper = _minionsCreeper as Action[]
|
|
66
75
|
export const minionsEnderman = _minionsEnderman as Action[]
|
|
67
76
|
export const minionsGhast = _minionsGhast as Action[]
|
|
77
|
+
export const minionsLilyPad = _minionsLilyPad as Action[]
|
|
78
|
+
export const minionsMycelium = _minionsMycelium as Action[]
|
|
79
|
+
export const minionsRedSand = _minionsRedSand as Action[]
|
|
68
80
|
export const minionsSkeleton = _minionsSkeleton as Action[]
|
|
69
81
|
export const minionsSlime = _minionsSlime as Action[]
|
|
70
82
|
export const minionsSpider = _minionsSpider as Action[]
|
|
@@ -79,7 +91,7 @@ export const forging = _forging as Action[]
|
|
|
79
91
|
export const gems = _gems as Action[]
|
|
80
92
|
export const gemstones = _gemstones as Action[]
|
|
81
93
|
export const northStarsCrafts = _northStarsCrafts as Action[]
|
|
82
|
-
export const
|
|
94
|
+
export const vanilla = _vanilla as Action[]
|
|
83
95
|
|
|
84
96
|
export const allActions: Action[] = [
|
|
85
97
|
...adventurer,
|
|
@@ -98,12 +110,18 @@ export const allActions: Action[] = [
|
|
|
98
110
|
...marthos,
|
|
99
111
|
...materialsCoal,
|
|
100
112
|
...materialsDiamond,
|
|
113
|
+
...materialsLily,
|
|
101
114
|
...materialsMithril,
|
|
115
|
+
...materialsMycelium,
|
|
116
|
+
...materialsRedSand,
|
|
102
117
|
...minionsBlaze,
|
|
103
118
|
...minionsCaveSpider,
|
|
104
119
|
...minionsCreeper,
|
|
105
120
|
...minionsEnderman,
|
|
106
121
|
...minionsGhast,
|
|
122
|
+
...minionsLilyPad,
|
|
123
|
+
...minionsMycelium,
|
|
124
|
+
...minionsRedSand,
|
|
107
125
|
...minionsSkeleton,
|
|
108
126
|
...minionsSlime,
|
|
109
127
|
...minionsSpider,
|
|
@@ -115,5 +133,5 @@ export const allActions: Action[] = [
|
|
|
115
133
|
...seymour,
|
|
116
134
|
...skymart,
|
|
117
135
|
...smithmonger,
|
|
118
|
-
...
|
|
136
|
+
...vanilla,
|
|
119
137
|
]
|
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
|
-
}
|