From 7ab14820be766f9fb7e645d20fc2c4920d557f53 Mon Sep 17 00:00:00 2001 From: Tom Wolfe Date: Wed, 13 Dec 2017 13:13:12 +0000 Subject: [PATCH] Fix typos. --- src/generator/data/backgrounds.json | 2 +- src/generator/family.js | 4 ++-- src/generator/life.js | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/generator/data/backgrounds.json b/src/generator/data/backgrounds.json index 63368d6..be8c228 100644 --- a/src/generator/data/backgrounds.json +++ b/src/generator/data/backgrounds.json @@ -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": [ diff --git a/src/generator/family.js b/src/generator/family.js index 6ea840e..f32ba2a 100644 --- a/src/generator/family.js +++ b/src/generator/family.js @@ -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'] }; @@ -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'] }; diff --git a/src/generator/life.js b/src/generator/life.js index eca84a2..075788e 100644 --- a/src/generator/life.js +++ b/src/generator/life.js @@ -65,7 +65,7 @@ function crime() { } } -function posessedCreature() { +function possessedCreature() { switch (random.dice('1d6')) { case 1: return 'celestial'; case 2: return 'devil'; @@ -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.';