Project1

标题: 【汉化】YEP.34 Subclass [打印本页]

作者: 沧笙    时间: 2015-12-19 00:18
标题: 【汉化】YEP.34 Subclass
本帖最后由 沧笙 于 2015-12-20 11:24 编辑

@luruipeng1 @xjzsq

开个坑,每天看心情汉化第三方插件,先从Yanfly入坑,毕竟气质好
需要更新@的留个言,说不定哪天就弃坑了,日子总要过的呀
有什么建议可以留言给我

译者注:
1、只翻译官网页面官方介绍以及相应的语法支持,解释代码的坑以后再说
2、文件在http://yanfly.moe都可以下到,就不在放进去了
3、因为采用markdown写作,66rpg又不支持html代码,故格式有点乱,原文可见http://www.jianshu.com/p/5f56fa080afa

授权声明


YEP.34 Subclass
Requires the Class Change Core plugin. This plugin enables your actors to be able to have a secondary class as a subclass! Subclasses can carry over skills, skill types, traits, and stats! How they carry it over is entirely up to you!

这个插件需要Class Change Core的插件。这个插件可以让你的游戏角色拥有第二个职业作为副职业!副职业可以涵盖所有技能,技能类型,特性和状态等等!它们涵盖的方式将由你来决定!

Introduction
This plugin requires YEP_ClassChangeCore. Make sure this plugin is located under YEP_ClassChangeCore in the plugin list.

这个插件需要YEP_ClassChangeCore。请确保这个插件安装在YEP_ClassChangeCore的下面。

This class enables subclassing for your actors. Actors, when subclassing, can gain the benefits of the subclass, usually either by having access to the subclass skill set, weapons, and armor options. Also with this plugin, you can enable what kind of stat bonuses you can get by having a particular subclass enabled for the actor.

这个插件可以为你的角色开启副职业。当游戏角色获得副职业的时候,就可以获得相应的收益,可以开启例如副职业技能,武器,装备等等的选项。通过这个插件,你还可以为游戏角色获得额外的状态福利。

Notetags
You can use the following notetags to modify subclassing aspects.

你可以使用下面的标签来改变副职业属性。

Actor Notetag:
  1. <Subclass: x>
复制代码
Sets the actor’s default subclass to x.

设置游戏角色默认的副职业为x
  1. <Restrict Class: x>
  2. <Restrict Class: x, x, x>
  3. <Restrict Class: x to y>
复制代码
This particular actor cannot switch his or her primary class to class(es) x (to y). This does not apply to the subclass. The actor can still change to this class via event.

特殊的角色不能切换他们的主职业类型。这个不会应用到副职业。但是游戏角色依然可以通过事件来改变职业
  1. <Restrict Subclass: x>
  2. <Restrict Subclass: x, x, x>
  3. <Restrict Subclass: x to y>
复制代码
This particular actor cannot switch his or her subclass to class(es) x (to y). This does not apply to the primary class. The actor can still change to this subclass via event.

特殊的角色不能切换他们的副职业类型。这个不会应用到主职业。但是游戏角色依然可以通过事件来改变职业
Class Notetags:
  1. <Primary Only>
复制代码
This class can only be class changed to a primary class and nothing more.

这个职业只可以作为主职业。
  1. <Subclass Only>
复制代码
This class can only be class changed to a subclass and nothing more.

这个职业只可以作为副职业。
  1. <Subclass x Combo Name: text>
复制代码
If this class is the primary and the subclass is class ID x, then the class name displayed will be ‘text’. For example, if the class combination is Warrior/Wizard, the name can appear as Spellblade.

如果当前职业是主职业,并且副职业的ID是x,则主职业的名字将会显示为t所输入文本。例如如果职业组合是武士/魔法师,则可以显示为魔剑士。
  1. <Hero Combo Name: text>
  2. <Warrior Combo Name: text>
复制代码
If you choose to use the class’s name instead, you can write out the name of the class in place of Subclass x. If you have multiple classes with the same name, priority will be given to the class with the highest ID.

如果你想使用职业名字来替代ID,你可以在之前x的地方写下名字。如果有多个职业具有相同的名字,则优先赋予给ID值最高的职业。
Skill and Item Notetags:
  1. <Require Class: x>
  2. <Require Class: x, x, x>
  3. <Require Class: x to y>
复制代码
Replace x with the class’s ID. This skill/item can only be used by the listed class(es) x. This does not apply to enemies.

使用职业ID替代x。这个技能或者物品只可以被职业x使用。这个并不能应用于敌方。
  1. <Require Subclass: x>
  2. <Require Subclass: x, x, x>
  3. <Require Subclass: x to y>
复制代码
Replace x with the class’s ID. This skill/item can only be used by the listed subclass(es) x. This does not apply to enemies.

使用职业ID替代x。这个技能或者物品只可以被副职业x使用。这个并不能应用于敌方。
Plugin Commands
You can use these following plugin commands to change subclassing throughout the game!

你可以使用下面的插件命令来改变副职业选项

Plugin Command:
  1. ShowSubclass
复制代码
Shows the Subclass command in the Class Change Menu.

在职业菜单显示副职业选项
  1. HideSubclass
复制代码
Hides the Subclass command in the Class Change Menu.

在职业菜单隐藏副职业选项
  1. EnableSubclass
复制代码
Enables the Subclass command in the Class Change Menu.

打开主职业菜单的副职业选项
  1. DisableSubclass
复制代码
Disables the Subclass command in the Class Change Menu.

关闭主职业菜单的副职业选项
  1. ChangeSubclass x y
复制代码
Changes actor x’s subclass to y. Replace y with 0 to remove a subclass.

改变游戏角色x的副职业为y。你可以用0替代y来移除一个副职业。
Happy RPG Making!
作者: mengjing    时间: 2015-12-19 00:43
其实就不能做成JS发上来么...
作者: v2sam    时间: 2015-12-19 10:05
不整合到一个帖么,这样一下就冲散了
作者: 沧笙    时间: 2015-12-19 10:43
mengjing 发表于 2015-12-19 00:43
其实就不能做成JS发上来么...

主要是给大家做个参考,因为源文件每周都有可能改的
作者: 沧笙    时间: 2015-12-19 10:44
v2sam 发表于 2015-12-19 10:05
不整合到一个帖么,这样一下就冲散了

一个帖子我没法控制楼层,而且编辑器的折叠功能简直反人类,我放了几个进去后我自己就找不到了
会长有什么好建议吗
作者: xjzsq    时间: 2015-12-19 21:10
沧笙 发表于 2015-12-19 10:44
一个帖子我没法控制楼层,而且编辑器的折叠功能简直反人类,我放了几个进去后我自己就找不到了
会长有什 ...

首先感谢楼主@我,所以我已经把楼主的帖子放在了收藏夹的同一个文件夹下。
我建议楼主单开一个帖子,然后贴所有链接,这样既好管理,又不会出现楼层出问题的情况,唯一一点不足是...修改时要修改两个帖子,还要复制链接,比较麻烦,而且有点费论坛的资源...




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1