cmourglia / relwarb

2 stars 0 forks source link

Gameplay v. 1.0 #22

Open Yenapas opened 6 years ago

Yenapas commented 6 years ago
Yenapas commented 6 years ago

Player characteristics :

Movement
    Player can move left/right, jump and double-jump.
    Jumps count resets when the player lands.

Health
    Players have a health count.
    Default = 5 health points.
    When the health is down to 0, the player is off the game.

Mana
    Players have a mana count.
    Default = 5 mana points.

Skills
    Player can use skills. Their skillset is composed of 4 skills.
    Skills have a mana cost and a cooldown.

    # Passive regeneration
        Cost : Passive
        The passive regeneration skill regenerates both health and mana to the player.
        The health regeneration rate is : 0.5 health point every 1.0s
        The mana regeneration rate is : 1 mana point every 2.0s
        Interrupted by : Stunned

    # Slash
        Cost : 0.5 per charge
        Cooldown : 1 second
        The slash skill deals damage to any player hit.
        Slash has 3 charges and can be triggered one after another.
        Each slash is applied over 0.2 second with the hit happening once per target in the first 0.1 second.
        Slashing an opponent :
            - Deals 1 damage
        Interrupted by : Stunned

    # Dash
        Cost : 1 mana
        Cooldown : 0.1 second
        The dash skill makes the player dash 5 units (1 unit = player width) on the direction is looking.
        The dash is applied over 0.25s and cannot be cancelled. While dashing, the player is immune to gravity.
        Dashing into an opponent :
            - Stops the dash
            - Applies "Stunned" to the opponent for 0.5 second
        Interrupted by : Stunned

    # Mana recharge
        Cost : 0 mana
        Cooldown : 2.0 seconds
        The mana recharge skill refills the mana count of the player of 5 units.
        The mana recharge is applied over 4.0s and stops when the player mana count is at its maximum.
        Interrupted by : Stunned, Muted

Entity Status:

Landed
    In contact with the ground or a wall
Airbone
    Not in contact with the ground or any wall. Incompatible with Landed
Rooted
    Unable to move (voluntarily). Character can still be moved by external forces.
Muted
    Unable to cast spells (skills involving mana)
Stunned
    Unable to move and use skills = Rooted + Muted.