-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathREADME.txt
128 lines (85 loc) · 3.67 KB
/
README.txt
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
Ultimate Smash Friends
====================
Ultimate Smash Friends is a game which aim at creating quick and fun multiplayer
entertainment. With nice 2d bitmap graphics and arcade gameplay we hope to
deliver hours of fun.
How to install
==============
see INSTALL file if you have not already installed the game.
Configuring
===========
Global configuration resides in the system.cfg file. If this file does not exist
(because you didn't install Ultimate Smash Friends), you can generate it from the
commmand line as follows:
$ python2 -m usf.config
Local Configuration resides in user.cfg, whose location depends on your platform
Launching the game
==================
In a graphical desktop environment, the game may be launched by double-clicking
on the 'ultimate-smash-friends' script.
Alternatively, the game may be launched from a terminal by typing the following:
python2 -m usf.main
Or, from within the ultimate-smash-friends directory:
./ultimate-smash-friends
You can directly launch a game by passing level and player parameters, separate
players name by a comma, like this:
./ultimate-smash-friends --level rizland --players xeon,blob
(--level can be abreviated as -l and --players as -p)
you can add an artificial intelligence player by adding "AI" before the name of
the character, e.g:
./ultimate-smash-friends --level rizland --players blob,AIxeon
like this the second player will be an AI player.
Controls
========
Keys configuration are stored in the user.cfg file and can be changed from the
options menu of the game
Each player has 4 direction keys and two action keys referred here as A and B
plus a SHIELD key.
Basic actions:
* The LEFT and RIGHT keys allow to walk
* The UP key allow to jump
* The DOWN key allow to pick an item
* The A key trigger a kick
* The B key trigger a simple hit
* The SHIELD key set the shield on until the key is released of the shield is
exhausted
Combined actions:
* During a jump, the UP key will trigger a second jump
* When DOWN has been pushed, a LEFT or RIGHT push will trigger a roll
* When B is pushed just after a move in any direction, that will trigger a
smash in that direction
* When A is pushed after DOWN, a special attack is triggered, if available
* When DOWN is pushed two times, and then A is pushed, another special attack
is triggered, if available
Menu
====
The escape key can be used to toggle the menu. Launching a new game will cancel
any current game.
Game
====
Each character has 7 keys: 4 directional and 2 action keys plus the SHIELD key,
the actions keys are further referenced as A and B. You can use A and B in
combination with directions keys to make more complexe attacks (combos).
the SHIELD key is used to protect the player, but it can't move while protected.
Use the escape key to access the menu in game.
How to win
==========
Rules are simple, when you hit someone, his percents raise, and is projected
every time a little more far, the aim is to beat the enemies out of the map, you
have 3 lives.
Enjoy :)
Contribute
==========
The addition of characters and levels is designed to be easy, only bitmaps and
an xml file! Characters support vectors in any animations, collision points
in any animations, adding event to game in any animations, the
characters behaviour is very flexible, It's also easy to code a particular
event if you are a developper. We hope this will encourage collaborative
creation of original characters and levels. Please see the wiki for help on
characters/maps creation.
http://usf.tuxfamily.org/wiki/Documentation
Bugs
====
Please send reports, suggests or patchs to:
https://bugs.launchpad.net/ultimate-smash-friends
last update: Wed, 27 Apr 2011 18:45:51 +0200