Players 2-4 Playtime 25-45 Age 8+ Designer Roberta Taylor Publisher Maestro Media Mechanics Contracts, Movement Points, Tile Placement Categories Children's Game, Exploration In Hello Kitty: Day at the Park, players take on the role of Hello Kitty, My Melody, Kuromi, and other characters to playfully compete for the most epic day of fun at the local park. They explore the park by laying tiles, ideally gaining items along the way that allow them to complete adventures, which they will document by taking selfies. The game features a unique system to scale all parts of the game in difficulty for each individual player, even while the game is in progress, so kids can start with the simplest version to begin to explore the game's mechanisms, then learn the more advanced gameplay when they feel ready. Once all the tiles have been played, the end of the game is triggered, and the player who has gained the most points from their adventures wins! var cardText = document.querySelector(".storepass-see-more-content") var showMore = document.querySelector('.storepass-see-more') function toggleSeeMore() { if (showMore.innerHTML == 'Show More') { showMore.innerHTML = 'Show Less' cardText.classList.add('storepass-see-more-content-show') } else { showMore.innerHTML = 'Show More' cardText.classList.remove('storepass-see-more-content-show') } } initText() function initText() { if (!checkOverflow(cardText)) return showMore.classList.remove('d-none') } function checkOverflow(el) { var curOverflow = el.style.overflow; if (!curOverflow || curOverflow === "visible") el.style.overflow = "hidden" var isOverflowing = el.clientWidth < el.scrollWidth || el.clientHeight < el.scrollHeight; el.style.overflow = curOverflow; return isOverflowing; } .storepass-see-more-content { display: inline-block; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; height: 28px; } .storepass-see-more-content-show { -webkit-line-clamp: unset; height: unset; } .storepass-custom-description .d-none { display: none!important; } .storepass-custom-description .d-block { display: block!important; }