class Faker::Games::DnD
def alignment
-
(String)
-
def alignment fetch('dnd.alignments') end
def background
-
(String)
-
def background fetch('dnd.backgrounds') end
def city
-
(String)
-
def city fetch('dnd.cities') end
def first_name
-
(String)
-
def first_name fetch('dnd.name.first_name') end
def klass
-
(String)
-
def klass fetch('dnd.klasses') end
def language
-
(String)
-
def language fetch('dnd.languages') end
def last_name
-
(String)
-
def last_name fetch('dnd.name.last_name') end
def melee_weapon
-
(String)
-
def melee_weapon fetch('dnd.melee_weapons') end
def monster
-
(String)
-
def monster fetch('dnd.monsters') end
def name
-
(String)
-
def name "#{fetch('dnd.name.first_name')} #{fetch('dnd.name.last_name')}" end
def race
-
(String)
-
def race fetch('dnd.races') end
def ranged_weapon
-
(String)
-
def ranged_weapon fetch('dnd.ranged_weapons') end
def title_name
-
(String)
-
def title_name "#{fetch('dnd.name.first_name')} #{fetch('dnd.name.title')}" end