Equip Core (YEP)

From Yanfly.moe Wiki
Jump to navigation Jump to search

Welcome to the wiki! This is where you can find resources from Yanfly.moe, Ækashics.moe,
VisuStella, Caz Wolf, Fallen Angel Olivia, Atelier Irina, and other affiliated content creators.



Download

System

This is a plugin created for RPG Maker MV.

For help on how to install plugins, click here.

For help on how to update plugins, click here.

Got errors with your RPG Maker MV plugin? Click here.


Masterarbeit Writer

Extension Plugins

The following plugins are Extension Plugins that require this plugin as its Parent Plugin.

Place the following plugins below this plugin located in the Plugin Manager if you plan on using them.

Yanfly Engine Plugins

This plugin is a part of the Yanfly Engine Plugins library.


Introduction

This plugin alters various aspects regarding equipment handling. The changes
are as listed:

1. Scene_Equip
Scene_Equip has been modified to look differently. This is primarily done to
make the main menu scenes look uniform and keep everything familiar for
players. Furthermore, the command window has been adjusted to be better fit
for extension plugins in the future that may add commands to the command
window and/or the scene.

2. Equipment Type Handling
Characters will no longer have one universal equipment slot setting. Now,
different classes can use different setups by simply adding a few notetags
to the class notebox. Furthermore, equipment types in the past with matching
names would be treated as separate types. Now, equipment types with matching
names will be treated as the same type.

3. Equipment Rulings
Now, certain equipment types can or cannot be removed. For example, this
plugin can set it so that the Weapon slot must always have something
equipped and that the player cannot manually leave it empty (the game, on
the other hand, can achieve this through events). In addition to that,
optimizing equipment can be restricted for certain equipment types, which
are better off being decided manually (such as accessories).

4. Parameter Control
Equipment parameters can now to be adjusted through notetags to have a large
value or customized value (through code). This allows for equipment to no
longer be static items, but instead, equipment can now be dynamic and may
change over the course of the game.

Note: Item Core Users
For users using the Item Core plugin and the new Item Scene layout option,
the Item Info Window is now added to the Equip Scene. Pressing Left/Right
will toggle the stat comparison window with the info window. Pressing Tab on
the keyboard will also switch them as well as clicking on those windows.

Notetags

NotetagsMV.png

RPG Maker MV's editor is unable to allow for custom traits/properties that a game dev may wish to associate with a database object, event, map, etc. Notetags are used to work around such limitations by allowing the game dev to tag certain traits/properties using specific Notetags declared by the related plugin.

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

---

You can use the following notetags to change a class's equipment setup.

Class Notetags:
  <Equip Slot: x>      Example: <Equip Slot: 1, 2, 3, 4, 5, 5, 5, 5>
  <Equip Slot: x, x, x>
  Changes this class's equipment slots to x. Using repeating numbers makes
  it so that equipment type is duplicated and that the class can equip
  multiple equipment of that type. To find the Equipment Type ID, go to your
  database's Types tab and look for the ID type.

  If you don't like the above method for setting equipment slots, you can
  use the following notetags instead:

  <Equip Slot>         Example: <Equip Slot>
   string                        Weapon
   string                        Armor
   string                        Accessory
   string                        Accessory
  </Equip Slot>                 </Equip Slot>
  Replace 'string' with the Equipment type's name entry. This is case
  sensitive so if the string does not match a name entry perfectly, the slot
  will not be granted to the class. Multiple copies of a name entry would
  mean the class can equip multiple equipment of that type. Everything works
  the same as the previous notetag.

Weapon and Armor Notetags:
  <stat: +x>
  <stat: -x>
  Allows the piece of weapon or armor to gain or lose x amount of stat.
  Replace "stat" with "hp", "mp", "atk", "def", "mat", "mdf", "agi", or
  "luk" to alter that specific stat. This allows the piece of equipment
  to go past the editor's default limitation so long as the maximum value
  allows for it. Changes made here alter the base parameters.

Lunatic Mode

JavaScript.png

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.

  <Custom Parameters>  Example: <Custom Parameters>
   code                          atk = $gameVariables.value(1);
   code                          mat = atk / 2;
   code                          all = $gameParty.members().length;
   code                         </Custom Parameters>
  </Code Parameters>
  Allows for parameters to have custom rates adjusted by code. The following
  parameters are defined: 'maxhp', 'maxmp', 'atk', 'def', 'mat', 'mdf',
  'agi', 'luk', and 'all'. The 'all' parameter will affect all parameters.
  Changes made here do not alter the base parameters, but instead, are added
  onto the base parameters.

Tips & Tricks

The following Tips & Tricks effects use this plugin:

Changelog

Version 1.18:
- Bypass the isDevToolsOpen() error when bad code is inserted into a script
call or custom Lunatic Mode code segment due to updating to MV 1.6.1.

Version 1.17:
- Updated for RPG Maker MV version 1.5.0.

Version 1.16:
- Lunatic Mode fail safes added.

Version 1.15:
- Optimization update.

Version 1.14:
- Added an actor refresh upon listing the various equip slots to ensure that
all slots are updated in case any cache'd instances may have been missed.

Version 1.13:
- Fixed a bug that caused a crash for those who weren't using the Item Core
in addition to this plugin.

Version 1.12:
- Added optional functionality. Leaving 'Finish Command' empty will remove
it from being added to the command list.

Version 1.11:
- Updated for RPG Maker MV version 1.1.0.

Version 1.10:
- Fixed a bug that did not clear changes made to an actor's stats after
having unequipped them and then switching actors.

Version 1.09:
- For users using the Item Core plugin and the new Item Scene layout option,
the Item Info Window is now added to the Equip Scene. Pressing Left/Right
will toggle the stat comparison window with the info window. Pressing Tab on
the keyboard will also switch them as well as clicking on those windows.

Version 1.08:
- Fixed a bug where changing an actor's equips would revive them if dead.

Version 1.07:
- Fixed a bug with 'Optimize' and 'Remove All' not refreshing windows.

Version 1.06:
- Fixed a bug with 'Change Equipment' event where it would only change the
slot of the marked equipment rather than the slot type.

Version 1.05:
- Fixed an issue where unequipping items can kill actors.

Version 1.04a:
- Fixed a bug and rewrote the initializing equipment process.

Version 1.03:
- Fixed an bug that resulted in null object errors.

Version 1.02:
- Fixed an issue that did not keep HP and MP rates the same when using the
optimize and clear commands.

Version 1.01:
- Fixed a bug that did not update the stats properly when compared.

Version 1.00:
- Finished plugin!