MermaidTriv Games
Home About Contact
Puzzle Match-3 Casual Family-Friendly

Sweet Treat Swap Puzzle

🎮 Game Player
Advertisement

Reviews

Sweet Treat Swap Puzzle stands out for its calm pacing and clear presentation. The small grid forces players to think carefully about each swap, rewarding patience over speed. Power-ups are earned fairly and add strategic depth without feeling necessary. The visual style is warm and inviting, with pleasant animations that never overwhelm. While it won't challenge hardcore puzzle veterans, it offers a satisfying experience for anyone seeking a relaxing brain teaser. The family-friendly nature and lack of time pressure make it a welcome addition to any device.

About This Game

Core Gameplay Loop

At its heart, Sweet Treat Swap Puzzle is a classic match-3 experience with a compact twist. The playing area is a small grid filled with colorful pastries. Players tap and slide adjacent pieces to create lines of three or more identical treats. Each successful match adds points toward a level goal. The satisfaction comes from planning moves to set off chain reactions, clearing multiple sets in one turn. The grid size keeps each puzzle manageable, encouraging thoughtful placement rather than frantic tapping.

Level Progression and Goals

Each stage presents a specific point target, starting modestly and increasing gradually. Early levels introduce the basic mechanics, while later ones require more careful sequencing. The scoring system rewards efficiency: larger combos yield higher point totals. Coins appear as a bonus for completing matches, accumulating over time. These coins serve as currency for optional enhancements, but the game remains fully playable without spending them. The difficulty curve feels natural, allowing players to build skills at their own speed.

Visual and Audio Atmosphere

The art style emphasizes warmth and clarity. Each pastry type has a distinct color and pattern, making them easy to distinguish at a glance. Animations are smooth without being distracting—matches dissolve with a soft effect, and new pieces slide into place gently. Backgrounds shift between pleasant scenes, such as a sunny seaside or a quiet garden. The sound design uses light, cheerful tones that complement the relaxed mood. Together, these elements create a stress-free environment suitable for all ages.

Strategic Tools and Power-Ups

Two special items assist when the grid becomes challenging. One tool removes a single piece, creating space for new arrangements. Another rotates a small cluster of pieces, potentially setting up better matches. These items are earned through gameplay rather than purchased, ensuring fairness. Using them at the right moment can turn a stalled board into a cascade of points. The game encourages players to think ahead, saving these aids for stages where natural matches are scarce.

Accessibility and Session Length

Sweet Treat Swap Puzzle is designed for quick play sessions. A single level can be completed in a few minutes, making it ideal for waiting rooms or short breaks. There is no time pressure, so players can pause or resume at any point. The controls are simple enough for young children to grasp, yet the puzzle depth offers enough challenge for adults. This broad appeal stems from its focus on pattern recognition and planning, skills that benefit all age groups.

Compatibility

▸ Desktop: Chrome / Edge / Firefox / Safari
▸ Mobile: iOS Safari / Android Chrome
▸ Tablet: iPadOS Safari / Android Tablet Browser
Keep your browser updated for the best experience

FAQ

Is Sweet Treat Swap Puzzle free to play?
Yes, the game is free to download and play. Optional in-app purchases are available for additional coins or power-ups, but they are not required to progress through all levels. Players can earn everything needed through regular gameplay.
Can I play Sweet Treat Swap Puzzle offline?
Yes, the game can be played without an internet connection after the initial download. This makes it a great choice for travel or areas with limited connectivity. Online features like leaderboards or cloud saves may require a connection.
What age group is Sweet Treat Swap Puzzle suitable for?
The game is designed for players aged 4 and up. Its simple mechanics and non-violent theme make it appropriate for young children, while the puzzle challenges keep older players engaged. Parents can feel comfortable letting kids play independently.
How many levels are in Sweet Treat Swap Puzzle?
The game includes a large number of levels, with new stages added through updates. The exact count may vary by platform, but players can expect dozens of progressively challenging puzzles. Each level introduces slightly different target scores to keep the experience fresh.
Does Sweet Treat Swap Puzzle have any time limits?
No, there are no time limits on any level. Players can take as long as they need to plan their moves. This relaxed approach reduces stress and allows for thoughtful strategy, making it a true casual puzzle game.
Can I sync my progress across devices?
Progress can be saved to your account if you connect through a supported platform like Google Play or Apple Game Center. This allows you to continue from where you left off on different devices. Without an account, progress is stored locally on the device.

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!