├── .editorconfig
├── .github
├── renovate.json
└── workflows
│ ├── build.yml
│ └── release.yml
├── .gitignore
├── .versionrc
├── CHANGELOG.md
├── LICENSE
├── README.md
├── avatars
├── louise.png
└── shana.png
├── gulpfile.js
├── keywords-voices.yml
├── manifest.json
├── package-lock.json
├── package.json
├── preview
├── Kugimiya-preview-dark.png
├── Kugimiya-preview.png
├── import.png
├── louise-and-lash.png
└── open-voice-directory.png
├── resource.csv
└── voices
├── 01-アンタなんて豆腐の角に頭ぶつけて死んじゃえばいいのよ!.mp3
├── 02-いい加減、目覚まし時計で起きなさいよね!何でいつも私が起こさなきゃいけないのよ!!.mp3
├── 03-うるさい、うるさい、うるさい!.mp3
├── 04-選んだのは私でアンタじゃないんだからね.mp3
├── 05-おはよーじゃなくて、おはようございますでしょっ.mp3
├── 06-勘違いしないでよね.mp3
├── 07-別にあんたのためにやったわけじゃないんだから.mp3
├── 08-キスなんて100年早いわよ!!.mp3
├── 09-くっ…胸のことを….mp3
├── 10-怪我でもされたら、私が困るじゃない.mp3
├── 11-このぉバカ!-.mp3
├── 12-さよならなんて言ってあげないんだから!.mp3
├── 13-心配なんてしてないんだからね!.mp3
├── 14-好きでこんな格好してるわけじゃないんだからね…あんたの前だけよ….mp3
├── 15-もう…バカ….mp3
├── 16-全力で来なさいよ?叩き潰してあげるから.mp3
├── 17-そばにいなさい!一生よ!いいわね!.mp3
├── 18-誕生日プレゼントなんて誰にももらえないだろうから.mp3
├── 19-はい.mp3
├── 20-これプレゼント….mp3
├── 21-ちょっと待ちなさいよ!この鈍感男!.mp3
├── 22-なんで….mp3
├── 23-なんで気付かないのよぉ!.mp3
├── 24-ついでだから、あんたも誘ってあげるわ.mp3
├── 25-電話なんかしてこなくても…寂しくなんてないんだから….mp3
├── 26-隣に来ないでよ、恥ずかしいじゃない.mp3
├── 27-な、なによあいつ!.mp3
├── 28-私というものがありながら!うぅぅ.mp3
├── 29-逃げないで、話くらいちゃんと聞きなさいよね.mp3
├── 30-もうっ、知らない、バカ!!何言わせんのよ!!.mp3
├── 31-寝起きになにしてんのよ!.mp3
├── 32-NOとは言わせないわよ!.mp3
├── 33-恥ずかしいけど、手、手くらい繋いであげてもいいわよ、ホラ!!.mp3
├── 34-ひ…ひざまくらぁ!……い、一分だけだからねっ.mp3
├── 35-ふ、二人しかいないんなら….mp3
├── 36-今日は仕方ないわね….mp3
├── 37-変態、変態、変態、変態、変態バカ大変態!!!.mp3
├── 38-もう知らない….mp3
├── 39-ボケーっとしてるんじゃないわよ!!.mp3
├── 40-蹴り飛ばすわよ!.mp3
├── 41-まっ…まぁ、アナタがどうしてもって言うのなら.mp3
├── 42-仕方ないけど….mp3
├── 43-見せたいわけじゃないんだから!.mp3
├── 44-あんただから….mp3
├── 45-無視しないでよ!謝るから!.mp3
├── 46-目から汗が出てるだけなんだから!.mp3
├── 47-涙じゃないわよぉーーー!.mp3
├── 48-もぉ~バカバカバカ!!.mp3
├── 49-知らない知らない知らない.mp3
├── 50-妬いてるわけじゃないわよ、違うって言ってるじゃない!.mp3
├── 51-優柔不断な奴はキライだからね!.mp3
├── 52-よくないわよ。.mp3
├── 55-あたしのこと好きでも嫌いでもないなんて言うのは.mp3
├── 56-ラーメン伸びるわよ、はやく食べなさいよ!.mp3
├── 57-えっふぅふぅしてくれ?ばかぁー.mp3
├── 58-利用するに値しないわね。アンタなんか….mp3
├── 59-全然嬉しくないんだからっ.mp3
├── 60-連絡くらいよこしなさいよ!心配したんだから….mp3
├── 61-ろくなことがないわね…あんたと一緒にいられるのは私くらいなんだから….mp3
└── 62-わ、私だけを見ていればいいのよ!.mp3
/.editorconfig:
--------------------------------------------------------------------------------
1 | # http://editorconfig.org
2 | root = true
3 |
4 | [*]
5 | indent_style = space
6 | indent_size = 2
7 | end_of_line = lf
8 | charset = utf-8
9 | trim_trailing_whitespace = true
10 | insert_final_newline = true
11 |
12 | [*.md]
13 | trim_trailing_whitespace = false
14 |
15 | [Makefile]
16 | indent_style = tab
17 |
--------------------------------------------------------------------------------
/.github/renovate.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": [
3 | "config:base",
4 | "group:allNonMajor"
5 | ],
6 | "rangeStrategy": "bump",
7 | "schedule": ["before 12am every 2 weeks on Tuesday"],
8 | "timezone": "Asia/Shanghai"
9 | }
10 |
--------------------------------------------------------------------------------
/.github/workflows/build.yml:
--------------------------------------------------------------------------------
1 | # https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions
2 |
3 | name: build for commit
4 |
5 | on:
6 | push:
7 | branches:
8 | - '*'
9 | tags-ignore:
10 | - '*'
11 | pull_request:
12 | branches:
13 | - '*'
14 |
15 | jobs:
16 | build:
17 | runs-on: ubuntu-latest
18 |
19 | steps:
20 | - name: Checkout
21 | # https://github.com/actions/checkout
22 | uses: actions/checkout@v2
23 |
24 | - name: Setup node
25 | # https://github.com/actions/setup-node
26 | uses: actions/setup-node@v2
27 | with:
28 | node-version: 14.x
29 |
30 | - name: Install
31 | run: |
32 | npm ci
33 |
34 | - name: Build
35 | run: |
36 | npm run build
37 |
38 |
--------------------------------------------------------------------------------
/.github/workflows/release.yml:
--------------------------------------------------------------------------------
1 | # https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions
2 |
3 | name: release bundle zip
4 |
5 | on:
6 | push:
7 | tags:
8 | - v*
9 |
10 | jobs:
11 | release:
12 | runs-on: ubuntu-latest
13 |
14 | steps:
15 | - name: Checkout
16 | # https://github.com/actions/checkout
17 | uses: actions/checkout@v2
18 | with:
19 | # Number of commits to fetch. 0 indicates all history.
20 | # all history for changelog
21 | fetch-depth: 0
22 |
23 | - name: Setup node
24 | # https://github.com/actions/setup-node
25 | uses: actions/setup-node@v2
26 | with:
27 | node-version: 14.x
28 |
29 | - name: Install
30 | run: |
31 | npm ci
32 |
33 | - name: Build
34 | id: build
35 | # outputs:
36 | # bundle-file:
37 | # description: zip file name
38 | # bundle-path:
39 | # description: relative zip file path
40 | run: |
41 | npm run build
42 |
43 | - name: Changelog
44 | id: changelog
45 | # outputs:
46 | # changelog:
47 | # description: last tag changelog
48 | run: |
49 | git tag -d $(basename ${{ github.ref }})
50 | npx standard-version --dry-run --skip.bump=true --silent > change.log
51 | npm run gulp output-changelog
52 |
53 | - name: Create Release
54 | id: create-release
55 | # https://github.com/actions/create-release
56 | uses: actions/create-release@v1
57 | env:
58 | # This token is provided by Actions, you do not need to create your own token
59 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
60 | with:
61 | tag_name: ${{ github.ref }}
62 | release_name: Release ${{ github.ref }}
63 | body: |
64 | ${{ steps.changelog.outputs.changelog }}
65 | draft: false
66 | prerelease: false
67 |
68 | - name: Upload Release Asset
69 | id: upload-release-asset
70 | # https://github.com/actions/upload-release-asset
71 | uses: actions/upload-release-asset@v1
72 | env:
73 | # This token is provided by Actions, you do not need to create your own token
74 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
75 | with:
76 | upload_url: ${{ steps.create-release.outputs.upload_url }}
77 | asset_name: ${{ steps.build.outputs.bundle-file }}
78 | asset_path: ${{ steps.build.outputs.bundle-path }}
79 | asset_content_type: application/zip
80 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | .idea
3 | .vscode
4 |
5 | node_modules
6 |
7 | /dist
8 | /build
9 |
10 | *.zip
11 | *.log
12 |
--------------------------------------------------------------------------------
/.versionrc:
--------------------------------------------------------------------------------
1 | {
2 | "header": "# Changelog\n",
3 | "types": [
4 | {"type": "feat", "section": "feat"},
5 | {"type": "fix", "section": "fix"},
6 | {"type": "perf", "section": "perf"},
7 | {"type": "revert", "section": "revert"},
8 | {"type": "docs", "section": "docs"},
9 | {"type": "style", "section": "style"},
10 | {"type": "chore", "section": "chore"},
11 | {"type": "refactor", "section": "refactor"},
12 | {"type": "test", "section": "test"},
13 | {"type": "build", "section": "build"},
14 | {"type": "ci", "section": "ci"}
15 | ],
16 | "commitUrlFormat": "{{host}}/{{owner}}/{{repository}}/commit/{{hash}}"
17 | }
18 |
--------------------------------------------------------------------------------
/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | # Changelog
2 |
3 | ## [1.0.3](https://github.com/zthxxx/kugimiya-rainbow-fart/compare/v1.0.2...v1.0.3) (2020-10-08)
4 |
5 | ### fix
6 |
7 | * fix issues of 'voices/filename' typo ([eb1d1f1](https://github.com/zthxxx/kugimiya-rainbow-fart/commit/eb1d1f1ac2f2ec8dfa5849604ba1fc97b5b92868))
8 |
9 | ### chore
10 |
11 | * **deps-dev:** bump @actions/core from 1.2.4 to 1.2.6 ([0db407f](https://github.com/zthxxx/kugimiya-rainbow-fart/commit/0db407f52ff9e32d162ff2bd53cc5b4d1caf202b))
12 |
13 |
14 | ## [1.0.1](https://github.com/zthxxx/kugimiya-rainbow-fart/compare/v1.0.0...v1.0.1) (2020-06-29)
15 |
16 |
17 | ### docs
18 |
19 | * update docs and typo keywords ([5ff4187](https://github.com/zthxxx/kugimiya-rainbow-fart/commit/5ff41873d6463106fbc8112b75075ecae3373987))
20 |
21 |
22 | ### ci
23 |
24 | * add release action ([8ddf48e](https://github.com/zthxxx/kugimiya-rainbow-fart/commit/8ddf48ed6009b7d9f7dc8ced828c5fc4d6335290))
25 | * init github action for build ([098ef33](https://github.com/zthxxx/kugimiya-rainbow-fart/commit/098ef3388266600c22117b28411ab80ad7b6cfa1))
26 |
27 | ## [1.0.0](https://github.com/zthxxx/kugimiya-rainbow-fart/compare/v0.0.1...v1.0.0) (2020-06-25)
28 |
29 | - update all of voices
30 | - split the keywords config
31 | - optimize keywords-voices map
32 | - add building process
33 |
34 | ## [0.0.1](https://github.com/zthxxx/kugimiya-rainbow-fart/tree/v0.0.1) (2020-06-21)
35 |
36 | - init Kugimiya voice package
37 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) zthxxx (https://blog.zthxxx.me)
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in
13 | all copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | THE SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 | 钉宫 ⭐️ rainbow-fart ⭐️ 语音包
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | 「 哪个男孩能拒绝一个傲娇萝莉纸片人老婆在一旁鞭写鞭骂呢? 」
13 |
14 |
15 | ---
16 |
17 | 这是一个 vscode 彩虹屁🌈插件 [vscode-rainbow-fart](https://github.com/SaekiRaku/vscode-rainbow-fart) 的语音扩展包,灵感来源 [#40](https://github.com/SaekiRaku/vscode-rainbow-fart/issues/40) (支持 `JS` `TS` `python` `golang`)
18 |
19 | 但这并不彩虹屁,因为钉宫没有夸你,**相反是在骂你**; ~~你再骂?!(恳求)~~
20 |
21 | 但是从作用上说又并没有区别,彩虹屁原理是让人听着舒服、心情愉悦有动力写代码,
22 |
23 | 而钉宫傲娇的声音同样听得眯眼而且非常激动、~~血压飙升~~码力十足。
24 |
25 |
26 | ## Preview
27 |
28 | 
29 |
30 | 
31 |
32 | 语音文件: [voices/](./voices/)
33 |
34 | 语音台词对照: [resource.csv](./resource.csv)
35 |
36 | 关键词语音列表: [keywords-voices.yml](./keywords-voices.yml)
37 |
38 |
39 | ## Install
40 |
41 | 在 vscode-rainbow-fart(v1.2.3) 中引入语音包是需要打包成 zip 然后引用的,
42 |
43 | **本项目已经提供了打包好的文件,可以直接在 [Releases](https://github.com/zthxxx/kugimiya-rainbow-fart/releases) 中下载最新版 zip;**
44 |
45 | (或者作为开发者从[本仓库](https://github.com/zthxxx/kugimiya-rainbow-fart) clone 后自己手动把相关资源打包成 zip (`npm run build`)。)
46 |
47 | 然后在本地 vscode 启动的 rainbow-fart 配置页面中 `Settings` -> `Voice Packages` -> `Import` 中导入 zip,导入后需要点 enable 开关开启使用;
48 |
49 | 
50 |
51 |
52 | ## Customize
53 |
54 | 导入后可以在页面上打开音频文件夹然后编辑 `manifest.json` 来简单自定义**修改触发关键词和语音**,
55 |
56 | 语音台词对照已整理了列表清单,参见 [resource.csv](./resource.csv),方便在自定义时选择让自己~~-兴奋-~~喜欢的语音;
57 |
58 | 如果觉得触发太频繁可以手动删掉一些关键词,或者**把某些关键词改成错误拼写** (目前内置了一些常见 typo),**立即享受在打错单词的时候被钉宫狠狠的骂一顿吧~**
59 |
60 | 
61 |
62 |
63 | ## Dev & Contribute
64 |
65 | 目前[关键词和语音](./keywords-voices.yml)意思不太对应,希望众钉宫病患者厨力放出,完善一下语音和对应关键词,让钉宫骂得更爽一点。
66 |
67 | 切分的语音全都放在 [voices/](./voices/) 目录下了,语音和**对应台词及翻译**有对照清单 [resource.csv](./resource.csv),方便各位自由发挥。
68 |
69 | 开发时对于触发关键词的调♂教只需要改 [keywords-voices.yml](./keywords-voices.yml) 文件,
70 |
71 | 因为拆分了关键词和语音配置,所以做了一些打包流程,依赖 nodejs;
72 |
73 | 常规本地构建 (打包产出在 `./dist/` 中):
74 |
75 | ```bash
76 | npm ci
77 | npm run build
78 | ```
79 |
80 | ## Ref
81 |
82 | - [vscode-rainbow-fart](https://github.com/SaekiRaku/vscode-rainbow-fart)
83 | - [语音合集来源](https://music.163.com/song?id=426850381)
84 | - [钉宫理惠 - 萌娘百科 万物皆可萌的百科全书](https://zh.moegirl.org/zh-hans/%E9%92%89%E5%AE%AB%E7%90%86%E6%83%A0)
85 |
86 | (最后放一张镇楼图)
87 |
88 | 
89 |
90 | ## Author
91 |
92 | **kugimiya-rainbow-fart** © [zthxxx](https://github.com/zthxxx), Released under the **[MIT](./LICENSE)** License.
93 |
94 | > Blog [@zthxxx](https://blog.zthxxx.me) · GitHub [@zthxxx](https://github.com/zthxxx)
95 |
--------------------------------------------------------------------------------
/avatars/louise.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/avatars/louise.png
--------------------------------------------------------------------------------
/avatars/shana.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/avatars/shana.png
--------------------------------------------------------------------------------
/gulpfile.js:
--------------------------------------------------------------------------------
1 | import gulp from 'gulp'
2 | import File from 'vinyl'
3 | import zip from 'gulp-zip'
4 | import yaml from 'js-yaml'
5 | import rimraf from 'rimraf'
6 | import { Transform } from 'stream'
7 | import { setOutput } from '@actions/core'
8 | import rawManifest from './manifest.json'
9 | import pkg from './package.json'
10 |
11 |
12 | const { version } = pkg
13 | const { name } = rawManifest
14 |
15 | /**
16 | * @param {funciton} handler - deal with object stream
17 | */
18 | const transform = (handler) => (
19 | new Transform({
20 | objectMode: true,
21 | transform(stream, encoding, callback) {
22 | callback(null, handler(stream))
23 | },
24 | })
25 | )
26 |
27 | gulp.task('clean', async () => {
28 | rimraf.sync(`{dist,build,*.log}`)
29 | })
30 |
31 |
32 | gulp.task('copy-assets', () => (
33 | gulp.src('{*.md,*.csv,{avatars,voices}/**/*}')
34 | .pipe(gulp.dest(`build`))
35 | ))
36 |
37 | /**
38 | * depends on `changelog` step in release.yml
39 | */
40 | gulp.task('build-manifest', () => (
41 | gulp.src('keywords-voices.yml')
42 | .pipe(
43 | transform((file) => {
44 | const voiceConfig = yaml.load(file.contents.toString())
45 | const { languages, contributes } = voiceConfig
46 |
47 | const manifest = {
48 | version,
49 | ...rawManifest,
50 | languages,
51 | contributes,
52 | }
53 |
54 | // gulp built-in File class in vinyl
55 | return new File({
56 | path: `manifest.json`,
57 | contents: Buffer.from(JSON.stringify(manifest, null, 2)),
58 | })
59 | }),
60 | )
61 | .pipe(gulp.dest(`build`))
62 | ))
63 |
64 |
65 | gulp.task('bundle', async () => {
66 | const bundleName = `${name}-${version}.zip`
67 |
68 | if (process.env.CI) {
69 | console.log('set actions output - "bundle-file", "bundle-path"')
70 | setOutput('bundle-file', bundleName)
71 | setOutput('bundle-path', `./dist/${bundleName}`)
72 | }
73 |
74 | return await gulp.src('build/**')
75 | .pipe(zip(bundleName))
76 | .pipe(gulp.dest('dist'))
77 | })
78 |
79 |
80 | gulp.task('output-changelog', async () => (
81 | gulp.src('change.log')
82 | .pipe(
83 | transform((file) => {
84 | const changelog = file.contents.toString()
85 | .replace(/^---$/mg, '')
86 | .trim()
87 | return changelog
88 | }),
89 | )
90 | .pipe(
91 | transform((changelog) => {
92 | console.log('changelog', changelog)
93 | if (process.env.CI) {
94 | console.log('set actions output - "changelog"')
95 | setOutput('changelog', changelog)
96 | }
97 | }),
98 | )
99 | ))
100 |
101 | gulp.task('default', gulp.series(
102 | 'clean',
103 | 'copy-assets',
104 | 'build-manifest',
105 | 'bundle',
106 | ))
107 |
--------------------------------------------------------------------------------
/keywords-voices.yml:
--------------------------------------------------------------------------------
1 | ---
2 | # Customize Voice Packages
3 | # https://saekiraku.github.io/vscode-rainbow-fart/#/zh/voice-packages.md
4 |
5 | languages:
6 | - javascript
7 | - typescript
8 | - python
9 | - golang
10 |
11 | contributes:
12 | # vscode-rainbow-fart built-in magic keys
13 | - keywords:
14 | - $time_morning
15 | - $time_noon
16 | - $time_evening
17 | - $time_midnight
18 | - $time_each_hour
19 | voices:
20 | - voices/02-いい加減、目覚まし時計で起きなさいよね!何でいつも私が起こさなきゃいけないのよ!!.mp3
21 | - voices/05-おはよーじゃなくて、おはようございますでしょっ.mp3
22 | - voices/25-電話なんかしてこなくても…寂しくなんてないんだから….mp3
23 | - voices/57-えっふぅふぅしてくれ?ばかぁー.mp3
24 |
25 | # typos
26 | - keywords:
27 | - sleect # typo of select
28 | - Sleect # typo of select
29 | - fliter # typo of filter
30 | - fitler # typo of filter
31 | - deatil # typo of detail
32 | - Deatil # typo of detail
33 | - deafult # typo of default
34 | - Deafult # typo of default
35 | - funtion # typo of function
36 | - ture # typo of true
37 | - fasle # typo of false
38 | - frist # typo of first
39 | - filed # typo of field
40 | - Filed # typo of field
41 | - lable # typo of label
42 | - Lable # typo of label
43 | - Botton # typo of button
44 | - buttom # typo of button
45 | - qeury # typo of query
46 | - Shema # typo of schema
47 | - Schame # typo of schema
48 | - Resiable # typo of resizable
49 | - Dasbhoard # typo of dashboard
50 | - submited # typo of submitted
51 | - Submited # typo of submitted
52 | - submiting # typo of submitting
53 | - cancle # typo of cancel
54 | - avaliable # typo of available
55 | - delimeter # typo of delimiter
56 | - attibute # typo of attribute
57 | - confrim # typo of confirm
58 | - formated # typo of formatted
59 | - Pannel # typo of panel
60 | - Soruce # typo of source
61 | - Resouce # typo of resource
62 | - Categorys # typo of categories
63 | - categoried # typo of categorized
64 | - Propety # typo of property
65 | - Feaure # typo of feature
66 | - Instace # typo of instance
67 | - deparment # typo of department
68 | - laoding # typo of loading
69 | - Hanlder # typo of handler
70 | - paylaod # typo of payload
71 | - editting # typo of editing
72 | - Favord # typo of favored
73 | - Uncompatible # typo of incompatible
74 | - backgroud # typo of background
75 | - affact # typo of affect
76 | - udpate # typo of update
77 | - Udpate # typo of update
78 | - unkown # typo of unknown
79 | - Unkown # typo of unknown
80 | - shoud # typo of should
81 | - tigger # typo of trigger
82 | - Tigger # typo of trigger
83 | - grammer # typo of grammar
84 | - identifer # typo of identifier
85 | - Identifer # typo of identifier
86 | - retrive # typo of retrieve
87 | - depercated # typo of deprecated
88 | - vaild # typo of valid
89 | - Vaild # typo of valid
90 | voices:
91 | - voices/01-アンタなんて豆腐の角に頭ぶつけて死んじゃえばいいのよ!.mp3
92 | - voices/11-このぉバカ!-.mp3
93 | - voices/13-心配なんてしてないんだからね!.mp3
94 | - voices/15-もう…バカ….mp3
95 | - voices/21-ちょっと待ちなさいよ!この鈍感男!.mp3
96 | - voices/27-な、なによあいつ!.mp3
97 | - voices/31-寝起きになにしてんのよ!.mp3
98 | - voices/34-ひ…ひざまくらぁ!……い、一分だけだからねっ.mp3
99 | - voices/39-ボケーっとしてるんじゃないわよ!!.mp3
100 | - voices/47-涙じゃないわよぉーーー!.mp3
101 | - voices/48-もぉ~バカバカバカ!!.mp3
102 | - voices/61-ろくなことがないわね…あんたと一緒にいられるのは私くらいなんだから….mp3
103 |
104 | - keywords:
105 | - setTimeout(
106 | - setInterval(
107 | voices:
108 | - voices/21-ちょっと待ちなさいよ!この鈍感男!.mp3
109 | - voices/34-ひ…ひざまくらぁ!……い、一分だけだからねっ.mp3
110 | - voices/39-ボケーっとしてるんじゃないわよ!!.mp3
111 | - voices/60-連絡くらいよこしなさいよ!心配したんだから….mp3
112 |
113 | - keywords:
114 | - 'import '
115 | voices:
116 | - voices/24-ついでだから、あんたも誘ってあげるわ.mp3
117 | - voices/26-隣に来ないでよ、恥ずかしいじゃない.mp3
118 | - voices/40-蹴り飛ばすわよ!.mp3
119 | - voices/41-まっ…まぁ、アナタがどうしてもって言うのなら.mp3
120 |
121 | - keywords:
122 | - 'function '
123 | - '() => '
124 | voices:
125 | - voices/15-もう…バカ….mp3
126 | - voices/16-全力で来なさいよ?叩き潰してあげるから.mp3
127 | - voices/20-これプレゼント….mp3
128 | - voices/23-なんで気付かないのよぉ!.mp3
129 | - voices/42-仕方ないけど….mp3
130 | - voices/58-利用するに値しないわね。アンタなんか….mp3
131 |
132 | - keywords:
133 | - if (
134 | - ' ? '
135 | voices:
136 | - voices/06-勘違いしないでよね.mp3
137 | - voices/22-なんで….mp3
138 | - voices/38-もう知らない….mp3
139 | - voices/49-知らない知らない知らない.mp3
140 | - voices/51-優柔不断な奴はキライだからね!.mp3
141 | - voices/59-全然嬉しくないんだからっ.mp3
142 |
143 | - keywords:
144 | - else {
145 | voices:
146 | - voices/15-もう…バカ….mp3
147 | - voices/36-今日は仕方ないわね….mp3
148 | - voices/38-もう知らない….mp3
149 |
150 | - keywords:
151 | - for (
152 | - while (
153 | - switch (
154 | - .map(
155 | voices:
156 | - voices/03-うるさい、うるさい、うるさい!.mp3
157 | - voices/37-変態、変態、変態、変態、変態バカ大変態!!!.mp3
158 | - voices/15-もう…バカ….mp3
159 | - voices/48-もぉ~バカバカバカ!!.mp3
160 |
161 | - keywords:
162 | - 'async '
163 | voices:
164 | - voices/43-見せたいわけじゃないんだから!.mp3
165 |
166 | - keywords:
167 | - 'await '
168 | voices:
169 | - voices/17-そばにいなさい!一生よ!いいわね!.mp3
170 | - voices/30-もうっ、知らない、バカ!!何言わせんのよ!!.mp3
171 | - voices/33-恥ずかしいけど、手、手くらい繋いであげてもいいわよ、ホラ!!.mp3
172 | - voices/60-連絡くらいよこしなさいよ!心配したんだから….mp3
173 |
174 | - keywords:
175 | - try{
176 | - try {
177 | - 'try:'
178 | voices:
179 | - voices/06-勘違いしないでよね.mp3
180 | - voices/13-心配なんてしてないんだからね!.mp3
181 | - voices/31-寝起きになにしてんのよ!.mp3
182 | - voices/51-優柔不断な奴はキライだからね!.mp3
183 |
184 | - keywords:
185 | - 'catch '
186 | - 'except:'
187 | voices:
188 | - voices/04-選んだのは私でアンタじゃないんだからね.mp3
189 | - voices/52-よくないわよ。.mp3
190 |
191 | - keywords:
192 | - "continue\n"
193 | - "break\n"
194 | - "exit\n"
195 | - finally
196 | voices:
197 | - voices/07-別にあんたのためにやったわけじゃないんだから.mp3
198 | - voices/10-怪我でもされたら、私が困るじゃない.mp3
199 | - voices/12-さよならなんて言ってあげないんだから!.mp3
200 | - voices/16-全力で来なさいよ?叩き潰してあげるから.mp3
201 | - voices/29-逃げないで、話くらいちゃんと聞きなさいよね.mp3
202 |
203 | - keywords:
204 | - return null
205 | - "return\n"
206 | voices:
207 | - voices/45-無視しないでよ!謝るから!.mp3
208 |
209 | - keywords:
210 | - this.
211 | - self.
212 | - public
213 | - private
214 | - extends
215 | voices:
216 | - voices/35-ふ、二人しかいないんなら….mp3
217 | - voices/36-今日は仕方ないわね….mp3
218 | - voices/42-仕方ないけど….mp3
219 | - voices/43-見せたいわけじゃないんだから!.mp3
220 | - voices/44-あんただから….mp3
221 | - voices/58-利用するに値しないわね。アンタなんか….mp3
222 | - voices/62-わ、私だけを見ていればいいのよ!.mp3
223 |
224 |
225 | # some special words maybe in variables
226 | - keywords:
227 | - like
228 | voices:
229 | - voices/14-好きでこんな格好してるわけじゃないんだからね…あんたの前だけよ….mp3
230 | - voices/20-これプレゼント….mp3
231 | - voices/55-あたしのこと好きでも嫌いでもないなんて言うのは.mp3
232 |
233 | - keywords:
234 | - kiss
235 | voices:
236 | - voices/08-キスなんて100年早いわよ!!.mp3
237 |
238 | - keywords:
239 | - opai
240 | voices:
241 | - voices/09-くっ…胸のことを….mp3
242 |
243 | - keywords:
244 | - hello
245 | voices:
246 | - voices/19-はい.mp3
247 |
248 | - keywords:
249 | - ' no '
250 | voices:
251 | - voices/32-NOとは言わせないわよ!.mp3
252 |
--------------------------------------------------------------------------------
/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "kugimiya-voice",
3 | "display-name": "KugimiyaRie 钉宫理惠 (Japanese)",
4 | "avatar": "avatars/louise.png",
5 | "avatar-dark": "avatars/shana.png",
6 | "description": "傲 娇 钉 宫, 鞭 写 鞭 骂",
7 | "author": "https://github.com/zthxxx",
8 | "gender": "female",
9 | "locale": "jp"
10 | }
11 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "kugimiya-rainbow-fart",
3 | "version": "1.0.3",
4 | "description": "Kugimiya voice for vscode-rainbow-fart",
5 | "main": "manifest.json",
6 | "scripts": {
7 | "build": "npm run gulp",
8 | "clean": "npm run gulp clean",
9 | "gulp": "node -r esm node_modules/.bin/gulp",
10 | "bump:patch": "npm version patch --no-git-tag-version",
11 | "release": "standard-version"
12 | },
13 | "author": "zthxxx",
14 | "repository": "zthxxx/kugimiya-rainbow-fart",
15 | "keywords": [
16 | "kugimiya",
17 | "rainbow-fart",
18 | "voice",
19 | "acg"
20 | ],
21 | "license": "MIT",
22 | "registry": "https://registry.npmjs.org",
23 | "publishConfig": {
24 | "registry": "https://registry.npmjs.org"
25 | },
26 | "bugs": {
27 | "url": "https://github.com/zthxxx/kugimiya-rainbow-fart/issues"
28 | },
29 | "homepage": "https://github.com/zthxxx/kugimiya-rainbow-fart",
30 | "devDependencies": {
31 | "@actions/core": "1.9.1",
32 | "esm": "3.2.25",
33 | "gulp": "4.0.2",
34 | "gulp-zip": "5.0.2",
35 | "js-yaml": "4.0.0",
36 | "rimraf": "3.0.2",
37 | "standard-version": "9.2.0"
38 | },
39 | "standard-version": {
40 | "skip": {
41 | "bump": false,
42 | "commit": false,
43 | "tag": false
44 | },
45 | "bumpFiles": [
46 | "package.json",
47 | "package-lock.json"
48 | ]
49 | }
50 | }
51 |
--------------------------------------------------------------------------------
/preview/Kugimiya-preview-dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/preview/Kugimiya-preview-dark.png
--------------------------------------------------------------------------------
/preview/Kugimiya-preview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/preview/Kugimiya-preview.png
--------------------------------------------------------------------------------
/preview/import.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/preview/import.png
--------------------------------------------------------------------------------
/preview/louise-and-lash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/preview/louise-and-lash.png
--------------------------------------------------------------------------------
/preview/open-voice-directory.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/preview/open-voice-directory.png
--------------------------------------------------------------------------------
/resource.csv:
--------------------------------------------------------------------------------
1 | index,original,copywriting
2 | 01,アンタなんて豆腐の角に頭ぶつけて死んじゃえばいいのよ!,你这家伙,找块豆腐一头撞死算了!
3 | 02,いい加減、目覚まし時計で起きなさいよね!何でいつも私が起こさなきゃいけないのよ!!,你还是老老实实定个闹钟起床啊!干吗每次都非要我来叫醒你嘛。
4 | 03,うるさい、うるさい、うるさい!,吵死了吵死了吵死了!真是吵死了!
5 | 04,選んだのは私でアンタじゃないんだからね,是我选的你,你可别以为是你给了我机会哦!
6 | 05,おはよーじゃなくて、おはようございますでしょっ,什么“早安”,应该说“您早上好”才对!
7 | 06,勘違いしないでよね,你可别胡思乱想
8 | 07,別にあんたのためにやったわけじゃないんだから,我才不是特地为你做的。
9 | 08,キスなんて100年早いわよ!!,接、接吻什么的,你还早了100年呢!
10 | 09,くっ…胸のことを…,哭…我的胸部…
11 | 10,怪我でもされたら、私が困るじゃない,要是你受伤的话,岂不是会让我很头疼。
12 | 11,このぉバカ!,你这个笨蛋!
13 | 12,さよならなんて言ってあげないんだから!,再见之类的话,我才懒得对你说…
14 | 13,心配なんてしてないんだからね!,我才没有为你担心!
15 | 14,好きでこんな格好してるわけじゃないんだからね…あんたの前だけよ…,我、我可不是因为自己喜欢才打扮成这样…只有在你面前罢了…
16 | 15,もう…バカ…,真是的…笨蛋…
17 | 16,全力で来なさいよ?叩き潰してあげるから,尽管放马过来吧!让我打你个落花流水!
18 | 17,そばにいなさい!一生よ!いいわね!,留在我身边!一辈子!没异议吧!
19 | 18,誕生日プレゼントなんて誰にももらえないだろうから,生日礼物这种东西,我想没有其他人会送给你了吧…
20 | 19,はい,hi~
21 | 20,これプレゼント…,这个送给你……
22 | 21,ちょっと待ちなさいよ!この鈍感男!,给我等一下!你这个木头人!
23 | 22,なんで…,为什么…
24 | 23,なんで気付かないのよぉ!,为什么你就是注意不到嘛!
25 | 24,ついでだから、あんたも誘ってあげるわ,正好顺便,我也邀请一下你吧。
26 | 25,電話なんかしてこなくても…寂しくなんてないんだから…,就算你不打电话给我,我也没什么寂寞的…
27 | 26,隣に来ないでよ、恥ずかしいじゃない,别离我这么近…丢死人了…
28 | 27,な、なによあいつ!,那、那家伙干什么嘛!
29 | 28,私というものがありながら!うぅぅ,明明已经有我了的说!呜呜…
30 | 29,逃げないで、話くらいちゃんと聞きなさいよね,别逃,至少听我把话说完!
31 | 30,もうっ、知らない、バカ!!何言わせんのよ!!,真是的,不管啦笨蛋!!你让人家怎么说嘛!!
32 | 31,寝起きになにしてんのよ!,你睡糊涂了吧,干什么呐!
33 | 32,NOとは言わせないわよ!,你可不许对我说“No”哦
34 | 33,恥ずかしいけど、手、手くらい繋いであげてもいいわよ、ホラ!!,虽然很丢人,让、让、让你牵牵手还是可以容忍…来吧…
35 | 34,ひ…ひざまくらぁ!……い、一分だけだからねっ,睡、睡…睡在我的腿上!?只、只能睡1分钟哦!
36 | 35,ふ、二人しかいないんなら…,唔,今天只有我们两个人的话…
37 | 36,今日は仕方ないわね…,真是拿你没办法呢…
38 | 37,変態、変態、変態、変態、変態バカ大変態!!!,变态、变态、变态、变态、变态笨蛋大变态!!!
39 | 38,もう知らない…,真是的,不管了啦…
40 | 39,ボケーっとしてるんじゃないわよ!!,别在那装傻了啦!!真是的
41 | 40,蹴り飛ばすわよ!,小心我一脚踢飞你!
42 | 41,まっ…まぁ、アナタがどうしてもって言うのなら,啊…也好,既然你坚持要带着…
43 | 42,仕方ないけど…,我也没办法了呢…
44 | 43,見せたいわけじゃないんだから!,所以说我不想给别人看到啊!
45 | 44,あんただから…,只想给你一个人…
46 | 45,無視しないでよ!謝るから!,不准无视我!快给我道歉!
47 | 46,目から汗が出てるだけなんだから!,所以说只是从眼睛里流出来的汗啦!
48 | 47,涙じゃないわよぉーーー!,才~不~是眼泪呢!
49 | 48,もぉ~バカバカバカ!!,真是的~笨蛋、笨蛋、笨蛋!!
50 | 49,知らない知らない知らない,不知道、不知道、不知道!
51 | 50,妬いてるわけじゃないわよ、違うって言ってるじゃない!,才没有吃醋呢,你在说什么傻话啊!
52 | 51,優柔不断な奴はキライだからね!,所以说我最讨厌优柔寡断的家伙了!
53 | 52,よくないわよ。,才不好呢。
54 | 55,あたしのこと好きでも嫌いでもないなんて言うのは,对你说我喜欢你还是不讨厌你什么的
55 | 56,ラーメン伸びるわよ、はやく食べなさいよ!,拉面都泡糟了啦!快点吃掉啦!
56 | 57,えっふぅふぅしてくれ?ばかぁー,诶,让我帮你吹吹?笨蛋啊你~
57 | 58,利用するに値しないわね。アンタなんか…,我才没有觉得你很有用呢…
58 | 59,全然嬉しくないんだからっ,我才没有很开心呢!
59 | 60,連絡くらいよこしなさいよ!心配したんだから…,要多多的和我联系!不然我会担心你的…
60 | 61,ろくなことがないわね…あんたと一緒にいられるのは私くらいなんだから…,所以说别做些不正经的事了…对好不容易才和你在一起的我…
61 | 62,わ、私だけを見ていればいいのよ!,只、只准你看着我哦!
62 |
--------------------------------------------------------------------------------
/voices/01-アンタなんて豆腐の角に頭ぶつけて死んじゃえばいいのよ!.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/01-アンタなんて豆腐の角に頭ぶつけて死んじゃえばいいのよ!.mp3
--------------------------------------------------------------------------------
/voices/02-いい加減、目覚まし時計で起きなさいよね!何でいつも私が起こさなきゃいけないのよ!!.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/02-いい加減、目覚まし時計で起きなさいよね!何でいつも私が起こさなきゃいけないのよ!!.mp3
--------------------------------------------------------------------------------
/voices/03-うるさい、うるさい、うるさい!.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/03-うるさい、うるさい、うるさい!.mp3
--------------------------------------------------------------------------------
/voices/04-選んだのは私でアンタじゃないんだからね.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/04-選んだのは私でアンタじゃないんだからね.mp3
--------------------------------------------------------------------------------
/voices/05-おはよーじゃなくて、おはようございますでしょっ.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/05-おはよーじゃなくて、おはようございますでしょっ.mp3
--------------------------------------------------------------------------------
/voices/06-勘違いしないでよね.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/06-勘違いしないでよね.mp3
--------------------------------------------------------------------------------
/voices/07-別にあんたのためにやったわけじゃないんだから.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/07-別にあんたのためにやったわけじゃないんだから.mp3
--------------------------------------------------------------------------------
/voices/08-キスなんて100年早いわよ!!.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/08-キスなんて100年早いわよ!!.mp3
--------------------------------------------------------------------------------
/voices/09-くっ…胸のことを….mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/09-くっ…胸のことを….mp3
--------------------------------------------------------------------------------
/voices/10-怪我でもされたら、私が困るじゃない.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/10-怪我でもされたら、私が困るじゃない.mp3
--------------------------------------------------------------------------------
/voices/11-このぉバカ!-.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/11-このぉバカ!-.mp3
--------------------------------------------------------------------------------
/voices/12-さよならなんて言ってあげないんだから!.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/12-さよならなんて言ってあげないんだから!.mp3
--------------------------------------------------------------------------------
/voices/13-心配なんてしてないんだからね!.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/13-心配なんてしてないんだからね!.mp3
--------------------------------------------------------------------------------
/voices/14-好きでこんな格好してるわけじゃないんだからね…あんたの前だけよ….mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/14-好きでこんな格好してるわけじゃないんだからね…あんたの前だけよ….mp3
--------------------------------------------------------------------------------
/voices/15-もう…バカ….mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/15-もう…バカ….mp3
--------------------------------------------------------------------------------
/voices/16-全力で来なさいよ?叩き潰してあげるから.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/16-全力で来なさいよ?叩き潰してあげるから.mp3
--------------------------------------------------------------------------------
/voices/17-そばにいなさい!一生よ!いいわね!.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/17-そばにいなさい!一生よ!いいわね!.mp3
--------------------------------------------------------------------------------
/voices/18-誕生日プレゼントなんて誰にももらえないだろうから.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/18-誕生日プレゼントなんて誰にももらえないだろうから.mp3
--------------------------------------------------------------------------------
/voices/19-はい.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/19-はい.mp3
--------------------------------------------------------------------------------
/voices/20-これプレゼント….mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/20-これプレゼント….mp3
--------------------------------------------------------------------------------
/voices/21-ちょっと待ちなさいよ!この鈍感男!.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/21-ちょっと待ちなさいよ!この鈍感男!.mp3
--------------------------------------------------------------------------------
/voices/22-なんで….mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/22-なんで….mp3
--------------------------------------------------------------------------------
/voices/23-なんで気付かないのよぉ!.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/23-なんで気付かないのよぉ!.mp3
--------------------------------------------------------------------------------
/voices/24-ついでだから、あんたも誘ってあげるわ.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/24-ついでだから、あんたも誘ってあげるわ.mp3
--------------------------------------------------------------------------------
/voices/25-電話なんかしてこなくても…寂しくなんてないんだから….mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/25-電話なんかしてこなくても…寂しくなんてないんだから….mp3
--------------------------------------------------------------------------------
/voices/26-隣に来ないでよ、恥ずかしいじゃない.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/26-隣に来ないでよ、恥ずかしいじゃない.mp3
--------------------------------------------------------------------------------
/voices/27-な、なによあいつ!.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/27-な、なによあいつ!.mp3
--------------------------------------------------------------------------------
/voices/28-私というものがありながら!うぅぅ.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/28-私というものがありながら!うぅぅ.mp3
--------------------------------------------------------------------------------
/voices/29-逃げないで、話くらいちゃんと聞きなさいよね.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/29-逃げないで、話くらいちゃんと聞きなさいよね.mp3
--------------------------------------------------------------------------------
/voices/30-もうっ、知らない、バカ!!何言わせんのよ!!.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/30-もうっ、知らない、バカ!!何言わせんのよ!!.mp3
--------------------------------------------------------------------------------
/voices/31-寝起きになにしてんのよ!.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/31-寝起きになにしてんのよ!.mp3
--------------------------------------------------------------------------------
/voices/32-NOとは言わせないわよ!.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/32-NOとは言わせないわよ!.mp3
--------------------------------------------------------------------------------
/voices/33-恥ずかしいけど、手、手くらい繋いであげてもいいわよ、ホラ!!.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/33-恥ずかしいけど、手、手くらい繋いであげてもいいわよ、ホラ!!.mp3
--------------------------------------------------------------------------------
/voices/34-ひ…ひざまくらぁ!……い、一分だけだからねっ.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/34-ひ…ひざまくらぁ!……い、一分だけだからねっ.mp3
--------------------------------------------------------------------------------
/voices/35-ふ、二人しかいないんなら….mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/35-ふ、二人しかいないんなら….mp3
--------------------------------------------------------------------------------
/voices/36-今日は仕方ないわね….mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/36-今日は仕方ないわね….mp3
--------------------------------------------------------------------------------
/voices/37-変態、変態、変態、変態、変態バカ大変態!!!.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/37-変態、変態、変態、変態、変態バカ大変態!!!.mp3
--------------------------------------------------------------------------------
/voices/38-もう知らない….mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/38-もう知らない….mp3
--------------------------------------------------------------------------------
/voices/39-ボケーっとしてるんじゃないわよ!!.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/39-ボケーっとしてるんじゃないわよ!!.mp3
--------------------------------------------------------------------------------
/voices/40-蹴り飛ばすわよ!.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/40-蹴り飛ばすわよ!.mp3
--------------------------------------------------------------------------------
/voices/41-まっ…まぁ、アナタがどうしてもって言うのなら.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/41-まっ…まぁ、アナタがどうしてもって言うのなら.mp3
--------------------------------------------------------------------------------
/voices/42-仕方ないけど….mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/42-仕方ないけど….mp3
--------------------------------------------------------------------------------
/voices/43-見せたいわけじゃないんだから!.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/43-見せたいわけじゃないんだから!.mp3
--------------------------------------------------------------------------------
/voices/44-あんただから….mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/44-あんただから….mp3
--------------------------------------------------------------------------------
/voices/45-無視しないでよ!謝るから!.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/45-無視しないでよ!謝るから!.mp3
--------------------------------------------------------------------------------
/voices/46-目から汗が出てるだけなんだから!.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/46-目から汗が出てるだけなんだから!.mp3
--------------------------------------------------------------------------------
/voices/47-涙じゃないわよぉーーー!.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/47-涙じゃないわよぉーーー!.mp3
--------------------------------------------------------------------------------
/voices/48-もぉ~バカバカバカ!!.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/48-もぉ~バカバカバカ!!.mp3
--------------------------------------------------------------------------------
/voices/49-知らない知らない知らない.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/49-知らない知らない知らない.mp3
--------------------------------------------------------------------------------
/voices/50-妬いてるわけじゃないわよ、違うって言ってるじゃない!.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/50-妬いてるわけじゃないわよ、違うって言ってるじゃない!.mp3
--------------------------------------------------------------------------------
/voices/51-優柔不断な奴はキライだからね!.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/51-優柔不断な奴はキライだからね!.mp3
--------------------------------------------------------------------------------
/voices/52-よくないわよ。.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/52-よくないわよ。.mp3
--------------------------------------------------------------------------------
/voices/55-あたしのこと好きでも嫌いでもないなんて言うのは.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/55-あたしのこと好きでも嫌いでもないなんて言うのは.mp3
--------------------------------------------------------------------------------
/voices/56-ラーメン伸びるわよ、はやく食べなさいよ!.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/56-ラーメン伸びるわよ、はやく食べなさいよ!.mp3
--------------------------------------------------------------------------------
/voices/57-えっふぅふぅしてくれ?ばかぁー.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/57-えっふぅふぅしてくれ?ばかぁー.mp3
--------------------------------------------------------------------------------
/voices/58-利用するに値しないわね。アンタなんか….mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/58-利用するに値しないわね。アンタなんか….mp3
--------------------------------------------------------------------------------
/voices/59-全然嬉しくないんだからっ.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/59-全然嬉しくないんだからっ.mp3
--------------------------------------------------------------------------------
/voices/60-連絡くらいよこしなさいよ!心配したんだから….mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/60-連絡くらいよこしなさいよ!心配したんだから….mp3
--------------------------------------------------------------------------------
/voices/61-ろくなことがないわね…あんたと一緒にいられるのは私くらいなんだから….mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/61-ろくなことがないわね…あんたと一緒にいられるのは私くらいなんだから….mp3
--------------------------------------------------------------------------------
/voices/62-わ、私だけを見ていればいいのよ!.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zthxxx/kugimiya-rainbow-fart/18b991348adcdca1067df8528181767f385ecfb0/voices/62-わ、私だけを見ていればいいのよ!.mp3
--------------------------------------------------------------------------------