YEP.90 – Equip Battle Skills – RPG Maker MV

Yanfly Engine Plugins is a plugin library made for RPG Maker MV, a wonderful piece of software to help you make that role playing game of your dreams. You can find out more about RPG Maker MV here.

You can grab the plugin here:

English Mirror

This plugin creates a new gameplay mechanic where players have to choose which skills to bring into battle. They can select what skills to bring from the skill menu. In addition to being able to do that, equipped skills can also add bonuses such as stats and/or passive states.

Note: During Battle Test, equip skill slots will be disabled for the sake of better battle testing control.

ATTENTION: In real playthroughs, this plugin removes ALL skill types in battle except for “Skills” which have only the equipped skills within it. This is NOT a bug. If skill types remained in battle, their skills would still be selectable, which would defeat the purpose of this plugin.


Introduction


Please wait while you are redirected...or Click Here if you do not want to wait.

This plugin creates a new gameplay mechanic where players have to choose which skills to bring into battle. They can select what skills to bring from the skill menu. In addition to being able to do that, equipped skills can also add bonuses such as stat stats and/or passive states.

Note: During Battle Test, equip skill slots will be disabled for the sake of better battle testing control.


Notetags


The following notetags adjust various aspects about equippable battle skills.

Actor Notetag:
<Starting Skill Slots: x>
This sets the actor’s starting skill slots to x amount. This value will not allow the actor to bypass the Maximum Skills limit.

Skill Notetags:
<Equip stat: +x>
<Equip stat: -x>
Replace ‘stat’ with ‘HP’, ‘MP’, ‘ATK’, ‘DEF’, ‘MAT’, ‘MDF’, ‘AGI’, or ‘LUK’ to have that stat increase or decrease by x amount while the skill is equipped for battle.

<Equip State: x>
<Equip State: x, x, x>
<Equip State: x through x>
This causes the actor to be affected by state x while the skill is equipped for battle.

<Unequippable>
This skill cannot be equipped no matter what.

<All Access Equippable>
This makes the skill equippable whether the actor has the available skill type needed for the skill or not.

<Access Only Equippable>
This makes the skill equippable only for actors with the specific skill type. Actors without access to the skill type cannot equip it.

Class, Skill, Weapon, Armor, and State Notetags:
<Equip Skill Slots: +x>
<Equip Skill Slots: -x>
This increases or decreases the amount of skills the actor can equip for battle by x. This value will not allow the actor to bypass the Maximum Skills Limit.


Plugin Commands


You can use the following plugin commands to increase or decrease the amount of battle slots for specific actors.

Plugin Command:

IncreaseActorBattleSlots 3 by 4
– This will increase actor 3’s number of battle skill slots by 4. The total amount of battle skill slots cannot go beyond the ‘Maximum Skills’ plugin parameter.

DecreaseActorBattleSlots 5 by 2
– This will decrease actor 5’s number of battle skill slots by 2. The total amount of battle skill slots cannot go beneath 1.


Lunatic Mode – New JavaScript Functions


For those with JavaScript experience, you can use the following newly added functions from this plugin within script calls or Lunatic Mode notetags.

JavaScript Function:

actor.clearBattleSkillMaxPlus()
– This clears any bonus skill equip slots available for the actor.

actor.getBattleSkillMaxPlus()
– This returns the amount of bonus equip slots available for the actor.

actor.setBattleSkillMaxPlus(x)
– This sets the amount of available bonus equip slots for the actor to x. This value can go negative, but it cannot force the actor to have less than 1 available equip slot. This can go positive but it cannot force the actor to have more than the ‘Maximum Skills’ plugin parameter value.

actor.increaseBattleSkillSlots(x)
– This will raise the maximum amount of equip skill slots for the actor to x but cannot go beyond the ‘Maximum Skills’ plugin parameter value.

actor.decreaseBattleSkillSlots(x)
– This will lower the maximum amount of equip skill slots for the actor to x but cannot go under a minimum of 1 battle equip slot.

actor.maxBattleSkills()
– This returns the amount of battle skills the actor can equip currently.

actor.battleSkills()
– This returns an array of the skills in their object form that the actor has equipped currently.

actor.battleSkillsRaw()
– This returns an array of the skills in their ID form that the actor has equipped currently.

actor.equipSkill(id, slot)
– This will cause the actor to equip skill ID into the specific slot. This will bypass whether or not the actor can equip the skill or not.


Happy RPG Making!