{"id":36350786,"date":"2026-09-04T09:00:00","date_gmt":"2026-09-04T07:00:00","guid":{"rendered":"https:\/\/www.centre-commercial.fr\/?post_type=news-centre&amp;p=36350786"},"modified":"2026-09-04T09:00:00","modified_gmt":"2026-09-04T07:00:00","slug":"pokemon-debarque-dans-votre-centre","status":"publish","type":"news-centre","link":"https:\/\/www.centre-commercial.fr\/carrefour-vannes\/news-centre\/pokemon-debarque-dans-votre-centre\/","title":{"rendered":"Pok\u00e9mon d\u00e9barque dans votre centre !"},"content":{"rendered":"\n<!-- DEBUT FOND ANIME POKEMON (Gutenberg Block) -->\n<canvas id=\"pkmn-bg-canvas\" style=\"position:fixed; top:0; left:0; width:100vw; height:100vh; pointer-events:none; z-index:-1;\"><\/canvas>\n<script>\n(function() {\n    const canvas = document.getElementById('pkmn-bg-canvas');\n    if (!canvas) return;\n    const ctx = canvas.getContext('2d');\n\n    let width = canvas.width = window.innerWidth;\n    let height = canvas.height = window.innerHeight;\n\n    \/\/ Nombre de Pok\u00e9balls ajust\u00e9 \u00e0 8 pour assurer plusieurs Pok\u00e9balls \u00e0 l'\u00e9cran\n    const count = 8;\n    const lightningProb = 0.015;\n    const speedFactor = 1.0;\n\n    window.addEventListener('resize', function() {\n        width = canvas.width = window.innerWidth;\n        height = canvas.height = window.innerHeight;\n        init();\n    });\n\n    class Pokeball {\n        constructor(index, total) {\n            this.index = index;\n            this.total = total;\n            this.reset(true);\n        }\n\n        reset(initial) {\n            if (initial === undefined) initial = false;\n            this.size = Math.random() * 20 + 22;\n            \n            \/\/ Voies verticales \u00e9quilibr\u00e9es\n            const colW = width \/ Math.max(1, this.total);\n            const baseLane = (this.index * colW) + (colW \/ 2);\n            const jitter = (Math.random() - 0.5) * (colW * 0.4);\n            \n            this.x = Math.max(this.size, Math.min(width - this.size, baseLane + jitter));\n            \n            \/\/ R\u00e9partition mod\u00e9r\u00e9e pour assurer au moins 3 Pok\u00e9balls visibles en m\u00eame temps\n            if (initial) {\n                \/\/ \u00c9talement fluide au lancement de la page\n                this.y = (this.index * (height \/ (this.total \/ 2))) - (height * 0.5) + (Math.random() * 100 - 50);\n            } else {\n                \/\/ D\u00e9lai mesur\u00e9 pour les r\u00e9apparitions (pas trop haut pour \u00e9viter l'effet \"\u00e9cran vide\")\n                this.y = -this.size * 3 - (Math.random() * 300 + 100);\n            }\n\n            \/\/ Vitesse constante pour maintenir un bon espacement\n            this.speedY = (Math.random() * 0.4 + 0.8) * speedFactor;\n            this.rotation = Math.random() * Math.PI * 2;\n            this.rotationSpeed = (Math.random() - 0.5) * 0.012;\n            this.opacity = Math.random() * 0.3 + 0.55;\n        }\n\n        update() {\n            this.y += this.speedY;\n            this.x += Math.sin(this.y * 0.005) * 0.3;\n            this.rotation += this.rotationSpeed;\n            if (this.y - this.size > height) this.reset(false);\n        }\n\n        draw() {\n            ctx.save();\n            ctx.translate(this.x, this.y);\n            ctx.rotate(this.rotation);\n            ctx.globalAlpha = this.opacity;\n            const r = this.size \/ 2;\n            const sw = r * 0.13;\n\n            \/\/ Contour noir ext\u00e9rieur\n            ctx.beginPath();\n            ctx.arc(0, 0, r, 0, Math.PI * 2);\n            ctx.fillStyle = '#1e1e24';\n            ctx.fill();\n\n            \/\/ Partie sup\u00e9rieure rouge\n            ctx.beginPath();\n            ctx.arc(0, 0, r - sw, Math.PI, 0, false);\n            ctx.fillStyle = '#EE1515';\n            ctx.fill();\n\n            \/\/ Partie inf\u00e9rieure blanche\n            ctx.beginPath();\n            ctx.arc(0, 0, r - sw, 0, Math.PI, false);\n            ctx.fillStyle = '#FFFFFF';\n            ctx.fill();\n\n            \/\/ Bande centrale noire\n            ctx.fillStyle = '#1e1e24';\n            ctx.fillRect(-r + sw, -sw * 0.85, (r - sw) * 2, sw * 1.7);\n\n            \/\/ Bouton central ext\u00e9rieur\n            ctx.beginPath();\n            ctx.arc(0, 0, r * 0.32, 0, Math.PI * 2);\n            ctx.fillStyle = '#1e1e24';\n            ctx.fill();\n\n            \/\/ Bouton central int\u00e9rieur blanc\n            ctx.beginPath();\n            ctx.arc(0, 0, r * 0.2, 0, Math.PI * 2);\n            ctx.fillStyle = '#FFFFFF';\n            ctx.fill();\n\n            \/\/ Reflet brillant\n            ctx.beginPath();\n            ctx.arc(-r * 0.35, -r * 0.35, r * 0.2, 0, Math.PI * 2);\n            ctx.fillStyle = 'rgba(255, 255, 255, 0.7)';\n            ctx.fill();\n\n            ctx.restore();\n        }\n    }\n\n    let bolts = [];\n    let flash = 0;\n    let pokeballs = [];\n\n    function init() {\n        pokeballs = [];\n        for (let i = 0; i < count; i++) {\n            pokeballs.push(new Pokeball(i, count));\n        }\n    }\n    init();\n\n    function addLightning() {\n        let x = Math.random() * width;\n        let y = 0;\n        let path = [{ x: x, y: y }];\n        let segs = Math.floor(Math.random() * 7) + 5;\n        for (let i = 0; i < segs; i++) {\n            x += (Math.random() - 0.5) * 90;\n            y += (height \/ segs) * (Math.random() * 0.5 + 0.8);\n            path.push({ x: x, y: y });\n        }\n        bolts.push({\n            path: path,\n            life: 1.0,\n            w: Math.random() * 3 + 2.5,\n            col: Math.random() > 0.2 ? '#D97706' : '#EAB308'\n        });\n        flash = 0.08;\n    }\n\n    function loop() {\n        ctx.clearRect(0, 0, width, height);\n\n        if (Math.random() < lightningProb) {\n            addLightning();\n        }\n\n        if (flash > 0) {\n            ctx.fillStyle = 'rgba(251, 191, 36, ' + flash + ')';\n            ctx.fillRect(0, 0, width, height);\n            flash -= 0.015;\n        }\n\n        for (let i = bolts.length - 1; i >= 0; i--) {\n            const b = bolts[i];\n            ctx.save();\n            ctx.beginPath();\n            ctx.moveTo(b.path[0].x, b.path[0].y);\n            for (let j = 1; j < b.path.length; j++) {\n                ctx.lineTo(b.path[j].x, b.path[j].y);\n            }\n            ctx.strokeStyle = b.col;\n            ctx.lineWidth = b.w;\n            ctx.globalAlpha = b.life;\n            ctx.shadowColor = '#F59E0B';\n            ctx.shadowBlur = 10;\n            ctx.stroke();\n            ctx.restore();\n\n            b.life -= 0.09;\n            if (b.life <= 0) {\n                bolts.splice(i, 1);\n            }\n        }\n\n        for (let i = 0; i < pokeballs.length; i++) {\n            pokeballs[i].update();\n            pokeballs[i].draw();\n        }\n\n        requestAnimationFrame(loop);\n    }\n\n    loop();\n})();\n<\/script>\n<!-- FIN FOND ANIME POKEMON -->\n\n\n\n<h2 class=\"wp-block-heading has-text-align-center\">\u26a1F\u00caTEZ LES 30 ANS DE POK\u00c9MON DANS VOTRE CENTRE ! \u26a1<br><\/h2>\n\n\n\n<p class=\"has-text-align-center has-black-color has-text-color has-link-color has-medium-font-size wp-elements-143e37a23115c65c703969d05c9b783d\">Pr\u00e9parez vos Pok\u00e9 Balls, Dresseurs et Dresseuses ! <\/p>\n\n\n\n<p class=\"has-text-align-center has-black-color has-white-background-color has-text-color has-background has-link-color has-medium-font-size wp-elements-bb5f564d1c016a85f322cedf4629997f\"><strong>Du 14 au 26 septembre<\/strong>, votre centre commercial se transforme en v\u00e9ritable ar\u00e8ne Pok\u00e9mon!<\/p>\n\n\n\n<div style=\"height:11px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Au programme de cet \u00e9v\u00e9nement l\u00e9gendaire :<\/h2>\n\n\n\n<p><\/p>\n\n\n\n<div class=\"wp-block-cb-carousel-v2 alignwide cb-carousel-block\" data-cb-slides-per-view=\"1\" data-cb-slides-per-group=\"1\" data-cb-space-between=\"30\" data-cb-speed=\"400\" data-cb-navigation=\"true\" data-cb-pagination=\"true\" data-cb-loop=\"true\" data-cb-autoplay=\"true\" data-cb-autoplay-speed=\"4000\" data-cb-pause-on-mouse-enter=\"true\" data-cb-breakpoints=\"{&quot;1024&quot;:{&quot;slidesPerView&quot;:2,&quot;slidesPerGroup&quot;:2}}\"><div class=\"swiper\"><div class=\"cb-wrapper swiper-wrapper\">\n<div class=\"wp-block-cb-slide-v2 cb-slide swiper-slide\">\n<h4 class=\"wp-block-heading has-text-align-center has-background\" style=\"background-color:#ffdd00;margin-top:0;margin-bottom:0;font-size:18px\">\ud83d\udcf8 RENCONTRE AVEC PIKACHU<\/h4>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p class=\"has-text-align-center has-black-color has-text-color has-link-color wp-elements-fa4ff03722c142f7824954029400c19a\" style=\"font-size:17px\">La star incontest\u00e9e est de sortie ! Venez rencontrer Pikachu en vrai, lui faire un c\u00e2lin et repartez avec votre plus belle photo souvenir !<\/p>\n\n\n\n<p class=\"has-text-align-center has-black-color has-text-color has-link-color wp-elements-599adfe018b07de3655a50b474d27ff3\" style=\"font-size:17px\"><strong>\ud83d\udcc5 Mercredi 16 septembre<\/strong><\/p>\n\n\n\n<p class=\"has-text-align-center has-black-color has-text-color has-link-color wp-elements-8216c1d8542d53cdcf82b6d0d89a721f\" style=\"font-size:17px\"><strong>\ud83d\udd5a<\/strong> <strong>De 11h \u00e0 13h et de 14h30 \u00e0 19h<\/strong><\/p>\n\n\n\n<p class=\"has-text-align-center has-black-color has-text-color has-link-color wp-elements-48e6551d2fff0c8441512fad28bce605\" style=\"font-size:17px\"><\/p>\n\n\n\n<p class=\"has-text-align-center has-black-color has-text-color has-link-color wp-elements-7ac6a9f7eb82e26b9552d9192f608f7c\" style=\"font-size:17px\">Venez faire votre plus belle photo !<\/p>\n\n\n\n<p class=\"has-text-align-center\" style=\"font-size:17px\"><br><br><\/p>\n<\/div>\n\n\n\n<div class=\"wp-block-cb-slide-v2 cb-slide swiper-slide\">\n<h4 class=\"wp-block-heading has-text-align-center has-white-color has-text-color has-background has-link-color wp-elements-2cf0ed253e76dade928069fdf96675b3\" style=\"background-color:#c60823;margin-top:0;margin-bottom:0;font-size:18px\"><strong><strong>\ud83c\udccf<\/strong><\/strong> <strong><strong>BOURSE D\u2019\u00c9CHANGE OFFICIELLE<\/strong><\/strong><\/h4>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p class=\"has-text-align-center has-black-color has-text-color has-link-color wp-elements-86dc8e89997865b9f57dd872f959c078\" style=\"font-size:17px\">Apportez vos doubles et d\u00e9nichez la carte rare qui vous manque !<\/p>\n\n\n\n<p class=\"has-text-align-center has-black-color has-text-color has-link-color wp-elements-411999a424d2e53fff9b19efdc024b63\" style=\"font-size:17px\"><strong>\ud83d\udcc5 Samedi 19 septembre <\/strong><\/p>\n\n\n\n<p class=\"has-text-align-center has-black-color has-text-color has-link-color wp-elements-541b5b0ae19826be4e6dec01df86c181\" style=\"font-size:17px\"><strong>\ud83d\udd5a De 11h \u00e0 13h et de 14h \u00e0 18h<\/strong><\/p>\n\n\n\n<p class=\"has-text-align-center\" style=\"font-size:17px\"><strong>\ud83d\udcc5 Mercredi 23 septembre<\/strong><\/p>\n\n\n\n<p class=\"has-text-align-center\" style=\"font-size:17px\"><strong>\ud83d\udd5a<\/strong> <strong>De 11h \u00e0 13h et de 14h30 \u00e0 19h<\/strong><\/p>\n\n\n\n<p class=\"has-text-align-center has-black-color has-text-color has-link-color wp-elements-f9c67e3fde054be09dc4c2cc11348915\" style=\"font-size:17px\">Venez compl\u00e9ter votre collection !<\/p>\n\n\n\n<p class=\"has-text-align-center\" style=\"font-size:17px\"><br><br><\/p>\n<\/div>\n\n\n\n<div class=\"wp-block-cb-slide-v2 cb-slide swiper-slide\">\n<h4 class=\"wp-block-heading has-text-align-center has-black-color has-text-color has-background has-link-color wp-elements-e6158917f00809cedc01dc7fb301ed4a\" style=\"background-color:#ffdd00;margin-top:0;margin-bottom:0;font-size:18px\">\ud83d\udcf1 QUIZ ET DUELS POK\u00c9MON<\/h4>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p class=\"has-text-align-center has-black-color has-text-color has-link-color wp-elements-2e4af6ca5e7e0aabc936db32df2a1b6b\" style=\"font-size:17px\">\ud83c\udfaf Relevez nos premiers D\u00e9fis Pok\u00e9mon sur place<\/p>\n\n\n\n<p class=\"has-text-align-center has-black-color has-text-color has-link-color wp-elements-32e8ab9b20cf7d4bb1288bad9544df39\" style=\"font-size:17px\">\ud83d\udcf1 Lancez Pok\u00e9mon GO et partez \u00e0 la chasse directement dans nos all\u00e9es !<\/p>\n\n\n\n<p class=\"has-text-align-center has-black-color has-text-color has-link-color wp-elements-7f4bdc73dba00a8280f83e407882f50f\" style=\"font-size:17px\">\ud83c\udf89 2 000 packs loisirs du JCC Pok\u00e9mon \u00e0 gagner !<\/p>\n\n\n\n<p class=\"has-text-align-center has-black-color has-text-color has-link-color wp-elements-a74e4911b036d16042721800fa5dec71\" style=\"font-size:17px\"><strong>\ud83d\udcc5 Mercredis 16 &amp; 23 septembre<\/strong> <strong><strong>\ud83d\udd5a<\/strong> <strong>De 11h \u00e0 13h et de 14h30 \u00e0 19h<\/strong><\/strong><\/p>\n\n\n\n<p class=\"has-text-align-center\" style=\"font-size:17px\"><strong>\ud83d\udcc5 Samedi 19 septembre \ud83d\udd5aDe 11h \u00e0 13h et de 14h \u00e0 18h<\/strong><\/p>\n\n\n\n<p class=\"has-text-align-center\" style=\"font-size:17px\"><br><br><\/p>\n<\/div>\n\n\n\n<div class=\"wp-block-cb-slide-v2 cb-slide swiper-slide\">\n<h4 class=\"wp-block-heading has-text-align-center has-white-color has-text-color has-background has-link-color wp-elements-ddfdf17a0ffb25ea44eed871df8ed83c\" style=\"background-color:#c60823;margin-top:0;margin-bottom:0;font-size:18px\">\ud83c\udf81PARTICIPEZ AU GRAND QUIZ <\/h4>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p class=\"has-text-align-center has-black-color has-text-color has-link-color wp-elements-0da45fd395ab764e6319357b0727dc44\" style=\"font-size:17px\">Vous connaissez le Pok\u00e9dex par c\u0153ur ? C'est le moment de briller et de repartir les bras charg\u00e9s !<\/p>\n\n\n\n<p class=\"has-text-align-center has-black-color has-text-color has-link-color wp-elements-4101c15a30766e59961852c6ea471c87\" style=\"font-size:17px\">\ud83c\udf89 Des cadeaux (Nintendo Switch 2 et le jeu Pokopia, peluches, cartes\u2026) et des surprises Pok\u00e9mon \u00e0 gagner !<\/p>\n\n\n\n<p class=\"has-text-align-center has-black-color has-text-color has-link-color wp-elements-cbccfefe372c877f86e392e13413d502\" style=\"font-size:17px\"><strong>\ud83d\udcc5 Samedi 26 septembre<\/strong><\/p>\n\n\n\n<p class=\"has-text-align-center has-black-color has-text-color has-link-color wp-elements-ec90565a6156f009504ca0f843a2e1fd\" style=\"font-size:17px\"><strong>\ud83d\udd5a<\/strong> <strong>\u00e0 15h pour les enfants et 17h pour les adultes<\/strong><\/p>\n\n\n\n<p class=\"has-text-align-center\" style=\"font-size:17px\"><br><br><\/p>\n<\/div>\n<\/div><\/div><div class=\"cb-pagination swiper-pagination\"><\/div><div class=\"cb-button-prev swiper-button-prev\"><\/div><div class=\"cb-button-next swiper-button-next\"><\/div><\/div>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p class=\"has-text-align-center has-medium-font-size\"><strong>\u26a1PR\u00caTS \u00c0 PROUVER QUE VOUS \u00caTES LE MEILLEUR DRESSEUR OU DRESSEUSE ? <\/strong><\/p>\n\n\n\n<p class=\"has-text-align-center has-medium-font-size\"><strong>On vous attend nombreux !<\/strong><\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p><\/p>\n","protected":false},"author":51975,"featured_media":36486868,"template":"","class_list":["post-36350786","news-centre","type-news-centre","status-publish","has-post-thumbnail","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pok\u00e9mon d\u00e9barque dans votre centre ! - Centre Commercial Carrefour Vannes<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/www.centre-commercial.fr\/carrefour-vannes\/news-centre\/pokemon-debarque-dans-votre-centre\/\" \/>\n<meta property=\"og:locale\" content=\"fr_FR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pok\u00e9mon d\u00e9barque dans votre centre ! - Centre Commercial Carrefour Vannes\" \/>\n<meta property=\"og:description\" content=\"\u26a1F\u00caTEZ LES 30 ANS DE POK\u00c9MON DANS VOTRE CENTRE ! \u26a1 Pr\u00e9parez vos Pok\u00e9 Balls, Dresseurs et Dresseuses ! Du 14 au 26 septembre, votre centre commercial se transforme en v\u00e9ritable ar\u00e8ne Pok\u00e9mon! Au programme de cet \u00e9v\u00e9nement l\u00e9gendaire : \u26a1PR\u00caTS \u00c0 PROUVER QUE VOUS \u00caTES LE MEILLEUR DRESSEUR OU DRESSEUSE ? On vous attend [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"http:\/\/www.centre-commercial.fr\/carrefour-vannes\/news-centre\/pokemon-debarque-dans-votre-centre\/\" \/>\n<meta property=\"og:site_name\" content=\"Centre Commercial Carrefour Vannes\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.centre-commercial.fr\/carrefour-vannes\/wp-content\/uploads\/sites\/35\/2026\/09\/banniere_site_animations-1200x628-1-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Dur\u00e9e de lecture estim\u00e9e\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"http:\\\/\\\/www.centre-commercial.fr\\\/carrefour-vannes\\\/news-centre\\\/pokemon-debarque-dans-votre-centre\\\/\",\"url\":\"http:\\\/\\\/www.centre-commercial.fr\\\/carrefour-vannes\\\/news-centre\\\/pokemon-debarque-dans-votre-centre\\\/\",\"name\":\"Pok\u00e9mon d\u00e9barque dans votre centre ! - Centre Commercial Carrefour Vannes\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.centre-commercial.fr\\\/carrefour-vannes\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\\\/\\\/www.centre-commercial.fr\\\/carrefour-vannes\\\/news-centre\\\/pokemon-debarque-dans-votre-centre\\\/#primaryimage\"},\"image\":{\"@id\":\"http:\\\/\\\/www.centre-commercial.fr\\\/carrefour-vannes\\\/news-centre\\\/pokemon-debarque-dans-votre-centre\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.centre-commercial.fr\\\/carrefour-vannes\\\/wp-content\\\/uploads\\\/sites\\\/35\\\/2026\\\/09\\\/banniere_site_animations-1200x628-1-1.png\",\"datePublished\":\"2026-09-04T07:00:00+00:00\",\"breadcrumb\":{\"@id\":\"http:\\\/\\\/www.centre-commercial.fr\\\/carrefour-vannes\\\/news-centre\\\/pokemon-debarque-dans-votre-centre\\\/#breadcrumb\"},\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\\\/\\\/www.centre-commercial.fr\\\/carrefour-vannes\\\/news-centre\\\/pokemon-debarque-dans-votre-centre\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"http:\\\/\\\/www.centre-commercial.fr\\\/carrefour-vannes\\\/news-centre\\\/pokemon-debarque-dans-votre-centre\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.centre-commercial.fr\\\/carrefour-vannes\\\/wp-content\\\/uploads\\\/sites\\\/35\\\/2026\\\/09\\\/banniere_site_animations-1200x628-1-1.png\",\"contentUrl\":\"https:\\\/\\\/www.centre-commercial.fr\\\/carrefour-vannes\\\/wp-content\\\/uploads\\\/sites\\\/35\\\/2026\\\/09\\\/banniere_site_animations-1200x628-1-1.png\",\"width\":1200,\"height\":628},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\\\/\\\/www.centre-commercial.fr\\\/carrefour-vannes\\\/news-centre\\\/pokemon-debarque-dans-votre-centre\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\\\/\\\/www.centre-commercial.fr\\\/carrefour-vannes\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"News Centre\",\"item\":\"https:\\\/\\\/www.centre-commercial.fr\\\/carrefour-vannes\\\/actus-shopping\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Pok\u00e9mon d\u00e9barque dans votre centre !\",\"item\":\"http:\\\/\\\/www.centre-commercial.fr\\\/carrefour-vannes\\\/news-centre\\\/pokemon-debarque-dans-votre-centre\\\/\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.centre-commercial.fr\\\/carrefour-vannes\\\/#website\",\"url\":\"https:\\\/\\\/www.centre-commercial.fr\\\/carrefour-vannes\\\/\",\"name\":\"Centre Commercial Carrefour Vannes\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.centre-commercial.fr\\\/carrefour-vannes\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.centre-commercial.fr\\\/carrefour-vannes\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"fr-FR\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.centre-commercial.fr\\\/carrefour-vannes\\\/#organization\",\"name\":\"Centre Commercial Carrefour Vannes\",\"url\":\"https:\\\/\\\/www.centre-commercial.fr\\\/carrefour-vannes\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\\\/\\\/www.centre-commercial.fr\\\/carrefour-vannes\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.centre-commercial.fr\\\/carrefour-vannes\\\/wp-content\\\/uploads\\\/sites\\\/35\\\/2018\\\/08\\\/cropped-Vannes_HONZ.png\",\"contentUrl\":\"https:\\\/\\\/www.centre-commercial.fr\\\/carrefour-vannes\\\/wp-content\\\/uploads\\\/sites\\\/35\\\/2018\\\/08\\\/cropped-Vannes_HONZ.png\",\"width\":206,\"height\":70,\"caption\":\"Centre Commercial Carrefour Vannes\"},\"image\":{\"@id\":\"https:\\\/\\\/www.centre-commercial.fr\\\/carrefour-vannes\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pok\u00e9mon d\u00e9barque dans votre centre ! - Centre Commercial Carrefour Vannes","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"http:\/\/www.centre-commercial.fr\/carrefour-vannes\/news-centre\/pokemon-debarque-dans-votre-centre\/","og_locale":"fr_FR","og_type":"article","og_title":"Pok\u00e9mon d\u00e9barque dans votre centre ! - Centre Commercial Carrefour Vannes","og_description":"\u26a1F\u00caTEZ LES 30 ANS DE POK\u00c9MON DANS VOTRE CENTRE ! \u26a1 Pr\u00e9parez vos Pok\u00e9 Balls, Dresseurs et Dresseuses ! Du 14 au 26 septembre, votre centre commercial se transforme en v\u00e9ritable ar\u00e8ne Pok\u00e9mon! Au programme de cet \u00e9v\u00e9nement l\u00e9gendaire : \u26a1PR\u00caTS \u00c0 PROUVER QUE VOUS \u00caTES LE MEILLEUR DRESSEUR OU DRESSEUSE ? On vous attend [&hellip;]","og_url":"http:\/\/www.centre-commercial.fr\/carrefour-vannes\/news-centre\/pokemon-debarque-dans-votre-centre\/","og_site_name":"Centre Commercial Carrefour Vannes","og_image":[{"width":1200,"height":628,"url":"https:\/\/www.centre-commercial.fr\/carrefour-vannes\/wp-content\/uploads\/sites\/35\/2026\/09\/banniere_site_animations-1200x628-1-1.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Dur\u00e9e de lecture estim\u00e9e":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"http:\/\/www.centre-commercial.fr\/carrefour-vannes\/news-centre\/pokemon-debarque-dans-votre-centre\/","url":"http:\/\/www.centre-commercial.fr\/carrefour-vannes\/news-centre\/pokemon-debarque-dans-votre-centre\/","name":"Pok\u00e9mon d\u00e9barque dans votre centre ! - Centre Commercial Carrefour Vannes","isPartOf":{"@id":"https:\/\/www.centre-commercial.fr\/carrefour-vannes\/#website"},"primaryImageOfPage":{"@id":"http:\/\/www.centre-commercial.fr\/carrefour-vannes\/news-centre\/pokemon-debarque-dans-votre-centre\/#primaryimage"},"image":{"@id":"http:\/\/www.centre-commercial.fr\/carrefour-vannes\/news-centre\/pokemon-debarque-dans-votre-centre\/#primaryimage"},"thumbnailUrl":"https:\/\/www.centre-commercial.fr\/carrefour-vannes\/wp-content\/uploads\/sites\/35\/2026\/09\/banniere_site_animations-1200x628-1-1.png","datePublished":"2026-09-04T07:00:00+00:00","breadcrumb":{"@id":"http:\/\/www.centre-commercial.fr\/carrefour-vannes\/news-centre\/pokemon-debarque-dans-votre-centre\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["http:\/\/www.centre-commercial.fr\/carrefour-vannes\/news-centre\/pokemon-debarque-dans-votre-centre\/"]}]},{"@type":"ImageObject","inLanguage":"fr-FR","@id":"http:\/\/www.centre-commercial.fr\/carrefour-vannes\/news-centre\/pokemon-debarque-dans-votre-centre\/#primaryimage","url":"https:\/\/www.centre-commercial.fr\/carrefour-vannes\/wp-content\/uploads\/sites\/35\/2026\/09\/banniere_site_animations-1200x628-1-1.png","contentUrl":"https:\/\/www.centre-commercial.fr\/carrefour-vannes\/wp-content\/uploads\/sites\/35\/2026\/09\/banniere_site_animations-1200x628-1-1.png","width":1200,"height":628},{"@type":"BreadcrumbList","@id":"http:\/\/www.centre-commercial.fr\/carrefour-vannes\/news-centre\/pokemon-debarque-dans-votre-centre\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.centre-commercial.fr\/carrefour-vannes\/"},{"@type":"ListItem","position":2,"name":"News Centre","item":"https:\/\/www.centre-commercial.fr\/carrefour-vannes\/actus-shopping\/"},{"@type":"ListItem","position":3,"name":"Pok\u00e9mon d\u00e9barque dans votre centre !","item":"http:\/\/www.centre-commercial.fr\/carrefour-vannes\/news-centre\/pokemon-debarque-dans-votre-centre\/"}]},{"@type":"WebSite","@id":"https:\/\/www.centre-commercial.fr\/carrefour-vannes\/#website","url":"https:\/\/www.centre-commercial.fr\/carrefour-vannes\/","name":"Centre Commercial Carrefour Vannes","description":"","publisher":{"@id":"https:\/\/www.centre-commercial.fr\/carrefour-vannes\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.centre-commercial.fr\/carrefour-vannes\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Organization","@id":"https:\/\/www.centre-commercial.fr\/carrefour-vannes\/#organization","name":"Centre Commercial Carrefour Vannes","url":"https:\/\/www.centre-commercial.fr\/carrefour-vannes\/","logo":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/www.centre-commercial.fr\/carrefour-vannes\/#\/schema\/logo\/image\/","url":"https:\/\/www.centre-commercial.fr\/carrefour-vannes\/wp-content\/uploads\/sites\/35\/2018\/08\/cropped-Vannes_HONZ.png","contentUrl":"https:\/\/www.centre-commercial.fr\/carrefour-vannes\/wp-content\/uploads\/sites\/35\/2018\/08\/cropped-Vannes_HONZ.png","width":206,"height":70,"caption":"Centre Commercial Carrefour Vannes"},"image":{"@id":"https:\/\/www.centre-commercial.fr\/carrefour-vannes\/#\/schema\/logo\/image\/"}}]}},"publishpress_future_action":{"enabled":true,"date":"2026-09-26 20:00:00","action":"change-status","newStatus":"draft","terms":[],"taxonomy":"","extraData":[]},"publishpress_future_workflow_manual_trigger":{"enabledWorkflows":[]},"_links":{"self":[{"href":"https:\/\/www.centre-commercial.fr\/carrefour-vannes\/wp-json\/wp\/v2\/news-centre\/36350786","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.centre-commercial.fr\/carrefour-vannes\/wp-json\/wp\/v2\/news-centre"}],"about":[{"href":"https:\/\/www.centre-commercial.fr\/carrefour-vannes\/wp-json\/wp\/v2\/types\/news-centre"}],"author":[{"embeddable":true,"href":"https:\/\/www.centre-commercial.fr\/carrefour-vannes\/wp-json\/wp\/v2\/users\/51975"}],"version-history":[{"count":1,"href":"https:\/\/www.centre-commercial.fr\/carrefour-vannes\/wp-json\/wp\/v2\/news-centre\/36350786\/revisions"}],"predecessor-version":[{"id":36486873,"href":"https:\/\/www.centre-commercial.fr\/carrefour-vannes\/wp-json\/wp\/v2\/news-centre\/36350786\/revisions\/36486873"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.centre-commercial.fr\/carrefour-vannes\/wp-json\/wp\/v2\/media\/36486868"}],"wp:attachment":[{"href":"https:\/\/www.centre-commercial.fr\/carrefour-vannes\/wp-json\/wp\/v2\/media?parent=36350786"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}