Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lyoko-Jeremie committed May 13, 2024
1 parent 3adbf43 commit 4cc80ec
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions src/Cheats/Full.ts
Original file line number Diff line number Diff line change
Expand Up @@ -764,6 +764,51 @@ class Bootstrap extends CheatsHook {
KDGameData.CollectedHearts = (KDGameData.CollectedHearts || 0) + 10;

}
// KDMapData.Tiles["12,3"] = { Type: "Tablet", Name: "Heart", Light: 3 , lightColor: 8947967 }
// KinkyDungeonMapSet(12,3,'M')
//
//
// case "heart": {
// KDDelayedActionPrune(["Action", "World"]);
// tile = KinkyDungeonTilesGet(data.targetTile);
// if (tile) {
// let amnt = (data.amount || 3);
// if (data.type == "AP") {
// if (KinkyDungeonStatDistractionMax < KDMaxStat) //for (let i = 0; i < amnt; i++) KDPushSpell(KinkyDungeonFindSpell("APUp1"));
// KDGameData.StatMaxBonus[data.type] += amnt;
// KinkyDungeonUpdateStats(0);
// }else if (data.type == "SP") {
// if (KinkyDungeonStatStaminaMax < KDMaxStat)// for (let i = 0; i < amnt; i++) KDPushSpell(KinkyDungeonFindSpell("SPUp1"));
// KDGameData.StatMaxBonus[data.type] += amnt;
// KinkyDungeonUpdateStats(0);
// } else if (data.type == "MP") {
// if (KinkyDungeonStatManaMax < KDMaxStat)// for (let i = 0; i < amnt; i++) KDPushSpell(KinkyDungeonFindSpell("MPUp1"));
// KDGameData.StatMaxBonus[data.type] += amnt;
// KinkyDungeonUpdateStats(0);
// } else if (data.type == "WP") {
// if (KinkyDungeonStatWillMax < KDMaxStat) //for (let i = 0; i < amnt; i++) KDPushSpell(KinkyDungeonFindSpell("WPUp1"));
// KDGameData.StatMaxBonus[data.type] += amnt;
// KinkyDungeonUpdateStats(0);
// }
// KDGameData.CollectedHearts = (KDGameData.CollectedHearts || 0) + 1;
//
// // Send the message and advance time
// KinkyDungeonAdvanceTime(1);
// KinkyDungeonSendActionMessage(10, TextGet("KinkyDungeonTabletReadSuccess"), "lightgreen", 1);
//
// KinkyDungeonTargetTile = null;
// KinkyDungeonTargetTileLocation = "";
// KDModalArea = false;
//
// // Remove the tile
// let x = parseInt(data.targetTile.split(',')[0]);
// let y = parseInt(data.targetTile.split(',')[1]);
// if (x && y) {
// KinkyDungeonMapSet(x, y, 'm');
// KinkyDungeonTilesDelete(data.targetTile);
// }
// }
// break;
}

export class FullCheats extends Bootstrap {
Expand Down

0 comments on commit 4cc80ec

Please sign in to comment.