-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhangman.1
150 lines (149 loc) · 2.27 KB
/
hangman.1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
.TH "HANGMAN" "" "2023-10-21" "" "User's Manual"
.
.SH "NAME"
\fBhangman\fR
.
.P
hangman(1) \-\- Guess a word\.
.
.SH "SYNOPSIS"
\fBhangman\fR [\fBOPTIONS\fR]
.
.SH "DESCRIPTION"
\fBHangman\fR is an arcade game where you have to guess a random word\.
.
.SH "USAGE"
\fBhangman\fR [s<plash>] [e<asy> | h<ard>] [r<ank>] [q<uiet>]
.
.br
.
.SH "OPTIONS"
.
.IP "\(bu" 4
\fBsplash\fR
.
.IP
Show a splash screen\.
.
.IP "\(bu" 4
\fBeasy\fR
.
.IP
Select easy mode\.
.
.IP "\(bu" 4
\fBhard\fR
.
.IP
Select hard mode\.
.
.IP "\(bu" 4
\fBrank\fR
.
.IP
Display score board and exits\.
.
.IP "\(bu" 4
\fBquiet\fR
.
.IP
Disable ingame sounds\.
.
.IP "" 0
.
.SH "RULES"
Guess a random word by entering letters and try to get as much points as possible\.
.
.br
To help you, the first and the last letter are shown.
.
.br
The game also displays the maximum score you can get if you make no mistake.
.
.br
You start the game with 10 \fBenergy\fR points\. For each incorrect letter, you lose 1 \fBenergy\fR point\.
.
.br
You lose the game when \fBenergy\fR reaches 0\.
.
.br
If you enter 3 correct letters in a row, game enters \fBchain\fR mode\.
.
.br
In this mode you start to earn points and next correct letters grant extra points\.
.
.br
Letters that are visible at the beginning of a game can also be played anytime
.
.br
to get more points or to initiate \fBchain\fR mode\.
.
.br
.
.P
If you guess a word flawlessly, you get bonus points\.
.
.br
If you get 3 or more flawless victories in a row, you also get bonus points\.
.
.SH "ENERGY"
In \fBeasy\fR mode you get 1 \fBenergy\fR point for each correct letter entered when in \fBchain\fR mode\.
.
.P
In \fBnormal\fR and \fBhard\fR mode you get 1 \fBenergy\fR point every 2 victories\.
.
.P
In \fBnormal\fR mode, \fBenergy\fR is fully refilled every 6 victories\.
.
.P
In \fBhard\fR mode, \fBenergy\fR is fully refilled every 10 victories\.
.
.SH "SCORING"
victory:
.
.IP "\(bu" 4
letters x energy
.
.IP "" 0
.
.P
chain:
.
.IP "\(bu" 4
easy: ( chain - 2 ) x 50
.
.IP "\(bu" 4
normal: ( chain - 2 ) x 100
.
.IP "\(bu" 4
hard: ( chain - 2 ) x 150
.
.IP "" 0
.
.P
flawless:
.
.IP "\(bu" 4
easy: 250
.
.IP "\(bu" 4
normal: 500
.
.IP "\(bu" 4
hard: 1000
.
.IP "" 0
.
.P
streak:
.
.IP "\(bu" 4
easy: streak x 500
.
.IP "\(bu" 4
normal: streak x 2500
.
.IP "\(bu" 4
hard: streak x 5000
.
.IP "" 0