Documentation!
This commit is contained in:
parent
d03dc23d4d
commit
9c5270d99e
|
@ -1,10 +1,16 @@
|
||||||
import { Command, prompt } from "./dependencies.ts";
|
import { Command, prompt } from "./dependencies.ts";
|
||||||
import { stringifyJsonPretty } from "./utilities.ts";
|
import { stringifyJsonPretty } from "./utilities.ts";
|
||||||
|
|
||||||
|
/** All the available cave complexities of missions. */
|
||||||
const CaveComplexity = [1, 2, 3] as const;
|
const CaveComplexity = [1, 2, 3] as const;
|
||||||
|
|
||||||
|
/** All the available cave lengths of missions. */
|
||||||
const CaveLength = [1, 2, 3] as const;
|
const CaveLength = [1, 2, 3] as const;
|
||||||
|
|
||||||
|
/** All the available hazard (difficulty) levels of missions. */
|
||||||
const HazardLevel = [1, 2, 3, 4, 5] as const;
|
const HazardLevel = [1, 2, 3, 4, 5] as const;
|
||||||
|
|
||||||
|
/** All the different types of missions. */
|
||||||
const MissionTypes = [
|
const MissionTypes = [
|
||||||
"Egg Hunt",
|
"Egg Hunt",
|
||||||
"Elimination",
|
"Elimination",
|
||||||
|
@ -16,6 +22,7 @@ const MissionTypes = [
|
||||||
"Salvage Operation",
|
"Salvage Operation",
|
||||||
] as const;
|
] as const;
|
||||||
|
|
||||||
|
/** All the different collectables besides gold and nitra. */
|
||||||
const Collectables = [
|
const Collectables = [
|
||||||
"Barley Bulb",
|
"Barley Bulb",
|
||||||
"Bismor",
|
"Bismor",
|
||||||
|
@ -31,6 +38,7 @@ const Collectables = [
|
||||||
"Yeast Cone",
|
"Yeast Cone",
|
||||||
] as const;
|
] as const;
|
||||||
|
|
||||||
|
/** All the data for a finished mission. */
|
||||||
type Mission = {
|
type Mission = {
|
||||||
"Date": string;
|
"Date": string;
|
||||||
"Index": number;
|
"Index": number;
|
||||||
|
|
Loading…
Reference in New Issue