Skip to content

Commit

Permalink
Fix typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
tom-wolfe committed Dec 13, 2017
1 parent 2c23750 commit 7ab1482
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/generator/data/backgrounds.json
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@
{ "ideal": "Greater Good. It is each person's responsibility to make the most happiness for the whole tribe.", "alignments": ["CG", "NG", "LG"]},
{ "ideal": "Honor. If I dishonor myself, I dishonor my whole clan.", "alignments": ["LG", "LN", "LE"]},
{ "ideal": "Might. The strongest are meant to rule.", "alignments": ["CE", "NE", "LE"]},
{ "ideal": "Nature. The natural world is more important than ali the constructs of civilization.", "alignments": ["LN", "CN", "TN"]},
{ "ideal": "Nature. The natural world is more important than all the constructs of civilization.", "alignments": ["LN", "CN", "TN"]},
{ "ideal": "Glory. I must earn glory in battle, for myself and my clan.", "alignments": []}
],
"bonds": [
Expand Down
4 changes: 2 additions & 2 deletions src/generator/family.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ module.exports = {
case r < 2: return { name: 'nobody', absent: ['mother', 'father'] };
case r < 3: return { name: 'an institution, such as an asylum', absent: ['mother', 'father'] };
case r < 4: return { name: 'a temple', absent: ['mother', 'father'] };
case r < 6: return { name: 'an ophanage', absent: ['mother', 'father'] };
case r < 6: return { name: 'an orphanage', absent: ['mother', 'father'] };
case r < 8: return { name: 'a guardian', absent: ['mother', 'father'] };
case r < 16: return { name: 'your paternal or maternal aunt, uncle, or both; or extended family such as a tribe or clan', absent: ['mother', 'father'] };
case r < 26: return { name: 'your paternal or maternal grandparent(s)', absent: ['mother', 'father'] };
Expand All @@ -79,7 +79,7 @@ module.exports = {
case r < 6: return { name: 'nobody', absent: ['mother', 'father'] };
case r < 11: return { name: 'an institution, such as an asylum', absent: ['mother', 'father'] };
case r < 16: return { name: 'a temple', absent: ['mother', 'father'] };
case r < 21: return { name: 'an ophanage', absent: ['mother', 'father'] };
case r < 21: return { name: 'an orphanage', absent: ['mother', 'father'] };
case r < 31: return { name: 'a guardian', absent: ['mother', 'father'] };
case r < 51: return { name: 'your paternal or maternal aunt, uncle, or both; or extended family such as a tribe or clan', absent: ['mother', 'father'] };
case r < 81: return { name: 'your paternal or maternal grandparent(s)', absent: ['mother', 'father'] };
Expand Down
4 changes: 2 additions & 2 deletions src/generator/life.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ function crime() {
}
}

function posessedCreature() {
function possessedCreature() {
switch (random.dice('1d6')) {
case 1: return 'celestial';
case 2: return 'devil';
Expand Down Expand Up @@ -98,7 +98,7 @@ function supernatural() {
case r < 51: return 'You escaped certain death and believe it was the intervention of a god that saved you.';
case r < 61: return 'You witnessed a minor miracle.';
case r < 71: return 'You explored an empty house and found it to be haunted.'
case r < 76: return `You were briefly possessed by a ${posessedCreature()}.`
case r < 76: return `You were briefly possessed by a ${possessedCreature()}.`
case r < 81: return 'You saw a ghost.';
case r < 86: return 'You saw a ghoul feeding on a corpse.';
case r < 91: return 'A celestial or a fiend visited you in your dreams to give a warning of dangers to come.';
Expand Down

0 comments on commit 7ab1482

Please sign in to comment.