serifs.ts

This commit is contained in:
L̷O̷N̷D̷O̷N̷少林 2025-01-16 16:14:32 -05:00 committed by GitHub
parent 0136967017
commit 3adb8534fd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -129,7 +129,7 @@ export default {
normal: '(Still...)', normal: '(Still...)',
hate: '…頭大丈夫ですか?' hate: '...Are you okay in the head?'
}, },
itai: name => name ? `${name}, are you okay? Ouch, ouch, ouch, go away! ` : 'Are you okay? Ouch, ouch, ouch, go away!', itai: name => name ? `${name}, are you okay? Ouch, ouch, ouch, go away! ` : 'Are you okay? Ouch, ouch, ouch, go away!',
@ -168,156 +168,154 @@ export default {
}, },
/** /**
* * Reversi
*/ */
reversi: { reversi: {
/** /**
* * When accepting an invitation to play Reversi
*/ */
ok: '良いですよ~', ok: 'Sure, sure',
/**
* When declining an invitation to play Reversi
*/
decline: "Sorry, I'm not allowed to play Reversi right now...",
/**
* Start of game
*/
started: (name, strength) => `Started a game with ${name}! (strength ${strength})`,
/** /**
* * Start of entertainment
*/ */
decline: 'ごめんなさい、今リバーシはするなと言われてます...', startedSettai: name => `(Started entertainment for ${name})`,
/** /**
* * When you win
*/ */
started: (name, strength) => `対局を${name}と始めました! (強さ${strength})`, iWon: name => `I won against ${name}`,
/** /**
* * When you intended to entertain but ended up winning
*/ */
startedSettai: name => `(${name}の接待を始めました)`, iWonButSettai: name => `(I won against ${name} in entertainment...)`,
/** /**
* * When you lose
*/ */
iWon: name => `${name}に勝ちました♪`, iLose: name => `I lost against ${name}...`,
/** /**
* * When you lose in entertainment
*/ */
iWonButSettai: name => `(${name}に接待で勝っちゃいました...)`, iLoseButSettai: name => `(I lost in entertainment for ${name}...)`,
/** /**
* * When you draw
*/ */
iLose: name => `${name}に負けました...`, drawn: name => `I drew with ${name}~`,
/** /**
* * When you draw in entertainment
*/ */
iLoseButSettai: name => `(${name}に接待で負けてあげました...)`, drawnSettai: name => `(Drawn with ${name}...)`,
/** /**
* * When your opponent resigns
*/ */
drawn: name => `${name}と引き分けました~`, youSurrendered: name => `${name} But I gave up.`,
/**
*
*/
drawnSettai: name => `(${name}に接待で引き分けました...)`,
/**
*
*/
youSurrendered: name => `${name}が投了しちゃいました`,
/** /**
* *
*/ */
settaiButYouSurrendered: name => `(${name}を接待していたら投了されちゃいました... ごめんなさい)`, settaiButYouSurrendered: name => `(I was entertaining ${name} when he resigned... sorry)`,
}, },
/** /**
* * Guessing Game
*/ */
guessingGame: { guessingGame: {
/** /**
* * When you are asked to play but are already playing
*/ */
alreadyStarted: 'え、ゲームは既に始まってますよ!', alreadyStarted: 'Oh, the game has already started!',
/** /**
* * When you are invited on the timeline
*/ */
plzDm: 'メッセージでやりましょう!', plzDm: "Let's play by message!",
/** /**
* * Start of the game
*/ */
started: '0~100の秘密の数を当ててみてください♪', started: 'Try to guess the secret number between 0 and 100♪',
/** /**
* * When you get a reply that is not a number
*/ */
nan: '数字でお願いします!「やめる」と言ってゲームをやめることもできますよ!', nan: 'Please use a number! You can also quit the game by saying "quit"!',
/** /**
* * When you are asked to stop
*/ */
cancel: 'わかりました~。ありがとうございました♪', cancel: 'Okay. Thank you♪',
/** /**
* * When you are told a small number
*/ */
grater: num => `${num}より大きいですね`, grater: num => "It's bigger than ${num}",
/** /**
* (2) * When you are told a small number (2nd time)
*/ */
graterAgain: num => `もう一度言いますが${num}より大きいですよ!`, graterAgain: num => "I'll say it again, it's bigger than ${num}!",
/** /**
* * When you are told a large number
*/ */
less: num => `${num}より小さいですね`, less: num => "It's smaller than ${num}",
/** /**
* (2) * When a large number is said (second time)
*/ */
lessAgain: num => `もう一度言いますが${num}より小さいですよ!`, lessAgain: num => "I'll say it again, it's less than ${num}!",
/** /**
* * When you get the answer right
*/ */
congrats: tries => `正解です🎉 (${tries}回目で当てました)`, congrats: tries => `You got it right🎉 (You got it right on the ${tries}th try)`,
}, },
/** /**
* * Counting Game
*/ */
kazutori: { kazutori: {
alreadyStarted: '今ちょうどやってますよ~', alreadyStarted: "I'm just doing it now",
matakondo: 'また今度やりましょう!', matakondo: "Let's do it again next time!",
intro: minutes => `みなさん、数取りゲームしましょう!\n0~100の中で最も大きい数字を取った人が勝ちです。他の人と被ったらだめですよ\n制限時間は${minutes}分です。数字はこの投稿にリプライで送ってくださいね!`, intro: minutes => `Everyone, let's play a counting game! \nThe person who gets the highest number between 0 and 100 wins. You can't overlap with someone else's number~ \nThe time limit is ${minutes} minutes. Please send your number as a reply to this post!`,
finish: 'ゲームの結果発表です!', finish: 'The results of the game are announced!',
finishWithWinner: (user, name) => name ? `今回は${user}さん(${name})の勝ちです!またやりましょう♪` : `今回は${user}さんの勝ちです!またやりましょう`, finishWithWinner: (user, name) => name ? `This time, ${user}(${name}) won! Let's do it again♪` : `This time, ${user}(${name}) won! Let's do it again`,
finishWithNoWinner: '今回は勝者はいませんでした... またやりましょう♪', finishWithNoWinner: "There was no winner this time... let's do it again ♪",
onagare: '参加者が集まらなかったのでお流れになりました...' onagare: 'It was cancelled due to lack of participants...'
}, },
/** /**
* * Emoji Generation
*/ */
emoji: { emoji: {
suggest: emoji => `こんなのはどうですか?→${emoji}`, suggest: emoji => `How about this?→ ${emoji}`,
}, },
/** /**
* * Fortune telling
*/ */
fortune: { fortune: {
cw: name => name ? `私が今日の${name}の運勢を占いました...` : '私が今日のあなたの運勢を占いました...', cw: name => name ? "I've done ${name}'s fortune for today..." : "I've done your fortune for today...",
}, },
/** /**