Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"babel-loader": "^9.1.3",
"build": "^0.1.4",
"grimoire-kolmafia": "^0.3.25",
"kolmafia": "^5.27815.0",
"libram": "^0.9.2",
"kolmafia": "^5.28591.0",
"libram": "^0.11.14",
"mafia-shared-relay": "0.0.7",
"webpack": "^5.89.0"
},
Expand All @@ -37,7 +37,7 @@
"esbuild-plugin-babel": "^0.2.3",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-libram": "^0.4.15",
"eslint-plugin-libram": "^0.4.34",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"typescript": "^5.1.6",
Expand All @@ -51,5 +51,6 @@
"TS"
],
"repository": "https://github.com/Ignose/candywrapper.git",
"private": false
"private": false,
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}
45 changes: 45 additions & 0 deletions src/args.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,47 @@ export const args = Args.create(
}),
cs: Args.flag({
help: "Ascend into and run CS.",
default: false,
setting: "",
}),
smol: Args.flag({
help: "Ascend into and run smol.",
default: false,
setting: "",
}),
casual: Args.flag({
help: "Ascend into and run casual.",
default: false,
setting: "",
}),
robot: Args.flag({
help: "Ascend into and run You, Robot.",
default: false,
setting: "",
}),
zooto: Args.flag({
help: "Ascend into and run Zootomist",
default: false,
setting: "",
}),
ih8u: Args.flag({
help: "Ascend into and run 11 Things I Hate About U",
default: false,
setting: "",
}),
crimbo: Args.flag({
help: "Farm Crimbo instead of Garbo",
default: false,
setting: "",
}),
chrono: Args.flag({
help: "Farm TTT instead of Garbo",
default: false,
setting: "",
}),
ween: Args.flag({
help: "Run Halloween instead of Garbo",
default: false,
setting: "",
}),

Expand Down Expand Up @@ -122,6 +151,10 @@ export const args = Args.create(
help: "The command that will do your You, Robot run for you. Include any arguments desired.",
default: "",
}),
ih8uscript: Args.string({
help: "The command that will do your You, Robot run for you. Include any arguments desired.",
default: "",
}),
pulls: Args.items({
help: "A list of items to pull at the start of the smol run.",
default: [
Expand All @@ -139,6 +172,14 @@ export const args = Args.create(
help: `The command that will be used to diet and use all your adventures in Day 2 aftercore.`,
default: "garbo ascend",
}),
crimboscript: Args.string({
help: `The command that will be used to run a crimbo farming script - note that if no script is provided, we will default to garbo`,
default: "",
}),
chronoscript: Args.string({
help: `The command that will be used to run a TTT farming script - note that if no script is provided, we will default to garbo`,
default: "",
}),
itemcleanup: Args.string({
help: `The script that will be used to mallsale items after a run`,
default: "",
Expand All @@ -151,5 +192,9 @@ export const args = Args.create(
help: "Define a specific monster for Garbo to target; note that the wrapper will find something useful for you!",
default: "",
}),
test: Args.flag({
help: "test",
default: false
})
},
);
Loading