Both sides previous revisionPrevious revisionNext revision | Previous revision |
plugin-card-action-pack-2 [2024/06/09 13:39] – [Middle Modifiers] banerjeesw | plugin-card-action-pack-2 [2024/06/09 14:17] (current) – [Card Passives] banerjeesw |
---|
===== Card Passives ===== | ===== Card Passives ===== |
| |
| <code>Prevent [cardAction]</code> | | | | <code>Prevent [cardAction]</code> | This prevents a card from being the target of a given Card Action.\\ <code>Prevent Discard</code>This card cannot be selected for the Discard action\\ <code>Prevent Move to Discard</code>This card cannot be moved to the discard zone through any means\\ <code>Prevent Move</code>This card cannot be moved from its starting zone.\\ Specially implemented is: <code>Prevent Perma Remove</code>This card can be removed from play but it will return at end of battle like a normal Remove. See "Perma" Modifier for details below. | |
| <code>Transform This into X if [expression]</code> | | | | <code>Transform This into X if [expression]</code> | Replace X with a skill ID and expression with code that evaluates to true or false.\\ \\ This passive transforms the card into a card of the specified Skill ID if the expression is true.\\ \\ The condition works just like the Require passive, but it's evaluated whenever there is a change in game state, as long as this card is in the hand.\\ \\ <code>Transform this into 5 if user.handSize > 7</code> This will transform the card into a card with the Skill ID 5 if the user's hand has more than 7 cards. | |
| |
===== Modifiers ===== | ===== Modifiers ===== |
Modifiers are keywords you can add to a Card Action to change how it works. If Card Actions are verbs, Modifiers are adjectives and adverbs. You can add a Modifier to nearly any Card Action and its effect will be applied to that Card Action. | Modifiers are keywords you can add to a Card Action to change how it works. If Card Actions are verbs, Modifiers are adjectives and adverbs. You can add a Modifier to nearly any Card Action and its effect will be applied to that Card Action. |
| |
There are 3 types of Modifiers - Start, Middle, and End Modifiers. | There are 3 types of Modifiers - **Start**, **Middle**, and **End** Modifiers. |
| |
Start Modifiers need to be placed at the beginning of the Card Action, End Modifiers need to be placed at the end of the Card Action, and Middle Modifiers should be placed somewhere in the middle. | **Start** Modifiers need to be placed at the beginning of the Card Action.\\ **End** Modifiers need to be placed at the end of the Card Action.\\ **Middle** Modifiers should be placed somewhere in the middle. |
| |
They are organized this way to avoid confusing Modifiers with other Modifiers or Card Actions that share similar language. | They are organized this way to avoid confusing Modifiers with other Modifiers or Card Actions that share similar language. |
Middle | Middle |
Bottom | Bottom |
Random</code> | These modify any Card Action that targets cards from a zone. When a player would normally make a manual selection, these automate the selection. When an Action would normally target the first card in a zone (like Draw) these can override that.\\ Top makes the Action target the first card in the zone.\\ Middle makes the Action target the median card in the zone.\\ Bottom makes the Action target the last card in the zone.\\ Random makes the Action target a random card in the zone.\\ <code>Draw Bottom 1</code>While Draw normally draws from the top, this would instead cause the player to draw from the bottom of the Deck\\ .<code>Discard Random 3</code> This selects 3 random cards in the player's hand and discards them, rather than making the player choose.\\ <code></code>| | Random</code> | These modify any Card Action that targets cards from a zone. When a player would normally make a manual selection, these automate the selection. When an Action would normally target the first card in a zone (like Draw) these can override that.\\ \\ Top makes the Action target the first card in the zone.\\ Middle makes the Action target the median card in the zone.\\ Bottom makes the Action target the last card in the zone.\\ Random makes the Action target a random card in the zone.\\ \\ <code>Draw Bottom 1</code>While Draw normally draws from the top, this would instead cause the player to draw from the bottom of the Deck\\ .<code>Discard Random 3</code> This selects 3 random cards in the player's hand and discards them, rather than making the player choose.\\ <code>Move Bottom 2 from Discard to Hand</code>This would return the 2 most recently discarded cards to the player's hand. Note that by default the Discard displays its cards in opposite order, so what a player would intuitively know as the "top" of the Discard is actually its Bottom. | |
==== End Modifiers ==== | ==== End Modifiers ==== |
| |
| <code>Prevent [cardAction]</code> | | | | <code>Top |
| Middle |
| Bottom |
| Random</code> | These Modifiers do something different depending on if they are in the Middle of a Card Action or at the End.\\ These modify any Card Action that sends cards to a specific zone. Normally, cards are moved to the bottom of a zone. These can override that.\\ \\ Top moves a card to be the first card in a zone.\\ Middle moves a card to be in the middle position in a zone.\\ Bottom does not change the behavior.\\ Random moves the card to a random position within the zone, "shuffling" it in.\\ \\ <code>Discard 1 Random</code> This makes the player select a card from their hand, and moves the card to a random position inside the discard. <code>Copy Selected to Deck Top</code> This modifies the Copy Selected Card Action so that the new copies are added to the top of the deck instead of the bottom.\\ Note that because Top/Bottom/Random is a different Modifier depending on where it is in the Card Action, you can use both at once.\\ <code>Move 2 from Deck Bottom to Discard Top</code>This would take cards from the bottom of the Deck and put them at the top of the Discard| |