Development Blog

The journey of creating Mystic Valley

Game Development Started: July 21, 2025 | First Blog Post: August 21, 2025
Follow the full daily development blogs on itch.io

📅 Day 13: Setting Up A 6-Day Week Calendar System

September 4, 2025

Implemented a unique 6-day week calendar system! Instead of Earth's 7-day week, Mystic Valley runs on Sunday through Friday (no Saturday), with 30-day seasons that divide perfectly into 5 complete weeks.

The UI now shows the full day name, date, and season with color coding (green for Spring, yellow for Summer, orange for Fall, blue for Winter). Had to work around TextMeshPro not playing nice with emojis.

Sunday is market day, Monday-Thursday are work days, and Friday is festival prep day. This makes the world feel more mystical and otherworldly. The system integrates with scene transitions - time pauses indoors but keeps running in caves.

👤 Day 12: Character Deep Dive - Sarah Blackwood

September 3, 2025

Developed Sarah Blackwood - the mayor's 23-year-old daughter and village peacemaker. She represents quiet strength, growing up watching everything fall apart but becoming the bridge between people instead of becoming bitter.

Her room is filled with seed packets and dead flower pots - she's never stopped trying to make things grow. Her shadow memory: standing at her windowsill as a child, asking "Why can't my flower grow anymore?"

But there's a hidden storyline... What if gentle Sarah is actually terrifying? What if she's been orchestrating the village's decline, creating conflicts to "mediate," studying weaknesses to control people? This dark path only unlocks if players notice inconsistencies during late-night hours (2-4 AM game time).

🎒 Day 11: Tackling The Inventory Beast

September 2, 2025

Finally stopped procrastinating on the inventory UI! I'd been avoiding it for days, fixing other bugs instead because UI work feels so overwhelming. Is it normal to not like certain parts of game development?

Created a 24-slot main inventory shaped like an open spell book (because everything is about magic!), plus a 9-slot hotbar for quick access. Items go into the inventory properly... but sprites aren't showing up yet. 😭

Building a three-tier system: 24 storage slots, 9 hotbar slots, and 13 equipment slots (coming soon). Sometimes the hardest part is just beginning!

🏠 Day 10: Building A Workshop For A Cantankerous Dwarf

August 30, 2025

Created a workshop for Borin "Bombwick" Ironforge, a cantankerous dwarf mentor. His workshop in the dried oasis features a blazing forge, explosive materials, and his bomb slime companion that reflects his moods.

Borin was the old wizard's former apprentice - understands magic deeply but can't cast spells himself. Traumatized by the magical explosion 15 years ago, he now can't sleep in enclosed spaces and uses a tent outside. He teaches through harsh criticism rather than gentle encouragement - a completely different mentor experience.

🔮 Day 9: The Crystal Cave - How Mystic Valley Begins

August 29, 2025

Finally revealed the opening story! The world is dying - nothing has been born for 15 years. Villagers discover you in a crystal cave, preserved as a child by an old wizard who crumbles to dust as you age 15 years in moments.

You're the only person who can use magic. When you accidentally touch dead seeds, they burst into life - the first new growth in 15 years. The remaining 15 villagers (down from 150) bring you to their dying village. Are you their salvation or doom?

🌙 Day 8: My Day/Night Cycle Works! (But Not How I Expected)

August 28, 2025

Finally got the day/night cycle working after yesterday's namespace issues! But Light2D was flickering like a disco strobe light. After hours of trying to fix it, I gave up and created "TintEverything" - a script that just makes sprites blue at night and orange at sunset.

Sometimes the simple solution is the best! No flickering, affects everything, smooth transitions. Is it technically "correct"? Probably not. Does it work? YES! Complex != Better (I need to tattoo this on my forehead).

⚡ Day 7: Unity 6 vs Old Tutorials

August 27, 2025

Spent HOURS trying to figure out why Unity kept saying Time.deltaTime doesn't exist. Turns out I'm using Unity 6 but following Unity 2021/2022 tutorials! Unity 6 has stricter namespace rules.

The fix: Had to rename my namespace from MysticValley.Time to MysticValley.TimeSystem because Unity 6 got confused with the built-in Time class. Lesson learned: ALWAYS check the Unity version in tutorials! I thought "Unity is Unity" but there are real differences.

🐛 Day 6: From Enemy Animations to Inventory Bug Hunting

August 26, 2025

Started with enemy animations - getting attack cycles and hit reactions into the animator. Then tried to harvest my first mystical turnip and discovered my "perfect" inventory system was full of bugs!

Items weren't stacking properly, the dual-inventory system was fighting itself, and crops were disappearing into the void instead of going to inventory. This is the reality check that keeps you humble - you think you have a solid system, then you actually USE it and discover all the edge cases you never considered.

🎮 Day 5: Engine Considerations & Enemy Animation Marathon

August 25, 2025

Spent time exploring Godot 4 as an alternative to Unity. GDScript and the node system weren't intuitive for me at all - kept thinking "this would be so much simpler in Unity." Decided to stick with Unity since I've already built a solid foundation.

Then spent hours cutting sprites - several hundred enemy animation frames! Working on idle, walking, attacking, hurt, death animations for multiple directions. My hand is definitely feeling it after all that precise cutting work.

🎒 Day 4: Magical Inventory System

August 24, 2025

Designed a comprehensive three-tier inventory system: 21 personal slots, 9 equipment hotbar slots (for spells and consumables), and 13 body equipment slots.

The key innovation: anti-exploit design! Players could theoretically stack 9 magic tools for overpowered bonuses, so I limited magical tools to body equipment (left and right hand only = max 2 tools). This creates strategic choices without game-breaking exploitation.

Also planned late-game portal magic that lets you access all magical chests after rescuing fairies - costs mana to maintain, so it's a proper magical ability not just convenience.

🌳 Day 3: House Interior and Y-Sorting

August 23, 2025

Built the PlayerHouse interior and solved the classic 2D problem where players render wrong relative to trees. Solution: Y-position sorting! Lower objects render in front.

Created a YPositionSorting script with custom pivot points for tall sprites. Added debug gizmos showing exactly where each sprite sorts from. Now players walk behind trees properly when above them, and in front when below. Such a simple fix for what seemed complex!

🎯 Day 2: Slimes Can Move! Plus Ground Targeting

August 22, 2025

Got slime animations working - seeing them bounce instead of slide makes me so happy! Started building the spell targeting system since Crumble needs to target specific ground tiles for farming.

The indicator follows player direction, snaps to the tile grid, and changes color over tillable ground vs rocks/water. Everything in this game is done through magic - click to till with Crumble, click tilled soil to plant with Bloom!

🌱 Day 1: Starting My 2D Magic Farming Game

August 21, 2025

Started sharing progress on Mystic Valley! (Been working on it for a few weeks since July 21)

Drawing inspiration from Harvest Moon, Rune Factory, and Stardew Valley, but with Fable-like choices that shape everything. Nothing has been born in the village for 15 years. You wake from a crystal prison with magical memories. Will you restore the world or twist it into something new?

What I've built so far: health/mana system with UI bars, scene transitions between 4 areas, basic enemy AI, 2D movement, camera follow. Currently working on implementing Crumble spell on a separate Git branch.

This is my first game and I welcome any feedback!