No commit activity in last 3 years
No release in over 3 years
A simple gem that generate DD Next encounters
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 1
 Project Readme

Build Status Maintainability Test Coverage

dd-next-encounters

An encounter generator for DD next

Compatibility

Require ruby 2.4.0 or higher.

Setup

gem install dd-next-encounters

Or in your gemfile :

gem 'dd-next-encounters', '~> 3.0.1'

Then in your code :

require 'dd-next-encounters'

Usage

# Create a lair object for a four five level party at medium difficulty.
# Difficulty can be :easy, :medium, :hard, :deadly
# Note that level 15 is the max for now
l = Lairs.new :medium, [5]*4

# Then you can generate encounters for this lair.
1.upto(5).each do
  p l.encounter.to_s
end

# Output example : 
# "6 Hobgoblin"
# "3 Bugbear"
# "4 Orc"
# "5 Gnoll"
# "6 Gnoll"