Class: Dice::D8

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

Overview

Implements a standard 8-sided dice with a roll value range of 1-8

Instance Attribute Summary

Attributes inherited from Dice

#coerced, #min_val, #sides

Instance Method Summary collapse

Methods inherited from Dice

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

Constructor Details

#initializeD8

Returns a new instance of D8.



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

def initialize
super 1, 8
end