├── .gitignore ├── .stylelintrc ├── README.md ├── cm-patch-fix.bat ├── cm-patch.bat ├── cm-patch.json ├── cm-patcher-package.json ├── cm-patcher.html ├── docs ├── assets │ ├── index-DHepVTsu.js │ ├── index-legacy-D7HVRrvv.js │ └── polyfills-legacy-DWUf_NGy.js └── index.html ├── eslint.config.js ├── index.html ├── package.json ├── postbuild.cjs ├── src ├── App.tsx ├── component │ ├── Empty │ │ ├── index.tsx │ │ └── style.module.scss │ ├── MapSelector │ │ └── index.tsx │ ├── SpriteSelector │ │ └── index.tsx │ └── module │ │ ├── ClearState │ │ ├── index.tsx │ │ └── style.module.scss │ │ ├── DevTools │ │ └── index.tsx │ │ ├── Exp │ │ ├── index.tsx │ │ └── style.module.scss │ │ ├── Gold │ │ ├── index.tsx │ │ └── style.module.scss │ │ ├── HMTP │ │ ├── index.tsx │ │ └── style.module.scss │ │ ├── Item │ │ ├── index.tsx │ │ └── style.module.scss │ │ ├── Navigator │ │ ├── index.tsx │ │ └── style.module.scss │ │ ├── OptionSelect │ │ ├── index.tsx │ │ └── style.module.scss │ │ ├── Save │ │ ├── index.tsx │ │ └── style.module.scss │ │ ├── SaveInRoll │ │ ├── index.tsx │ │ └── style.module.scss │ │ ├── Script │ │ ├── index.tsx │ │ └── style.module.scss │ │ ├── SpeedHack │ │ ├── index.tsx │ │ └── style.module.scss │ │ ├── Status │ │ ├── index.tsx │ │ └── style.module.scss │ │ ├── Switch │ │ ├── index.tsx │ │ └── style.module.scss │ │ ├── Variable │ │ ├── index.tsx │ │ └── style.module.scss │ │ ├── chronus │ │ └── ChronusTimeHack │ │ │ ├── index.tsx │ │ │ └── style.module.scss │ │ └── declare.d.ts ├── helper │ └── index.ts ├── index.scss ├── main.tsx ├── model │ └── config.ts ├── presets.json ├── rpgmaker │ ├── declare.d.ts │ ├── dummy │ │ └── index.ts │ ├── index.ts │ ├── mvmz │ │ └── index.ts │ └── script.ts ├── style.module.scss ├── style │ └── flex.scss ├── view │ ├── Form │ │ ├── component │ │ │ ├── KeyBinder │ │ │ │ └── index.tsx │ │ │ └── Section │ │ │ │ ├── index.tsx │ │ │ │ └── style.module.scss │ │ ├── functions.ts │ │ ├── index.tsx │ │ └── style.module.scss │ └── Menu │ │ ├── index.tsx │ │ └── style.module.scss └── vite-env.d.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/.stylelintrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/README.md -------------------------------------------------------------------------------- /cm-patch-fix.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/cm-patch-fix.bat -------------------------------------------------------------------------------- /cm-patch.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/cm-patch.bat -------------------------------------------------------------------------------- /cm-patch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/cm-patch.json -------------------------------------------------------------------------------- /cm-patcher-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/cm-patcher-package.json -------------------------------------------------------------------------------- /cm-patcher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/cm-patcher.html -------------------------------------------------------------------------------- /docs/assets/index-DHepVTsu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/docs/assets/index-DHepVTsu.js -------------------------------------------------------------------------------- /docs/assets/index-legacy-D7HVRrvv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/docs/assets/index-legacy-D7HVRrvv.js -------------------------------------------------------------------------------- /docs/assets/polyfills-legacy-DWUf_NGy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/docs/assets/polyfills-legacy-DWUf_NGy.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/docs/index.html -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/package.json -------------------------------------------------------------------------------- /postbuild.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/postbuild.cjs -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/component/Empty/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/component/Empty/index.tsx -------------------------------------------------------------------------------- /src/component/Empty/style.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/component/Empty/style.module.scss -------------------------------------------------------------------------------- /src/component/MapSelector/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/component/MapSelector/index.tsx -------------------------------------------------------------------------------- /src/component/SpriteSelector/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/component/SpriteSelector/index.tsx -------------------------------------------------------------------------------- /src/component/module/ClearState/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/component/module/ClearState/index.tsx -------------------------------------------------------------------------------- /src/component/module/ClearState/style.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/component/module/ClearState/style.module.scss -------------------------------------------------------------------------------- /src/component/module/DevTools/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/component/module/DevTools/index.tsx -------------------------------------------------------------------------------- /src/component/module/Exp/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/component/module/Exp/index.tsx -------------------------------------------------------------------------------- /src/component/module/Exp/style.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/component/module/Exp/style.module.scss -------------------------------------------------------------------------------- /src/component/module/Gold/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/component/module/Gold/index.tsx -------------------------------------------------------------------------------- /src/component/module/Gold/style.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/component/module/Gold/style.module.scss -------------------------------------------------------------------------------- /src/component/module/HMTP/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/component/module/HMTP/index.tsx -------------------------------------------------------------------------------- /src/component/module/HMTP/style.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/component/module/HMTP/style.module.scss -------------------------------------------------------------------------------- /src/component/module/Item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/component/module/Item/index.tsx -------------------------------------------------------------------------------- /src/component/module/Item/style.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/component/module/Item/style.module.scss -------------------------------------------------------------------------------- /src/component/module/Navigator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/component/module/Navigator/index.tsx -------------------------------------------------------------------------------- /src/component/module/Navigator/style.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/component/module/Navigator/style.module.scss -------------------------------------------------------------------------------- /src/component/module/OptionSelect/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/component/module/OptionSelect/index.tsx -------------------------------------------------------------------------------- /src/component/module/OptionSelect/style.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/component/module/OptionSelect/style.module.scss -------------------------------------------------------------------------------- /src/component/module/Save/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/component/module/Save/index.tsx -------------------------------------------------------------------------------- /src/component/module/Save/style.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/component/module/Save/style.module.scss -------------------------------------------------------------------------------- /src/component/module/SaveInRoll/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/component/module/SaveInRoll/index.tsx -------------------------------------------------------------------------------- /src/component/module/SaveInRoll/style.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/component/module/SaveInRoll/style.module.scss -------------------------------------------------------------------------------- /src/component/module/Script/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/component/module/Script/index.tsx -------------------------------------------------------------------------------- /src/component/module/Script/style.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/component/module/Script/style.module.scss -------------------------------------------------------------------------------- /src/component/module/SpeedHack/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/component/module/SpeedHack/index.tsx -------------------------------------------------------------------------------- /src/component/module/SpeedHack/style.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/component/module/SpeedHack/style.module.scss -------------------------------------------------------------------------------- /src/component/module/Status/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/component/module/Status/index.tsx -------------------------------------------------------------------------------- /src/component/module/Status/style.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/component/module/Status/style.module.scss -------------------------------------------------------------------------------- /src/component/module/Switch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/component/module/Switch/index.tsx -------------------------------------------------------------------------------- /src/component/module/Switch/style.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/component/module/Switch/style.module.scss -------------------------------------------------------------------------------- /src/component/module/Variable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/component/module/Variable/index.tsx -------------------------------------------------------------------------------- /src/component/module/Variable/style.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/component/module/Variable/style.module.scss -------------------------------------------------------------------------------- /src/component/module/chronus/ChronusTimeHack/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/component/module/chronus/ChronusTimeHack/index.tsx -------------------------------------------------------------------------------- /src/component/module/chronus/ChronusTimeHack/style.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/component/module/chronus/ChronusTimeHack/style.module.scss -------------------------------------------------------------------------------- /src/component/module/declare.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/component/module/declare.d.ts -------------------------------------------------------------------------------- /src/helper/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/helper/index.ts -------------------------------------------------------------------------------- /src/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/model/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/model/config.ts -------------------------------------------------------------------------------- /src/presets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/presets.json -------------------------------------------------------------------------------- /src/rpgmaker/declare.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/rpgmaker/declare.d.ts -------------------------------------------------------------------------------- /src/rpgmaker/dummy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/rpgmaker/dummy/index.ts -------------------------------------------------------------------------------- /src/rpgmaker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/rpgmaker/index.ts -------------------------------------------------------------------------------- /src/rpgmaker/mvmz/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/rpgmaker/mvmz/index.ts -------------------------------------------------------------------------------- /src/rpgmaker/script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/rpgmaker/script.ts -------------------------------------------------------------------------------- /src/style.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/style.module.scss -------------------------------------------------------------------------------- /src/style/flex.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/style/flex.scss -------------------------------------------------------------------------------- /src/view/Form/component/KeyBinder/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/view/Form/component/KeyBinder/index.tsx -------------------------------------------------------------------------------- /src/view/Form/component/Section/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/view/Form/component/Section/index.tsx -------------------------------------------------------------------------------- /src/view/Form/component/Section/style.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/view/Form/component/Section/style.module.scss -------------------------------------------------------------------------------- /src/view/Form/functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/view/Form/functions.ts -------------------------------------------------------------------------------- /src/view/Form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/view/Form/index.tsx -------------------------------------------------------------------------------- /src/view/Form/style.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/view/Form/style.module.scss -------------------------------------------------------------------------------- /src/view/Menu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/view/Menu/index.tsx -------------------------------------------------------------------------------- /src/view/Menu/style.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/src/view/Menu/style.module.scss -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | 3 | declare const __APP_VERSION__: string; 4 | -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allape/RPG-Maker-MV-Cheat-Menu-Plugin/HEAD/vite.config.ts --------------------------------------------------------------------------------