aboutsummaryrefslogtreecommitdiff
path: root/src/ch/epfl/xblast/server/Ticks.java
blob: 8c1e1340066ef041f5be3c12251fab268bb407c8 (plain)
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
package ch.epfl.xblast.server;

public interface Ticks {
    /**
     * Duration of the death of a player.
     */
    public static int PLAYER_DYING_TICKS = 8;

    /**
     * Duration of the invulnerability of a player.
     */
    public static int PLAYER_INVULNERABLE_TICKS = 64;

    /**
     * Duration of 
     */
    public static int BOMB_FUSE_TICKS = 100;

    /**
     * Duration of an explosion.
     */
    public static int EXPLOSION_TICKS = 30;

    /**
     * Duration of crumbling of a wall.
     */
    public static int WALL_CRUMBLLING_TICKS = EXPLOSION_TICKS;

    /**
     * Duration of the presence of a bonus.
     */
    public static int BONUS_DISAPPEARING_TICKS = EXPLOSION_TICKS;
}