Class: Dice::D100

Inherits:
Dice
  • Object
show all
Defined in:
lib/dice/d100.rb

Overview

Implements a standard 100-sided dice with a roll value range of 00-99

Instance Attribute Summary

Attributes inherited from Dice

#coerced, #min_val, #sides

Instance Method Summary collapse

Methods inherited from Dice

#*, #+, #-, #/, #coerce, coerce, #roll

Constructor Details

#initializeD100

Returns a new instance of D100.



5
6
7
# File 'lib/dice/d100.rb', line 5

def initialize
super 0, 100
end