MermaidTriv Games
Home About Contact
Puzzle Logic Strategy Casual

Roll & Match Sushi Puzzle

🎮 Game Player
Advertisement

Reviews

Roll & Match Sushi Puzzle stands out for its thoughtful level design. Each puzzle feels like a small brain teaser that rewards careful planning. The bright visuals and simple controls make it easy to pick up, while the increasing complexity provides lasting appeal. It is an excellent choice for anyone looking for a relaxing yet mentally stimulating game that the whole family can enjoy.

About This Game

Core Puzzle Mechanics

Roll & Match Sushi Puzzle centers on arranging colorful sushi pieces on a limited board. Each level presents a new layout that requires players to think ahead. The core action involves selecting a piece and moving it to a new position to create matches or fulfill specific arrangements. Space is tight, so every move counts. This design encourages careful planning rather than random trial and error.

Level Progression & Difficulty

As players advance, the puzzles become more complex. Early levels introduce basic arrangements, while later stages add constraints like limited moves or special piece types. The difficulty curve is gentle, allowing newcomers to learn the mechanics without frustration. Experienced puzzle solvers will find plenty of challenges that require logical thinking and pattern recognition.

Visual Style & Atmosphere

The game uses bright, cheerful visuals that create a welcoming environment. Sushi pieces are rendered with playful details, making each puzzle feel fresh. The interface is clean and intuitive, with clear feedback after each move. This positive aesthetic helps maintain focus and reduces stress, making the game suitable for relaxation or mental stimulation.

Strategic Thinking & Planning

Success in Roll & Match Sushi Puzzle depends on thinking several steps ahead. Players must consider how each move affects future options. The limited board space forces strategic decisions about which pieces to prioritize. Over time, players develop an eye for common patterns and efficient sequences. This gradual skill building is one of the game's most rewarding aspects.

Accessibility & Family Appeal

The controls are responsive and easy to learn, making the game accessible to players of all ages. No complex instructions are needed—just pick up and start solving. The family-friendly theme and non-violent gameplay ensure it is appropriate for children and adults alike. Whether played alone or with others, the game offers a positive, screen-time activity that exercises the mind.

✅ Compatibility & Testing

• Desktop (Windows 11, macOS Ventura)
• Mobile (iPhone 14, Samsung Galaxy S23)
• Tablet (iPad Pro, Android tablet)
✅Supported browsers: Chrome, Safari, Edge, Firefox (latest versions)
❌ Not supported: Internet Explorer, older browser versions

FAQ

Is Roll & Match Sushi Puzzle free to play?
The game is typically free to download with optional in-app purchases for hints or additional puzzle packs. The core experience is available without spending money, and players can enjoy many levels without any cost.
Can I play this game offline?
Yes, Roll & Match Sushi Puzzle can be played offline after the initial download. This makes it convenient for travel or areas with limited internet connectivity. All puzzle content is stored locally on the device.
How many levels are in the game?
The game includes a large number of levels that are gradually unlocked as you complete earlier puzzles. New levels are added through updates, providing ongoing content for regular players.
Is there a time limit for each puzzle?
No, there is no time limit. Players can take as long as they need to plan each move. This relaxed pace makes the game suitable for casual play and helps reduce stress while solving puzzles.
Does the game support multiple languages?
Yes, Roll & Match Sushi Puzzle supports several languages, including English, Spanish, French, German, and Japanese. The language can be changed in the settings menu to suit the player's preference.
Are there any hints or help features?
The game includes a hint system that can suggest a move when you are stuck. Hints are earned through gameplay or can be purchased. This feature helps players progress without frustration.

Player Comments

0 comments
U
User
Loading comments...
// Game Controls: Like / Dislike / Fav (function () { var likeBtn = document.getElementById('likeBtn'), dislikeBtn = document.getElementById('dislikeBtn'), favBtn = document.getElementById('favBtn'); var likeCount = document.querySelector('#likeBtn .ctrl-count'); var liked = false, disliked = false, faved = false, baseLikes = 4900; var commentsSec = document.getElementById('commentsSection'); var gameId = (commentsSec && commentsSec.dataset && commentsSec.dataset.gameId) || ''; function renderCount() { if (!likeCount) return; var c = baseLikes + (liked ? 1 : 0); likeCount.textContent = c >= 1000 ? (c / 1000).toFixed(1) + 'K' : c; } if (likeBtn) { likeBtn.addEventListener('click', function () { if (disliked) { disliked = false; dislikeBtn.classList.remove('active'); } liked = !liked; likeBtn.classList.toggle('active', liked); renderCount(); if (typeof apiService !== 'undefined' && gameId) { apiService.likeGame(gameId).then(function (r) { if (r && r.code === 0) showToast(liked ? 'Liked!' : 'Like removed', 'success'); }).catch(function () { showToast('Action failed', 'error'); }); } }); } if (dislikeBtn) { dislikeBtn.addEventListener('click', function () { if (liked) { liked = false; likeBtn.classList.remove('active'); renderCount(); } disliked = !disliked; dislikeBtn.classList.toggle('active', disliked); if (typeof apiService !== 'undefined' && gameId) { apiService.dislikeGame(gameId).then(function (r) { if (r && r.code === 0) showToast(disliked ? 'Disliked' : 'Dislike removed', 'success'); }).catch(function () { showToast('Action failed', 'error'); }); } }); } if (favBtn) { favBtn.addEventListener('click', function () { if (typeof apiService === 'undefined' || !apiService.isLoggedIn()) { if (typeof showToast === 'function') showToast('Please login first', 'warning'); return; } faved = !faved; favBtn.classList.toggle('active', faved); var icon = favBtn.querySelector('i'); if (icon) icon.className = faved ? 'fa fa-bookmark' : 'fa fa-bookmark-o'; var action = faved ? apiService.addFavorite(gameId) : apiService.removeFavorite(gameId); action.then(function (r) { if (r && r.code === 0) { showToast(faved ? 'Bookmarked!' : 'Bookmark removed', 'success'); } else if (r && r.code === 401) { faved = !faved; favBtn.classList.toggle('active', faved); if (icon) icon.className = faved ? 'fa fa-bookmark' : 'fa fa-bookmark-o'; showToast('Please login first', 'warning'); } else { showToast(r && r.msg ? r.msg : 'Operation failed', 'error'); } }).catch(function () { showToast('Network error', 'error'); }); }); } })(); // Favorite var isFavorited = false; var isToggling = false; function showToast(message, type) { type = type || 'success'; var toast = document.querySelector('.pl-toast'); if (!toast) { toast = document.createElement('div'); toast.className = 'pl-toast'; document.body.appendChild(toast); } toast.textContent = message; toast.className = 'pl-toast ' + type; setTimeout(function () { toast.classList.add('pl-show'); }, 10); setTimeout(function () { toast.classList.remove('pl-show'); }, 3000); } async function checkFavoriteStatus() { var btn = document.getElementById('favoriteBtn'); if (!btn) return; var gameId = btn.dataset.gameId; if (typeof apiService === 'undefined' || !apiService.isLoggedIn()) return; try { var fav = await apiService.checkFavorite(gameId); isFavorited = fav; updateFavoriteButton(); } catch (e) { } } function updateFavoriteButton() { var btn = document.getElementById('favoriteBtn'); if (!btn) return; if (isFavorited) { btn.classList.add('pl-faved'); } else { btn.classList.remove('pl-faved'); } } async function toggleFavorite() { var btn = document.getElementById('favoriteBtn'); if (!btn) return; var gameId = parseInt(btn.dataset.gameId); if (typeof apiService === 'undefined' || !apiService.isLoggedIn()) { showToast('Please login first', 'warning'); return; } if (isToggling) return; isToggling = true; try { var result; if (isFavorited) { result = await apiService.removeFavorite(gameId); } else { result = await apiService.addFavorite(gameId); } if (result.code === 0) { isFavorited = !isFavorited; updateFavoriteButton(); showToast(isFavorited ? 'Added to favorites' : 'Removed from favorites', 'success'); } else if (result.code === 401) { showToast('Please login first', 'warning'); } else if (result.code === 400) { await checkFavoriteStatus(); showToast(result.msg || 'Operation failed', 'error'); } else { showToast(result.msg || 'Operation failed', 'error'); } } catch (e) { showToast('Network error', 'error'); } finally { isToggling = false; } } // Comments var commentsPage = 1; var hasMoreComments = false; var selectedRating = 5; function initCommentForm() { var form = document.getElementById('commentForm'); if (!form) return; if (typeof apiService !== 'undefined' && apiService.isLoggedIn()) { var info = apiService.getMemberInfo(); if (info) { var nameEl = document.getElementById('currentUserName'); if (nameEl) nameEl.textContent = info.nickname || 'User'; var avatarEl = document.getElementById('currentUserAvatar'); if (avatarEl) { if (info.avatar) { avatarEl.innerHTML = 'Avatar'; } else { avatarEl.textContent = (info.nickname || 'User').charAt(0).toUpperCase(); } } } setRating(5); } } function setRating(rating) { selectedRating = rating; var stars = document.querySelectorAll('.pl-star'); stars.forEach(function (star, index) { if (index < rating) { star.classList.add('pl-on'); } else { star.classList.remove('pl-on'); } }); } async function submitComment() { var commentsSection = document.getElementById('commentsSection'); var gameId = commentsSection ? commentsSection.dataset.gameId : null; if (!gameId) { var favBtn = document.getElementById('favoriteBtn'); gameId = favBtn ? favBtn.dataset.gameId : null; } if (!gameId) { showToast('Game ID not found', 'error'); return; } var content = document.getElementById('commentContent').value.trim(); if (!content) { showToast('Please enter comment content', 'warning'); return; } var submitBtn = document.getElementById('submitComment'); submitBtn.disabled = true; try { var result = await apiService.addComment(gameId, content, selectedRating); if (result.code === 0) { showToast('Comment posted successfully', 'success'); document.getElementById('commentContent').value = ''; setRating(5); commentsPage = 1; loadComments(1); } else if (result.code === 401) { showToast('Please login first', 'warning'); } else { showToast(result.msg || 'Failed to post comment', 'error'); } } catch (e) { showToast('Network error', 'error'); } finally { submitBtn.disabled = false; } } async function loadComments(page) { var commentsSection = document.getElementById('commentsSection'); var gameId = commentsSection ? commentsSection.dataset.gameId : null; if (!gameId) { var favBtn = document.getElementById('favoriteBtn'); gameId = favBtn ? favBtn.dataset.gameId : null; } if (!gameId) return; var list = document.getElementById('commentsList'); var loadMoreBtn = document.getElementById('loadMoreComments'); try { var result = await apiService.getGameComments(gameId, page, 10); if (result.code === 0) { var data = result.data; var comments = data.list || []; if (page === 1) list.innerHTML = ''; if (comments.length === 0) { if (page === 1) { list.innerHTML = '
💬

No comments yet. Be the first!

'; } loadMoreBtn.style.display = 'none'; hasMoreComments = false; return; } comments.forEach(function (c) { var item = document.createElement('div'); item.className = 'pl-comment'; var avatarHtml = '
' + (c.nickname ? c.nickname.charAt(0).toUpperCase() : 'U') + '
'; if (c.avatar) { avatarHtml = '
' + (c.nickname || 'Avatar') + '
'; } item.innerHTML = '
' + avatarHtml + '
' + (c.nickname || 'Anonymous') + '
' + (c.create_time || '') + '
' + (c.star_html || '') + '
' + (c.content || '') + '
'; list.appendChild(item); }); document.getElementById('commentsCount').textContent = (data.total || comments.length) + ' comments'; hasMoreComments = data.total > page * 10; loadMoreBtn.style.display = hasMoreComments ? 'block' : 'none'; loadMoreBtn.disabled = false; } else { if (page === 1) { list.innerHTML = '
Failed to load comments
'; } } } catch (e) { if (page === 1) { list.innerHTML = '
Network error
'; } } } var _loadMoreBtn = document.getElementById('loadMoreComments'); if (_loadMoreBtn) { _loadMoreBtn.addEventListener('click', function () { if (hasMoreComments) { commentsPage++; this.disabled = true; loadComments(commentsPage); } }); } function _waitForApiService(callback, maxRetries) { maxRetries = maxRetries || 50; var tries = 0; function check() { if (typeof apiService !== 'undefined') { callback(); } else if (tries < maxRetries) { tries++; setTimeout(check, 100); } else { console.warn('apiService not available after retries'); } } check(); } function _initDetailPage() { if (typeof initCommentForm === 'function') initCommentForm(); if (typeof checkFavoriteStatus === 'function') checkFavoriteStatus(); if (typeof loadComments === 'function') loadComments(1); } document.addEventListener('DOMContentLoaded', function () { _waitForApiService(_initDetailPage); });

Share this page

Copy the link below and share it with your friends!