-
-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Ojisan's sexual desire #8
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
50c3427
おじさんの欲望をより忠実に表現
NaofumiUesugi 889899f
おじさんの欲望を変更
NaofumiUesugi 1cadc3c
おじさんの欲望を変更
NaofumiUesugi 135f1cb
おじさんはたまに失言もしてしまう
NaofumiUesugi 107d534
おじさんの失言を追加
NaofumiUesugi 3c8e540
コンフリクトを解消
NaofumiUesugi 577596e
おじさんの欲望をオブラートに包む
blacknon a73d455
おじさんの欲望をオブラートに包む+コンフリクト解消
blacknon 89695e0
おじさんの欲望をオブラートにもう一回包む
blacknon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,10 +16,13 @@ var uniqTags = map[string][]string{ | |
"{FIRST_PERSON}": []string{ | ||
"僕", | ||
"ボク", | ||
"ボク", | ||
"俺", | ||
"オレ", | ||
"オレ", | ||
"小生", | ||
"オジサン", | ||
"オジサン", | ||
"おじさん", | ||
"オイラ", | ||
}, | ||
|
@@ -47,6 +50,8 @@ var uniqTags = map[string][]string{ | |
"きんぴらごぼう", | ||
"ピッツァ🍕", | ||
"パスタ🍝", | ||
"スイーツ🍮", | ||
"ケーキ🎂", | ||
}, | ||
// 天気 | ||
"{WEATHER}": []string{ | ||
|
@@ -60,13 +65,26 @@ var uniqTags = map[string][]string{ | |
}, | ||
// 下ネタの後は「ナンチャッテ」「冗談(笑)」を使う(README.md 参考文献[2]) | ||
"{NANCHATTE}": []string{ | ||
"ナンチャッテ{EMOJI_POS}", | ||
"ナンチャッテ{EMOJI_POS}", | ||
"なんちゃって{EMOJI_POS}", | ||
"なんてね{EMOJI_POS}", | ||
"冗談{EMOJI_POS}", | ||
"", // おじさんはたまに本気 | ||
}, | ||
// TODO: 「かな?」と「かい?」の語尾の違いも組み込んでも良いかもしれない | ||
// おじさんの欲望の地、ホテル | ||
"{HOTEL}": []string{ | ||
"ホテル🏨", | ||
"ホテル🏩", | ||
"旅館", | ||
}, | ||
// デートの種類 | ||
"{DATE}": []string{ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. (ただの感想)なるほど、ここを分岐にする発想は、スバラシイと、おもうナ❗ 😄 ✋ |
||
"デート❤", | ||
"カラオケ🎤", | ||
"ドライブ🚗", | ||
}, | ||
} | ||
|
||
// 文章中複数回変更&繰り返されるタグ | ||
|
@@ -199,8 +217,11 @@ func randomNameSuffix() string { | |
case n < 5: | ||
return "" | ||
// "時に「◯◯チャン」とカタカナにしてくるのも、おじさんの常套手段だ。"(README.md 参考文献[2]) | ||
case n < 40: | ||
case n < 20: | ||
return "チャン" | ||
// "「〇〇チャン」をさらに半角で表現する、そんなおじさんもいる" | ||
case n < 40: | ||
return "チャン" | ||
// 多くの場合「ちゃん」にする | ||
default: | ||
return "ちゃん" | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.