【汉化】Weapon Swap System plugin for RPG Maker MV

image

This is a RPG Maker MV plugin that will give your game's actors the function to swap weapons in the middle of the fight. Up to one of each weapon type can be equipped at a time and they can be switched out each turn. Swapping weapons can let the player team adapt to certain situations better or giving them the ability to hit certain weapon weaknesses in battle.
这是一个RPG Maker MV插件,它将为你的游戏玩家提供在战斗中交换武器的功能。每种武器类型中最多可以配备一种,每次都可以关闭它们。交换武器可以让玩家团队更好地适应某些情况,或让他们有能力在战斗中击中某些武器弱点。

image

This plugin changes both something inside battle and outside of battle. The Attack command option can now have the weapon being used swapped by pressing left or right (if that option is turned on). Some skills can also automatically switch to a weapon when it starts being used.
这个插件改变了战斗内和战斗外的东西。攻击命令选项现在可以通过向左或向右按​​下(如果打开该选项)来交换武器。一些技能在开始使用时也可以自动切换到武器。

image

The other change is in the Equip menu. Instead of having only a single weapon slot, there is now one weapon slot for each of the weapon types. Each actor can equip a weapon of that type into those slots if they can use those weapon types.
另一个更改是在“设备”菜单中。现在每种武器类型都有一个武器插槽,而不是只有一个武器插槽。如果他们可以使用这些武器类型,每个角色都可以装备那种类型的武器。

There will be a warning though. This feature does not work with the Dual Wield system so it is disabled in order to be able to swap weapons.
警告。此功能不适用于Dual Wield系统,因此它被禁用以便能够交换武器。

Some plugin parameters require your attention. Please read through and configure them to customize weapon swapping for your game.

Plugin Parameters

**Battle Control: **

image

Swap Command: How command for how Weapon Swap is displayed
交换命令:如何显示武器交换

Show Command?: Show the Weapon Swap Command in the Actor Command Window? Turn this on if you are making your game for mouse control because there is no other way to switch weapons without using the arrow keys.
显示命令:在Actor命令窗口中显示武器交换命令?如果您正在制作用于鼠标控制的游戏,请启用此功能,因为没有其他方法可以在不使用箭头键的情况下切换武器。

Use Arrow Swapping?: Use Arrow Keys to control weapon swapping? If on, then pressing left or right will switch the weapon currently equipped in the order of the Weapon Types list in the Database's Types tab.
使用箭头交换:使用箭头键来控制武器交换,如果选中,则向左或向右按​​将在数据库的“类型”选项卡中按照“武器类型”列表的顺序切换当前装备的武器。

Show Swap Arrows?: Shows arrow sprites next to the Attack command to tell the player that pressing Left or Right here can have an effect.
显示交换箭?:显示“Attack”命令旁边的箭头精灵,告诉玩家此处按“向左”或“向右”可以产生效果。

Battle Test Weapons: During battle test, equip each party member with one of each weapon type. The weapon selected will be the first available one in the database unless they already have that weapon equipped.
战斗测试武器:在战斗测试期间,为每个队员配备每种武器类型中的一种。选择的武器将是数据库中第一个可用的武器,除非他们已经装备了这种武器。

Visuals:

image

Show Battle Icons: Show icons of currently equipped weapons in battle? This will show the icon next to the Attack command, making it easier for the player to know which weapon the actor has currently equipped.
显示战斗图标:在战斗中显示当前装备的武器图标,这将显示攻击命令旁边的图标,使玩家更容易知道角色当前装备的武器

image

Show Battle Action: Show animation of actor switching weapons? This is for sideview only. When weapon switching is done during Attack switching, the actor will perform an attack motion to display the weapon it is currently equipped with.
显示战斗行动:显示角色切换武器的动画?这仅适用于侧视。在攻击切换期间完成武器切换时,角色将执行攻击动作以显示其当前配备的武器。

image

Extend Equip Stat Window: If you are using Yanfly's Equip Core, this will extend the stat compare window to have Hit Accuracy, Evasion, and Critical.
扩展装备统计窗口:如果您正在使用Yanfly的装备核心,这将扩展统计命中准确度,或者致命一击。

Notetags

Skill and Item Notetags:

<Switch to Weapon: x>
<Switch to Weapon: text>

When the actor uses this skill or item, the actor will switch to this weapon if it is equipped when the skill cost is paid. x is the weapon type ID and text is the weapon name. If you use the weapon name, type it out exactly since it is case sensitive. This notetag does not make the weapon a requirement. To make it a requirement, use the database's "Required Weapon" dropdown lists to enforce the requirement.
当角色使用此技能或物品时,如果在支付技能成本时装备,则角色将切换到此武器。x是武器类型ID,文本是武器名称。如果您使用武器名称,请准确输入,因为它区分大小写。这个notetag并不是武器的必需品。要使其成为一项要求,请使用数据库的“必需武器”下拉列表来强制执行该要求。

Skill Notetags:

<Require Any Weapon>

Requires any kind of weapon to be equipped in order to use it.
需要装备任何类型的武器才能使用它。

<Require Weapon Types: x>
<Require Weapon Types: x, x, x>

Insert multiple x to add more weapon types. All of the weapon types must be equipped in order for this skill to be used.
插入多个x以添加更多武器类型。必须配备所有武器类型才能使用此技能。

Action Sequence

image

If you are using YEP Battle Engine Core, there is an action sequence that
lets you switch weapons for the actor in the middle of an action sequence:
如果您正在使用YEP Battle Engine Core,则会有一个动作序列,
可让您在动作序列中间为actor切换武器:

Weapon Swap: targets, x
or
Weapon Swap: targets, text
or
Swap Weapon: targets, x
or
Swap Weapon: targets, text

Use x with the weapon type ID in the Database Type tab. Or use text and replace it with the name of the weapon type. If you use the name of the weapon type, type it out exactly as it is spelled because it is case sensitive.
在“数据库类型”选项卡中将x与武器类型ID一起使用。或者使用文本并将其替换为武器类型的名称。如果您使用武器类型的名称,请将其完全拼写为拼写,因为它区分大小写。

WARNING!!!

This plugin is made for RPG Maker MV versions 1.6.1 and below. If you update RPG Maker MV past that and this plugin breaks, I am NOT responsible for it.

Compatibility

This plugin is compatible with the following plugins:

    • YEP Core Engine
    • YEP Battle Engine Core
    • YEP Action Sequence Packs 1, 2, 3
    • YEP Animated Sideview Enemies
    • YEP Buffs & States Core
    • YEP Damage Core
    • YEP Element Core
    • YEP Item Core
    • YEP Equip Core

Place this plugin under those in the Plugin Manager list.

Terms of Use

  1. These plugins may be used in free or commercial games.
  2. 'Fallen Angel Olivia' must be given credit in your games.
  3. You are allowed to edit the code.
  4. Do NOT change the filename, parameters, and information of the plugin.
  5. You are NOT allowed to redistribute these Plugins.
  6. You may NOT take code for your own released Plugins without credit.

Change Log History

  • Sep 8 2018: Added Battle Test Weapons plugin parameter
  • Sep 9 2018: New notetags added: <Require Any Weapon> and <Require Weapon Types: x> and added new parameters: Extend Equip Stat Window
  • Sep 11 2018: Bug fix for Optimize and Clear weapon. Should be fixed now. Added a new parameter: Show Swap Arrows?
  • Sep 18 2018: Add fail safe: battle test will not provide weapon types that don't have weapons made for them and give you a warning.
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,033评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,725评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,473评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,846评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,848评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,691评论 1 282
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,053评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,700评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,856评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,676评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,787评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,430评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,034评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,990评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,218评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,174评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,526评论 2 343

推荐阅读更多精彩内容