Welcome to PGMZ! My goal is to make it easy for everyone to find and share great plugins for creating amazing games. As a plugin developer myself, I'm excited to grow this community with all of you.
Dark Plasma Skill Cost Extension - DarkPlasma_SkillCostExtension.js
Plugin desc : Extending skill costs
License : MIT License
Author : DarkPlasma
Website : https://github.com/munokura/DarkPlasma-MZ-Plugins/blob/main/DarkPlasma_SkillCostExtension.js
Desc page : https://github.com/elleonard/DarkPlasma-MZ-Plugins/tree/release
Download Page : https://raw.githubusercontent.com/munokura/DarkPlasma-MZ-Plugins/main/DarkPlasma_SkillCostExtension.js
File name : DarkPlasma_SkillCostExtension.js
Help of plugin :
@target MZ @url https://github.com/elleonard/DarkPlasma-MZ-Plugins/tree/release @plugindesc Extending skill costs @author DarkPlasma @license MIT @help English Help Translator: munokura This is an unofficial English translation of the plugin help, created to support global RPG Maker users. Feedback is welcome to improve translation quality (see: https://github.com/munokura/DarkPlasma-MZ-Plugins ). Original plugin by DarkPlasma. Please check the latest official version at: https://github.com/elleonard/DarkPlasma-MZ-Plugins/tree/release ----- Version: 1.3.4 You can add costs to a skill's memo field by writing the following: <SkillCost: hp: (Fixed HP Cost) hpRate: (Percentage of Maximum HP Cost) mpRate: (Percentage of Maximum MP Cost) item: (Item ID): (Quantity) gold: (Money) variable: (Variable ID): (Numeric Value) > You can specify only one item. You can also specify multiple items for item and variable. Example 1: A skill that consumes one item ID1 and one item ID2. <SkillCost: item:1:1 item:2:1 > Example 2: A skill that consumes 5 points for variable ID1 and 1 point for variable ID3. <SkillCost: variable:1:5 variable:3:1 > About Cost Display in the Skill List This plugin does not display expanded costs for items or money. If you want to display the extension cost, use an additional plugin such as DarkPlasma_SkillCostExtensionView. Regarding the function that reflects consumption in the item count when selecting an item This plugin only reflects the number of items consumed by skills. To reflect the number of items consumed when using an item directly, use DarkPlasma_ConsumeItemImmediately. When using this plugin in conjunction with this plugin, place this plugin below DarkPlasma_ConsumeItemImmediately. When using with the following plugins, place them below them: DarkPlasma_ConsumeItemImmediately @param consumeImmediately @text Consumption reflected when input @desc When selecting a skill that consumes items or gold, the number of items/gold that subsequent members refer to will be the one after consumption. @type boolean @default true