dragon-conquista/js/plugins/EnemyName.js
2025-01-07 11:33:13 -06:00

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;
};