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.
LL Menu Screen Base - LL_MenuScreenBase.js
Plugin desc : Common base plugin for menu screen standing pictures.
License :
・Copyright: Retained
・Commercial Use: Allowed
・Modification: Allowed
・Redistribution: Prohibited (This does not apply to works made using the material.)
・Details: See Download Page / In-plugin documentation
Author : Lulu's Church
Website : https://nine-yusha.com/
Desc page : https://nine-yusha.com/plugin-menuscreen/
File name : LL_MenuScreenBase.js
Help of plugin :
* @target MZ * @plugindesc Common base plugin for menu screen standing pictures. * @author Lulu's Church * @url https://nine-yusha.com/plugin-menuscreen/ * * @help LL_MenuScreenBase.js * * This is the common base plugin for menu screen standing pictures. * Define actor-specific standing picture lists here. * * You can define multiple standing pictures with state, switch, and variable * conditions: * ・Switch1 ON + Poison state * ・Variable1 >= 10 + Poison state * ・Switch1 ON * ・Poison state * ・Normal picture without conditions (required at minimum) * * Switching by remaining HP%: * First, create a list with "HP%" = "100". * Copy it and set "HP%" = "50" to make another list. * When HP is below half, the "50" list picture is displayed. * Multiple pictures can be defined for different HP%. * * Display priority order: * 1. Matches state ID, switch ID, and variable condition * 2. Matches state ID and switch ID * 3. Matches state ID and variable condition * 4. Matches state ID only * 5. Matches switch ID and variable condition * 6. Matches switch ID only * 7. Matches variable condition only * 8. No conditions set (state, switch, variable empty) * (Among these, the lowest HP% takes priority) * * Integration with battle plugin: * If LL_StandingPictureBattle is installed, * it can integrate directly with the battle standing picture list. * * There are no plugin commands. * * Terms of use: * ・No copyright notice required. * ・No report needed for use. * ・Free for commercial and non-commercial. * ・No restriction for adult works. * ・You may modify freely for your game. * ・Redistribution as plugin material (incl. modified) prohibited. * * Author: Lulu's Church * Date: 2022/3/7 * * @param menuPictures * @text Standing Picture List * @desc Define standing pictures shown on the menu screen. * You can define multiple for specific states or switches ON. * @default [] * @type struct<menuPictures>[] * * @param onSpbPlugin * @text Battle Plugin Link * @desc *This item is not used * * @param onSpbPluginEnable * @text Link Standing List * @desc Link with LL_StandingPictureBattle standing list. * If ON, this plugin’s list is ignored. * @default false * @type boolean * @parent onSpbPlugin