Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fergusq/java-nightfall
A clone of "SPYBOT: The Nightfall Incident" in Java
https://github.com/fergusq/java-nightfall
clone lego strategy-game turn-based
Last synced: 3 months ago
JSON representation
A clone of "SPYBOT: The Nightfall Incident" in Java
- Host: GitHub
- URL: https://github.com/fergusq/java-nightfall
- Owner: fergusq
- License: mit
- Created: 2014-11-16T10:15:19.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2020-04-10T07:58:16.000Z (almost 5 years ago)
- Last Synced: 2023-08-06T06:53:05.659Z (over 1 year ago)
- Topics: clone, lego, strategy-game, turn-based
- Language: Java
- Homepage:
- Size: 88.9 KB
- Stars: 6
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
java-nightfall
==============A clone of *SPYBOT: The nightfall incident* in Java.
Originally forked from https://code.google.com/p/java-nightfall/
(now available at https://github.com/stravant/java-nightfall)This forks improves the game by adding most of the features found in the original Spybot game,
including shops, messages, healing and grid modifying (BitMan attack).
The zones are the most important lacking feature.## Resource Packs
Unzip these in `~/.nightfall/AddOns/`.
* [NightfallPack](https://iikka.kapsi.fi/nightfall/NightfallPack.zip): Contains textures from the original _The Nightfall Incident_.
* [DevPack](https://iikka.kapsi.fi/nightfall/DevPack.zip): Contains tutorial and remakes of levels from the original game.
* [HackerBases](https://iikka.kapsi.fi/nightfall/HackerBases.zip): A small story of a hacker whose employer's servers are corrupted.```sh
mkdir -p ~/.nightfall/AddOns
cd ~/.nightfall/AddOns
wget https://www.kaivos.org/pelit/{NightfallPack,DevPack,HackerBases}.zip
unzip NightfallPack.zip
unzip DevPack.zip
unzip HackerBases.zip
```The game will not work without NightfallPack and DevPack! If you launched the game before installing them, remove `~/.nightfall/SaveData.json` and install the packs.
## Compiling
There is a prebuilt version: [nightfall.jar](https://github.com/fergusq/java-nightfall/releases/download/v1/nightfall.jar).
```
make nightfall.jar
```## Running
```
java -cp nightfall.jar game.WMain
```