//============================================================================= // Yanfly Engine Plugins - Item Core Extension - Item Upgrade Slots // YEP_X_ItemUpgradeSlots.js //============================================================================= var Imported = Imported || {}; Imported.YEP_X_ItemUpgrades = true; var Yanfly = Yanfly || {}; Yanfly.IUS = Yanfly.IUS || {}; Yanfly.IUS.version = 1.10; //============================================================================= /*: * @plugindesc v1.10 (Requires YEP_ItemCore.js) Allows independent items to * be upgradeable and gain better stats. * @author Yanfly Engine Plugins * * @param Default Slots * @type number * @min 0 * @desc The default amount of slots items can be upgraded. * @default 3 * * @param Slot Variance * @type number * @desc The default slot variance for items with slots. * @default 1 * * @param Upgrade Command * @desc Command text for upgrading the selected item. If you don't * wish for this to appear, keep this blank. %1 - Item Name * @default Upgrade %1 * * @param Show Only * @type boolean * @on YES * @off NO * @desc The Upgrade Command will only show if item is upgradeable. * NO - false YES - true * @default true * * @param Slots Available * @desc Text used for amount of upgrade slots available. To hide * this from the info window, leave this blank. * @default Slots Available * * @param Show Slot Upgrades * @type boolean * @on YES * @off NO * @desc Shows what upgrades applied to slots in info window. * NO - false YES - true * @default true * * @param Slot Upgrade Format * @desc This is the text format used before a shown slot upgrade. * %1 - Slot Number %2 - Item Icon and Name * @default \}Slot%1: %2\{ * * @param Default Sound * @type file * @dir audio/se/ * @require 1 * @desc This is the default sound played when using an * item upgrade. * @default Heal2 * * @help * ============================================================================ * Introduction * ============================================================================ * * This plugin requires YEP_ItemCore. * Make sure this plugin is located under YEP_ItemCore in the plugin list. * * This plugin adds Item Upgraders, where you can select the base item and then * apply the appropriate Item Upgraders onto it to boost its parameters. * * ============================================================================ * Notetags * ============================================================================ * * The following notetags can be used to modify item upgrades. * * Weapon, and Armor Notetags * * This sets the number of times an item can be upgraded instead of the * default amount defined in the database. * * * This makes it so that there is a random variance for the number of slots * provided through the item. If this notetag isn't used, it will go by the * setting in the parameters. * * * Changes the upgrade sound played to 'filename'. If this notetag isn't * used, the 'Default Sound' parameter sound will be used instead. * * * effect * effect * * These are the effects applied (in the order they're listed). Refer to the * 'Upgrade Effects List' in the next section to have those effects applied * to the upgraded item. * * * * *