@skyblock-finance/actions 0.6.1 → 0.7.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/merchants/adventurer.json +62 -0
- package/data/merchants/bubu.json +73 -0
- package/data/{north-stars.json → merchants/einary.json} +1 -1
- package/data/{bits.json → merchants/elizabeth.json} +1 -1
- package/data/merchants/fishing-merchant.json +65 -0
- package/data/{pests.json → merchants/phillip.json} +1 -1
- package/data/merchants/plumber-joe.json +15 -0
- package/data/merchants/seymour.json +32 -0
- package/data/{skymart.json → merchants/skymart.json} +1 -1
- package/data/merchants/smithmonger.json +30 -0
- package/dist/.tsbuildinfo +1 -1
- package/dist/data.d.ts +10 -5
- package/dist/data.js +29 -12
- package/dist/npcs.d.ts +4 -2
- package/dist/npcs.js +80 -52
- package/dist/schema.d.ts +28 -4
- package/dist/schema.js +7 -1
- package/package.json +1 -1
- package/source/data.ts +31 -16
- package/source/npcs.ts +88 -57
- package/source/schema.ts +7 -1
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../$schema.json",
|
|
3
|
+
"actions": [
|
|
4
|
+
{
|
|
5
|
+
"inputs": [{ "amount": 8, "id": "coin", "type": "currency" }],
|
|
6
|
+
"outputs": [{ "amount": 1, "id": "ROTTEN_FLESH", "type": "item" }],
|
|
7
|
+
"place": [{ "id": "ADVENTURER", "type": "npc" }]
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"inputs": [{ "amount": 8, "id": "coin", "type": "currency" }],
|
|
11
|
+
"outputs": [{ "amount": 1, "id": "BONE", "type": "item" }],
|
|
12
|
+
"place": [{ "id": "ADVENTURER", "type": "npc" }]
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"inputs": [{ "amount": 10, "id": "coin", "type": "currency" }],
|
|
16
|
+
"outputs": [{ "amount": 1, "id": "STRING", "type": "item" }],
|
|
17
|
+
"place": [{ "id": "ADVENTURER", "type": "npc" }]
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"inputs": [{ "amount": 14, "id": "coin", "type": "currency" }],
|
|
21
|
+
"outputs": [{ "amount": 1, "id": "SLIME_BALL", "type": "item" }],
|
|
22
|
+
"place": [{ "id": "ADVENTURER", "type": "npc" }]
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"inputs": [{ "amount": 10, "id": "coin", "type": "currency" }],
|
|
26
|
+
"outputs": [{ "amount": 1, "id": "SULPHUR", "type": "item" }],
|
|
27
|
+
"place": [{ "id": "ADVENTURER", "type": "npc" }]
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"inputs": [{ "amount": 500, "id": "coin", "type": "currency" }],
|
|
31
|
+
"outputs": [{ "amount": 1, "id": "ZOMBIE_TALISMAN", "type": "item" }],
|
|
32
|
+
"place": [{ "id": "ADVENTURER", "type": "npc" }]
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"inputs": [{ "amount": 500, "id": "coin", "type": "currency" }],
|
|
36
|
+
"outputs": [{ "amount": 1, "id": "SKELETON_TALISMAN", "type": "item" }],
|
|
37
|
+
"place": [{ "id": "ADVENTURER", "type": "npc" }]
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"inputs": [{ "amount": 2500, "id": "coin", "type": "currency" }],
|
|
41
|
+
"outputs": [{ "amount": 1, "id": "VILLAGE_TALISMAN", "type": "item" }],
|
|
42
|
+
"place": [{ "id": "ADVENTURER", "type": "npc" }]
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"inputs": [{ "amount": 2500, "id": "coin", "type": "currency" }],
|
|
46
|
+
"outputs": [{ "amount": 1, "id": "MINE_TALISMAN", "type": "item" }],
|
|
47
|
+
"place": [{ "id": "ADVENTURER", "type": "npc" }]
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"inputs": [{ "amount": 10000, "id": "coin", "type": "currency" }],
|
|
51
|
+
"outputs": [
|
|
52
|
+
{ "amount": 1, "id": "INTIMIDATION_TALISMAN", "type": "item" }
|
|
53
|
+
],
|
|
54
|
+
"place": [{ "id": "ADVENTURER", "type": "npc" }]
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"inputs": [{ "amount": 10000, "id": "coin", "type": "currency" }],
|
|
58
|
+
"outputs": [{ "amount": 1, "id": "SCAVENGER_TALISMAN", "type": "item" }],
|
|
59
|
+
"place": [{ "id": "ADVENTURER", "type": "npc" }]
|
|
60
|
+
}
|
|
61
|
+
]
|
|
62
|
+
}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../$schema.json",
|
|
3
|
+
"actions": [
|
|
4
|
+
{
|
|
5
|
+
"inputs": [{ "amount": 10000, "id": "coin", "type": "currency" }],
|
|
6
|
+
"outputs": [
|
|
7
|
+
{ "amount": 1, "id": "FRACTURED_MITHRIL_PICKAXE", "type": "item" }
|
|
8
|
+
],
|
|
9
|
+
"place": [{ "id": "BUBU", "type": "npc" }]
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"inputs": [
|
|
13
|
+
{ "amount": 1, "id": "FRACTURED_MITHRIL_PICKAXE", "type": "item" },
|
|
14
|
+
{ "amount": 2, "id": "ENCHANTED_MITHRIL", "type": "item" }
|
|
15
|
+
],
|
|
16
|
+
"outputs": [
|
|
17
|
+
{ "amount": 1, "id": "BANDAGED_MITHRIL_PICKAXE", "type": "item" }
|
|
18
|
+
],
|
|
19
|
+
"place": [{ "id": "BUBU", "type": "npc" }]
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"inputs": [
|
|
23
|
+
{ "amount": 1, "id": "BANDAGED_MITHRIL_PICKAXE", "type": "item" },
|
|
24
|
+
{ "amount": 64, "id": "ENCHANTED_MITHRIL", "type": "item" },
|
|
25
|
+
{ "amount": 1, "id": "BEJEWELED_HANDLE", "type": "item" },
|
|
26
|
+
{ "amount": 32, "id": "ENCHANTED_GOLD", "type": "item" }
|
|
27
|
+
],
|
|
28
|
+
"outputs": [{ "amount": 1, "id": "MITHRIL_PICKAXE", "type": "item" }],
|
|
29
|
+
"place": [{ "id": "BUBU", "type": "npc" }]
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"inputs": [
|
|
33
|
+
{ "amount": 1, "id": "MITHRIL_PICKAXE", "type": "item" },
|
|
34
|
+
{ "amount": 2, "id": "REFINED_MITHRIL", "type": "item" }
|
|
35
|
+
],
|
|
36
|
+
"outputs": [
|
|
37
|
+
{ "amount": 1, "id": "REFINED_MITHRIL_PICKAXE", "type": "item" }
|
|
38
|
+
],
|
|
39
|
+
"place": [{ "id": "BUBU", "type": "npc" }]
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"inputs": [{ "amount": 50000, "id": "coin", "type": "currency" }],
|
|
43
|
+
"outputs": [
|
|
44
|
+
{ "amount": 1, "id": "RUSTY_TITANIUM_PICKAXE", "type": "item" }
|
|
45
|
+
],
|
|
46
|
+
"place": [{ "id": "BUBU", "type": "npc" }]
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"inputs": [
|
|
50
|
+
{ "amount": 1, "id": "RUSTY_TITANIUM_PICKAXE", "type": "item" },
|
|
51
|
+
{ "amount": 4, "id": "ENCHANTED_TITANIUM", "type": "item" },
|
|
52
|
+
{ "amount": 1, "id": "BEJEWELED_HANDLE", "type": "item" }
|
|
53
|
+
],
|
|
54
|
+
"outputs": [{ "amount": 1, "id": "TITANIUM_PICKAXE", "type": "item" }],
|
|
55
|
+
"place": [{ "id": "BUBU", "type": "npc" }]
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"inputs": [
|
|
59
|
+
{ "amount": 1, "id": "TITANIUM_PICKAXE", "type": "item" },
|
|
60
|
+
{ "amount": 1, "id": "REFINED_TITANIUM", "type": "item" }
|
|
61
|
+
],
|
|
62
|
+
"outputs": [
|
|
63
|
+
{ "amount": 1, "id": "REFINED_TITANIUM_PICKAXE", "type": "item" }
|
|
64
|
+
],
|
|
65
|
+
"place": [{ "id": "BUBU", "type": "npc" }]
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"inputs": [{ "amount": 20000, "id": "coin", "type": "currency" }],
|
|
69
|
+
"outputs": [{ "amount": 1, "id": "BIOFUEL", "type": "item" }],
|
|
70
|
+
"place": [{ "id": "BUBU", "type": "npc" }]
|
|
71
|
+
}
|
|
72
|
+
]
|
|
73
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../$schema.json",
|
|
3
|
+
"actions": [
|
|
4
|
+
{
|
|
5
|
+
"inputs": [{ "amount": 100, "id": "coin", "type": "currency" }],
|
|
6
|
+
"outputs": [{ "amount": 1, "id": "ANGLER_HELMET", "type": "item" }],
|
|
7
|
+
"place": [{ "id": "FISHING_MERCHANT", "type": "npc" }]
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"inputs": [{ "amount": 100, "id": "coin", "type": "currency" }],
|
|
11
|
+
"outputs": [{ "amount": 1, "id": "ANGLER_CHESTPLATE", "type": "item" }],
|
|
12
|
+
"place": [{ "id": "FISHING_MERCHANT", "type": "npc" }]
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"inputs": [{ "amount": 100, "id": "coin", "type": "currency" }],
|
|
16
|
+
"outputs": [{ "amount": 1, "id": "ANGLER_LEGGINGS", "type": "item" }],
|
|
17
|
+
"place": [{ "id": "FISHING_MERCHANT", "type": "npc" }]
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"inputs": [{ "amount": 100, "id": "coin", "type": "currency" }],
|
|
21
|
+
"outputs": [{ "amount": 1, "id": "ANGLER_BOOTS", "type": "item" }],
|
|
22
|
+
"place": [{ "id": "FISHING_MERCHANT", "type": "npc" }]
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"inputs": [{ "amount": 50, "id": "coin", "type": "currency" }],
|
|
26
|
+
"outputs": [{ "amount": 1, "id": "DIAMOND_SWORD", "type": "item" }],
|
|
27
|
+
"place": [{ "id": "FISHING_MERCHANT", "type": "npc" }]
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"inputs": [{ "amount": 50, "id": "coin", "type": "currency" }],
|
|
31
|
+
"outputs": [{ "amount": 1, "id": "FISHING_ROD", "type": "item" }],
|
|
32
|
+
"place": [{ "id": "FISHING_MERCHANT", "type": "npc" }]
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"inputs": [{ "amount": 15, "id": "coin", "type": "currency" }],
|
|
36
|
+
"outputs": [{ "amount": 1, "id": "MINNOW_BAIT", "type": "item" }],
|
|
37
|
+
"place": [{ "id": "FISHING_MERCHANT", "type": "npc" }]
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"inputs": [{ "amount": 100, "id": "coin", "type": "currency" }],
|
|
41
|
+
"outputs": [{ "amount": 1, "id": "ANGLER_NECKLACE", "type": "item" }],
|
|
42
|
+
"place": [{ "id": "FISHING_MERCHANT", "type": "npc" }]
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"inputs": [{ "amount": 100, "id": "coin", "type": "currency" }],
|
|
46
|
+
"outputs": [{ "amount": 1, "id": "ANGLER_CLOAK", "type": "item" }],
|
|
47
|
+
"place": [{ "id": "FISHING_MERCHANT", "type": "npc" }]
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"inputs": [{ "amount": 100, "id": "coin", "type": "currency" }],
|
|
51
|
+
"outputs": [{ "amount": 1, "id": "ANGLER_BRACELET", "type": "item" }],
|
|
52
|
+
"place": [{ "id": "FISHING_MERCHANT", "type": "npc" }]
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"inputs": [{ "amount": 100, "id": "coin", "type": "currency" }],
|
|
56
|
+
"outputs": [{ "amount": 1, "id": "ANGLER_BELT", "type": "item" }],
|
|
57
|
+
"place": [{ "id": "FISHING_MERCHANT", "type": "npc" }]
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"inputs": [{ "amount": 10, "id": "coin", "type": "currency" }],
|
|
61
|
+
"outputs": [{ "amount": 1, "id": "RAW_FISH", "type": "item" }],
|
|
62
|
+
"place": [{ "id": "FISHING_MERCHANT", "type": "npc" }]
|
|
63
|
+
}
|
|
64
|
+
]
|
|
65
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../$schema.json",
|
|
3
|
+
"actions": [
|
|
4
|
+
{
|
|
5
|
+
"inputs": [{ "amount": 50, "id": "coin", "type": "currency" }],
|
|
6
|
+
"outputs": [{ "amount": 1, "id": "PLUMBER_SPONGE", "type": "item" }],
|
|
7
|
+
"place": [{ "id": "PLUMBER_JOE", "type": "npc" }]
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"inputs": [{ "amount": 25000, "id": "coin", "type": "currency" }],
|
|
11
|
+
"outputs": [{ "amount": 1, "id": "SUPER_SCRUBBER", "type": "item" }],
|
|
12
|
+
"place": [{ "id": "PLUMBER_JOE", "type": "npc" }]
|
|
13
|
+
}
|
|
14
|
+
]
|
|
15
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../$schema.json",
|
|
3
|
+
"actions": [
|
|
4
|
+
{
|
|
5
|
+
"inputs": [{ "amount": 3000000, "id": "coin", "type": "currency" }],
|
|
6
|
+
"outputs": [
|
|
7
|
+
{ "amount": 1, "id": "CHEAP_TUXEDO_CHESTPLATE", "type": "item" },
|
|
8
|
+
{ "amount": 1, "id": "CHEAP_TUXEDO_LEGGINGS", "type": "item" },
|
|
9
|
+
{ "amount": 1, "id": "CHEAP_TUXEDO_BOOTS", "type": "item" }
|
|
10
|
+
],
|
|
11
|
+
"place": [{ "id": "SEYMOUR", "type": "npc" }]
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"inputs": [{ "amount": 20000000, "id": "coin", "type": "currency" }],
|
|
15
|
+
"outputs": [
|
|
16
|
+
{ "amount": 1, "id": "ELEGANT_TUXEDO_CHESTPLATE", "type": "item" },
|
|
17
|
+
{ "amount": 1, "id": "ELEGANT_TUXEDO_LEGGINGS", "type": "item" },
|
|
18
|
+
{ "amount": 1, "id": "ELEGANT_TUXEDO_BOOTS", "type": "item" }
|
|
19
|
+
],
|
|
20
|
+
"place": [{ "id": "SEYMOUR", "type": "npc" }]
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"inputs": [{ "amount": 74999999, "id": "coin", "type": "currency" }],
|
|
24
|
+
"outputs": [
|
|
25
|
+
{ "amount": 1, "id": "FANCY_TUXEDO_CHESTPLATE", "type": "item" },
|
|
26
|
+
{ "amount": 1, "id": "FANCY_TUXEDO_LEGGINGS", "type": "item" },
|
|
27
|
+
{ "amount": 1, "id": "FANCY_TUXEDO_BOOTS", "type": "item" }
|
|
28
|
+
],
|
|
29
|
+
"place": [{ "id": "SEYMOUR", "type": "npc" }]
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../$schema.json",
|
|
3
|
+
"actions": [
|
|
4
|
+
{
|
|
5
|
+
"inputs": [{ "amount": 50000, "id": "coin", "type": "currency" }],
|
|
6
|
+
"outputs": [{ "amount": 1, "id": "MOIL_LOG", "type": "item" }],
|
|
7
|
+
"place": [{ "id": "SMITHMONGER", "type": "npc" }]
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"inputs": [{ "amount": 100000, "id": "coin", "type": "currency" }],
|
|
11
|
+
"outputs": [{ "amount": 1, "id": "DIRT_BOTTLE", "type": "item" }],
|
|
12
|
+
"place": [{ "id": "SMITHMONGER", "type": "npc" }]
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"inputs": [{ "amount": 1000000, "id": "coin", "type": "currency" }],
|
|
16
|
+
"outputs": [{ "amount": 1, "id": "TOIL_LOG", "type": "item" }],
|
|
17
|
+
"place": [{ "id": "SMITHMONGER", "type": "npc" }]
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"inputs": [{ "amount": 1000000, "id": "coin", "type": "currency" }],
|
|
21
|
+
"outputs": [{ "amount": 1, "id": "REFINED_AMBER", "type": "item" }],
|
|
22
|
+
"place": [{ "id": "SMITHMONGER", "type": "npc" }]
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"inputs": [{ "amount": 1000000, "id": "coin", "type": "currency" }],
|
|
26
|
+
"outputs": [{ "amount": 1, "id": "BLESSED_FRUIT", "type": "item" }],
|
|
27
|
+
"place": [{ "id": "SMITHMONGER", "type": "npc" }]
|
|
28
|
+
}
|
|
29
|
+
]
|
|
30
|
+
}
|