The Ultimate Guide to Fabricating Magic: The Gathering Proxies
Creating high-quality proxies for Magic: The Gathering (MTG) is a technical skill that bridges graphic design, color theory, and material science. Whether you are playtesting a new deck archetype before investing thousands of dollars or creating a 'Cube' for casual play, understanding the proper workflow is essential for results that look professional and are respectful to the game's intellectual property.
Phase 1: Digital Asset Acquisition & Preparation
The quality of a proxy is determined entirely by the source image. A low-resolution image will look pixelated and faded when printed.
Sourcing High-Resolution Images
To achieve a finish indistinguishable from a genuine card, you need a source resolution of at least 300 DPI (Dots Per Inch) at the card's physical dimensions.
- Official Sources: Wizards of the Coast releases high-resolution assets via their 'Gatherer' tool and press kits. However, these often lack the crop marks needed for exact fitting.
- Third-Party Databases: Various community repositories maintain scans of cards. For the best results, look for 'Raw Scans' rather than 'Photoshopped' textless versions, as raw scans preserve the original texture and dot pattern of the printing press.
- The Issue: If you print an RGB file directly, the colors will often appear washed out or dull.
- The Fix: Convert your image to CMYK mode in Photoshop or GIMP (
Image > Mode > CMYK Color). - Boosting Saturation: To compensate for the ink absorption of cardstock, increase the saturation and contrast of the image by roughly 10-15% *after* converting to CMYK. This mimics the vibrant, glossy look of fresh booster pack cards.
- Printing the card layer.
- Applying a thin layer of glossy acrylic varnish *only* over the holographic stamp area.
- Using iridescent glitter powder mixed with a clear glue medium.
- Laser Printer (Recommended): Toner is plastic powder that is melted onto the paper. It is waterproof, resistant to smudging, and sits on top of the paper rather than soaking in. This creates the 'snap' and vibrancy of a real card.
- Inkjet (Not Recommended): Ink soaks into the fibers, causing bleeding on cardstock. It is also susceptible to running if the card gets wet during play (e.g., sweaty hands).
- Standard Paper: 80 GSM (Too thin)
- Cardstock: 200-300 GSM (Acceptable, but may feel 'papery')
- The border thickness is equal on all sides.
- The text box is perfectly centered.
- The colors match a reference card.
- Quality: Highest / Photo
- Paper Type: Heavy Cardstock / Labels
- Scissors: Inaccurate and leave jagged edges. Do not use.
- Rotary Cutter (Slip-stick): Good for straight lines, but hard to get corners perfect.
- Guillotine / Stack Cutter: The best option. A 12-inch sliding trimmer allows you to cut multiple cards at once with 0.5mm precision.
- Copyright: Wizards of the Coast owns the art and text. Selling proxies is copyright infringement and can lead to legal action (CEASE & DESIST orders).
- Counterfeiting: Never attempt to sell a proxy as a real card. This is fraud.
- Personal Use: Making proxies for personal use, deck testing, or casual play (Cube) is generally tolerated within the community, provided you do not enter them into official tournaments (REL) without the Head Judge's explicit permission.
Technical Image Processing
Once you have the raw scan, you must prepare the file for print. This is where most beginners fail.
1. Cropping and Dimensions Standard MTG cards are 63mm x 88mm. You must set your canvas size exactly to these dimensions. However, the visible image area is slightly smaller due to the black border. You should maintain the standard border width to ensure the art box is centered.
2. Color Profile Management (The Secret Sauce)
This is the most critical technical step. Computer screens use RGB (Red, Green, Blue) color space, while printers use CMYK (Cyan, Magenta, Yellow, Key/Black).
3. The 'Holostamp' Effect (Advanced)
Modern rare and mythic rare cards feature a holographic stamp. While difficult to replicate perfectly at home, you can simulate the shine by:
Phase 2: Hardware and Material Selection
You cannot produce a professional proxy using standard printer paper and an inkjet printer.
The Printer: Laser vs. Inkjet
The Cardstock: GSM and Texture**
Standard cardstock is measured in GSM (Grams per Square Meter).
The Pro Method (Blanks): To get the correct blue core and thickness (350 microns/14pt), you should purchase 'MTG Blanks'. These are card-sized sheets with the exact thickness and texture of a real Magic card, often with a white or gray front surface ready for printing.
The Budget Method:
1. Erase the front: Use a sandblock or an eraser wheel (drill attachment) to rough up the surface of a bulk common card. Apply a light layer of white acrylic primer (gesso) to create a neutral base. 2. Adhesive Paper: Print your proxy on full-sheet label paper (Avery or similar). Cut it out and stick it directly onto the prepared blank card.
Phase 3: Fabrication Workflow
Here is the step-by-step workflow used by professional proxy makers.
Step 1: The Test Print
Never print directly on your expensive cardstock first. Print a 'Draft' version on standard paper. Place it over a real card and hold it up to the light. Check that:
Step 2: The Print
Load your cardstock or label paper into the manual feed tray of your laser printer. This ensures the paper takes the straightest path, reducing the risk of jams or skewing (crooked cards). Set your printer settings to:
Step 3: Precision Cutting
This is the difference between a 'homemade look' and a 'professional look'.
Pro Tip: Cut slightly *outside* the line (about 1mm) if you are sticking the print onto a blank card. Then, use a sanding block to sand the edges down until the ink perfectly meets the edge of the card. This creates a seamless 'painted on' look.
Comparison of Methods
| Method | Cost | Difficulty | Durability | Authenticity | :--- | :--- | :--- | :--- | :--- | Paper Slip-In | $ | Very Low | Low (Tears easily) | Low (Different thickness) | Sticker on Blank | $$ | Medium | High | Very High | Direct Print on Cardstock | $ | High | Medium | High (If back is printed) | Acetone / Translucent | $$$ | Extreme | Low | Medium (Ghosting effect)
Legal and Ethical Considerations
As an expert in the field, I must add a disclaimer regarding the legal framework of proxying.
Advanced Technique: Automated Scripting (Optional)
For those building a Cube or a Commander deck, processing images one by one is tedious. You can use Python with the Pillow library to automate the formatting.
from PIL import Image
import os
def create_proxy(input_image_path, output_path): # Standard MTG size in pixels (assuming 300 DPI) # 63mm x 88mm -> approx 744 x 1039 pixels target_size = (744, 1039)
try: img = Image.open(input_image_path)
# Resize to fit dimensions (maintain aspect ratio to avoid distortion) img.thumbnail(target_size)
# Create a blank canvas with black background canvas = Image.new('RGB', target_size, (0, 0, 0))
# Paste the image centered x = (target_size[0] - img.width) // 2 y = (target_size[1] - img.height) // 2 canvas.paste(img, (x, y))
# Convert to CMYK for printing if canvas.mode != 'CMYK': canvas = canvas.convert('CMYK')
canvas.save(output_path, quality=100) print(f"Processed: {output_path}")
except Exception as e: print(f"Error processing {input_image_path}: {e}")
Example usage
create_proxy('black_lotus_raw.jpg', 'black_lotus_proxy_print.tif')
Final Checklist for the 'Perfect Proxy'
1. Resolution: Is the source image 300 DPI or higher? 2. Color: Did you convert to CMYK and boost saturation? 3. Material: Are you using a laser printer and heavy cardstock/blank? 4. Edges: Are the cuts clean, or have you sanded them for a seamless edge? 5. Feel: Does the card have the 'snap' of a real card?
By following these technical steps, you move beyond simple 'print and play' into the realm of high-quality card fabrication, ensuring your playtest experience is as close to the real thing as possible.