Module: Restiny::Breaker

Defined in:
lib/restiny/constants.rb

Overview

Definitions for the Champion breaker types used in the game.

Constant Summary collapse

NONE =
0
SHIELD_PIERCING =
1
DISRUPTION =
2
STAGGER =
3

Class Method Summary collapse

Class Method Details

.namesObject



121
122
123
124
125
126
127
128
# File 'lib/restiny/constants.rb', line 121

def self.names
  {
    NONE: 'None',
    SHIELD_PIERCING: 'Shield-Piercing',
    DISRUPTION: 'Disruption',
    STAGGER: 'Stagger'
  }
end