【汉化】Repeat Upgrade

Repeat Upgrade

Here is the help file:

Normally, RPG Maker MV allows you to set a constant number between
1 and 9 as a Skill’s or Item’s repeat count.

RMMV可以让你设置技能或者物品的重复1-9次

Using this Plugin, you can surpass that limit and even create custom
formulas for a Skill’s or Item’s repeat count.

这个插件可以让你突破次数限制

Skill and Item Notetags


This simply allows you to input any repeat count.
把这个放入需要重复的技能或物品备注栏
For example, if you wanted a Skill/Item to repeat 20 times, you would do:
例如你可以这样设置重复20次


Repeat Formula

You can also create a formula.
Within the formula, you can use:
你也可以自己创造公式

a = The User
v = Game Variables
s = Game Switches
item = The Item

So, for example, you could do:


(Sets the repeat count to the level of the user)
设置基于等级的次数


(Adds 1 repeat for every 10 ATK the user has)
设置基于攻击力的次数


(Sets the repeat to a number between 2 and 5 inclusive)
设置随机次数

Take note of the fact that the resulting number will always round down
to the closest integer value.

记住所有的结果都是向下取整

Long Repeat Formula




This is an expansion on the notetag above.
Within the two notetags, you can use JavaScript code to create an
expanded formula for your Skill’s or Item’s repeat count.

你还可以使用JS语言来设置次数

To set the final repeat count, set the value you wish to use to the
variable “result”.

For example:


result = 10;


This would set the repeat count to 10.
例如设置为10次
Here are some more examples:


var temp = Math.random(3);
temp = temp + 10;
result = temp;

(Sets the repeat to a random number between 10 and 12)
设置为随机10-12之间


var temp = v[2];
temp += a.level;
result = temp;

(Sets the repeat to the value of Game Variable 2 plus the user’s level)
设置为变量加上等级

你可能感兴趣的:(【汉化】Repeat Upgrade)