From: Julian Fietkau Date: Wed, 16 Oct 2024 00:05:53 +0000 (+0200) Subject: Expand word list some more X-Git-Url: https://fietkau.software/Up-in-the-Air.git/commitdiff_plain?repo=Up-in-the-Air;h=c8f98bd1f71ea07ce44422bd90ec692252181ce4;p=Up-in-the-Air;a=commitdiff_plain Expand word list some more --- diff --git a/main.js b/main.js index 0d207fa..20ab962 100644 --- a/main.js +++ b/main.js @@ -83,12 +83,12 @@ game['fn'].loadAllAssets = (renderProgressCallback) => { game.assets.words = { 'thanks': ['thank you', 'thanks'], 'sorry': ['sorry', 'apologize'], - 'emotion': ['blessed', 'contented', 'fortunate', 'fulfilled', 'glad', 'happy', 'joyful', 'joyous', 'lucky', 'overjoyed', 'thankful'], - 'verb_general': ['adore', 'appreciate', 'applaud', 'cherish', 'enjoy', 'like', 'love', 'treasure', 'value'], - 'verb_person': ['admire', 'honor', 'love', 'respect', 'treasure', 'value'], + 'emotion': ['amazed', 'blessed', 'contented', 'elated', 'fortunate', 'fascinated', 'fulfilled', 'glad', 'happy', 'inspired', 'joyful', 'joyous', 'lucky', 'mesmerized', 'overjoyed', 'thankful', 'thrilled'], + 'verb_general': ['adore', 'appreciate', 'applaud', 'celebrate', 'cherish', 'enjoy', 'like', 'love', 'respect', 'treasure', 'value'], + 'verb_person': ['admire', 'adore', 'appreciate', 'believe in', 'care about', 'honor', 'long for', 'love', 'miss', 'respect', 'revere', 'support', 'treasure', 'understand', 'value', 'yearn for'], 'verb_together': ['chat', 'dance', 'hang out', 'meet', 'sing', 'speak', 'talk'], - 'verb_communication': ['convey to', 'say to', 'show', 'tell'], - 'trait': ['amazing', 'compassionate', 'delightful', 'genuine', 'generous', 'incredible', 'joyful', 'kind', 'passionate', 'patient', 'principled', 'refreshing', 'sweet'], + 'verb_communication': ['convey to', 'express to', 'say to', 'show', 'tell', 'write to'], + 'trait': ['accepting', 'amazing', 'angelic', 'attentive', 'brave', 'breathtaking', 'brilliant', 'caring', 'cheerful', 'compassionate', 'creative', 'dazzling', 'delightful', 'elegant', 'fun', 'genuine', 'generous', 'gentle', 'genuine', 'graceful', 'incredible', 'inspiring', 'joyful', 'kind', 'loving', 'nurturing', 'passionate', 'patient', 'precious', 'principled', 'radiant', 'refreshing', 'sincere', 'spirited', 'spontaneous', 'sunny', 'supportive', 'sweet', 'thoughtful', 'trustworthy', 'understanding', 'uplifting', 'upstanding', 'vibrant', 'warm', 'welcoming', 'wonderful'], }; game.assets.wordList = [...new Set([].concat.apply([], Object.values(game.assets.words)))]; // no need to be sorted game.assets.sentences = [ @@ -135,6 +135,8 @@ game['fn'].loadAllAssets = (renderProgressCallback) => { 'I miss the times when we would {verb_together}.', 'I feel {emotion} when we {verb_together}.', 'Whenever we {verb_together}, I feel {emotion}.', + 'When we {verb_together}, I feel {emotion}.', + 'When we {verb_together}, it makes me feel {emotion}.', 'You’re so {trait} whenever we {verb_together}.', 'When we {verb_together}, you’re always {trait}.', 'It’s hard to {verb_communication} you what you mean to me.',