TUXDB - LINUX GAMING AGGREGATE
by NuSuey
NEWSFEED
▪️ GAMES
▪️ STEAM DECK ▪️ DEALS ▪️ CROWDFUNDING ▪️ COMMUNITY
tuxdb.com logo
Support tuxDB on Patreon
Currently supported by 9 awesome people!

🌟 Special thanks to our amazing supporters:


✨ $10 Tier: [Geeks Love Detail]
🌈 $5 Tier: [Arch Toasty][Benedikt][David Martínez Martí]

Steam ImageSteam ImageSteam ImageSteam ImageSteam ImageSteam Image
February News Update

As usual its time for another dev log. I did a bit of looking and actually it has been a year since I announced I would be remaking the game in a new engine. I didnt think that I made the announcement at the end of February 2023 but apparently, I did. Looking through a few of the subsequent logs though it seems I didnt really start coding until May. So, its sort of been a year, sort of not. Im happy with the progress so far, but obviously I wish things were going faster. However outside of giving up sleep I dont think there is any additional time left in my days. The progress of the game is sort of hard to judge, but I think I have more done than it feels like. It just seems strange because the world doesnt exist at the moment. Its just a few test rooms where I just implement systems. I remember when the old version of the game was like that and once I actually built the in game world it felt much more complete. This month in particular was dedicated to animals, and basically wholly animals. Im close to done at this point, but not quite there. The remaining work should be pretty low effort though. For a quick summary of what was done Ill make a short list of the notable stuff below.

  • Animals now naturally catch disease under certain conditions
  • Chicken coops have a new internal structure that collects eggs
  • Fowl now spawn feathers that you can collect
  • An entire system to make pastures work is now in place (This is so much more complicated than this one sentence implies)
  • Animals can now actually die and that is managed properly
  • Animals can be hatched or born depending on what type of animal it is
  • A new animal status screen has been made to display animal stats as there is now more to track with animals
  • Because there are multiple things that affect an animals happiness each day a system has been made to record what effects them and how much they are effected
  • Animals can be sold
  • Animals can be relocated from one building to another
  • Animals now appear outside or inside depending on pasture settings for the building
  • Added the ability to trash items
  • Fixed a few bugs
So basically, everything revolving around animals was done this month. Ive also setup the Silo UI. The last things to do are make silos distribute food, which is easy, and then these things need to be replicated across all animals. At the moment, chickens are the only things that work. That may sound like a huge deal but all animals function off the same parent object. So basically, I have to copy and paste code and then make a few minor changes to the specifics on each one. This is all pretty simple and shouldnt take more than a few days I would think, if that. I dont like that animals have taken as long as they have to setup, but looking back I guess it makes sense. I believe Ive mentioned this before but most systems in this game are fairly simple, mine a rock, make a potion, cook an item, etc. All these things dont involve much in terms of system design. These types of games are often the combination of a lot of very small systems rather than a few large ones. Animals are more of a cascading problem though. Before you can even have an animal, you need a building for them. This is in and of itself a giant system to build, move, upgrade, and destroy buildings, not to mention handling all the internals of each. That was what took up most of January if I recall. Then once you actually have a building for animals you have to be able to buy them, name them, store all the relevant data, handle feeding, disease, grooming, health, happiness, product creation, pastures, selling them, transferring them, aging, player interactions, etc, etc. So, it makes some sense that it took a while, I just dont like it when the end of the month comes and it feels like I did one thing. Pastures were the biggest difficulty of this month. They were probably the system that took the most time to make. Effectively a system was needed that calculated where you put the building and (without lagging the game) found all the tiles that surrounded that building to form that pasture. Then store that data in a usable way and allow for on the fly adjustments if a player changes the pasture layout. All that said, Im happy with how it turned out. Its far more stable and compact than the system that exists in the live version of the game. The only other real change to mention is the structure in the coop that holds eggs. Anyone playing the live game will know that eggs just sort of drop on the ground and you pick them up. I didnt really like this. Feathers make a bit more sense as fowl would just drop feathers on the ground in real life (I think). Im not a farmer but I believe chickens lay eggs in their nests, not just randomly on the floor. With the amount of tasks you have to do for animal care increasing I thought this might be a nice little addition to make daily chores a little easier. Most of the other things that I mentioned were fairly self-explanatory. As mentioned before, I have just a few things to clean up with animals, most of which is just replication for more animals. Then of course I have to decide what to do next. This is something Im a bit unsure of. A lot of the UI for the game is currently in flux as Im having a lot of it redone to make it more consistent. Since I dont have all the sprites finalized setting up UI is, well, not entirely pointless, but it is sort of annoying. Anything I setup without the finalized UI will likely require me to go back later and adjust a bit. It isnt hard to do but its just an extra step when I could just wait to have the sprites and then do it right the first time. This is a bit problematic because a lot of systems rely on UI. At the moment Im debating between building out the world, or maybe getting some of combat in place. Im hesitant to do too much world building as there are also sprites being made for the overworld and I think it would be better to do that work when I have all of the assets at my disposal. However, I could start laying out zones in basic ways with temporary sprites and notes. Ive likely mentioned this before, but I do want to put out versions of this game again prior to a 1.0. I think getting that feedback helps immensely so I dont want to just make this entire thing in a vacuum and then let it loose. Ive got a sort of unofficial list of things I want in the game before I put anything out onto Steam though. Combat is on that list because its something entirely different from the other systems and I want to make sure its enjoyable. I think it will likely be implemented sort of piecemeal along with the mines. While there is combat related stuff outside the mines they sort of serve as a more traditionally leveled area where it gets more difficult as you go deeper. So likely in one of the first uploads of this new version youll maybe be able to go down 2 levels or so (remember there are only 10 very large hand crafted floors instead of 100+ random ones). Ill likely also add some sort of level cap that Ill raise as more mine floors get added. This way I can focus on balancing combat in smaller chunks rather than trying to get the whole range of combat right at once. Aside from balancing I have a general goal of complete systems. Im trying to make it so that anything a player would see in the game is done. A good example of what I want to avoid is the health bar in the current game. In the live version you have health, food and potions can give you more health, there are buffs for combat too. Despite all of this there is no combat and not even a way to lose health. Thats jarring. Maybe not to someone who has been playing for a while or is watching the development but someone coming in would likely just find it confusing. The other obvious example of an incomplete system is NPC dialogue. In the current version NPCs have the bare minimum dialogue. Id like to write everything for a character all at once to keep them consistent in tone. The one caveat here is that while I might write everything all at once, some of the dialogue for each character will be dependent on other things in the game happening. So, while it will be done it may not be accessible right away. The general rule of thumb though is to have things be as complete as possible when they go into the live version. Id like to avoid uploading a version of the game and having to say hey, theres this part of the game that makes no sense right now because I havent implemented the other system that feeds into it. To bring this all back to topic, adding combat is necessary to avoid that issue. I think thats mostly it for now. I feel like this was more of a ramble than a dev log. Unfortunately, there isnt much to articulate about animals unless I start going deep into code talk. I figure this stuff is a bit more surface level, but its probably more informative about what is going on with development. The other option is me explaining the use of recursive functions to trace the tiles that make up a pasture and compiling them into an array of structs that can be easily referenced for calculations. Seeing as that sentence was boring even to me, I have my doubts about it keeping other peoples interest. So, thank you all for your patience. As time goes on Ill hopefully have more definite info on when you can expect an actual upload of this version of the game. I think I said this a long time ago but what I might do is upload it as an opt in beta so people can try it if they want but retain access to what currently exists. Ive also said this before but just as a reminder, if you own the game now youll own the new version too, no repurchase required. Alright, Im going to go finish animal systems. I hope you all enjoyed February 29th, it only comes around every 4 years after all. Ill have more updates in a month.


[ 2024-03-01 02:27:46 CET ] [ Original post ]

Verdant Village
Exodus Software Developer
Exodus Software Publisher
2020-08-04 Release
Game News Posts: 82
🎹🖱️Keyboard + Mouse
Positive (47 reviews)
Public Linux Depots:
  • Verdant Village Linux [304.58 M]
Take on the challenges of living a life in the rustic medieval town of Amberglen. You've washed up on a quiet beach with nothing to your name, not even your memories. You're in luck however as locals are quick to find you, and nurse you back to health. The king himself is kind enough to allow you to stay on a piece of abandoned property to make your living. With nothing more than a few rusty tools turn strike out and attempt to breathe life back into this old land!

Features
  • Create A Thriving Farm: Start with nothing, and with little more than the sweat of your brow turn your property into a bustling farmstead.

  • Master Skills As You Progress: No one starts out as a master. Level up your skills as you work. Complete specific tasks to gain powerful perks to help you succeed.

  • Uncover Lost Mysteries: Search throughout the land for hidden artifacts to piece together. The Empyrean Vale is vast and full of history to learn and history to unearth.

  • Make A House A Home: Decorate your new property with a variety of different objects. Place whatever you want where ever you want it and truly create your own slice of heaven.

  • Meet The Townsfolk: Interact and speak with over 40 characters living in Amberglen and beyond. Each character has a personality and story to tell.

  • Cast A Line: Visit the multitude of different fishing spots spread across the vale. There are over 100 fish to catch, split between different environments, seasons, and times.

  • Have A Taste: Learn to cook a litany of different meals. Get the locals to teach you different recipes and become the best chef in Amberglen.

  • Lend A Helping Hand: Find and complete a variety of tasks for villagers. You'll find that everyone needs something done. Most are willing to teach you something in return as well.

Features To Come
  • Hunting: Hunt a variety of animals in the nearby forests of The Empyrean Vale.
  • Alchemy: Craft numerous potions and other odd items to sell or use.
  • Combat: Battle your way past any threat you come across.
  • Marriage: Find a spouse and court them.
  • Sailing: Build a ship and sail the bay.
  • Much much more

MINIMAL SETUP
  • OS: Any
  • Processor: 2.0 GHzMemory: 2 GB RAM
  • Memory: 2 GB RAM
  • Graphics: 512 MB Video Memory
  • Storage: 400 MB available space
GAMEBILLET

[ 6132 ]

2.10$ (58%)
18.66$ (69%)
16.97$ (15%)
2.52$ (83%)
12.89$ (14%)
6.65$ (65%)
4.14$ (17%)
2.94$ (58%)
16.79$ (16%)
4.32$ (86%)
20.62$ (17%)
12.59$ (16%)
6.77$ (15%)
2.98$ (85%)
12.59$ (16%)
12.60$ (58%)
17.29$ (65%)
12.42$ (17%)
8.25$ (17%)
8.47$ (15%)
2.10$ (58%)
12.27$ (18%)
33.96$ (15%)
12.00$ (60%)
6.53$ (78%)
9.89$ (34%)
5.89$ (80%)
2.67$ (91%)
11.32$ (68%)
3.37$ (78%)
GAMERSGATE

[ 2625 ]

34.99$ (30%)
10.04$ (50%)
14.0$ (60%)
3.0$ (80%)
3.0$ (80%)
31.49$ (30%)
13.59$ (32%)
12.59$ (37%)
1.3$ (90%)
5.4$ (91%)
10.0$ (75%)
10.87$ (57%)
2.5$ (75%)
0.88$ (82%)
2.63$ (62%)
0.88$ (91%)
14.99$ (40%)
3.3$ (83%)
4.0$ (80%)
12.59$ (37%)
8.0$ (50%)
13.6$ (66%)
4.4$ (78%)
10.13$ (77%)
5.4$ (73%)
1.2$ (85%)
0.51$ (83%)
1.19$ (92%)
5.0$ (90%)
4.5$ (77%)

FANATICAL BUNDLES

Time left:

8 days, 21 hours, 52 minutes


Time left:

14 days, 21 hours, 52 minutes


Time left:

11 days, 21 hours, 52 minutes


Time left:

11 days, 21 hours, 52 minutes


Time left:

11 days, 21 hours, 52 minutes


Time left:

11 days, 21 hours, 52 minutes


Time left:

11 days, 21 hours, 52 minutes


Time left:

11 days, 21 hours, 52 minutes


Time left:

11 days, 21 hours, 52 minutes


Time left:

11 days, 21 hours, 52 minutes


Time left:

11 days, 21 hours, 52 minutes


Time left:

11 days, 21 hours, 52 minutes


Time left:

11 days, 21 hours, 52 minutes


Time left:

11 days, 21 hours, 52 minutes


Time left:

11 days, 21 hours, 52 minutes


Time left:

36 days, 21 hours, 52 minutes


Time left:

16 days, 21 hours, 52 minutes


Time left:

8 days, 21 hours, 52 minutes


Time left:

43 days, 21 hours, 52 minutes


Time left:

32 days, 21 hours, 52 minutes


Time left:

29 days, 21 hours, 52 minutes


Time left:

37 days, 21 hours, 52 minutes


Time left:

39 days, 21 hours, 52 minutes


HUMBLE BUNDLES

Time left:

3 days, 15 hours, 52 minutes


Time left:

17 days, 15 hours, 52 minutes

by buying games/dlcs from affiliate links you are supporting tuxDB
🔴 LIVE