|
1 | 1 | // Written against CrossCode V1.2.0-5
|
2 | 2 | (() => {
|
3 | 3 | const CHEAT_CONFIG = [
|
4 |
| - ["xpcheat", {defaultValue: true, type: "CHECKBOX"}], |
| 4 | + ["xpcheat", {defaultValue: false, type: "CHECKBOX"}], |
5 | 5 | ["xpmultiplier", {defaultValue: 10, type: "SLIDER", min: 0, max: 100, requires: ["xpcheat"]}],
|
6 | 6 | ["xpmingain", {defaultValue: 1, type: "SLIDER", min: 0, max: 1000, requires: ["xpcheat"]}],
|
7 |
| - ["creditcheat", {defaultValue: true, type: "CHECKBOX"}], |
| 7 | + ["creditcheat", {defaultValue: false, type: "CHECKBOX"}], |
8 | 8 | ["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"}], |
28 | 28 | ["jumphighermodifier", {defaultValue: 5, type: "SLIDER", min: 1, max: 10, requires: ["jumphigher"]}],
|
29 | 29 | ["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"}], |
33 | 33 | ["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"}], |
37 | 37 | ];
|
38 | 38 |
|
39 | 39 | const CHEAT_CONFIG_MAP = new Map(CHEAT_CONFIG);
|
|
0 commit comments