User Tools

Site Tools


plugin-card-summons

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
plugin-card-summons [2024/10/15 05:58] – [Parameters] isiahgamesplugin-card-summons [2024/12/18 18:29] (current) isiahgames
Line 1: Line 1:
-//**This page is a work in progress, and will be updating periodically.**//+{{https://img.itch.zone/aW1nLzE4NzczOTY5LnBuZw==/original/Mglsyo.png?nolink&690}} 
 + 
 +//**This page is a work in progress, and will be updating periodically. The plugin is still in pre-release.**//
  
 This plugin adds a new Zone to battles called the Field, and with it come several new features. This plugin adds a new Zone to battles called the Field, and with it come several new features.
Line 170: Line 172:
 The Stat Display will use the color of the first condition that returns true in the list. The Stat Display will use the color of the first condition that returns true in the list.
  
 +===== Summons Scope =====
 +
 +Base RPG Maker allows you to select the Scope of a skill, which determines who can be targeted for it. The addition of Creatures complicates this, and so you should work both with RPG Maker's Scope menu and the system below in tandem to get the scope you want.
 +
 +By default, all skills can target both Battlers and Creatures, and you can modify this with the following notetags:
 +
 +    <Card Summons Scope>
 +    Battler
 +    </Card Summons Scope>
 +
 +    <Card Summons Scope>
 +    Creature
 +    </Card Summons Scope>
 +
 +In addition, scope can be made to include Battlers or individual Creatures when certain conditions are met, like so:
 +
 +    <Card Summons Scope>
 +    if [expression]
 +    Creature
 +    </Card Summons Scope>
 +
 +These if expressions are similar to the If Action in the Core Engine. They evaluate a code expression.
 +
 +However, in this condition the user has access to the variable "target", which represents any given Creature or Battler, and can be used to evaluate if that specific target is valid for the scope.
 +
 +For example:
 +
 +    <Card Summons Scope>
 +    Battler
 +    if target.hp >= target.mhp
 +    Creature
 +    </Card Summons Scope>
 +
 +In the above example, a skill could target the opponent Battler, and any Creature whose HP is greater than or equal to their Max HP - any Creature who hasn't taken damage.
 +
 +Creatures that cannot be targeted will be greyed out during selection.
 +
 +Another example:
 +
 +    <Card Summons Scope>
 +    if target.friendsUnit().fieldCreatures().count == 0
 +    Battler
 +    if user.mp < user.mmp
 +    Creature
 +    </Card Summons Scope>
 +
 +The above example could target the opponent Battler only if there are no Creatures on their side of the field. It also can only target Creatures if the user's MP is not full. If neither condition is met there are no valid targets.
 +
 +===== Card Actions =====
 +
 +|  <code>Select X from unitName Field</code>  |Replace 'X' with a number or game variable, and replace 'unitName' with 'Ally', 'Opponent', 'Party', or 'Troop'. This activates the respective Field to select the specified number of Cards.  |
 +|  <code>Select X Type typeName from unitName Field</code>  |Replace 'X' with a number or game variable, and replace 'unitName' with 'Ally', 'Opponent', 'Party', or 'Troop'. Replace 'typeName' with a Card Type. This activates the respective Field to select the specified number of Cards, only being able to select the specified Type.  |
 +|  <code>Use Skill X on Selected</code>  |Replace 'X' with a number or game variable. This performs a skill matching the ID of X on any Creatures selected using the above Select actions, using the Battler performing this Card Action as the subject for damage calculation.  |
 +|  <code>Battle Log: message</code>  |Replace 'message' with text. This will push that text to the Battle Log.  |
 ===== Enemy Status Window ===== ===== Enemy Status Window =====
  
Line 240: Line 296:
 | ::: | **Condition** | An expression that evaluates to true/false. Use battler.statName, value, or originalValue. | | ::: | **Condition** | An expression that evaluates to true/false. Use battler.statName, value, or originalValue. |
  
 +^  Field Skill Window  ^ This is the window that opens when you select a Creature or Field Card to use its Field Skills. ^
 +| **Static Position** | The default position of the window. |
 +| **Follow Conditions** | Determines whether the Field Skill Window follows the currently selected tile on the Field at an offset. If false, it will use the Static Position instead. |
 +| **Follow Offset** | Determines the offset value of the window relative to the selected tile. Ignore if Follow Conditions is false. |
  
 +^ Enemy Status Window ^ This is the window that displays the Enemy's status. ^^
 +| **Display Enemy Mode** | Determines how the Enemy Status Window visually displays the Enemy. Options are: ||
 +| ::: | **Mugshot** | This takes a cropped section of the Enemy sprite and puts it in the corner of the window in the same way the Actor Status Window crops the Actor's Face image. |
 +| ::: | **Full Image** | This shows the entire Enemy sprite inside the window, behind all text components. |
 +| ::: | **None** | This does not display the Enemy sprite at all within the Window. |
 ====== Version History ====== ====== Version History ======
  
plugin-card-summons.1728964717.txt.gz · Last modified: 2024/10/15 05:58 by isiahgames