Module: Restiny::Ammunition

Defined in:
lib/restiny/constants.rb

Overview

Definitions for the various typos of ammunition in the game.

Constant Summary collapse

NONE =
0
PRIMARY =
1
SPECIAL =
2
HEAVY =
3
UNKNOWN =
4

Class Method Summary collapse

Class Method Details

.namesObject



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

def self.names
  {
    NONE => 'None',
    PRIMARY => 'Primary',
    SPECIAL => 'Special',
    HEAVY => 'Heavy',
    UNKNOWN => 'Unknown'
  }
end