How to Make Card Proxies: A Comprehensive Technical Guide
Introduction
In the trading card game (TCG) community, a 'proxy' is a card used to represent another card during gameplay. Whether you are playtesting a new *Magic: The Gathering* (MTG) deck before investing in expensive cards, creating a custom *Pokémon* card for casual play, or need a replacement for a lost *Yu-Gi-Oh!* card, knowing how to craft professional-grade proxies is an essential skill. This guide covers the spectrum from quick Sharpie methods to advanced Photoshop and printing techniques used in 2025.
---
Part 1: Digital Preparation and Sourcing
Before you can print, you need a high-quality digital source file. The visual fidelity of your proxy depends entirely on the resolution of the source image.
1. Understanding Card Dimensions
Different TCGs have slightly different aspect ratios and sizes. Using the wrong dimensions will result in a 'stretched' or pixelated image.
| Game | Dimensions (mm) | Dimensions (inches) | Corner Radius | | :--- | :--- | :--- | :--- | | Magic: The Gathering | 63 x 88 | 2.48" x 3.46" | 3mm | | Pokémon / Yu-Gi-Oh! | 62.8 x 88 (Approx) | 2.47" x 3.46" | 2-3mm |
2. Finding High-Res Artwork
Avoid Google Images for direct searches, as these are often compressed. Instead, use specific repositories:
- Scryfall (MTG): Offers API access to high-resolution crop images. Look for the 'border_crop' option to remove the original black border, allowing you to print your own.
- Pokémon TCG API: Access high-quality assets directly via the official Pokémon TCG API for crisp edges.
- The Gatherer / Yugipedia: Use these for official artwork sourcing.
3. Digital Manipulation (Python & Photoshop)
If you are bulk generating proxies, you can automate the cropping process using Python.
Python Script for Batch Cropping (MTG Example):
from PIL import Image
import os
def create_proxy(input_path, output_path): # Standard MTG dimensions in pixels (at 300 DPI: ~745x1040) target_width = 745 target_height = 1040
try: img = Image.open(input_path) # Convert to RGB to handle PNGs with alpha channels correctly for printing img = img.convert("RGB")
# Resize using Lanczos filter for highest quality resampling img_resized = img.resize((target_width, target_height), Image.Resampling.LANCZOS)
img_resized.save(output_path, "JPEG", quality=95) print(f"Successfully saved proxy to {output_path}") except Exception as e: print(f"Error processing {input_path}: {e}
Example Usage
create_proxy("black_lotus_raw.jpg", "black_lotus_proxy.jpg")
For manual adjustments, use Adobe Photoshop or GIMP to adjust the *Curves* and *Levels*. Printed cards often look darker than screens; brighten the image by +10 to +15 before printing to compensate for ink absorption.
---
Part 2: The Methods (Ranked by Quality)
Method 1: The 'Sharpie' Method (Playtesting)
Best For: Quick playtesting, Commander nights, casual kitchen-table magic.
This is the fastest way to get a card into your hand. It is not meant to look good; it is meant to be functional.
1. The Base Card: Select a card you do not care about (usually a basic land or a common vanilla creature). Ideally, the mana cost should be similar to the proxy you are creating to avoid confusion. 2. The Marker: Use a high-quality permanent marker (like a Sharpie or a Posca paint marker). 3. Technique: Write the name of the card clearly in the center. Some players also write the key abilities (e.g., "Flying", "First Strike") in the text box area.
Pro-Tip: Use a colored marker that matches the color identity of the spell (e.g., Red Sharpie for a Red Instant) to make it easier to recognize across the table.
---
Method 2: The 'Slip-In' or 'Print-Out' Method
Best For: Casual play, Cube drafts, avoiding damage to real cards.
This method involves printing the card face and slipping it into a sleeve in front of a real card (backing).
1. Paper Selection: This is critical. Standard printer paper (80 gsm) is too thin and translucent. It looks washed out immediately upon sleeving. * *Recommendation:* Use Brochure Paper (120-140 gsm) or Photo Paper (Matte finish). 2. Printing: * Set your printer to 'Best Quality' or 'Photo Mode'. * Ensure you are printing at Actual Size (100%). Do not scale to fit. 3. Cutting: * Use a paper cutter or a sharp X-Acto knife against a metal ruler. * Cut slightly *outside* the black border lines. If you cut perfectly on the line, any white edges from the paper will be visible, highlighting the proxy nature. 4. Assembly: * Place a real card (basic land) in a sleeve. * Slide your printed cutout in front of it. * The Rattle Issue: Because two pieces of cardstock are now in one sleeve, the deck will be thicker. This creates a 'marked deck' problem.
---
Method 3: The 'Glue-Up' / Premium DIY (The 2025 Standard)
Best For: High-end cubes, professional looking decks, tournament proxies (where allowed).
This method bonds the print to a card stock, maintaining the standard thickness of a TCG card.
Materials Needed:
Process: 1. Print your image on glossy sticker paper or high-gloss photo paper. 2. Take a junk card (the 'body') and lightly sand the existing face with fine-grit sandpaper to create a 'tooth' for the glue to grip. 3. Spray a light, even coat of adhesive on the card body. Wait 30 seconds until it becomes tacky. If you stick it immediately, you will get air bubbles. 4. Align the printout carefully and press down from the center outwards to push air bubbles out. 5. Use a corner-rounder punch (3mm radius) to round the corners, mimicking real cards.
---
Part 3: Advanced Finishing & Holo-Foiling
A major tell for proxies is the lack of texture. Real modern cards have a 'cold foil' or 'holo' finish.
Creating a 'Holo' Proxy
In 2025, DIY enthusiasts have begun using Holographic Glitter Film.
1. After creating your Glue-Up proxy, cut a piece of Holographic Glitter Film slightly larger than the card. 2. Apply a thin layer of Mod Podge or laminate adhesive to the face of the card. 3. Apply the film. 4. The 'Torch' Trick: Use a heat gun on a low setting or a hair dryer to shrink the film and bond it. 5. Trim the edges.
This creates a dazzling, unique finish that is often indistinguishable from special edition foils when sleeved.
---
Part 4: Legal & Ethical Guidelines
It is vital to understand the distinction between Personal Use and Counterfeiting.
Golden Rule: Always play with proxies in sleeves. If you are playing in a sanctioned tournament (e.g., MTG Regional Championships), proxies are strictly banned unless a card is damaged during the event (Head Judge permission required).
---
Conclusion
Creating card proxies is a blend of technical printing skills and artistic craftsmanship. While the 'Sharpie' method suffices for a quick game of Commander, the 'Glue-Up' method with 300 DPI sources and holo-foiling produces results that rival official printings. As high-end cards continue to rise in price, the ability to create high-quality proxies ensures that the game remains accessible for testing and casual play without sacrificing financial stability.
Remember to respect the IP of game publishers like Wizards of the Coast and The Pokémon Company by keeping these projects personal and non-commercial.