Plugin Command:
MonsterCards manager # Opens the MonsterCard Scene.
MonsterCards complete 3 # Gives you all cards 3 times.
MonsterCards clear # Removes all of your cards.
MonsterCards give 3,3,5 # Gives you 2x Card 3 and 1x Card 5
MonsterCards remove 3 # Removes card 3 once.
MonsterCards giveBooster 1 3 # Gives BoosterPack with 3 random Cards out of Series 1.
MonsterCards giveBooster 0 5 # Gives BoosterPack with 5 random Cards out of all Series/Cards.
Script Calls:
$monsterCards.isAtPlayer(8);
# gives TRUE if Card 8 is with the Player (not in deck), else FALSE.
$monsterCards.isInDeck(9);
# gives TRUE if Card 9 is inside the Deck (not with player), else FALSE.
$monsterCards.hasCard(7);
# gives TRUE if player has Card 7 (deck and player), else FALSE.
$monsterCards.isRevealed(13);
# gives TRUE if card 13 is revealed, else FALSE.
$monsterCards.isDeckFull();
# gives TRUE if player Deck is full, else FALSE.
$monsterCards.randomDeckCard();
# returns a random Card Id out of the Deck.
$monsterCards.returnName(11);
# returns the Name of card 11.
$monsterCards.returnATK(12);
# returns the ATK Value of card 12.
$monsterCards.returnHP(13);
# returns the HP Value of card 13.
$monsterCards.returnDEF(14);
# returns the DEF Value of card 14.
$monsterCards.returnSeries(15);
# returns the Series of card 15.
$monsterCards.returnPoints(16);
# returns the Points of card 16.