mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Added documentation to two new functions in Constructed.java
This commit is contained in:
parent
d2fec6c61d
commit
59933f0842
1 changed files with 10 additions and 0 deletions
|
@ -142,6 +142,11 @@ public class Constructed extends DeckValidator {
|
||||||
return valid;
|
return valid;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Checks if the given card is legal in any of the given rarities
|
||||||
|
* @param card - the card to check
|
||||||
|
* @return Whether the card was printed at any of the given rarities.
|
||||||
|
*/
|
||||||
protected boolean legalRarity(Card card){
|
protected boolean legalRarity(Card card){
|
||||||
// check if card is legal if taken from other set
|
// check if card is legal if taken from other set
|
||||||
boolean legal = false;
|
boolean legal = false;
|
||||||
|
@ -158,6 +163,11 @@ public class Constructed extends DeckValidator {
|
||||||
return legal;
|
return legal;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Checks if the given card is legal in any of the given sets
|
||||||
|
* @param card - the card to check
|
||||||
|
* @return Whether the card was printed in any of this format's sets.
|
||||||
|
*/
|
||||||
protected boolean legalSets(Card card) {
|
protected boolean legalSets(Card card) {
|
||||||
// check if card is legal if taken from other set
|
// check if card is legal if taken from other set
|
||||||
boolean legal = false;
|
boolean legal = false;
|
||||||
|
|
Loading…
Reference in a new issue