User Tools

Site Tools


plugin-card-types

This is an old revision of the document!


MYTH_CGC_CardTypes is a plugin allows you to add one or more card types to each Skill.

First, define the Type using the plugin parameter. When defining a type, all parameters other than the Name affect how it's drawn on the card.

Then, use skill notetags to give a skill the Card Type you created. The spelling and capitalization must be exactly the same, so watch out for typos.

Current Version: 1.2.1

Notetags

Notetag Syntax Description
<Card Type: type_name> Replace “type_name” with the name of the Card Type (case sensitive) that you want this skill to have. A Skill/Card can have multiple Card Types, using multiple instances of this notetag.

Ensure that all Types you plan to use are in the Card Types plugin parameter.

Any skill which contains the <Card Base: file_name> notetag from IsiahCardGameCombat will use that specified Card Base instead of the one specified by this plugin.

Actions

Card Action Syntax Description
Draw X Type type_name This will draw the first X cards in your deck that are of the specified type.
Mill X Type type_name These work the same way, but for their respective Mill/Discard/Remove actions.
Discard X Type type_name
Remove X Type type_name
Mill Until Type type_name This will Mill cards from the top of the deck until the card at the top is of the specified type.
Move X Type [typename] from [zoneName] to [zoneName] This is the generic Move action that accepts all zones. For example, if you wanted to move 1 Spell Card from Deck to Discard, you would use:
<Card Actions>
Move 1 Type Spell from deck to discard
</Card Actions>

Script Calls

Script Call Syntax Description
{actor}.cardsInZoneOfType(zone, type) This function can be used inside damage formulas, Evals, and Require notetags. It will return the amount of cards of the given type in the given zone. An example of how to format this:

<Card Passives>
Require user.cardsInZoneOfType("hand", "Fossil")
</Card Passives>

'zone' and 'type' are string parameters, which means they must have quotation marks around them.

{actor}.hasCardInZone(zone, skillName)

{actor}.hasCardInZone(zone, skillId)
This function can be used to quickly check if a specific Card is in a Zone (e.g. Hand or Deck). It returns true if it has found it and false if it hasn't.
Myth.CGC.getIDsOfType(type) This function returns an array containing all the skill IDs of Cards that match the type you have provided. You can use these for Card Rewards/Booster Packs or Random Card Generation.

Version History

**v1.0.4** - Crash hotfix for when using a card that has a Type that is not defined in the plugin parameters. Fixed error if Type list is empty.

**v1.0.3** - Fixed crash when opening Skills scene.

**v1.0.2** - Fixed MZ Card Library crash.

**v1.0.1** - Released plugin
plugin-card-types.1711109727.txt.gz · Last modified: 2024/03/22 13:15 by banerjeesw