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.
Param Transfer - ParamTransfer.js
Plugin desc : Parameter Conversion Plugin
License : MIT License
Author : Triacontane
Website : https://triacontane.blogspot.com
Desc page : https://github.com/triacontane/RPGMakerMV/tree/mz_master/ParamTransfer.js
Download Page : https://raw.githubusercontent.com/munokura/triacontane-MZ-plugins/refs/heads/main/ParamTransfer.js
File name : ParamTransfer.js
Help of plugin :
@target MZ @url https://github.com/triacontane/RPGMakerMV/tree/mz_master/ParamTransfer.js @plugindesc Parameter Conversion Plugin @author Triacontane @license MIT License @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/triacontane-MZ-plugins ). Original plugin by Triacontane. Please check the latest official version at: https://triacontane.blogspot.com ----- ParamTransfer.js Dynamic conversion of the following eight main parameters according to specified rules. You can reference the value of other parameters, or multiply or add values. ・Max HP (0) ・Max MP (1) ・Attack Power (2) ・Defense Power (3) ・Magic Power (4) ・Magic Defense (5) ・Agility (6) ・Luck (7) Please fill in the memo field of the database with characteristics according to each function. 1. Convert one parameter to another. You can create equipment in which Max HP and Max MP are temporarily swapped, or states in which Magic Power is converted to Attack Power. <PT0:1> # Max HP value is overwritten with Max MP. <PT1:0> # Max MP value is overwritten with Max HP. *See the above description for numbers. (Same applies hereafter.) 2. Multiply a parameter by an arbitrary value. You can use the control character ¥v[n] and JavaScript expressions for the multiplier. <PTRate0:¥v[1]+50> # Maximum HP is multiplied by ”variable[1] value + 50%.” You can also reference the target battler’s information by entering ”battler” in the formula. <PTRate2:100 + battler.tp> # Attack power varies based on current TP. (100 TP doubles attack power) 3. Add a value to the parameter. <PTAdd4:50> # Magic power is increased by 50. The control character ¥v[n] and JavaScript expressions can be used for the additional value. The conversion only applies to base parameters, not to equipment or buffs. This script retrieves the actor’s parameters before conversion. $gameActors.actor(n).paramRealBase(m); n: Actor ID m: Parameter ID This plugin does not have plugin commands. Terms of Use: You may modify and redistribute this plugin without permission from the author, and there are no restrictions on its use (commercial, 18+, etc.). This plugin is now yours.