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