Skip to content

Commit 08b9c2a

Browse files
authored
Merge pull request #6 from ZeikJT/ZeikJT-patch-default-values-off
Patch default values to off
2 parents 1cea15a + 6199b02 commit 08b9c2a

File tree

2 files changed

+28
-28
lines changed

2 files changed

+28
-28
lines changed

cheats.js

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,39 @@
11
// Written against CrossCode V1.2.0-5
22
(() => {
33
const CHEAT_CONFIG = [
4-
["xpcheat", {defaultValue: true, type: "CHECKBOX"}],
4+
["xpcheat", {defaultValue: false, type: "CHECKBOX"}],
55
["xpmultiplier", {defaultValue: 10, type: "SLIDER", min: 0, max: 100, requires: ["xpcheat"]}],
66
["xpmingain", {defaultValue: 1, type: "SLIDER", min: 0, max: 1000, requires: ["xpcheat"]}],
7-
["creditcheat", {defaultValue: true, type: "CHECKBOX"}],
7+
["creditcheat", {defaultValue: false, type: "CHECKBOX"}],
88
["creditmultiplier", {defaultValue: 10, type: "SLIDER", min: 0, max: 100, requires: ["creditcheat"]}],
9-
["donotremovecredit", {defaultValue: true, type: "CHECKBOX"}],
10-
["donotremovearenacoins", {defaultValue: true, type: "CHECKBOX"}],
11-
["arenaalwaysbonuses", {defaultValue: true, type: "CHECKBOX"}],
12-
["arenaperfectchain", {defaultValue: true, type: "CHECKBOX"}],
13-
["arenanodamagepenalty", {defaultValue: true, type: "CHECKBOX"}],
14-
["arenaalwaysplat", {defaultValue: true, type: "CHECKBOX"}],
15-
["ignorespcheat", {defaultValue: true, type: "CHECKBOX"}],
16-
["overheatelim", {defaultValue: true, type: "CHECKBOX"}],
17-
["invincible", {defaultValue: true, type: "CHECKBOX"}],
18-
["cpcheat", {defaultValue: true, type: "CHECKBOX"}],
19-
["consumableinfinite", {defaultValue: true, type: "CHECKBOX"}],
20-
["consumablenocooldown", {defaultValue: true, type: "CHECKBOX"}],
21-
["noknockbackonhit", {defaultValue: true, type: "CHECKBOX"}],
22-
["noactioncancelonhit", {defaultValue: true, type: "CHECKBOX"}],
23-
["tradecheat", {defaultValue: true, type: "CHECKBOX"}],
24-
["enemydropcheat", {defaultValue: true, type: "CHECKBOX"}],
25-
["plantdropcheat", {defaultValue: true, type: "CHECKBOX"}],
26-
["donotremovetrophypoints", {defaultValue: true, type: "CHECKBOX", preconditions: ["NEW_GAME_PLUS"]}],
27-
["jumphigher", {defaultValue: true, type: "CHECKBOX"}],
9+
["donotremovecredit", {defaultValue: false, type: "CHECKBOX"}],
10+
["donotremovearenacoins", {defaultValue: false, type: "CHECKBOX"}],
11+
["arenaalwaysbonuses", {defaultValue: false, type: "CHECKBOX"}],
12+
["arenaperfectchain", {defaultValue: false, type: "CHECKBOX"}],
13+
["arenanodamagepenalty", {defaultValue: false, type: "CHECKBOX"}],
14+
["arenaalwaysplat", {defaultValue: false, type: "CHECKBOX"}],
15+
["ignorespcheat", {defaultValue: false, type: "CHECKBOX"}],
16+
["overheatelim", {defaultValue: false, type: "CHECKBOX"}],
17+
["invincible", {defaultValue: false, type: "CHECKBOX"}],
18+
["cpcheat", {defaultValue: false, type: "CHECKBOX"}],
19+
["consumableinfinite", {defaultValue: false, type: "CHECKBOX"}],
20+
["consumablenocooldown", {defaultValue: false, type: "CHECKBOX"}],
21+
["noknockbackonhit", {defaultValue: false, type: "CHECKBOX"}],
22+
["noactioncancelonhit", {defaultValue: false, type: "CHECKBOX"}],
23+
["tradecheat", {defaultValue: false, type: "CHECKBOX"}],
24+
["enemydropcheat", {defaultValue: false, type: "CHECKBOX"}],
25+
["plantdropcheat", {defaultValue: false, type: "CHECKBOX"}],
26+
["donotremovetrophypoints", {defaultValue: false, type: "CHECKBOX", preconditions: ["NEW_GAME_PLUS"]}],
27+
["jumphigher", {defaultValue: false, type: "CHECKBOX"}],
2828
["jumphighermodifier", {defaultValue: 5, type: "SLIDER", min: 1, max: 10, requires: ["jumphigher"]}],
2929
["jumpfurther", {defaultValue: 10, type: "SLIDER", min: 10, max: 40, requires: ["jumphigher"]}],
30-
["skipintro", {defaultValue: true, type: "CHECKBOX"}],
31-
["unlimiteddashes", {defaultValue: true, type: "CHECKBOX"}],
32-
["runspeed", {defaultValue: true, type: "CHECKBOX"}],
30+
["skipintro", {defaultValue: false, type: "CHECKBOX"}],
31+
["unlimiteddashes", {defaultValue: false, type: "CHECKBOX"}],
32+
["runspeed", {defaultValue: false, type: "CHECKBOX"}],
3333
["runspeedmultiplier", {defaultValue: 10, type: "SLIDER", min: 1, max: 100, requires: ["runspeed"]}],
34-
["maxresistance", {defaultValue: true, type: "CHECKBOX"}],
35-
["instantaim", {defaultValue: true, type: "CHECKBOX"}],
36-
["dontresetpuzzles", {defaultValue: true, type: "CHECKBOX"}],
34+
["maxresistance", {defaultValue: false, type: "CHECKBOX"}],
35+
["instantaim", {defaultValue: false, type: "CHECKBOX"}],
36+
["dontresetpuzzles", {defaultValue: false, type: "CHECKBOX"}],
3737
];
3838

3939
const CHEAT_CONFIG_MAP = new Map(CHEAT_CONFIG);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "Cheats",
33
"postload": "cheats.js",
4-
"version": "1.4.0",
4+
"version": "1.4.1",
55
"homepage": "https://github.com/ZeikJT/CrossCodeCheats",
66
"description": "This mod adds cheats to CrossCode.",
77
"ccmodDependencies": {

0 commit comments

Comments
 (0)