//============================================================================= // RPG Maker MZ - Error_SceneSkill //============================================================================= /*: * @target MZ * @plugindesc (調査用)スキル画面でエラーを発生させます。 * @author sun_dandy * @url https://star-write-dream.com/ * * @help Error_SceneSkill.js(ver1.0.0) * * スキル画面でエラーを発生させます。 * */ (() => { "use strict"; const _Scene_Skill_initialize = Scene_Skill.prototype.initialize; Scene_Skill.prototype.initialize = function () { aaa; _Scene_Skill_initialize.apply(this, arguments); }; })();