mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
docs: added some comments about tokens, verify, test mode, etc
This commit is contained in:
parent
7d9d037416
commit
1f4dfd08ce
6 changed files with 19 additions and 2 deletions
|
|
@ -23,9 +23,13 @@ import java.util.concurrent.TimeUnit;
|
|||
|
||||
/**
|
||||
* Render mode: MTGO
|
||||
*
|
||||
*/
|
||||
public class CardPanelRenderModeMTGO extends CardPanel {
|
||||
|
||||
//
|
||||
// https://www.mtg.onl/evolution-of-magic-token-card-frame-design/
|
||||
|
||||
// Map of generated images
|
||||
private final static Cache<ImageKey, BufferedImage> IMAGE_CACHE = CacheBuilder
|
||||
.newBuilder()
|
||||
|
|
|
|||
|
|
@ -55,6 +55,7 @@ import static org.mage.card.arcane.ManaSymbols.getSizedManaSymbol;
|
|||
* @author stravant@gmail.com, JayDi85
|
||||
* <p>
|
||||
* Base rendering class for new border cards
|
||||
* M15 frame style, for another styles see https://www.mtg.onl/evolution-of-magic-token-card-frame-design/
|
||||
*/
|
||||
public class ModernCardRenderer extends CardRenderer {
|
||||
|
||||
|
|
|
|||
|
|
@ -10,6 +10,10 @@ import java.util.List;
|
|||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* * TODO: web site reworked and tokens doesn't work anymore,
|
||||
* * but it can be used to download a proxy tokens (tokens that was miss by wizards),
|
||||
* * see https://www.mtg.onl/mtg-missing-tokens/
|
||||
*
|
||||
* @author spjspj
|
||||
*/
|
||||
public enum AltMtgOnlTokensImageSource implements CardImageSource {
|
||||
|
|
|
|||
|
|
@ -10,6 +10,10 @@ import java.util.List;
|
|||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* TODO: web site reworked and tokens doesn't work anymore,
|
||||
* but it can be used to download a proxy tokens (tokens that was miss by wizards),
|
||||
* see https://www.mtg.onl/mtg-missing-tokens/
|
||||
*
|
||||
* @author spjspj
|
||||
*/
|
||||
public enum MtgOnlTokensImageSource implements CardImageSource {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue