【汉化】YEP197-Level Up Growth Effects (YEP)

Introduction

This plugin lets you create items that allow actor growth upon leveling up due to the actor, the equipment worn, class, learned skills, or any states applied to the actor upon leveling up. Growth options include increasing basic parameters, learning new skills, turning switches on/off, full recovery, and for those experienced with JavaScript, any kind of custom effect that can be done using code.
此插件允许您创建允许玩家在升级时由于角色、装备磨损、等级、学习技能或升级时应用于玩家的任何状态而增长的项。增长选项包括增加基本参数、学习新技能、打开/关闭开关、完全恢复,对于那些有JavaScript经验的人,可以使用代码实现任何类型的自定义效果。

[Notetags]

Here is a list of [Notetag(s)] that you may use.

Insert the following notetags into the respective database object noteboxes to acquire their Level Up Growth Effects.

Actor, Class, Skill, Weapon, Armor, State Notetags:

<Level Up stat Growth: +x>
<Level Up stat Growth: -x>
Upon leveling up, this will raise/reduce a particular 'stat' by x value.

  • Replace 'stat' with 'MaxHP', 'MaxMP', 'ATK', 'DEF', 'MAT', 'MDF', 'AGI',
    or 'LUK' to alter that specific stat.
  • Replace 'x' with a numeric value indicating how much growth to apply.
    升级后,这会将特定的“状态”增加/减少x值。
    -将“ stat”替换为“ MaxHP”,“ MaxMP”,“ ATK”,“ DEF”,“ MAT”,“ MDF”,“ AGI”,
    或“ LUK”更改该特定统计信息。
    -将“ x”替换为指示要应用多少增长的数值。

<Level Up Learn Skill: x>
Upon leveling up, this will teach the actor skill x.

  • Replace 'x' with the ID of the skill you wish to teach the actor.
    升级后,这将学习技能x。
    -将“ x”替换为您希望教给玩家的技能的ID。

<Level Up Switch On: x>
<Level Up Switch On: x, x, x>
<Level Up Switch On: x to y>
<Level Up Switch Off: x>
<Level Up Switch Off: x, x, x>
<Level Up Switch Off: x to y>
Upon leveling up, this will cause switch(es) x to turn on or off.

  • Replace 'x' with the ID of the switch(es) to turn on/off.
  • If using 'x to y', set 'x' to the starting ID and 'y' to the ending ID.
  • Insert multiples of this notetag to affect multiple switches.
    升级后,这将导致开关x打开或关闭。
    -将“ x”替换为要打开/关闭的开关的ID。
    -如果使用“ x to y”,则将“ x”设置为起始ID,将“ y”设置为结束ID。
    -插入此便签标签的倍数以影响多个开关。

<Level Up Recover All>
Upon leveling up, this will cause the Recover All effect to trigger for the actor.
升级后,这将触发“全部恢复”效果

[Lunatic Mode]

For advanced users who have an understanding of [JavaScript], you can use the following features added by the plugin to further enhance what you can do with your game project.

For those with JavaScript experience, you can make custom effects occur upon
leveling up as well using these notetags:

Actor, Class, Skill, Weapon, Armor, State Notetags:

<Custom Level Up Effect>
code
code
</Custom Level Up Effect>

  • Replace 'code' with the code you wish to run inside the notetags.

--- Example ---

<Custom Level Up Effect>
var heal = actor.mdf;
actor.gainHp(heal);
</Custom Level Up Effect>

  • Upon leveling up, this will make the actor heal HP equal to the actor's
    current MDF parameter.

--- Example ---

<Custom Level Up Effect>
if (actor.level >= 50) {
var keepExp = true;
actor.changeClass(5, keepExp);
}
</Custom Level Up Effect>

  • If actor's level has exceeded level 50, then the actor will class change
    into class ID 5.

--- Example ---

<Custom Level Up Effect>
if (actor.level >= 25) {
// Change sprite
var characterName = 'Actor1';
var characterIndex = 0;
actor.setCharacterImage(characterName, characterIndex);
// Change Face
var faceName = 'Actor1';
var faceIndex = 0;
actor.setFaceImage(faceName, faceIndex);
// Change SV Battler
var battlerName = 'Actor1_1';
actor.setBattlerImage(battlerName);
// Refresh Actor
actor.refresh();
}
</Custom Level Up Effect>

  • If actor's level has exceeded level 25, then the actor's map sprite,
    face graphic, and sideview battler will change into something else.
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 211,948评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,371评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,490评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,521评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,627评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,842评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,997评论 3 408
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,741评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,203评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,534评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,673评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,339评论 4 330
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,955评论 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,770评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,000评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,394评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,562评论 2 349