Spectral Guardian [Mirage] (2024)

  • Trading Card Games
    • Magic the Gathering
    • Dragon Ball Super
    • Disney Lorcana
    • Yu-Gi-Oh!
    • Pokémon
    • Solforge
    • Digimon
    • MetaZoo
    • One Piece
    • Transformers
    • Grand Archive
    • Flesh and Blood
    • Battle Spirits Saga
    • My Hero Academia
  • Star Wars Games
    • Destiny
    • Legion
    • X-Wing
  • Games Workshop
    • Warhammer Collectible Figures
    • Warhammer 40K
    • Age of Sigmar
    • Blood Bowl
    • Warcry
    • Kill Team
    • Necromunda
    • Warhammer Underworlds
    • Aeronautica Imperialis
    • Sport Cards
    • Board Games
    • Jigsaw Puzzles

  • Ultra Pro
    • Binders
    • Sleeves
    • Deck Boxes
    • Life Pads
    • Top Loaders
    • Playmats
  • Dragon Shield
    • Binders
    • Sleeves
    • Deck Boxes
    • Playmats
    • Life Pads
  • Ultimate Guard
    • Binders
    • Sleeves
    • Deck Boxes
    • Life Pads
    • Playmats
    • KMC Sleeves
    • Board Game Sleeves
    • Let's Play Games
    • BCW

  • Dungeons and Dragons
    • Rulebooks
    • Adventures
    • Accessories
  • Pathfinder
    • Rulebooks
    • Adventures
    • Accessories
  • Miniatures
    • Dungeons and Dragons
    • Pathfinder
    • Magic the Gathering
    • WarLock Tiles Scenery
  • Dice
    • Oakie Doakie
    • Chessex
    • Ultra Pro
    • Other Brands
    • Dice Bags
    • Starfinder
    • Dune
    • Star Wars
    • Vampire: The Masquerade
    • Other RPGs
    • Other Accessories

    • Citadel Paints
    • Citadel Accessories
    • Vallejo Paints
    • Gale Force Nine Paints
    • Scenery
    • Redgrass Accessories

Subtotal

Shipping & taxes calculated at checkout

Checkout Your Cart

Your cart is currently empty.

Enable cookies to use the shopping cart

Spectral Guardian [Mirage]

Spectral Guardian [Mirage] (1)

Regular Price $2.15

Vendor: Magic: The Gathering

Product Type : MTG Single

Hurry! Only

units left in stock!

  • Description
  • refund policy
Set: Mirage
Type: Creature — Spirit
Rarity: Rare
Cost: {2}{W}{W}

As long as Spectral Guardian is untapped, noncreature artifacts have shroud. (They can't be the targets of spells or abilities.)

"A treasure to guard other treasures is worth the highest price."—Mtai, Civic Guildmage

We strive to sell only high-quality products and care forthem in our storeandwhen shipped to you.In the rare event there is an issue with your order, please contact us on (03) 8358 4899during the business hoursonthe home page of this website.

Payments are processed only after we confirm your items are in stock and in good condition. Your paymentprovider may place apending transaction on your account for the full purchase price until we manually process the payment.

In the event an error has occurredwemayprovide you a replacementand request you return items ofhigher-value in good condition at our expense before we ship the replacement.

To be eligible for a return, refund, or exchange, your item/s must be unused, ingood condition and in the original packaging. Proof of purchase is required, preferably by providing your order acknowledgment or shipping confirmation email. You must be the original purchaser andaccount holder of thepaymentmethod.

Approvedrefunds will be submitted to your original payment provider within three working days of receiving the return item. You will receive confirmation via email and the credit will be automatically applied to your account. Some banks take time to process refund requests.If you haven’t received your refund within five working days,contact us and we will confirm if it has beensubmitted to your payment provider.

In the event that a refund is granted due to changing your mind, you no longer want the item, or you have taken more than the allotted time to return the item/s, youmay be responsible for paying any credit card or Paypal fees the provider charges us. We can deduct this from the amount refunded to you. We may requestyou select a trackable shipping serviceand purchaseinsurance at your expense when returning items for these reasons.

For products missing componentsor damage within the factory-sealed packaging, we may request you contact the manufacturer. They will often cover your shipping costs and sometimes provide something extra to apologise for the inconvenience.

Items with prices that fluctuate based on supply, demand, tournament playability or ban lists may not be returned if any of these events have affected the item's price.

Authorised returns are to be sent to:
Pro Gamers
Shop 14
8-10 Vanessa Drv
Ravenhall VIC 3023

This refund, exchangeand returns policy applies to online and in store purchases. It lastsfive working days after the date of purchase, or 48 hours after the item is received, whichever is shorter.

") .css( { "position": "absolute", "left": "0px", "top": offSet } ) .appendTo($(this)) .hide(); // Listening to keyup and change on the text field within these search forms. input.attr("autocomplete", "off").bind("keyup change", function () { // What's the search term? var term = $(this).val(); // What's the search form? var form = $(this).closest("form"); // What's the search URL? var searchURL = `/search?type=product&options[prefix]=last&q=title:${term}`; // What's the search results list? var resultsList = form.find(".search-results"); // If that's a new term and it contains at least 3 characters. if (term.length > 3 && term != $(this).attr("data-old-term")) { // Saving old query. $(this).attr("data-old-term", term); // Killing any Ajax request that's currently being processed. if (currentAjaxRequest != null) { currentAjaxRequest.abort(); } // Pulling results. currentAjaxRequest = $.getJSON("/search/suggest.json", { q: term, resources: { type: "product", options: { unavailable_products: 'last', fields: "title,variants.title,product_type", }, }, }, (data) => { // Reset results. const { resources: { results: { products } } } = data; resultsList.empty(); // If we have no results. if (products.length === 0) { resultsList.html('

  • No results.
  • '); resultsList.fadeIn(200); // resultsList.hide(); } else { // If we have results. $.each(products, (index, item) => { var link = $("").attr("href", item.url); if (item.image) { link.append("Spectral Guardian [Mirage] (2)"); } link.append("" + item.type + ""); link.append("" + item.title + ""); if (item.price_max === item.price_min){ link.append("" + Shopify.formatMoney(item.price) + ""); } else { link.append("" + Shopify.formatMoney(item.price_min) + " - " + Shopify.formatMoney(item.price_max) +""); } if (item.available) { const preorderTags = ['preorder', 'pre-order', 'pre order']; const isPreorder = item.tags.some(tag => preorderTags.includes(tag.toLowerCase())); if(isPreorder) { link.append("Preorder"); } else { link.append("Currently has stock"); } } link.wrap("

  • "); resultsList.append(link.parent()); }); // The Ajax request will return at the most 10 results. // If there are more than 10, let's link to the search results page. if (data.results_count > 10) { resultsList.append("

  • See all results (" + data.results_count + ")
  • "); } resultsList.fadeIn(200); } }); } }); }); // Clicking outside makes the results disappear. $("body").bind("click", function () { $(".search-results").hide(); }); }); top

    Added To Cart :

    Add To Cart Failed :

    prouduct successfully added to wishlist !

    Pro Grading Guide

    Spectral Guardian [Mirage] (3) '

    Near Mint (NM)'

    Near Mint condition cards show minimal or no wear from play or handling and will have an unmarked surface, crisp corners, and otherwise pristine edges outside of minimal handling. Near Mint condition cards appear 'fresh out of the pack,' with edges and surfaces virtually free from all flaws. '

    '

    '

    Spectral Guardian [Mirage] (4) '

    Lightly Played (LP)'

    Lightly Played condition cards can have slight border or corner wear, or possibly minor scratches. No major defects are present, and there are less than 4 total flaws on the card. Lightly Played condition foils may have slight fading or indications of wear on the card face. '

    '

    '

    Spectral Guardian [Mirage] (5) '

    Moderately Played (MP)'

    Moderately Played condition cards have moderate wear, or flaws apparent to the naked eye. Moderately Played condition cards can show moderate border wear, mild corner wear, water damage, scratches , creases or fading, light dirt buildup, or any combination of these defects. '

    '

    '

    Spectral Guardian [Mirage] (6) '

    Heavily Played (HP)'

    Heavily Played condition cards exhibit signs of heavy wear. Heavily Played condition cards may include cards that have significant creasing, folding, severe water damage, heavy whitening, heavy border wear, and /or tearing. '

    '

    '

    Spectral Guardian [Mirage] (7) '

    Damaged (D)'

    Damaged condition cards show obvious tears, bends, or creases that could make the card illegal for tournament play, even when sleeved. Damaged condition cards have massive border wear, possible writing or major inking (ex. white-bordered cards with black-markered front borders), massive corner wear, prevalent scratching, folds, creases or tears. '

    '

    '

    '

    Spectral Guardian [Mirage] (8)

    Spectral Guardian [Mirage] (2024)
    Top Articles
    Steak with Creamy Corn Risotto Recipe - Home Chef
    Apple Fritter Recipe with Cinnamon Sugar: An Easy Fall Dessert
    NSC_Builder. Nintendo Switch Cleaner and Builder. (Game+updates+dlc in a single xci)
    The Legend of Zelda: Breath of the Wild – Software updates (latest update: Ver. 1.6.0 – DLC: Ver. 3.0.0)
    Drawing Practice Exercises
    Supacell Review: Black British Sci-Fi Would Captivate Even Without the Superpowers
    Nextkidney Nextkidney raised €4.1M for more freedom and a better life for kidney patients
    Nextkidney B.V. raises 6M EUR in first funding round - Nextkidney
    CALCUL D'ITINERAIRE ROUTIER - Carte routière de France
    Route: Routenberechnung, genaue Fahrtkosten - ViaMichelin
    Die Bedeutung von TMM » Alles, was du über TMM wissen musst
    Was bedeutet TMM? Erklärung und Anwendung
    Latest Posts
    Turkish Delight Slice | Easy No Bake Slice Recipe
    Sautéed Chicken Breasts With Tarragon Recipe
    Article information

    Author: Dr. Pierre Goyette

    Last Updated:

    Views: 6134

    Rating: 5 / 5 (70 voted)

    Reviews: 93% of readers found this page helpful

    Author information

    Name: Dr. Pierre Goyette

    Birthday: 1998-01-29

    Address: Apt. 611 3357 Yong Plain, West Audra, IL 70053

    Phone: +5819954278378

    Job: Construction Director

    Hobby: Embroidery, Creative writing, Shopping, Driving, Stand-up comedy, Coffee roasting, Scrapbooking

    Introduction: My name is Dr. Pierre Goyette, I am a enchanting, powerful, jolly, rich, graceful, colorful, zany person who loves writing and wants to share my knowledge and understanding with you.