-
Notifications
You must be signed in to change notification settings - Fork 11
/
MNKR_LearnRandomSkill.js
47 lines (43 loc) · 1.64 KB
/
MNKR_LearnRandomSkill.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
* --------------------------------------------------
* MNKR_LearnRandomSkill.js
* Ver.0.0.1
* Copyright (c) 2021 Munokura
* This software is released under the MIT license.
* http://opensource.org/licenses/mit-license.php
* --------------------------------------------------
*/
/*:
* @target MZ MV
* @url https://raw.githubusercontent.com/munokura/MNKR-MZ-plugins/master/MNKR_LearnRandomSkill.js
* @plugindesc 職業で習得するスキルの設定レベルが同じものから1つだけランダム習得するシステムに変更します。
* @author munokura
*
* @help
* 職業にはレベルに応じて「習得するスキル」を設定できます。
* このプラグインを導入すると、習得スキルを同レベルに複数のスキルを指定した場合、
* 1つだけランダム習得するシステムに変更します。
*
*
* 利用規約:
* MITライセンスです。
* https://licenses.opensource.jp/MIT/MIT.html
* 作者に無断で改変、再配布が可能で、
* 利用形態(商用、18禁利用等)についても制限はありません。
*/
(() => {
"use strict";
Game_Actor.prototype.levelUp = function () {
this._level++;
let learnSkillArgs = [];
for (const learning of this.currentClass().learnings) {
if (learning.level === this._level) {
learnSkillArgs.push(learning.skillId);
}
}
if (learnSkillArgs.length > 0) {
const learnRandomSkill = learnSkillArgs[Math.floor(Math.random() * learnSkillArgs.length)];
this.learnSkill(learnRandomSkill);
}
};
})();