A HTML5 Electron game about conquering planets in a universe.
You spawn in a universe full of static planets. Every planet has its own size. There are 50 planets in a universe and you can go between universes with a click.
Every planet has a chance (2%) to have intelligent life on it. They are harder to colonize because you have to fight the life. But, don't leave them, because they can evolve into a federation that can attack your planets! Declare war as soon as possible.
This work is licensed under a Creative Commons Attribution-NoDerivatives 4.0 International License.
See LICENSE.txt
You can download this game in a variety of ways.
Want to get the prebuilt version? Go from here!
- Go to the Releases page.
- Download the latest release build.
- Run the Microsoft installer and complete the wizard.
- Run the game. You can do this by creating a shortcut, or by searching "Federal Space" in App Search.
- Enjoy! 😀
Want to build it on your own, because you don't trust me (😧) or an issue with installing, or you want to create a version for Linux... There are countless reasons, so let's get started.
- Download the WiX Toolset version 3.
- Clone this repository somewhere on your computer.
cd C:\local\repo\path\
git clone "https://github.com/EntityPlantt/Federal-Space"
- Install all of the packages required to build this package.
npm install
- Run the
build
command of the package.
npm run build
You should now have a directory that's something like Federal Space-win32-x64
. The name depends of your computer's operational system.
- Go back and run the file
msi.js
with arguments of your OS and architecture.
cd ..
:: Example, architecture is 64-bit and OS is Windows
node msi win32 x64
- You shold see a folder
msi
. Inside that folder, there'sFederal Space.msi
. That's the generated installer. Proceed to Step 3 in Download, install and play.