Method: BCDice::GameSystem::DarkBlaze#eval_game_system_specific_command

Defined in:
lib/bcdice/game_system/DarkBlaze.rb

#eval_game_system_specific_command(command) ⇒ Object



125
126
127
128
129
130
131
132
# File 'lib/bcdice/game_system/DarkBlaze.rb', line 125

def eval_game_system_specific_command(command)
  if (m = /^BT(\d)?$/i.match(command))
    dice = m[1]&.to_i || 1
    return get_horidasibukuro_table(dice)
  end

  return check_roll(command)
end