Both sides previous revisionPrevious revisionNext revision | Previous revision |
plugin-icv [2024/08/13 20:14] – [Modifying Card Cost] banerjeesw | plugin-icv [2024/08/13 20:24] (current) – banerjeesw |
---|
{{https://img.itch.zone/aW1nLzE1NDg0NzcyLnBuZw==/original/5tohSk.png?nolink&690}} | {{https://img.itch.zone/aW1nLzE1NDg0NzcyLnBuZw==/original/5tohSk.png?nolink&690}} |
| |
This plugin gives cards a new array of variables called Var, which can be accessed through code (for damage formulas and the like) and can also be used in place of numbers in other Card Actions. | **MYTH_CGC_IndependentCardVariables** is a plugin gives cards a new array of variables called Var, which can be accessed through code (for damage formulas and the like) and can also be used in place of numbers in other Card Actions. |
| |
Var can contain as many variables within it that you need. To access them in card actions, use ''Var(index)'' where ''index'' is any number. By default all variables inside Var are set to 0. | Var can contain as many variables within it that you need. To access them in card actions, use ''Var(index)'' where ''index'' is any number. By default all variables inside Var are set to 0. |
| |
**Note** This plugin is compatible with Card Game Combat 1.5.7, but some features will not work - namely, the Card Sprite will not visually change to reflect description or cost changes as a result of Var values changing. Card Game Combat 1.6.0 or higher will be required for these features. | This plugin is currently Patreon Only. |
| |
{{https://img.itch.zone/aW1hZ2UvMjMxNzQxNC8xMzc3NzQwNy5naWY=/347x500/TWKet7.gif}} | **Current Version: 1.1.0** |
| |
| {{ https://img.itch.zone/aW1hZ2UvMjMxNzQxNC8xMzc3NzQwNy5naWY=/347x500/TWKet7.gif?nolink }} |
| |
===== Parameters ===== | ===== Parameters ===== |
===== Card Passives ===== | ===== Card Passives ===== |
| |
| <code>Var(X) init Y</code> | This will set the initial value of Var(X) to the number specified in Y.\\ All values initialize at 0 by default, and this overrides that behavior for this Var index of all cards belonging to this skill.\\ \\ When Var values are reset they return to their initial values. | | | <code>Var(X) init Y</code> | This will set the initial value of Var(X) to the number specified in Y.\\ All values initialize at 0 by default, and this overrides that behavior for this Var index of all cards belonging to this skill.\\ \\ When Var values are reset, either through the "Reset Var after battle?" plugin parameter or through functions listed below, they return to their initial values. | |
| |
===== Card Actions ===== | ===== Card Actions ===== |
All Skill [skillID] Var(X) mod [+/-]Y</code> | These Card Actions modify the Var of all cards belonging to that actor of the specified Skill ID. | | All Skill [skillID] Var(X) mod [+/-]Y</code> | These Card Actions modify the Var of all cards belonging to that actor of the specified Skill ID. | |
| <code>All Skill [skillID] Var(X) set Y in [zoneName] | | <code>All Skill [skillID] Var(X) set Y in [zoneName] |
All Skill [skillID] Var(X) mod [+/-]Y in [zoneName]</code> | These Card Actions modify the Var of all cards belonging to that actor's specific zone.\\ Replace [zoneName] with "Deck", "Discard" or "Hand". | | All Skill [skillID] Var(X) mod [+/-]Y in [zoneName]</code> | These Card Actions modify the Var of all cards belonging to that actor's specific zone.\\ \\ Replace [zoneName] with "Deck", "Discard" or "Hand". | |
| <code>Selected Var(X) set Y | | <code>Selected Var(X) set Y |
Selected Var(X) mod [+/-]Y | Selected Var(X) mod [+/-]Y |
===== Modifying Card Cost ===== | ===== Modifying Card Cost ===== |
| |
Use the following notetag:''<[MP/TP/HP] cost [+/-/=] var(X)>'' | Use the following notetag: ''<[MP/TP/HP] cost [+/-/=] var(X)>'' |
| |
This takes the current MP/TP/HP cost and adds/subtracts/sets equal to the variable of index X in Var. Eg. | This takes the current MP/TP/HP cost and adds/subtracts/sets equal to the variable of index X in Var. Examples: |
| |
''<MP cost + var(0)>'' | ''<MP cost + var(0)>'' |