unholy-maiden/js/plugins/Unit03_salevalue.js
2025-12-18 09:44:14 -06:00

30 lines
No EOL
627 B
JavaScript

//=============================================================================
// menu_windows_override.js v1.0
//=============================================================================
//-----------------------------------------------------------------------------
// Window_Base
//
// The superclass of all windows within the game.
/*:
* @target MZ
* @plugindesc 商品の売却価額を1/5に変更
* @author Unit03
*
* @help
*
*/
(() => {
"use strict";
Scene_Shop.prototype.sellingPrice = function() {
return Math.floor(this._item.price / 5);
};
//動作コード
})();