HuskyGameDev / 2024s-team3

0 stars 0 forks source link

Baba Yaga's Bottles

You play as Baba Yaga selling potions out of your chicken-legged house. You must mix ingredients to create potions and discover new recipes to keep your customers happy (and to make money). Your money can be spent on more ingredients, potion bottles, and cookbooks to learn new potion recipes. You also travel the world in your chicken-legged house to reach more customers.

Installation

  1. Download the zip file of the most recent release (make sure you download the correct one for your operating system)
  2. Unzip all files
  3. Play

Controls

File Structure

📦 res://
├─ Assets
│  ├─ Data: game data.txt files
│  ├─ Resources: auto generated (do not put anything in here, it will be removed)
│  ├─ Sprites
│  │  ├─ Customers
│  │  ├─ Ingredients
│  │  └─ Potions
│  └─ Themes
├─ Scenes
│  ├─ Customers
│  ├─ Screens: main, nighttime summary, etc
│  └─ UI
└─ Scripts
   ├─ Singletons: autoloaded scripts
   ├─ Tools: editor tools
   └─ Types: custom resource types

©generated by Project Tree Generator

Creating and Loading Game Data

  1. Make data changes in the game data spreadsheet
  2. Download the changed sheet as a csv file
  3. Rename it to "Ingredients.txt", "Potions.txt", etc (you must change it to a text file)
  4. Put the updated data in Assets/Data
  5. Open Scripts/Tools/LoadResources.gd
  6. Either click File > Run or use keyboard shortcut command+shift+X