| Both sides previous revisionPrevious revisionNext revision | Previous revision |
| plugin-card-fusion [2024/06/09 14:27] – [Card Passives] banerjeesw | plugin-card-fusion [2025/07/03 22:42] (current) – [Card Passives] isiahgames |
|---|
| Place the following inside the Card Passives of the Skill you want cards to be fused into - the result of the fusion. | Place the following inside the Card Passives of the Skill you want cards to be fused into - the result of the fusion. |
| |
| | <code>[zoneName] Fusion Recipe: X, Y, Z, A, B...</code> | Replace [zoneName] with the name of a Zone\\ \\ Replace X, Y, etc with skill IDs.\\ \\ When the specified zone contains cards of the specified IDs, a Card Fusion will take place that removes those cards from the zone and replaces them with this card.\\ <code>Hand Fusion Recipe: 4, 4, 4</code>The above will make the game check if the Hand contains 3 copies of a card with the skill ID 4, and if it does those three cards will be fused into the card that contains this Card Passive.\\ <code>Discard Fusion Recipe: 5, 7, 9, 10, 11</code>The above will require that 5 different, specific cards are in the Discard, and if they are, they will fuse into the card that contains this Card Passive.\\ \\ Note that a Card can have any number of Fusion Recipes, in any number of zones, including Extra Zones. | | |< 100% 20% 80% >| |
| | ^ Card Passive Syntax ^ Description ^ |
| | | <code>[zoneName] Fusion Recipe: |
| | X, Y, Z, A, B...</code> | Replace [zoneName] with the name of a Zone\\ \\ Replace X, Y, etc with skill IDs.\\ \\ When the specified zone contains cards of the specified IDs, a Card Fusion will take place that removes those cards from the zone and replaces them with this card.\\ \\ <code>Hand Fusion Recipe: 4, 4, 4</code>The above will make the game check if the Hand contains 3 copies of a card with the skill ID 4, and if it does those three cards will be fused into the card that contains this Card Passive.\\ <code>Discard Fusion Recipe: 5, 7, 9, 10, 11</code>The above will require that 5 different, specific cards are in the Discard, and if they are, they will fuse into the card that contains this Card Passive.\\ \\ Note that a Card can have any number of Fusion Recipes, in any number of zones, including Extra Zones. | |
| |
| ==== Yu-Gi-Oh Style Polymerization ==== | ==== Yu-Gi-Oh Style Polymerization ==== |
| |
| | {{https://static.wikia.nocookie.net/yugioh/images/d/d1/Polymerization-YGLD-FR-C-1E.png?nolink}} |
| |
| | Yu-Gi-Oh has a card which the player can use to select cards to fuse together. This mechanic can be recreated through clever use of the CoreEngine's extra zones parameters. |
| | |
| | First, add an extra zone called Polymer. Then, have a Card with the following Card Actions: |
| | |
| | <code> |
| | Move 2 from Hand to Polymer |
| | Move All from Polymer to Hand |
| | </code> |
| | |
| | This card will make the player select 2 cards to potentially fuse. If they can't fuse, they will return to the hand immediately. However, if they match IDs in any skill's Card Passive saying: |
| | |
| | <code> |
| | Polymer Fusion Recipe: X, Y |
| | </code> |
| | |
| | They will fuse before the Move All Card Action executes. Then the Move All CA will execute, moving the newly fused card into the hand. |