/*:ja * @target MZ * @plugindesc エネミー変身後のリネームをなくす * @author * */ Game_Interpreter.prototype.command336 = function (params) { this.iterateEnemyIndex(params[0], (enemy) => { enemy.transform(params[1]); }); return true; };