The short version
One of the best-looking js13k entries we've tested, with click-to-move navigation that works exactly as intended -- but a desktop-only mouse game lives or dies on its core mouse action, and after extensive attempts we could not get the "earn money" counter to move off $0.
Biggest strengths
- Genuinely striking isometric voxel art with atmospheric lighting -- one of the best-presented js13k entries in this queue
- Left-click-to-move navigation is confirmed working reliably: the world and camera track the player correctly across many consecutive clicks
- Zero console/page errors and zero failed requests across extensive play
Biggest weaknesses
- The discovery note's specific claim that right-click/aim input is "never consulted anywhere in the code" is factually wrong for the shipped source -- src/systems/sys_control_player.ts:35-38 clearly wires Input.d2 to a Shoot.Target assignment and a camera-shake effect -- but even armed with that correction, we could not get the on-screen money counter to move from $0 despite many direct left- and right-clicks aimed at cowboy NPCs (which the source identifies as the Attackable, 1500 HP enemies)
- Precisely clicking a specific 3D isometric model rather than the ground plane behind it is genuinely difficult, and it's unclear whether that's a raycasting/hitbox issue in the game or just an inherent hard-to-verify-by-script interaction
- Desktop/mouse-only by design -- correctly excluded from phone play, but that halves the potential audience
Who it's for: Fans of voxel art and isometric westerns who want to explore a handsome little world, more than players looking for a working shooter.
Our recommendation: mixed
6.3 / 10
Backcountry is a js13kGames 2021 entry (Desktop + Mobile + Web Monetization category) built around isometric voxel art that punches well above its 13-kilobyte weight class -- warm desert lighting, a proper little frontier town of clapboard buildings, and a cowboy silhouette that reads clearly even at a distance. This review covers it under the shelf's desktop tier, since it's mouse-only by design.
Visuals (8.5). This is genuinely one of the nicer-looking entries we've reviewed. The isometric camera, voxel lighting, and title-screen typography over a live, rotating scene all suggest real art direction rather than a placeholder aesthetic slapped onto a tech demo.
Controls (6.5) and gameplay (5.0) -- the part we need to be honest about. Left-click-to-move works exactly as advertised: repeated clicks reliably moved the player and shifted the camera to track them, scene after scene, with zero errors. The game's core hook, per its own subtitle, is "earn as much money as you can" by presumably fighting cowboy NPCs -- and this is where our testing came up short. We read the shipped source directly and can correct the record on one point: the discovery note that flagged this game claimed right-click input is "never consulted anywhere in the code," but sys_control_player.ts plainly wires right-click to a Shoot.Target assignment and a camera-shake effect, and left-clicking a target flagged Attackable does the same via raycast. The mechanism exists in the code. What we could not do, despite many direct left- and right-clicks aimed at the cowboy NPCs the source identifies as the attackable enemies, was get the on-screen $0 counter to ever move. Whether that's an issue with our ability to precisely raycast a specific 3D isometric model via scripted clicks, a genuinely high enemy health pool (1500 HP per the source) outlasting our test window, or something not working as intended, we can't say with full confidence -- and we'd rather report that honestly than claim a pass or fail we didn't actually verify.
Originality and value (6.5 / 5.5). An isometric voxel western is a nice, distinctive setting for a js13k jam entry, but with the central earn-money loop unconfirmed in our testing, it's hard to recommend with full confidence as a game to spend real time in versus a tech-art showcase to admire.
We're rating this below our pass line specifically because we could not confirm its core loop delivers -- not because anything we tested was actually broken. A future re-test with more precise mouse targeting (or direct confirmation from someone who's played it start to finish) could well move this score up.
Pros and cons
Pros
- Genuinely striking isometric voxel art with atmospheric lighting -- one of the best-presented js13k entries in this queue
- Left-click-to-move navigation is confirmed working reliably: the world and camera track the player correctly across many consecutive clicks
- Zero console/page errors and zero failed requests across extensive play
- Self-contained, no build step needed once the actual competition build (not the bare source repo) is used
Cons
- The discovery note's specific claim that right-click/aim input is "never consulted anywhere in the code" is factually wrong for the shipped source -- src/systems/sys_control_player.ts:35-38 clearly wires Input.d2 to a Shoot.Target assignment and a camera-shake effect -- but even armed with that correction, we could not get the on-screen money counter to move from $0 despite many direct left- and right-clicks aimed at cowboy NPCs (which the source identifies as the Attackable, 1500 HP enemies)
- Precisely clicking a specific 3D isometric model rather than the ground plane behind it is genuinely difficult, and it's unclear whether that's a raycasting/hitbox issue in the game or just an inherent hard-to-verify-by-script interaction
- Desktop/mouse-only by design -- correctly excluded from phone play, but that halves the potential audience