@shipload/sdk 2.0.0-rc3 → 2.0.0-rc5
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/lib/shipload.d.ts +81 -15
- package/lib/shipload.js +2091 -945
- package/lib/shipload.js.map +1 -1
- package/lib/shipload.m.js +2082 -940
- package/lib/shipload.m.js.map +1 -1
- package/package.json +1 -1
- package/src/contracts/server.ts +71 -1
- package/src/data/items.json +15 -14
- package/src/data/nebula-adjectives.json +211 -0
- package/src/data/nebula-nouns.json +151 -0
- package/src/data/syllables.json +1386 -780
- package/src/derivation/index.ts +8 -6
- package/src/derivation/resources.ts +54 -53
- package/src/derivation/stats.ts +70 -0
- package/src/derivation/stratum.ts +20 -18
- package/src/index-module.ts +10 -7
- package/src/market/items.ts +1 -1
- package/src/market/market.ts +4 -17
- package/src/types.ts +3 -3
- package/src/utils/system.ts +44 -10
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
[
|
|
2
|
+
"Abyss",
|
|
3
|
+
"Anchor",
|
|
4
|
+
"Anvil",
|
|
5
|
+
"Apex",
|
|
6
|
+
"Arch",
|
|
7
|
+
"Aurora",
|
|
8
|
+
"Basin",
|
|
9
|
+
"Beacon",
|
|
10
|
+
"Bloom",
|
|
11
|
+
"Bough",
|
|
12
|
+
"Briar",
|
|
13
|
+
"Brine",
|
|
14
|
+
"Bulwark",
|
|
15
|
+
"Cairn",
|
|
16
|
+
"Caldera",
|
|
17
|
+
"Canopy",
|
|
18
|
+
"Cascade",
|
|
19
|
+
"Chalice",
|
|
20
|
+
"Chasm",
|
|
21
|
+
"Chorus",
|
|
22
|
+
"Cistern",
|
|
23
|
+
"Citadel",
|
|
24
|
+
"Cloak",
|
|
25
|
+
"Cloud",
|
|
26
|
+
"Coil",
|
|
27
|
+
"Column",
|
|
28
|
+
"Core",
|
|
29
|
+
"Corona",
|
|
30
|
+
"Cradle",
|
|
31
|
+
"Crest",
|
|
32
|
+
"Crown",
|
|
33
|
+
"Crucible",
|
|
34
|
+
"Current",
|
|
35
|
+
"Curtain",
|
|
36
|
+
"Drift",
|
|
37
|
+
"Dusk",
|
|
38
|
+
"Echo",
|
|
39
|
+
"Eddy",
|
|
40
|
+
"Ember",
|
|
41
|
+
"Expanse",
|
|
42
|
+
"Eye",
|
|
43
|
+
"Fathom",
|
|
44
|
+
"Fissure",
|
|
45
|
+
"Fjord",
|
|
46
|
+
"Flare",
|
|
47
|
+
"Fold",
|
|
48
|
+
"Forge",
|
|
49
|
+
"Frontier",
|
|
50
|
+
"Furrow",
|
|
51
|
+
"Gate",
|
|
52
|
+
"Glade",
|
|
53
|
+
"Gorge",
|
|
54
|
+
"Grip",
|
|
55
|
+
"Grotto",
|
|
56
|
+
"Gulf",
|
|
57
|
+
"Gyre",
|
|
58
|
+
"Halo",
|
|
59
|
+
"Haven",
|
|
60
|
+
"Heart",
|
|
61
|
+
"Hearth",
|
|
62
|
+
"Helix",
|
|
63
|
+
"Hollow",
|
|
64
|
+
"Horn",
|
|
65
|
+
"Husk",
|
|
66
|
+
"Inlet",
|
|
67
|
+
"Iris",
|
|
68
|
+
"Jaw",
|
|
69
|
+
"Keel",
|
|
70
|
+
"Knot",
|
|
71
|
+
"Lantern",
|
|
72
|
+
"Lattice",
|
|
73
|
+
"Loom",
|
|
74
|
+
"Mantle",
|
|
75
|
+
"Marrow",
|
|
76
|
+
"Maw",
|
|
77
|
+
"Meridian",
|
|
78
|
+
"Mirage",
|
|
79
|
+
"Monolith",
|
|
80
|
+
"Mote",
|
|
81
|
+
"Nave",
|
|
82
|
+
"Nebula",
|
|
83
|
+
"Nexus",
|
|
84
|
+
"Obelisk",
|
|
85
|
+
"Orbit",
|
|
86
|
+
"Pall",
|
|
87
|
+
"Passage",
|
|
88
|
+
"Petal",
|
|
89
|
+
"Pillar",
|
|
90
|
+
"Pinnacle",
|
|
91
|
+
"Plume",
|
|
92
|
+
"Prism",
|
|
93
|
+
"Prow",
|
|
94
|
+
"Pulse",
|
|
95
|
+
"Pyre",
|
|
96
|
+
"Reach",
|
|
97
|
+
"Remnant",
|
|
98
|
+
"Rib",
|
|
99
|
+
"Ridge",
|
|
100
|
+
"Rift",
|
|
101
|
+
"Root",
|
|
102
|
+
"Sanctum",
|
|
103
|
+
"Seal",
|
|
104
|
+
"Seam",
|
|
105
|
+
"Shard",
|
|
106
|
+
"Shoal",
|
|
107
|
+
"Shroud",
|
|
108
|
+
"Sigil",
|
|
109
|
+
"Sink",
|
|
110
|
+
"Skull",
|
|
111
|
+
"Span",
|
|
112
|
+
"Spar",
|
|
113
|
+
"Spine",
|
|
114
|
+
"Spire",
|
|
115
|
+
"Spoke",
|
|
116
|
+
"Spur",
|
|
117
|
+
"Steeple",
|
|
118
|
+
"Storm",
|
|
119
|
+
"Strand",
|
|
120
|
+
"Surge",
|
|
121
|
+
"Talon",
|
|
122
|
+
"Tendril",
|
|
123
|
+
"Thicket",
|
|
124
|
+
"Thorn",
|
|
125
|
+
"Thread",
|
|
126
|
+
"Threshold",
|
|
127
|
+
"Throat",
|
|
128
|
+
"Tide",
|
|
129
|
+
"Tomb",
|
|
130
|
+
"Torrent",
|
|
131
|
+
"Trench",
|
|
132
|
+
"Trough",
|
|
133
|
+
"Vault",
|
|
134
|
+
"Veil",
|
|
135
|
+
"Vestige",
|
|
136
|
+
"Vigil",
|
|
137
|
+
"Void",
|
|
138
|
+
"Vortex",
|
|
139
|
+
"Wake",
|
|
140
|
+
"Ward",
|
|
141
|
+
"Warden",
|
|
142
|
+
"Weave",
|
|
143
|
+
"Web",
|
|
144
|
+
"Well",
|
|
145
|
+
"Wellspring",
|
|
146
|
+
"Whisper",
|
|
147
|
+
"Wisp",
|
|
148
|
+
"Wraith",
|
|
149
|
+
"Wreath",
|
|
150
|
+
"Zenith"
|
|
151
|
+
]
|