The Shopkeeper Of Ghost Island Mac OS

Alawar's best games - including mini-games, causal games and online games! Step into the role of Tsushima Island's last samurai, instilling fear and fighting back against the Mongolian invasion of Japan in the open-world adventure, Ghost of Tsushima. This volume vividly showcases every detail of the vast and exotic locale, featuring elegant illustrations of dynamic characters, spirited landscapes, and diagrams of.

Our entry into the 2020 Mix and Match Game Jam. All code was created during the 48 hour window.

Play as a humble shopkeeper who has been sent to an island inhabited by ghosts to set up your shop. You'll need to find all resources to craft items with, fight monsters for better loot, and keep your shop stocked up.

Despite the title, it's completely horror-free. We ran out of time in being able to add pathfinding to the customer NPCs, so made them act as ghosts instead ;)

StatusPrototype
PlatformsWindows, macOS
AuthorsRees Morris, Francesco Iacono
GenreRole Playing
Made withUnity
TagsManagement, Tycoon
Average sessionAbout a half-hour
LanguagesEnglish
InputsKeyboard

Download

Log in with itch.io to leave a comment.

This guide will cover how to get the blog platform, ghost, running on MacOs.

Homebrew

Let’s setup homebrew for MacOs as it just makes the process so much easier. Homebrew is ‘ the missing package manager for MacOs‘ and you can read all about it here.

Setting it up is easy. Simply lunch the terminal app and paste the following code:

Press [ Enter ] to install homebrew and type your administrative password. (The one you use to log into your account.) Once the process is complete, you should be greeted with:

Homebrew will allows us to install/uninstall packages without having to download extra packages, or any additional steps.

Node.js and Npm

This simple command will install node.js and npm which are essential for getting ghost running.

*Note: If it is still not allowing you to install the older version, type the following commands:

Ghost Island Dolls

Verify Node and Npm are Installed

The following command should output their version numbers. At the time, these were the version numbers:

So far our work has consisted of inputting commands via the terminal, but this next part will be more manual.

Installing Ghost

Navigate here to download the latest version of ghost. At the time, it was Ghost-0.11.9. Unzip the archive and place it in an easy to access location. I’ll keep it in /documents. Rename the folder to something easier, such as ghost, ghostblog, myblog, etc.

Installing Production Dependencies

Launch the terminal once more and type cd followed by the path where your ghost directory resides.

Hit enter to execute the command.

In case of failure, recheck your node version. Ghost supports Node v4.x-5. Note: Version 7 of Node is unsupported and you would get the following output:

Upon success, you should see the following output:

├── vary@1.1.1
├── xml@1.0.1
└── xtend@4.0.1

Setting Up A Ghost Blog

Core files are installed. It’s time to set up your ghost blog. Note: Your blog is only viewable by you and lives only in your mac/pc/etc.

Input the following command in the terminal:

If you did everything correctly, your blog will be accessible on http://localhost:2368 and if you append /ghost to the end of the url, you’ll be able to set up your blog at http://localhost:2368/ghost

Your Account

Setting up an account in ghost is simple. Email address, Full name (User name), Password, and blog title. On the next part click on ‘I’ll do this later. Take me to my blog.’

Ghost Island Location

The Shopkeeper Of Ghost Island Mac OS

Ghost uses the beautiful language of markup but if you are into html, it also accepts that. You can see how ghost works from their introductory post.

To stop your ghost blog, simply press [CTRL] [C] at the same time. You should get the following output:

Beyond Localhost

What if you wanted to use the blogging platform ghost as your static website? To set up ghost as a static website, see this post.