{"id":80,"date":"2026-06-27T21:18:41","date_gmt":"2026-06-27T21:18:41","guid":{"rendered":"https:\/\/wolfsickness.com\/?page_id=80"},"modified":"2026-06-27T21:26:16","modified_gmt":"2026-06-27T21:26:16","slug":"snake","status":"publish","type":"page","link":"https:\/\/wolfsickness.com\/?page_id=80","title":{"rendered":"Match Game"},"content":{"rendered":"<div style=\"background-color: #fcfcfc; border: 1px solid #eaeaeb; padding: 25px; max-width: 400px; border-radius: 8px; font-family: Arial, sans-serif; margin: 20px auto; text-align: center; box-shadow: 0 4px 12px rgba(0,0,0,0.03);\">\n  \n  <h3 style=\"margin: 0 0 10px 0; color: #333333; font-size: 22px;\">Wolfsickness Match<\/h3>\n  <p id=\"memoryStatus\" style=\"color: #666666; font-size: 16px; margin-bottom: 20px;\">Moves: 0<\/p>\n\n  <div id=\"memoryBoard\" style=\"display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; max-width: 320px; margin: 0 auto 20px auto;\">\n    <\/div>\n\n  <button onclick=\"initMemoryGame()\" style=\"background-color: #fc4c02; color: #ffffff; border: none; padding: 12px 25px; border-radius: 4px; font-weight: bold; font-size: 16px; cursor: pointer; transition: background-color 0.2s; touch-action: manipulation;\">Restart Game<\/button>\n\n  <script>\n    const emojis = ['\ud83d\udeb2', '\u2708\ufe0f', '\ud83c\udfae', '\ud83d\udd77\ufe0f', '\ud83c\udfd4\ufe0f', '\ud83d\udcbb'];\n    let cards = [...emojis, ...emojis];\n    let moves = 0;\n    let firstCard = null;\n    let secondCard = null;\n    let lockBoard = false;\n    let matchedPairs = 0;\n\n    function shuffle(array) {\n      for (let i = array.length - 1; i > 0; i--) {\n        const j = Math.floor(Math.random() * (i + 1));\n        [array[i], array[j]] = [array[j], array[i]];\n      }\n    }\n\n    function initMemoryGame() {\n      const board = document.getElementById('memoryBoard');\n      board.innerHTML = ''; \/\/ Clear previous board\n      moves = 0;\n      matchedPairs = 0;\n      firstCard = null;\n      secondCard = null;\n      lockBoard = false;\n      \n      const status = document.getElementById('memoryStatus');\n      status.innerText = `Moves: ${moves}`;\n      status.style.color = '#666666';\n      status.style.fontWeight = 'normal';\n\n      shuffle(cards);\n\n      cards.forEach((emoji, index) => {\n        const card = document.createElement('button');\n        card.style.height = '70px';\n        card.style.backgroundColor = '#eeeeee';\n        card.style.border = 'none';\n        card.style.borderRadius = '8px';\n        card.style.fontSize = '32px';\n        card.style.cursor = 'pointer';\n        card.style.display = 'flex';\n        card.style.alignItems = 'center';\n        card.style.justifyContent = 'center';\n        card.dataset.emoji = emoji;\n        card.dataset.index = index;\n        card.onclick = () => flipCard(card);\n        board.appendChild(card);\n      });\n    }\n\n    function flipCard(card) {\n      if (lockBoard) return;\n      if (card === firstCard) return;\n      if (card.innerHTML !== '') return; \/\/ Card is already flipped\n\n      card.innerHTML = card.dataset.emoji;\n      card.style.backgroundColor = '#ffffff';\n      card.style.border = '2px solid #fc4c02';\n\n      if (!firstCard) {\n        firstCard = card;\n        return;\n      }\n\n      secondCard = card;\n      moves++;\n      document.getElementById('memoryStatus').innerText = `Moves: ${moves}`;\n      checkForMatch();\n    }\n\n    function checkForMatch() {\n      let isMatch = firstCard.dataset.emoji === secondCard.dataset.emoji;\n\n      if (isMatch) {\n        firstCard.style.backgroundColor = '#e8f5e9'; \/\/ Light green for success\n        firstCard.style.border = '2px solid #4CAF50';\n        secondCard.style.backgroundColor = '#e8f5e9';\n        secondCard.style.border = '2px solid #4CAF50';\n        matchedPairs++;\n        resetBoard();\n        \n        if (matchedPairs === emojis.length) {\n          const status = document.getElementById('memoryStatus');\n          status.innerText = `You won in ${moves} moves!`;\n          status.style.color = '#fc4c02';\n          status.style.fontWeight = 'bold';\n        }\n      } else {\n        lockBoard = true;\n        setTimeout(() => {\n          firstCard.innerHTML = '';\n          firstCard.style.backgroundColor = '#eeeeee';\n          firstCard.style.border = 'none';\n          secondCard.innerHTML = '';\n          secondCard.style.backgroundColor = '#eeeeee';\n          secondCard.style.border = 'none';\n          resetBoard();\n        }, 800); \/\/ 800ms delay to memorize the cards\n      }\n    }\n\n    function resetBoard() {\n      [firstCard, secondCard, lockBoard] = [null, null, false];\n    }\n\n    \/\/ Initialize the game automatically when the page loads\n    initMemoryGame();\n  <\/script>\n\n<\/div>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Wolfsickness Match Moves: 0 Restart Game<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-80","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Match Game - Wolfsickness<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/wolfsickness.com\/?page_id=80\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Match Game - Wolfsickness\" \/>\n<meta property=\"og:description\" content=\"Wolfsickness Match Moves: 0 Restart Game\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wolfsickness.com\/?page_id=80\" \/>\n<meta property=\"og:site_name\" content=\"Wolfsickness\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-27T21:26:16+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/wolfsickness.com\\\/?page_id=80\",\"url\":\"https:\\\/\\\/wolfsickness.com\\\/?page_id=80\",\"name\":\"Match Game - Wolfsickness\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wolfsickness.com\\\/#website\"},\"datePublished\":\"2026-06-27T21:18:41+00:00\",\"dateModified\":\"2026-06-27T21:26:16+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/wolfsickness.com\\\/?page_id=80#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/wolfsickness.com\\\/?page_id=80\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/wolfsickness.com\\\/?page_id=80#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/wolfsickness.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Match Game\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/wolfsickness.com\\\/#website\",\"url\":\"https:\\\/\\\/wolfsickness.com\\\/\",\"name\":\"Wolfsickness\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/wolfsickness.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Match Game - Wolfsickness","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":"https:\/\/wolfsickness.com\/?page_id=80","og_locale":"en_US","og_type":"article","og_title":"Match Game - Wolfsickness","og_description":"Wolfsickness Match Moves: 0 Restart Game","og_url":"https:\/\/wolfsickness.com\/?page_id=80","og_site_name":"Wolfsickness","article_modified_time":"2026-06-27T21:26:16+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/wolfsickness.com\/?page_id=80","url":"https:\/\/wolfsickness.com\/?page_id=80","name":"Match Game - Wolfsickness","isPartOf":{"@id":"https:\/\/wolfsickness.com\/#website"},"datePublished":"2026-06-27T21:18:41+00:00","dateModified":"2026-06-27T21:26:16+00:00","breadcrumb":{"@id":"https:\/\/wolfsickness.com\/?page_id=80#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wolfsickness.com\/?page_id=80"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/wolfsickness.com\/?page_id=80#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/wolfsickness.com\/"},{"@type":"ListItem","position":2,"name":"Match Game"}]},{"@type":"WebSite","@id":"https:\/\/wolfsickness.com\/#website","url":"https:\/\/wolfsickness.com\/","name":"Wolfsickness","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/wolfsickness.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/wolfsickness.com\/index.php?rest_route=\/wp\/v2\/pages\/80","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wolfsickness.com\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/wolfsickness.com\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/wolfsickness.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/wolfsickness.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=80"}],"version-history":[{"count":5,"href":"https:\/\/wolfsickness.com\/index.php?rest_route=\/wp\/v2\/pages\/80\/revisions"}],"predecessor-version":[{"id":87,"href":"https:\/\/wolfsickness.com\/index.php?rest_route=\/wp\/v2\/pages\/80\/revisions\/87"}],"wp:attachment":[{"href":"https:\/\/wolfsickness.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=80"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}