Welcome to PGMV! 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://triacontane.blogspot.com/
Download Page : https://raw.githubusercontent.com/munokura/triacontane-MV-plugins/refs/heads/main/ParamTransfer.js
File name : ParamTransfer.js
Help of plugin :
@url https://triacontane.blogspot.com/ @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-MV-plugins ). Original plugin by Triacontane. Please check the latest official version at: https://triacontane.blogspot.com ----- The following eight main parameters are converted: ・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 Note field of the database with characteristics according to each function. 1. Convert a parameter to another parameter. You can create equipment that temporarily swaps Max HP and Max MP, or a state 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 the 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. Control characters ¥v[n] and JavaScript expressions can be used in the addition. The base parameters are converted, and do not include those added by equipment or buffs. This plugin does not have a plugin command. 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.