Class: Dice::D12

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

Overview

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

Instance Attribute Summary

Attributes inherited from Dice

#coerced, #min_val, #sides

Instance Method Summary collapse

Methods inherited from Dice

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

Constructor Details

#initializeD12

Returns a new instance of D12.



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

def initialize
super 1, 12
end