1
1
# Alone
2
2
3
- Single-player ASCII roguelike/roguelite focused on surviving, alone, on an island inhabited by animals.
3
+ [ ![ Latest Github release] ( https://img.shields.io/github/release/fabioticconi/alone-rl.svg )] ( https://github.com/fabioticconi/alone-rl/releases/latest )
4
+
5
+ Single-player ASCII roguelike focused on surviving, alone, on an island inhabited by animals.
4
6
The main inspiration is from [ Unreal World] ( http://unrealworld.fi ) and [ Wayward] ( http://www.waywardgame.com ) ,
5
7
with a much simpler gameplay.
6
8
7
9
It's a real-time game but it defaults to a turn-based modality where the world only advances during player actions,
8
10
for as long as the player action runs. Pure real-time gameplay can be toggled.
9
11
10
- ** NB: this is not even in alpha state.** Lurk freely if you like the concept, but * know* this is not playable,
11
- by far.
12
- Keep an eye on the [ release] ( https://github.com/fabioticconi/alone-the-roguelite/releases ) area, for the future.
12
+ ** NB: this is not ready yet.** Keep an eye on the [ releases page] ( https://github.com/fabioticconi/alone-the-roguelite/releases )
13
+ for a stable release.
13
14
14
15
## Controls
15
16
16
17
* ** ` directional arrows ` to move** (hold two together for diagonal movement, eg UP+RIGHT to go north-east)
17
18
18
- Move into creatures to attack them (message/combat log coming soon), trees to cut them, boulders to crush them.
19
- For the last two you need proper tools (a cutting weapon for cutting three, not craftable yet, and a blunt weapon
20
- for crushing boulders: you can use a stone for that)
21
-
22
- * ** ` g ` to get the first item** on the ground you are currently positioned on (stones, sticks, corpses, tree trunks..
23
- there's no inventory limit for now).
19
+ Move into creatures to attack them, trees to cut them, boulders to crush them.
20
+ For the last two you need proper tools (a cutting weapon for cutting three and a blunt weapon
21
+ for crushing boulders).
24
22
23
+ * ** ` g ` to get an item** . You must move onto it first. There is no inventory limit.
24
+
25
25
* ** ` d ` to open the Drop screen** . You will be able to choose which item to drop.
26
26
27
27
* ** ` e ` to open the Eat screen** . You can only eat corpses that you have taken from the ground, for now.
28
28
29
29
* ** ` w ` to wear or wield an object** via the Equip screen. Stones and branches will do nicely for now.
30
-
30
+
31
31
* ** ` l ` to open the Look screen** . Move around to choose a target (if you have Line of Sight) and press ** ` t ` ** to throw
32
32
an equipped weapon in that direction.
33
33
34
+ * ** ` c ` to open the Craft screen** . A list of recipes is loaded anew from a yaml file and displayed. See
35
+ [ Crafting] ( https://github.com/fabioticconi/alone-rl#crafting ) for details.
36
+
34
37
There are also some special commands:
35
38
36
39
* ** ` Ctrl+SPACE ` ** to toggle real-time/turn-based behaviour
37
40
38
41
* ** ` SPACE ` ** to pause/unpause if you are on real-time mode; if you are on turn-based mode, keep ` SPACE `
39
42
pressed to temporarily run the game in real-time (needed, for example, to recover stamina when you finish it,
40
43
or regenerate health).
41
-
44
+
42
45
* ** ` F1 ` ** removes the speed delay of the player. Useful to test the game without having to suffer the movement delays.
43
46
Will be removed in the final version.
44
-
47
+
45
48
* ** ` F2 ` ** restores the correct player speed.
46
49
Will be removed in the final version.
47
-
50
+
48
51
## Screenshots
49
52
50
53
This is how the game looks when run (** very** preliminary GUI):
51
54
52
55
![ ] ( screenshots/gameplay.gif )
53
56
54
- A few wolves are chasing rabbits, while pumas manage to bring a buffalo down.
55
-
56
57
### Map
57
58
58
59
![ ] ( screenshots/orig_map.png )
@@ -74,6 +75,8 @@ Later the terrain will be configurable by the user.
74
75
75
76
You can also see some rivers (still in-progress, not in the game yet) flowing from high to low places.
76
77
78
+ Note: this is only temporary. In the final game the terrain will be randomised.
79
+
77
80
## Features
78
81
79
82
### Field of view
@@ -85,14 +88,14 @@ Pathfinding is both precise and efficient thanks to an AStar implementation that
85
88
to plan a course to a target position.
86
89
87
90
What this means for the end user is that the game doesn't cheat. It doesn't magically make creatures see you
88
- if they shouldn't. The other creatures can only do what * you* also can .
91
+ if they shouldn't. The other creatures can only do what * you* can also do .
89
92
90
- ### Simple Ecology Simulation
93
+ ### Simple Ecology
91
94
92
- Creatures don't "pop" or "spawn", they don't just appear when needed but they keep going even when the
95
+ Creatures don't "pop" or "spawn", they don't just appear when needed but they * exist * ; and they keep going even when the
93
96
player is not looking.
94
97
95
- This is the main difference between Alone and most roguelikes/roguelites. It makes it a simulation game, to an extent.
98
+ This is the main difference between ` AloneRL ` and most roguelikes/roguelites. It makes it a simulation game, to an extent.
96
99
97
100
Different creatures have different set of behaviours:
98
101
@@ -116,5 +119,8 @@ Escape predators, steal their carcasses if you can, or kill any walking thing an
116
119
117
120
### Crafting
118
121
119
- ** Not implemented yet ** . It will cover the basic primitive technology of a Neolithic hunter, eg stone knives, spears and axes,
122
+ It will cover the basic primitive technology of a Neolithic hunter, eg stone knives, spears and axes,
120
123
simple bark protection, a shelter, maybe rudimentary pit traps and extraction of parts from dead animals.
124
+
125
+ All currently implemented recipes can be seen (and modified, added or removed) in the file
126
+ [ crafting.yml] ( data/crafting.yml ) .
0 commit comments