====== Card Passives ====== Card Passives work similar to Actions, but rather than executing when the card is played, they affect the properties of the card in various other ways. Just like Card Actions, Card Passives can be added to a Skill notetag in a similar format. Unlike Actions, however, they cannot be added to items. Passive Passive Passive ===== Core Engine ===== The list of Passives available in [[plugin-core|MYTH_CGC_CoreEngine]] are as follows: {{page>plugin-core#passives}} ===== Action Pack 2 ===== The list of Passives available in [[plugin-card-action-pack-2|MYTH_CGC_ActionPack2]] are as follows: {{page>plugin-card-action-pack-2#card_passives}} ===== Independent Card Variables ===== The list of Passives available in [[plugin-icv|MYTH_CGC_IndependentCardVariables]] are as follows: {{page>plugin-icv#card_passives}} ===== Card Fusion ===== The list of Passives available in [[plugin-card-fusion|MYTH_CGC_Fusion]] are as follows: {{page>plugin-card-fusion#card_passives}} ===== Card Summons ===== The list of Passives available in [[plugin-card-summons|MYTH_CGC_CardSummonsCore]] are as follows: ^ Card Passive Syntax ^ Description ^ | Start of Turn Field: Skill X | Replace X with a Skill ID.\\This works just like the Start of Turn Skill X Passive provided in Core Engine, but actives the skill when the card starts the turn in the Field Zone. | | Endof Turn Field: Skill X | Replace X with a Skill ID.\\This works just like the End of Turn Skill X Passive provided in Core Engine, but actives the skill when the card ends the turn in the Field Zone. | ===== Require ===== Anything after the word “Require” is evaluated as code. It can contain multiple expressions, but it is recommended to separate things into multiple Require passives for better clarity. The variable ‘user’ can be used to refer to the actor that the card belongs to. Because it is code, you could do something like: Require $gameSwitches.value(30) And require that the 30th Game Switch be set to ON for a card to be playable. The example image in the Card Passive Skill Notetags section requires that the actor playing the card have more than 2 cards in their hand, and that they’ve removed less than or equal to 7 total over the course of the battle. For more information about the **handSize** and **removedCards** variables, refer to [[damage-formula|Damage Formula]].