├── .babelrc ├── .flowconfig ├── .gitignore ├── LICENSE ├── README.md ├── boy.html ├── browserconfig.xml ├── dist ├── app-script.js ├── app-script.js.map ├── entry-script.js ├── script.js ├── script.js.map └── style.css ├── favicon.ico ├── font └── ikamodoki1_0.ttf ├── girl.html ├── img ├── icon.png ├── ika │ ├── boy │ │ ├── body │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ └── 7.png │ │ ├── brows │ │ │ ├── 1 │ │ │ │ ├── 1.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13.png │ │ │ │ ├── 14.png │ │ │ │ ├── 15.png │ │ │ │ ├── 16.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ └── 9.png │ │ │ └── 2 │ │ │ │ ├── 1.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13.png │ │ │ │ ├── 14.png │ │ │ │ ├── 15.png │ │ │ │ ├── 16.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ └── 9.png │ │ ├── clothes │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 101.png │ │ │ ├── 102.png │ │ │ ├── 103.png │ │ │ ├── 104.png │ │ │ ├── 105.png │ │ │ ├── 106.png │ │ │ ├── 107.png │ │ │ ├── 108.png │ │ │ ├── 109.png │ │ │ ├── 11.png │ │ │ ├── 110.png │ │ │ ├── 111.png │ │ │ ├── 112.png │ │ │ ├── 113.png │ │ │ ├── 114.png │ │ │ ├── 115.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 17.png │ │ │ ├── 18.png │ │ │ ├── 19.png │ │ │ ├── 2.png │ │ │ ├── 20.png │ │ │ ├── 21.png │ │ │ ├── 22.png │ │ │ ├── 23.png │ │ │ ├── 24.png │ │ │ ├── 25.png │ │ │ ├── 26.png │ │ │ ├── 27.png │ │ │ ├── 28.png │ │ │ ├── 29.png │ │ │ ├── 3.png │ │ │ ├── 30.png │ │ │ ├── 31.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ ├── hair │ │ │ ├── 1 │ │ │ │ ├── 1.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13.png │ │ │ │ ├── 14.png │ │ │ │ ├── 15.png │ │ │ │ ├── 16.png │ │ │ │ ├── 17.png │ │ │ │ ├── 18.png │ │ │ │ ├── 19.png │ │ │ │ ├── 2.png │ │ │ │ ├── 20.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ └── 9.png │ │ │ └── 2 │ │ │ │ ├── 1.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13.png │ │ │ │ ├── 14.png │ │ │ │ ├── 15.png │ │ │ │ ├── 16.png │ │ │ │ ├── 17.png │ │ │ │ ├── 18.png │ │ │ │ ├── 19.png │ │ │ │ ├── 2.png │ │ │ │ ├── 20.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ └── 9.png │ │ ├── hat │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 17.png │ │ │ ├── 18.png │ │ │ ├── 19.png │ │ │ ├── 2.png │ │ │ ├── 20.png │ │ │ ├── 21.png │ │ │ ├── 22.png │ │ │ ├── 23.png │ │ │ ├── 24.png │ │ │ ├── 25.png │ │ │ ├── 26.png │ │ │ ├── 27.png │ │ │ ├── 28.png │ │ │ ├── 29.png │ │ │ ├── 3.png │ │ │ ├── 30.png │ │ │ ├── 31.png │ │ │ ├── 32.png │ │ │ ├── 33.png │ │ │ ├── 34.png │ │ │ ├── 35.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ └── mouth │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ └── 8.png │ ├── cmn │ │ ├── bg │ │ │ ├── 1 │ │ │ │ ├── 1.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ └── 9.png │ │ │ ├── 2 │ │ │ │ ├── 1.png │ │ │ │ ├── 10.png │ │ │ │ ├── 12.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ └── 9.png │ │ │ └── 3 │ │ │ │ ├── 1.png │ │ │ │ ├── 10.png │ │ │ │ ├── 12.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ └── 9.png │ │ ├── eyes │ │ │ ├── 1 │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ └── 7.png │ │ │ ├── 2 │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ └── 7.png │ │ │ ├── 3 │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ └── 7.png │ │ │ ├── 4 │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ └── 7.png │ │ │ ├── 5 │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ └── 7.png │ │ │ ├── 6 │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ └── 7.png │ │ │ ├── 7 │ │ │ │ └── 1.png │ │ │ └── 8 │ │ │ │ ├── 3.png │ │ │ │ ├── 5.png │ │ │ │ └── 7.png │ │ └── item │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ └── girl │ │ ├── body │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ └── 7.png │ │ ├── brows │ │ ├── 1 │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ └── 2 │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ ├── clothes │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 101.png │ │ ├── 102.png │ │ ├── 103.png │ │ ├── 104.png │ │ ├── 105.png │ │ ├── 106.png │ │ ├── 107.png │ │ ├── 108.png │ │ ├── 109.png │ │ ├── 11.png │ │ ├── 110.png │ │ ├── 111.png │ │ ├── 112.png │ │ ├── 113.png │ │ ├── 114.png │ │ ├── 115.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 16.png │ │ ├── 17.png │ │ ├── 18.png │ │ ├── 19.png │ │ ├── 2.png │ │ ├── 20.png │ │ ├── 21.png │ │ ├── 22.png │ │ ├── 23.png │ │ ├── 24.png │ │ ├── 25.png │ │ ├── 26.png │ │ ├── 27.png │ │ ├── 28.png │ │ ├── 29.png │ │ ├── 3.png │ │ ├── 30.png │ │ ├── 31.png │ │ ├── 32.png │ │ ├── 33.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ │ ├── hair │ │ ├── 1 │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 17.png │ │ │ ├── 18.png │ │ │ ├── 19.png │ │ │ ├── 2.png │ │ │ ├── 20.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ └── 2 │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 17.png │ │ │ ├── 18.png │ │ │ ├── 19.png │ │ │ ├── 2.png │ │ │ ├── 20.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ ├── hat │ │ ├── 0.png │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 16.png │ │ ├── 17.png │ │ ├── 18.png │ │ ├── 19.png │ │ ├── 2.png │ │ ├── 20.png │ │ ├── 21.png │ │ ├── 22.png │ │ ├── 23.png │ │ ├── 24.png │ │ ├── 25.png │ │ ├── 26.png │ │ ├── 27.png │ │ ├── 28.png │ │ ├── 29.png │ │ ├── 3.png │ │ ├── 30.png │ │ ├── 31.png │ │ ├── 32.png │ │ ├── 33.png │ │ ├── 34.png │ │ ├── 35.png │ │ ├── 36.png │ │ ├── 37.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ │ └── mouth │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ └── 8.png ├── intro │ ├── intro.png │ └── make.png ├── large.png ├── loading.gif ├── square.png ├── tiny.png └── wide.png ├── index.html ├── intro-en.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── robots.txt ├── rollup.config.js ├── service-worker.js ├── sh └── make-parts_data.js ├── sorry.html └── src ├── app ├── component │ ├── app.svelte │ ├── fix-modal.svelte │ ├── fix-modal │ │ └── share-button.svelte │ ├── header.svelte │ ├── preview.svelte │ ├── tool-panel.svelte │ └── tool-panel │ │ ├── color-selector.svelte │ │ ├── text-form.svelte │ │ ├── type-color-selector.svelte │ │ └── type-selector.svelte ├── data │ ├── _parts.js │ ├── const.js │ └── parts.js ├── domain │ └── core.js └── main.js ├── entry.js ├── style ├── components │ ├── button.css │ ├── fix-modal.css │ ├── header.css │ ├── ika.css │ ├── index.css │ ├── loading.css │ ├── memo.css │ ├── tab.css │ └── tool-panel.css ├── style.css └── utils │ ├── default.css │ └── util.css └── sw.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ "es2015", "react" ], 3 | "plugins": [ 4 | "transform-class-properties", 5 | "transform-flow-strip-types" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | .*/node_modules/.* 3 | .*/dist/.* 4 | 5 | [include] 6 | 7 | [libs] 8 | ./src/script/_decls 9 | 10 | [options] 11 | suppress_comment= \\(.\\|\n\\)*\\flow-disable-line 12 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # App 2 | .DS_Store 3 | 4 | # Logs 5 | logs 6 | *.log 7 | npm-debug.log* 8 | 9 | # Runtime data 10 | pids 11 | *.pid 12 | *.seed 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 21 | .grunt 22 | 23 | # node-waf configuration 24 | .lock-wscript 25 | 26 | # Compiled binary addons (http://nodejs.org/api/addons.html) 27 | build/Release 28 | 29 | # Dependency directory 30 | # https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git 31 | node_modules 32 | 33 | # Optional npm cache directory 34 | .npm 35 | 36 | # Optional REPL history 37 | .node_repl_history 38 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Yuji Sugiura 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 all 13 | 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 THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # スーパーイカメーカー 2 | ## なにこれ 3 | - 某イカ風のキャラを着せ替えして遊ぶサービス 4 | - お気に入りの組み合わせを作って自慢 5 | - 作ったやつはアイコンにもできる 6 | - [@jenga_ink](https://twitter.com/jenga_ink)神の描いたイカを見てニヤニヤ 7 | 8 | ## 動作環境 9 | - モダンなモバイル全般 10 | - アプリ内のWebViewでも 11 | - PCでは見れればおk 12 | - たぶんAndroidでも 13 | 14 | ## 機能 15 | - 着せ替え -> 画像保存 16 | - Twitterにシェア 17 | 18 | ## カスタマイズできるもの 19 | - 性別 20 | - 髪 21 | - 肌 22 | - 目 23 | - 眉 24 | - 口 25 | - アタマ(オプション) 26 | - フク 27 | - 背景 28 | - テキスト(オプション) 29 | 30 | ## Tech 31 | - ES2017 32 | - ~~React x flumpt~~ -> Svelte 33 | - ~~Flow~~ 34 | - PostCSS 35 | 36 | ## 更新手順 37 | - 画像を追加(`.DS_Store`など入ったら消す) 38 | - `node sh/make-parts_data.js` 39 | - `npm run build-js` 40 | -------------------------------------------------------------------------------- /boy.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | スーパーイカメーカー 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 |
18 |
19 | 20 |

21 | に"っ!
(よみこみチュウ...) 22 |

23 |
24 |
25 |
26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /browserconfig.xml: -------------------------------------------------------------------------------- 1 | #FC3FB3 -------------------------------------------------------------------------------- /dist/entry-script.js: -------------------------------------------------------------------------------- 1 | !function(){"use strict";(async()=>{const e=document.getElementById("jsAgree"),t=document.getElementsByClassName("jsExecBtn"),n=t=>{if(!e.checked)return t.preventDefault(),void alert("注意事項に同意してね")};for(const e of t)e.onclick=n})()}(); 2 | -------------------------------------------------------------------------------- /dist/style.css: -------------------------------------------------------------------------------- 1 | *{box-sizing:border-box}body,html{background-color:#000;color:#fff;font-size:18px}body,html,ol,ul{margin:0;padding:0}ol,ul{list-style:none}h1,h2,h3{margin:0 0 8px}h1{font-size:1.5rem}h2{font-size:1.2rem}h3{font-size:1rem}@font-face{font-family:ikamodoki;src:url(../font/ikamodoki1_0.ttf) format("truetype")}.ft-ika{font-family:ikamodoki;vertical-align:text-bottom}.ft-en{font-family:Helvetica,Arial,sans-serif}.ft-warn{color:#fed430}@keyframes color-selected{0%{transform:scale(.5)}to{transform:scale(1)}}@keyframes type-selected{0%{transform:rotate(15deg)}to{transform:rotate(0deg)}}.is-selected{pointer-events:none}.is-hidden{display:none}.index-wrap{margin:0 auto;max-width:800px;padding:32px 16px}.index-center{text-align:center}.index-table{margin:0 auto;width:280px}.index-table a{color:#fff;font-size:.75rem}.index-table img,.index-table td{vertical-align:middle}.index-list,.index-p,.index-table{font-size:.8rem;margin-bottom:8px}.index-spacer{border:none;height:16px}.index-link{color:#ff6e00}.index-img{outline:2px solid #ff6e00}.loading{position:relative}.loading--content{bottom:0;left:0;margin:auto;padding-top:20%;position:absolute;right:0;text-align:center;top:0;width:138px}.button-wrap{margin:8px}.button-wrap .button{display:block;margin:0 auto}.button-wrap .button+.button{margin-top:8px}.button-wrap--twins .button{display:inline-block;width:45%}.button{background-color:#ff6e00;color:inherit;cursor:pointer;display:inline;max-width:200px;min-width:64px;padding:4px 8px;text-align:center;text-decoration:none}.button--negative{background-color:transparent;border:1px solid #ff6e00}.button--tweet{background-color:#50abf1}.memo{font-size:.6rem;margin:0 8px 16px}.header{align-items:center;display:flex;height:48px;justify-content:space-between;padding:8px}.header__title{font-size:1rem}.ika{text-align:center;user-select:none}.ika--img{max-width:600px}.tool-panel{background-color:rgba(0,0,0,.5);bottom:8px;left:0;padding-bottom:16px;padding-top:8px;position:fixed;right:0}.parts-selector-header{border-bottom:1px dashed #fff;margin-bottom:12px;padding-bottom:8px;text-align:center}.parts-selector-items{-webkit-overflow-scrolling:touch;align-items:center;display:flex;margin-bottom:8px;overflow-x:auto}.parts-selector-items--item{min-width:64px;overflow:hidden}.parts-selector-items--text{flex:1 1 auto;font-size:1.1rem;line-height:1.5rem;margin:0 32px;text-align:center}.color-selector,.type-selector{cursor:pointer;height:40px;margin:auto}.type-selector{overflow:hidden;text-align:center;transform:translateZ(0);width:80px}.type-selector.is-selected{animation:type-selected .25s 1 alternate}.parts-selector--app-boy .type-selector--type-eyes>img,.parts-selector--app-girl .type-selector--type-eyes>img{transform:scale(3);transform-origin:center 15px}.parts-selector--app-boy .type-selector--type-hat>img,.parts-selector--app-girl .type-selector--type-hat>img{transform:scale(1.5);transform-origin:top}.parts-selector--app-boy .type-selector--type-clothes>img,.parts-selector--app-girl .type-selector--type-clothes>img{transform:scale(2);transform-origin:bottom}.parts-selector--app-boy .type-selector--type-brows>img{transform:scale(4);transform-origin:16px 10px}.parts-selector--app-boy .type-selector--type-mouth>img{transform:scale(6);transform-origin:center}.parts-selector--app-boy .type-selector--type-hair>img{transform:scale(2);transform-origin:top right}.parts-selector--app-girl .type-selector--type-brows>img{transform:scale(5);transform-origin:16px 10px}.parts-selector--app-girl .type-selector--type-mouth>img{transform:scale(8);transform-origin:center}.color-selector{border-radius:50%;width:40px}.color-selector.is-selected{animation:color-selected .25s 1 alternate}.tab-header{-webkit-overflow-scrolling:touch;align-items:center;display:flex;overflow-x:auto;text-align:center}.tab-header__item{cursor:pointer;flex:1 1 auto;height:40px;min-width:92px;opacity:.5;padding:4px 8px}.tab-header__item.is-selected{border-style:solid;border-width:1px;opacity:1}.tab-header__item--type-BASE{color:#fd2a96}.tab-header__item--type-FACE{color:#ca00df}.tab-header__item--type-GEAR{color:#8cb800}.tab-header__item--type-OTHERS{color:#0021fe}.tab-body{margin-bottom:16px}.fix-modal{background-color:rgba(0,0,0,.75);bottom:0;left:0;margin:auto;opacity:0;pointer-events:none;position:absolute;right:0;text-align:center;top:0;transition:opacity .75s cubic-bezier(.6,-.28,.74,.05);z-index:1}.fix-modal.is-show{opacity:1;pointer-events:auto}.fix-modal .ika{margin-top:8px} -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/favicon.ico -------------------------------------------------------------------------------- /font/ikamodoki1_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/font/ikamodoki1_0.ttf -------------------------------------------------------------------------------- /girl.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | スーパーイカメーカー 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 |
18 |
19 | 20 |

21 | に"っ!
(よみこみチュウ...) 22 |

23 |
24 |
25 |
26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/icon.png -------------------------------------------------------------------------------- /img/ika/boy/body/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/body/1.png -------------------------------------------------------------------------------- /img/ika/boy/body/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/body/2.png -------------------------------------------------------------------------------- /img/ika/boy/body/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/body/3.png -------------------------------------------------------------------------------- /img/ika/boy/body/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/body/4.png -------------------------------------------------------------------------------- /img/ika/boy/body/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/body/5.png -------------------------------------------------------------------------------- /img/ika/boy/body/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/body/6.png -------------------------------------------------------------------------------- /img/ika/boy/body/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/body/7.png -------------------------------------------------------------------------------- /img/ika/boy/brows/1/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/brows/1/1.png -------------------------------------------------------------------------------- /img/ika/boy/brows/1/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/brows/1/10.png -------------------------------------------------------------------------------- /img/ika/boy/brows/1/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/brows/1/11.png -------------------------------------------------------------------------------- /img/ika/boy/brows/1/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/brows/1/12.png -------------------------------------------------------------------------------- /img/ika/boy/brows/1/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/brows/1/13.png -------------------------------------------------------------------------------- /img/ika/boy/brows/1/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/brows/1/14.png -------------------------------------------------------------------------------- /img/ika/boy/brows/1/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/brows/1/15.png -------------------------------------------------------------------------------- /img/ika/boy/brows/1/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/brows/1/16.png -------------------------------------------------------------------------------- /img/ika/boy/brows/1/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/brows/1/2.png -------------------------------------------------------------------------------- /img/ika/boy/brows/1/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/brows/1/3.png -------------------------------------------------------------------------------- /img/ika/boy/brows/1/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/brows/1/4.png -------------------------------------------------------------------------------- /img/ika/boy/brows/1/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/brows/1/5.png -------------------------------------------------------------------------------- /img/ika/boy/brows/1/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/brows/1/6.png -------------------------------------------------------------------------------- /img/ika/boy/brows/1/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/brows/1/7.png -------------------------------------------------------------------------------- /img/ika/boy/brows/1/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/brows/1/8.png -------------------------------------------------------------------------------- /img/ika/boy/brows/1/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/brows/1/9.png -------------------------------------------------------------------------------- /img/ika/boy/brows/2/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/brows/2/1.png -------------------------------------------------------------------------------- /img/ika/boy/brows/2/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/brows/2/10.png -------------------------------------------------------------------------------- /img/ika/boy/brows/2/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/brows/2/11.png -------------------------------------------------------------------------------- /img/ika/boy/brows/2/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/brows/2/12.png -------------------------------------------------------------------------------- /img/ika/boy/brows/2/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/brows/2/13.png -------------------------------------------------------------------------------- /img/ika/boy/brows/2/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/brows/2/14.png -------------------------------------------------------------------------------- /img/ika/boy/brows/2/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/brows/2/15.png -------------------------------------------------------------------------------- /img/ika/boy/brows/2/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/brows/2/16.png -------------------------------------------------------------------------------- /img/ika/boy/brows/2/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/brows/2/2.png -------------------------------------------------------------------------------- /img/ika/boy/brows/2/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/brows/2/3.png -------------------------------------------------------------------------------- /img/ika/boy/brows/2/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/brows/2/4.png -------------------------------------------------------------------------------- /img/ika/boy/brows/2/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/brows/2/5.png -------------------------------------------------------------------------------- /img/ika/boy/brows/2/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/brows/2/6.png -------------------------------------------------------------------------------- /img/ika/boy/brows/2/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/brows/2/7.png -------------------------------------------------------------------------------- /img/ika/boy/brows/2/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/brows/2/8.png -------------------------------------------------------------------------------- /img/ika/boy/brows/2/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/brows/2/9.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/1.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/10.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/101.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/102.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/103.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/104.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/105.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/105.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/106.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/106.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/107.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/107.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/108.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/109.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/109.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/11.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/110.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/111.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/112.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/113.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/113.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/114.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/115.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/115.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/12.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/13.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/14.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/15.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/16.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/17.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/18.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/19.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/2.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/20.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/21.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/22.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/23.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/24.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/25.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/26.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/27.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/28.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/29.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/3.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/30.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/31.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/4.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/5.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/6.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/7.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/8.png -------------------------------------------------------------------------------- /img/ika/boy/clothes/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/clothes/9.png -------------------------------------------------------------------------------- /img/ika/boy/hair/1/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/1/1.png -------------------------------------------------------------------------------- /img/ika/boy/hair/1/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/1/10.png -------------------------------------------------------------------------------- /img/ika/boy/hair/1/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/1/11.png -------------------------------------------------------------------------------- /img/ika/boy/hair/1/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/1/12.png -------------------------------------------------------------------------------- /img/ika/boy/hair/1/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/1/13.png -------------------------------------------------------------------------------- /img/ika/boy/hair/1/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/1/14.png -------------------------------------------------------------------------------- /img/ika/boy/hair/1/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/1/15.png -------------------------------------------------------------------------------- /img/ika/boy/hair/1/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/1/16.png -------------------------------------------------------------------------------- /img/ika/boy/hair/1/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/1/17.png -------------------------------------------------------------------------------- /img/ika/boy/hair/1/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/1/18.png -------------------------------------------------------------------------------- /img/ika/boy/hair/1/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/1/19.png -------------------------------------------------------------------------------- /img/ika/boy/hair/1/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/1/2.png -------------------------------------------------------------------------------- /img/ika/boy/hair/1/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/1/20.png -------------------------------------------------------------------------------- /img/ika/boy/hair/1/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/1/3.png -------------------------------------------------------------------------------- /img/ika/boy/hair/1/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/1/4.png -------------------------------------------------------------------------------- /img/ika/boy/hair/1/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/1/5.png -------------------------------------------------------------------------------- /img/ika/boy/hair/1/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/1/6.png -------------------------------------------------------------------------------- /img/ika/boy/hair/1/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/1/7.png -------------------------------------------------------------------------------- /img/ika/boy/hair/1/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/1/8.png -------------------------------------------------------------------------------- /img/ika/boy/hair/1/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/1/9.png -------------------------------------------------------------------------------- /img/ika/boy/hair/2/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/2/1.png -------------------------------------------------------------------------------- /img/ika/boy/hair/2/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/2/10.png -------------------------------------------------------------------------------- /img/ika/boy/hair/2/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/2/11.png -------------------------------------------------------------------------------- /img/ika/boy/hair/2/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/2/12.png -------------------------------------------------------------------------------- /img/ika/boy/hair/2/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/2/13.png -------------------------------------------------------------------------------- /img/ika/boy/hair/2/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/2/14.png -------------------------------------------------------------------------------- /img/ika/boy/hair/2/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/2/15.png -------------------------------------------------------------------------------- /img/ika/boy/hair/2/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/2/16.png -------------------------------------------------------------------------------- /img/ika/boy/hair/2/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/2/17.png -------------------------------------------------------------------------------- /img/ika/boy/hair/2/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/2/18.png -------------------------------------------------------------------------------- /img/ika/boy/hair/2/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/2/19.png -------------------------------------------------------------------------------- /img/ika/boy/hair/2/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/2/2.png -------------------------------------------------------------------------------- /img/ika/boy/hair/2/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/2/20.png -------------------------------------------------------------------------------- /img/ika/boy/hair/2/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/2/3.png -------------------------------------------------------------------------------- /img/ika/boy/hair/2/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/2/4.png -------------------------------------------------------------------------------- /img/ika/boy/hair/2/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/2/5.png -------------------------------------------------------------------------------- /img/ika/boy/hair/2/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/2/6.png -------------------------------------------------------------------------------- /img/ika/boy/hair/2/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/2/7.png -------------------------------------------------------------------------------- /img/ika/boy/hair/2/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/2/8.png -------------------------------------------------------------------------------- /img/ika/boy/hair/2/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hair/2/9.png -------------------------------------------------------------------------------- /img/ika/boy/hat/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hat/0.png -------------------------------------------------------------------------------- /img/ika/boy/hat/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hat/1.png -------------------------------------------------------------------------------- /img/ika/boy/hat/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hat/10.png -------------------------------------------------------------------------------- /img/ika/boy/hat/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hat/11.png -------------------------------------------------------------------------------- /img/ika/boy/hat/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hat/12.png -------------------------------------------------------------------------------- /img/ika/boy/hat/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hat/13.png -------------------------------------------------------------------------------- /img/ika/boy/hat/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hat/14.png -------------------------------------------------------------------------------- /img/ika/boy/hat/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hat/15.png -------------------------------------------------------------------------------- /img/ika/boy/hat/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hat/16.png -------------------------------------------------------------------------------- /img/ika/boy/hat/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hat/17.png -------------------------------------------------------------------------------- /img/ika/boy/hat/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hat/18.png -------------------------------------------------------------------------------- /img/ika/boy/hat/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hat/19.png -------------------------------------------------------------------------------- /img/ika/boy/hat/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hat/2.png -------------------------------------------------------------------------------- /img/ika/boy/hat/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hat/20.png -------------------------------------------------------------------------------- /img/ika/boy/hat/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hat/21.png -------------------------------------------------------------------------------- /img/ika/boy/hat/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hat/22.png -------------------------------------------------------------------------------- /img/ika/boy/hat/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hat/23.png -------------------------------------------------------------------------------- /img/ika/boy/hat/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hat/24.png -------------------------------------------------------------------------------- /img/ika/boy/hat/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hat/25.png -------------------------------------------------------------------------------- /img/ika/boy/hat/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hat/26.png -------------------------------------------------------------------------------- /img/ika/boy/hat/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hat/27.png -------------------------------------------------------------------------------- /img/ika/boy/hat/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hat/28.png -------------------------------------------------------------------------------- /img/ika/boy/hat/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hat/29.png -------------------------------------------------------------------------------- /img/ika/boy/hat/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hat/3.png -------------------------------------------------------------------------------- /img/ika/boy/hat/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hat/30.png -------------------------------------------------------------------------------- /img/ika/boy/hat/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hat/31.png -------------------------------------------------------------------------------- /img/ika/boy/hat/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hat/32.png -------------------------------------------------------------------------------- /img/ika/boy/hat/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hat/33.png -------------------------------------------------------------------------------- /img/ika/boy/hat/34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hat/34.png -------------------------------------------------------------------------------- /img/ika/boy/hat/35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hat/35.png -------------------------------------------------------------------------------- /img/ika/boy/hat/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hat/4.png -------------------------------------------------------------------------------- /img/ika/boy/hat/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hat/5.png -------------------------------------------------------------------------------- /img/ika/boy/hat/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hat/6.png -------------------------------------------------------------------------------- /img/ika/boy/hat/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hat/7.png -------------------------------------------------------------------------------- /img/ika/boy/hat/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hat/8.png -------------------------------------------------------------------------------- /img/ika/boy/hat/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/hat/9.png -------------------------------------------------------------------------------- /img/ika/boy/mouth/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/mouth/1.png -------------------------------------------------------------------------------- /img/ika/boy/mouth/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/mouth/2.png -------------------------------------------------------------------------------- /img/ika/boy/mouth/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/mouth/3.png -------------------------------------------------------------------------------- /img/ika/boy/mouth/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/mouth/4.png -------------------------------------------------------------------------------- /img/ika/boy/mouth/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/mouth/5.png -------------------------------------------------------------------------------- /img/ika/boy/mouth/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/mouth/6.png -------------------------------------------------------------------------------- /img/ika/boy/mouth/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/mouth/7.png -------------------------------------------------------------------------------- /img/ika/boy/mouth/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/boy/mouth/8.png -------------------------------------------------------------------------------- /img/ika/cmn/bg/1/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/bg/1/1.png -------------------------------------------------------------------------------- /img/ika/cmn/bg/1/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/bg/1/10.png -------------------------------------------------------------------------------- /img/ika/cmn/bg/1/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/bg/1/11.png -------------------------------------------------------------------------------- /img/ika/cmn/bg/1/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/bg/1/3.png -------------------------------------------------------------------------------- /img/ika/cmn/bg/1/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/bg/1/4.png -------------------------------------------------------------------------------- /img/ika/cmn/bg/1/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/bg/1/5.png -------------------------------------------------------------------------------- /img/ika/cmn/bg/1/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/bg/1/6.png -------------------------------------------------------------------------------- /img/ika/cmn/bg/1/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/bg/1/7.png -------------------------------------------------------------------------------- /img/ika/cmn/bg/1/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/bg/1/8.png -------------------------------------------------------------------------------- /img/ika/cmn/bg/1/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/bg/1/9.png -------------------------------------------------------------------------------- /img/ika/cmn/bg/2/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/bg/2/1.png -------------------------------------------------------------------------------- /img/ika/cmn/bg/2/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/bg/2/10.png -------------------------------------------------------------------------------- /img/ika/cmn/bg/2/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/bg/2/12.png -------------------------------------------------------------------------------- /img/ika/cmn/bg/2/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/bg/2/2.png -------------------------------------------------------------------------------- /img/ika/cmn/bg/2/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/bg/2/3.png -------------------------------------------------------------------------------- /img/ika/cmn/bg/2/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/bg/2/4.png -------------------------------------------------------------------------------- /img/ika/cmn/bg/2/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/bg/2/5.png -------------------------------------------------------------------------------- /img/ika/cmn/bg/2/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/bg/2/6.png -------------------------------------------------------------------------------- /img/ika/cmn/bg/2/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/bg/2/7.png -------------------------------------------------------------------------------- /img/ika/cmn/bg/2/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/bg/2/9.png -------------------------------------------------------------------------------- /img/ika/cmn/bg/3/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/bg/3/1.png -------------------------------------------------------------------------------- /img/ika/cmn/bg/3/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/bg/3/10.png -------------------------------------------------------------------------------- /img/ika/cmn/bg/3/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/bg/3/12.png -------------------------------------------------------------------------------- /img/ika/cmn/bg/3/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/bg/3/3.png -------------------------------------------------------------------------------- /img/ika/cmn/bg/3/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/bg/3/4.png -------------------------------------------------------------------------------- /img/ika/cmn/bg/3/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/bg/3/5.png -------------------------------------------------------------------------------- /img/ika/cmn/bg/3/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/bg/3/6.png -------------------------------------------------------------------------------- /img/ika/cmn/bg/3/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/bg/3/7.png -------------------------------------------------------------------------------- /img/ika/cmn/bg/3/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/bg/3/8.png -------------------------------------------------------------------------------- /img/ika/cmn/bg/3/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/bg/3/9.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/1/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/1/1.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/1/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/1/2.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/1/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/1/3.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/1/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/1/4.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/1/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/1/5.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/1/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/1/6.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/1/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/1/7.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/2/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/2/1.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/2/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/2/2.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/2/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/2/3.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/2/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/2/4.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/2/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/2/5.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/2/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/2/6.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/2/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/2/7.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/3/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/3/1.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/3/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/3/2.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/3/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/3/3.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/3/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/3/4.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/3/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/3/5.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/3/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/3/6.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/3/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/3/7.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/4/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/4/1.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/4/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/4/2.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/4/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/4/3.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/4/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/4/4.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/4/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/4/5.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/4/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/4/6.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/4/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/4/7.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/5/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/5/1.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/5/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/5/2.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/5/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/5/3.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/5/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/5/4.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/5/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/5/5.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/5/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/5/6.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/5/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/5/7.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/6/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/6/1.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/6/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/6/2.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/6/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/6/3.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/6/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/6/4.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/6/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/6/5.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/6/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/6/6.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/6/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/6/7.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/7/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/7/1.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/8/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/8/3.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/8/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/8/5.png -------------------------------------------------------------------------------- /img/ika/cmn/eyes/8/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/eyes/8/7.png -------------------------------------------------------------------------------- /img/ika/cmn/item/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/item/0.png -------------------------------------------------------------------------------- /img/ika/cmn/item/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/item/1.png -------------------------------------------------------------------------------- /img/ika/cmn/item/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/item/10.png -------------------------------------------------------------------------------- /img/ika/cmn/item/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/item/11.png -------------------------------------------------------------------------------- /img/ika/cmn/item/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/item/12.png -------------------------------------------------------------------------------- /img/ika/cmn/item/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/item/13.png -------------------------------------------------------------------------------- /img/ika/cmn/item/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/item/14.png -------------------------------------------------------------------------------- /img/ika/cmn/item/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/item/15.png -------------------------------------------------------------------------------- /img/ika/cmn/item/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/item/16.png -------------------------------------------------------------------------------- /img/ika/cmn/item/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/item/2.png -------------------------------------------------------------------------------- /img/ika/cmn/item/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/item/3.png -------------------------------------------------------------------------------- /img/ika/cmn/item/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/item/4.png -------------------------------------------------------------------------------- /img/ika/cmn/item/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/item/5.png -------------------------------------------------------------------------------- /img/ika/cmn/item/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/item/6.png -------------------------------------------------------------------------------- /img/ika/cmn/item/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/item/7.png -------------------------------------------------------------------------------- /img/ika/cmn/item/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/item/8.png -------------------------------------------------------------------------------- /img/ika/cmn/item/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/cmn/item/9.png -------------------------------------------------------------------------------- /img/ika/girl/body/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/body/1.png -------------------------------------------------------------------------------- /img/ika/girl/body/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/body/2.png -------------------------------------------------------------------------------- /img/ika/girl/body/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/body/3.png -------------------------------------------------------------------------------- /img/ika/girl/body/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/body/4.png -------------------------------------------------------------------------------- /img/ika/girl/body/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/body/5.png -------------------------------------------------------------------------------- /img/ika/girl/body/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/body/6.png -------------------------------------------------------------------------------- /img/ika/girl/body/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/body/7.png -------------------------------------------------------------------------------- /img/ika/girl/brows/1/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/brows/1/1.png -------------------------------------------------------------------------------- /img/ika/girl/brows/1/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/brows/1/10.png -------------------------------------------------------------------------------- /img/ika/girl/brows/1/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/brows/1/11.png -------------------------------------------------------------------------------- /img/ika/girl/brows/1/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/brows/1/12.png -------------------------------------------------------------------------------- /img/ika/girl/brows/1/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/brows/1/13.png -------------------------------------------------------------------------------- /img/ika/girl/brows/1/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/brows/1/14.png -------------------------------------------------------------------------------- /img/ika/girl/brows/1/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/brows/1/15.png -------------------------------------------------------------------------------- /img/ika/girl/brows/1/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/brows/1/16.png -------------------------------------------------------------------------------- /img/ika/girl/brows/1/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/brows/1/2.png -------------------------------------------------------------------------------- /img/ika/girl/brows/1/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/brows/1/3.png -------------------------------------------------------------------------------- /img/ika/girl/brows/1/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/brows/1/4.png -------------------------------------------------------------------------------- /img/ika/girl/brows/1/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/brows/1/5.png -------------------------------------------------------------------------------- /img/ika/girl/brows/1/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/brows/1/6.png -------------------------------------------------------------------------------- /img/ika/girl/brows/1/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/brows/1/7.png -------------------------------------------------------------------------------- /img/ika/girl/brows/1/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/brows/1/8.png -------------------------------------------------------------------------------- /img/ika/girl/brows/1/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/brows/1/9.png -------------------------------------------------------------------------------- /img/ika/girl/brows/2/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/brows/2/1.png -------------------------------------------------------------------------------- /img/ika/girl/brows/2/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/brows/2/10.png -------------------------------------------------------------------------------- /img/ika/girl/brows/2/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/brows/2/11.png -------------------------------------------------------------------------------- /img/ika/girl/brows/2/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/brows/2/12.png -------------------------------------------------------------------------------- /img/ika/girl/brows/2/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/brows/2/13.png -------------------------------------------------------------------------------- /img/ika/girl/brows/2/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/brows/2/14.png -------------------------------------------------------------------------------- /img/ika/girl/brows/2/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/brows/2/15.png -------------------------------------------------------------------------------- /img/ika/girl/brows/2/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/brows/2/16.png -------------------------------------------------------------------------------- /img/ika/girl/brows/2/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/brows/2/2.png -------------------------------------------------------------------------------- /img/ika/girl/brows/2/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/brows/2/3.png -------------------------------------------------------------------------------- /img/ika/girl/brows/2/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/brows/2/4.png -------------------------------------------------------------------------------- /img/ika/girl/brows/2/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/brows/2/5.png -------------------------------------------------------------------------------- /img/ika/girl/brows/2/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/brows/2/6.png -------------------------------------------------------------------------------- /img/ika/girl/brows/2/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/brows/2/7.png -------------------------------------------------------------------------------- /img/ika/girl/brows/2/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/brows/2/8.png -------------------------------------------------------------------------------- /img/ika/girl/brows/2/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/brows/2/9.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/1.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/10.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/101.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/102.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/103.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/104.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/105.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/105.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/106.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/106.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/107.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/107.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/108.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/109.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/109.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/11.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/110.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/111.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/112.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/113.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/113.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/114.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/115.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/115.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/12.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/13.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/14.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/15.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/16.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/17.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/18.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/19.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/2.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/20.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/21.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/22.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/23.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/24.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/25.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/26.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/27.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/28.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/29.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/3.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/30.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/31.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/32.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/33.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/4.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/5.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/6.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/7.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/8.png -------------------------------------------------------------------------------- /img/ika/girl/clothes/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/clothes/9.png -------------------------------------------------------------------------------- /img/ika/girl/hair/1/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/1/1.png -------------------------------------------------------------------------------- /img/ika/girl/hair/1/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/1/10.png -------------------------------------------------------------------------------- /img/ika/girl/hair/1/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/1/11.png -------------------------------------------------------------------------------- /img/ika/girl/hair/1/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/1/12.png -------------------------------------------------------------------------------- /img/ika/girl/hair/1/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/1/13.png -------------------------------------------------------------------------------- /img/ika/girl/hair/1/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/1/14.png -------------------------------------------------------------------------------- /img/ika/girl/hair/1/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/1/15.png -------------------------------------------------------------------------------- /img/ika/girl/hair/1/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/1/16.png -------------------------------------------------------------------------------- /img/ika/girl/hair/1/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/1/17.png -------------------------------------------------------------------------------- /img/ika/girl/hair/1/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/1/18.png -------------------------------------------------------------------------------- /img/ika/girl/hair/1/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/1/19.png -------------------------------------------------------------------------------- /img/ika/girl/hair/1/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/1/2.png -------------------------------------------------------------------------------- /img/ika/girl/hair/1/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/1/20.png -------------------------------------------------------------------------------- /img/ika/girl/hair/1/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/1/3.png -------------------------------------------------------------------------------- /img/ika/girl/hair/1/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/1/4.png -------------------------------------------------------------------------------- /img/ika/girl/hair/1/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/1/5.png -------------------------------------------------------------------------------- /img/ika/girl/hair/1/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/1/6.png -------------------------------------------------------------------------------- /img/ika/girl/hair/1/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/1/7.png -------------------------------------------------------------------------------- /img/ika/girl/hair/1/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/1/8.png -------------------------------------------------------------------------------- /img/ika/girl/hair/1/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/1/9.png -------------------------------------------------------------------------------- /img/ika/girl/hair/2/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/2/1.png -------------------------------------------------------------------------------- /img/ika/girl/hair/2/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/2/10.png -------------------------------------------------------------------------------- /img/ika/girl/hair/2/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/2/11.png -------------------------------------------------------------------------------- /img/ika/girl/hair/2/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/2/12.png -------------------------------------------------------------------------------- /img/ika/girl/hair/2/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/2/13.png -------------------------------------------------------------------------------- /img/ika/girl/hair/2/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/2/14.png -------------------------------------------------------------------------------- /img/ika/girl/hair/2/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/2/15.png -------------------------------------------------------------------------------- /img/ika/girl/hair/2/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/2/16.png -------------------------------------------------------------------------------- /img/ika/girl/hair/2/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/2/17.png -------------------------------------------------------------------------------- /img/ika/girl/hair/2/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/2/18.png -------------------------------------------------------------------------------- /img/ika/girl/hair/2/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/2/19.png -------------------------------------------------------------------------------- /img/ika/girl/hair/2/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/2/2.png -------------------------------------------------------------------------------- /img/ika/girl/hair/2/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/2/20.png -------------------------------------------------------------------------------- /img/ika/girl/hair/2/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/2/3.png -------------------------------------------------------------------------------- /img/ika/girl/hair/2/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/2/4.png -------------------------------------------------------------------------------- /img/ika/girl/hair/2/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/2/5.png -------------------------------------------------------------------------------- /img/ika/girl/hair/2/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/2/6.png -------------------------------------------------------------------------------- /img/ika/girl/hair/2/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/2/7.png -------------------------------------------------------------------------------- /img/ika/girl/hair/2/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/2/8.png -------------------------------------------------------------------------------- /img/ika/girl/hair/2/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hair/2/9.png -------------------------------------------------------------------------------- /img/ika/girl/hat/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hat/0.png -------------------------------------------------------------------------------- /img/ika/girl/hat/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hat/1.png -------------------------------------------------------------------------------- /img/ika/girl/hat/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hat/10.png -------------------------------------------------------------------------------- /img/ika/girl/hat/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hat/11.png -------------------------------------------------------------------------------- /img/ika/girl/hat/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hat/12.png -------------------------------------------------------------------------------- /img/ika/girl/hat/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hat/13.png -------------------------------------------------------------------------------- /img/ika/girl/hat/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hat/14.png -------------------------------------------------------------------------------- /img/ika/girl/hat/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hat/15.png -------------------------------------------------------------------------------- /img/ika/girl/hat/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hat/16.png -------------------------------------------------------------------------------- /img/ika/girl/hat/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hat/17.png -------------------------------------------------------------------------------- /img/ika/girl/hat/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hat/18.png -------------------------------------------------------------------------------- /img/ika/girl/hat/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hat/19.png -------------------------------------------------------------------------------- /img/ika/girl/hat/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hat/2.png -------------------------------------------------------------------------------- /img/ika/girl/hat/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hat/20.png -------------------------------------------------------------------------------- /img/ika/girl/hat/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hat/21.png -------------------------------------------------------------------------------- /img/ika/girl/hat/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hat/22.png -------------------------------------------------------------------------------- /img/ika/girl/hat/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hat/23.png -------------------------------------------------------------------------------- /img/ika/girl/hat/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hat/24.png -------------------------------------------------------------------------------- /img/ika/girl/hat/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hat/25.png -------------------------------------------------------------------------------- /img/ika/girl/hat/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hat/26.png -------------------------------------------------------------------------------- /img/ika/girl/hat/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hat/27.png -------------------------------------------------------------------------------- /img/ika/girl/hat/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hat/28.png -------------------------------------------------------------------------------- /img/ika/girl/hat/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hat/29.png -------------------------------------------------------------------------------- /img/ika/girl/hat/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hat/3.png -------------------------------------------------------------------------------- /img/ika/girl/hat/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hat/30.png -------------------------------------------------------------------------------- /img/ika/girl/hat/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hat/31.png -------------------------------------------------------------------------------- /img/ika/girl/hat/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hat/32.png -------------------------------------------------------------------------------- /img/ika/girl/hat/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hat/33.png -------------------------------------------------------------------------------- /img/ika/girl/hat/34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hat/34.png -------------------------------------------------------------------------------- /img/ika/girl/hat/35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hat/35.png -------------------------------------------------------------------------------- /img/ika/girl/hat/36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hat/36.png -------------------------------------------------------------------------------- /img/ika/girl/hat/37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hat/37.png -------------------------------------------------------------------------------- /img/ika/girl/hat/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hat/4.png -------------------------------------------------------------------------------- /img/ika/girl/hat/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hat/5.png -------------------------------------------------------------------------------- /img/ika/girl/hat/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hat/6.png -------------------------------------------------------------------------------- /img/ika/girl/hat/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hat/7.png -------------------------------------------------------------------------------- /img/ika/girl/hat/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hat/8.png -------------------------------------------------------------------------------- /img/ika/girl/hat/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/hat/9.png -------------------------------------------------------------------------------- /img/ika/girl/mouth/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/mouth/1.png -------------------------------------------------------------------------------- /img/ika/girl/mouth/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/mouth/2.png -------------------------------------------------------------------------------- /img/ika/girl/mouth/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/mouth/3.png -------------------------------------------------------------------------------- /img/ika/girl/mouth/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/mouth/4.png -------------------------------------------------------------------------------- /img/ika/girl/mouth/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/mouth/5.png -------------------------------------------------------------------------------- /img/ika/girl/mouth/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/mouth/6.png -------------------------------------------------------------------------------- /img/ika/girl/mouth/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/mouth/7.png -------------------------------------------------------------------------------- /img/ika/girl/mouth/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/ika/girl/mouth/8.png -------------------------------------------------------------------------------- /img/intro/intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/intro/intro.png -------------------------------------------------------------------------------- /img/intro/make.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/intro/make.png -------------------------------------------------------------------------------- /img/large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/large.png -------------------------------------------------------------------------------- /img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/loading.gif -------------------------------------------------------------------------------- /img/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/square.png -------------------------------------------------------------------------------- /img/tiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/tiny.png -------------------------------------------------------------------------------- /img/wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaysgur/ika-maker/d492043c9fdcda90525cd603ad525ab1ca135f68/img/wide.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | スーパーイカメーカー 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 |
28 |

スーパーイカメーカー

29 | 30 | 31 | 32 |

さまざまなパーツをくみあわせて、
キミだけのさいかわイカをつくろう!

33 | 34 |
35 | 36 |

ちゅうい!

37 |

38 | ※トレースや画像の加工は禁止です。
39 | ※グッズ制作などへの転用も厳禁です。
40 | ※個人のアイコンなどにご使用ください。
41 | ※Twitterアプリ等からは画像保存ができないので、 42 | Safari等のブラウザアプリからご利用ください。
43 | ※JavaScriptをONにしないと動きません。
44 |

45 | 46 |
47 | 50 |
51 | 52 | 56 | 57 |
58 | [ For English ] 59 |
60 | 61 |
62 | 63 |

なかのイカ

64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 80 | 88 | 89 | 90 |
イラストシステム
73 |
74 | @jenga_ink 75 |
76 | 77 | @jenga_ink 78 | 79 |
81 |
82 | @leaysgur 83 |
84 | 85 | @leaysgur 86 | 87 |
91 | 92 |
93 |
94 | 95 | 100 | 101 | 102 | -------------------------------------------------------------------------------- /intro-en.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | スーパーイカメーカー for English 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 |

About スーパーイカメーカー

27 | 28 |
29 | 30 |

31 | Combining various parts,
Let's make a wild squid of only you! 32 |

33 |
34 | 35 |
36 | 37 |

How to use

38 | 39 |
40 | 41 |
42 | 43 |

44 | Agreements are 45 |

46 |

47 | ※Tracing and image processing is prohibited.
48 | ※It is strictly prohibited to divert to goods production etc.
49 | ※Please use it for personal icons etc.
50 | ※It won't work without JavaScript on.
51 |

52 | 53 |
54 | 55 |
56 | 57 |

58 | You can save images by 59 |

60 | 64 |

65 | ※Since you can't save images via in-App browser(like Twitter), please use a normal browser application. 66 |

67 | 68 |
69 | 70 |

Troubleshoot

71 |

72 | Loading assets takes you a little time.Be patient plaese. 73 |

74 |

75 | If you could not open the page, please follow these steps. 76 |

77 |
    78 |
  1. 0. Check your internet connection
  2. 79 |
  3. 1. Delete browser cache
  4. 80 |
  5. 2. Try again later
  6. 81 |
  7. 3. Ask on Twitter with hash tag
  8. 82 |
  9. 4. Ask to author
  10. 83 |
84 | 85 |
86 | 87 |

Have fun!

88 |
89 | Back to TOP 90 |
91 |
92 | 93 | 94 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ika-maker", 3 | "version": "2.11.1", 4 | "private": true, 5 | "description": "IKA-kawaii", 6 | "scripts": { 7 | "dev-css": "postcss -w ./src/style/style.css -o ./dist/style.css", 8 | "build-css": "postcss ./src/style/style.css -o ./dist/style.css", 9 | "build-js": "rollup -c", 10 | "dev-js": "rollup -c -w", 11 | "start": "sirv ." 12 | }, 13 | "repository": { 14 | "type": "git", 15 | "url": "git+https://github.com/leaysgur/ika-maker.git" 16 | }, 17 | "author": "leaysgur", 18 | "license": "MIT", 19 | "bugs": { 20 | "url": "https://github.com/leaysgur/ika-maker/issues" 21 | }, 22 | "homepage": "https://github.com/leaysgur/ika-maker#readme", 23 | "dependencies": { 24 | "workbox-cacheable-response": "^6.0.2", 25 | "workbox-expiration": "^6.0.2", 26 | "workbox-routing": "^6.0.2", 27 | "workbox-strategies": "^6.0.2" 28 | }, 29 | "devDependencies": { 30 | "@rollup/plugin-commonjs": "^16.0.0", 31 | "@rollup/plugin-node-resolve": "^10.0.0", 32 | "@rollup/plugin-replace": "^2.3.4", 33 | "cssnano": "^5.0.2", 34 | "postcss": "^8.4.31", 35 | "postcss-cli": "^8.3.0", 36 | "postcss-import": "^13.0.0", 37 | "postcss-nested": "^5.0.2", 38 | "rollup": "^3.29.5", 39 | "rollup-plugin-livereload": "^2.0.0", 40 | "rollup-plugin-svelte": "^7.0.0", 41 | "rollup-plugin-terser": "^7.0.0", 42 | "sirv-cli": "^1.0.9", 43 | "svelte": "^4.2.19" 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: [ 3 | require("postcss-import")(), 4 | require("postcss-nested")(), 5 | require("cssnano")(), 6 | ], 7 | } 8 | -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: /index.html 3 | -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- 1 | import svelte from "rollup-plugin-svelte"; 2 | import commonjs from "@rollup/plugin-commonjs"; 3 | import resolve from "@rollup/plugin-node-resolve"; 4 | import replace from "@rollup/plugin-replace"; 5 | import livereload from "rollup-plugin-livereload"; 6 | import { terser } from "rollup-plugin-terser"; 7 | 8 | const production = !process.env.ROLLUP_WATCH; 9 | 10 | function serve() { 11 | let server; 12 | 13 | function toExit() { 14 | if (server) server.kill(0); 15 | } 16 | 17 | return { 18 | writeBundle() { 19 | if (server) return; 20 | server = require("child_process").spawn("npm", ["run", "start", "--", "--dev"], { 21 | stdio: ["ignore", "inherit", "inherit"], 22 | shell: true 23 | }); 24 | 25 | process.on("SIGTERM", toExit); 26 | process.on("exit", toExit); 27 | } 28 | }; 29 | } 30 | 31 | export default [{ 32 | input: "src/app/main.js", 33 | output: { 34 | sourcemap: true, 35 | format: "iife", 36 | name: "app", 37 | file: "dist/app-script.js" 38 | }, 39 | plugins: [ 40 | svelte({ 41 | compilerOptions: { 42 | // enable run-time checks when not in production 43 | dev: !production 44 | } 45 | }), 46 | // If you have external dependencies installed from 47 | // npm, you"ll most likely need these plugins. In 48 | // some cases you"ll need additional configuration - 49 | // consult the documentation for details: 50 | // https://github.com/rollup/plugins/tree/master/packages/commonjs 51 | resolve({ 52 | browser: true, 53 | dedupe: ["svelte"] 54 | }), 55 | commonjs(), 56 | 57 | // In dev mode, call `npm run start` once 58 | // the bundle has been generated 59 | !production && serve(), 60 | 61 | // Watch the `public` directory and refresh the 62 | // browser on changes when not in production 63 | !production && livereload("dist"), 64 | 65 | // If we"re building for production (npm run build 66 | // instead of npm run dev), minify 67 | production && terser() 68 | ], 69 | watch: { 70 | clearScreen: false 71 | } 72 | }, { 73 | input: "src/entry.js", 74 | output: { 75 | format: "iife", 76 | name: "entry", 77 | file: "dist/entry-script.js" 78 | }, 79 | plugins: [ 80 | production && terser() 81 | ], 82 | }, { 83 | input: "src/sw.js", 84 | output: { 85 | format: "iife", 86 | name: "sw", 87 | file: "service-worker.js" 88 | }, 89 | plugins: [ 90 | resolve(), 91 | replace({ 92 | "process.env.NODE_ENV": production ? "'production'" : "''", 93 | }), 94 | production && terser() 95 | ], 96 | }]; 97 | -------------------------------------------------------------------------------- /service-worker.js: -------------------------------------------------------------------------------- 1 | !function(){"use strict";try{self["workbox:core:6.0.2"]&&_()}catch(e){}const e=(e,...t)=>{let s=e;return t.length>0&&(s+=` :: ${JSON.stringify(t)}`),s};class t extends Error{constructor(t,s){super(e(t,s)),this.name=t,this.details=s}}try{self["workbox:cacheable-response:6.0.2"]&&_()}catch(e){}class s{constructor(e={}){this._statuses=e.statuses,this._headers=e.headers}isResponseCacheable(e){let t=!0;return this._statuses&&(t=this._statuses.includes(e.status)),this._headers&&t&&(t=Object.keys(this._headers).some((t=>e.headers.get(t)===this._headers[t]))),t}}const a={googleAnalytics:"googleAnalytics",precache:"precache-v2",prefix:"workbox",runtime:"runtime",suffix:"undefined"!=typeof registration?registration.scope:""},n=e=>[a.prefix,e,a.suffix].filter((e=>e&&e.length>0)).join("-"),r=e=>e||n(a.runtime);function i(e,t){const s=new URL(e);for(const e of t)s.searchParams.delete(e);return s.href}class o{constructor(){this.promise=new Promise(((e,t)=>{this.resolve=e,this.reject=t}))}}const c=new Set;try{self["workbox:strategies:6.0.2"]&&_()}catch(e){}function h(e){return"string"==typeof e?new Request(e):e}class l{constructor(e,t){this._cacheKeys={},Object.assign(this,t),this.event=t.event,this._strategy=e,this._handlerDeferred=new o,this._extendLifetimePromises=[],this._plugins=[...e.plugins],this._pluginStateMap=new Map;for(const e of this._plugins)this._pluginStateMap.set(e,{});this.event.waitUntil(this._handlerDeferred.promise)}fetch(e){return this.waitUntil((async()=>{const{event:s}=this;let a=h(e);if("navigate"===a.mode&&s instanceof FetchEvent&&s.preloadResponse){const e=await s.preloadResponse;if(e)return e}const n=this.hasCallback("fetchDidFail")?a.clone():null;try{for(const e of this.iterateCallbacks("requestWillFetch"))a=await e({request:a.clone(),event:s})}catch(e){throw new t("plugin-error-request-will-fetch",{thrownError:e})}const r=a.clone();try{let e;e=await fetch(a,"navigate"===a.mode?void 0:this._strategy.fetchOptions);for(const t of this.iterateCallbacks("fetchDidSucceed"))e=await t({event:s,request:r,response:e});return e}catch(e){throw n&&await this.runCallbacks("fetchDidFail",{error:e,event:s,originalRequest:n.clone(),request:r.clone()}),e}})())}async fetchAndCachePut(e){const t=await this.fetch(e),s=t.clone();return this.waitUntil(this.cachePut(e,s)),t}cacheMatch(e){return this.waitUntil((async()=>{const t=h(e);let s;const{cacheName:a,matchOptions:n}=this._strategy,r=await this.getCacheKey(t,"read"),i={...n,cacheName:a};s=await caches.match(r,i);for(const e of this.iterateCallbacks("cachedResponseWillBeUsed"))s=await e({cacheName:a,matchOptions:n,cachedResponse:s,request:r,event:this.event})||void 0;return s})())}async cachePut(e,s){const a=h(e);var n;await(n=0,new Promise((e=>setTimeout(e,n))));const r=await this.getCacheKey(a,"write");if(!s)throw new t("cache-put-with-no-response",{url:(o=r.url,new URL(String(o),location.href).href.replace(new RegExp(`^${location.origin}`),""))});var o;const l=await this._ensureResponseSafeToCache(s);if(!l)return;const{cacheName:u,matchOptions:d}=this._strategy,p=await self.caches.open(u),f=this.hasCallback("cacheDidUpdate"),m=f?await async function(e,t,s,a){const n=i(t.url,s);if(t.url===n)return e.match(t,a);const r={...a,ignoreSearch:!0},o=await e.keys(t,r);for(const t of o)if(n===i(t.url,s))return e.match(t,a)}(p,r.clone(),["__WB_REVISION__"],d):null;try{await p.put(r,f?l.clone():l)}catch(e){throw"QuotaExceededError"===e.name&&await async function(){for(const e of c)await e()}(),e}for(const e of this.iterateCallbacks("cacheDidUpdate"))await e({cacheName:u,oldResponse:m,newResponse:l.clone(),request:r,event:this.event})}async getCacheKey(e,t){if(!this._cacheKeys[t]){let s=e;for(const e of this.iterateCallbacks("cacheKeyWillBeUsed"))s=h(await e({mode:t,request:s,event:this.event,params:this.params}));this._cacheKeys[t]=s}return this._cacheKeys[t]}hasCallback(e){for(const t of this._strategy.plugins)if(e in t)return!0;return!1}async runCallbacks(e,t){for(const s of this.iterateCallbacks(e))await s(t)}*iterateCallbacks(e){for(const t of this._strategy.plugins)if("function"==typeof t[e]){const s=this._pluginStateMap.get(t),a=a=>{const n={...a,state:s};return t[e](n)};yield a}}waitUntil(e){return this._extendLifetimePromises.push(e),e}async doneWaiting(){let e;for(;e=this._extendLifetimePromises.shift();)await e}destroy(){this._handlerDeferred.resolve()}async _ensureResponseSafeToCache(e){let t=e,s=!1;for(const e of this.iterateCallbacks("cacheWillUpdate"))if(t=await e({request:this.request,response:t,event:this.event})||void 0,s=!0,!t)break;return s||t&&200!==t.status&&(t=void 0),t}}function u(e){e.then((()=>{}))}class d{constructor(e,t,{onupgradeneeded:s,onversionchange:a}={}){this._db=null,this._name=e,this._version=t,this._onupgradeneeded=s,this._onversionchange=a||(()=>this.close())}get db(){return this._db}async open(){if(!this._db)return this._db=await new Promise(((e,t)=>{let s=!1;setTimeout((()=>{s=!0,t(new Error("The open request was blocked and timed out"))}),this.OPEN_TIMEOUT);const a=indexedDB.open(this._name,this._version);a.onerror=()=>t(a.error),a.onupgradeneeded=e=>{s?(a.transaction.abort(),a.result.close()):"function"==typeof this._onupgradeneeded&&this._onupgradeneeded(e)},a.onsuccess=()=>{const t=a.result;s?t.close():(t.onversionchange=this._onversionchange.bind(this),e(t))}})),this}async getKey(e,t){return(await this.getAllKeys(e,t,1))[0]}async getAll(e,t,s){return await this.getAllMatching(e,{query:t,count:s})}async getAllKeys(e,t,s){return(await this.getAllMatching(e,{query:t,count:s,includeKeys:!0})).map((e=>e.key))}async getAllMatching(e,{index:t,query:s=null,direction:a="next",count:n,includeKeys:r=!1}={}){return await this.transaction([e],"readonly",((i,o)=>{const c=i.objectStore(e),h=t?c.index(t):c,l=[],u=h.openCursor(s,a);u.onsuccess=()=>{const e=u.result;e?(l.push(r?e:e.value),n&&l.length>=n?o(l):e.continue()):o(l)}}))}async transaction(e,t,s){return await this.open(),await new Promise(((a,n)=>{const r=this._db.transaction(e,t);r.onabort=()=>n(r.error),r.oncomplete=()=>a(),s(r,(e=>a(e)))}))}async _call(e,t,s,...a){return await this.transaction([t],s,((s,n)=>{const r=s.objectStore(t),i=r[e].apply(r,a);i.onsuccess=()=>n(i.result)}))}close(){this._db&&(this._db.close(),this._db=null)}}d.prototype.OPEN_TIMEOUT=2e3;const p={readonly:["get","count","getKey","getAll","getAllKeys"],readwrite:["add","put","clear","delete"]};for(const[e,t]of Object.entries(p))for(const s of t)s in IDBObjectStore.prototype&&(d.prototype[s]=async function(t,...a){return await this._call(s,t,e,...a)});try{self["workbox:expiration:6.0.2"]&&_()}catch(e){}const f="cache-entries",m=e=>{const t=new URL(e,location.href);return t.hash="",t.href};class w{constructor(e){this._cacheName=e,this._db=new d("workbox-expiration",1,{onupgradeneeded:e=>this._handleUpgrade(e)})}_handleUpgrade(e){const t=e.target.result.createObjectStore(f,{keyPath:"id"});t.createIndex("cacheName","cacheName",{unique:!1}),t.createIndex("timestamp","timestamp",{unique:!1}),(async e=>{await new Promise(((t,s)=>{const a=indexedDB.deleteDatabase(e);a.onerror=()=>{s(a.error)},a.onblocked=()=>{s(new Error("Delete blocked"))},a.onsuccess=()=>{t()}}))})(this._cacheName)}async setTimestamp(e,t){const s={url:e=m(e),timestamp:t,cacheName:this._cacheName,id:this._getId(e)};await this._db.put(f,s)}async getTimestamp(e){return(await this._db.get(f,this._getId(e))).timestamp}async expireEntries(e,t){const s=await this._db.transaction(f,"readwrite",((s,a)=>{const n=s.objectStore(f).index("timestamp").openCursor(null,"prev"),r=[];let i=0;n.onsuccess=()=>{const s=n.result;if(s){const a=s.value;a.cacheName===this._cacheName&&(e&&a.timestamp=t?r.push(s.value):i++),s.continue()}else a(r)}})),a=[];for(const e of s)await this._db.delete(f,e.id),a.push(e.url);return a}_getId(e){return this._cacheName+"|"+m(e)}}class g{constructor(e,t={}){this._isRunning=!1,this._rerunRequested=!1,this._maxEntries=t.maxEntries,this._maxAgeSeconds=t.maxAgeSeconds,this._matchOptions=t.matchOptions,this._cacheName=e,this._timestampModel=new w(e)}async expireEntries(){if(this._isRunning)return void(this._rerunRequested=!0);this._isRunning=!0;const e=this._maxAgeSeconds?Date.now()-1e3*this._maxAgeSeconds:0,t=await this._timestampModel.expireEntries(e,this._maxEntries),s=await self.caches.open(this._cacheName);for(const e of t)await s.delete(e,this._matchOptions);this._isRunning=!1,this._rerunRequested&&(this._rerunRequested=!1,u(this.expireEntries()))}async updateTimestamp(e){await this._timestampModel.setTimestamp(e,Date.now())}async isURLExpired(e){if(this._maxAgeSeconds){return await this._timestampModel.getTimestamp(e)e&&"object"==typeof e?e:{handle:e};class b{constructor(e,t,s="GET"){this.handler=y(t),this.match=e,this.method=s}}class x extends b{constructor(e,t,s){super((({url:t})=>{const s=e.exec(t.href);if(s&&(t.origin===location.origin||0===s.index))return s.slice(1)}),t,s)}}class v{constructor(){this._routes=new Map,this._defaultHandlerMap=new Map}get routes(){return this._routes}addFetchListener(){self.addEventListener("fetch",(e=>{const{request:t}=e,s=this.handleRequest({request:t,event:e});s&&e.respondWith(s)}))}addCacheListener(){self.addEventListener("message",(e=>{if(e.data&&"CACHE_URLS"===e.data.type){const{payload:t}=e.data,s=Promise.all(t.urlsToCache.map((t=>{"string"==typeof t&&(t=[t]);const s=new Request(...t);return this.handleRequest({request:s,event:e})})));e.waitUntil(s),e.ports&&e.ports[0]&&s.then((()=>e.ports[0].postMessage(!0)))}}))}handleRequest({request:e,event:t}){const s=new URL(e.url,location.href);if(!s.protocol.startsWith("http"))return;const a=s.origin===location.origin,{params:n,route:r}=this.findMatchingRoute({event:t,request:e,sameOrigin:a,url:s});let i=r&&r.handler;const o=e.method;if(!i&&this._defaultHandlerMap.has(o)&&(i=this._defaultHandlerMap.get(o)),!i)return;let c;try{c=i.handle({url:s,request:e,event:t,params:n})}catch(e){c=Promise.reject(e)}return c instanceof Promise&&this._catchHandler&&(c=c.catch((a=>this._catchHandler.handle({url:s,request:e,event:t})))),c}findMatchingRoute({url:e,sameOrigin:t,request:s,event:a}){const n=this._routes.get(s.method)||[];for(const r of n){let n;const i=r.match({url:e,sameOrigin:t,request:s,event:a});if(i)return n=i,(Array.isArray(i)&&0===i.length||i.constructor===Object&&0===Object.keys(i).length||"boolean"==typeof i)&&(n=void 0),{route:r,params:n}}return{}}setDefaultHandler(e,t="GET"){this._defaultHandlerMap.set(t,y(e))}setCatchHandler(e){this._catchHandler=y(e)}registerRoute(e){this._routes.has(e.method)||this._routes.set(e.method,[]),this._routes.get(e.method).push(e)}unregisterRoute(e){if(!this._routes.has(e.method))throw new t("unregister-route-but-not-found-with-method",{method:e.method});const s=this._routes.get(e.method).indexOf(e);if(!(s>-1))throw new t("unregister-route-route-not-registered");this._routes.get(e.method).splice(s,1)}}let R;const q=()=>(R||(R=new v,R.addFetchListener(),R.addCacheListener()),R);!function(e,s,a){let n;if("string"==typeof e){const t=new URL(e,location.href);n=new b((({url:e})=>e.href===t.href),s,a)}else if(e instanceof RegExp)n=new x(e,s,a);else if("function"==typeof e)n=new b(e,s,a);else{if(!(e instanceof b))throw new t("unsupported-route-type",{moduleName:"workbox-routing",funcName:"registerRoute",paramName:"capture"});n=e}q().registerRoute(n)}((({request:e})=>"image"===e.destination),new class extends class{constructor(e={}){this.cacheName=r(e.cacheName),this.plugins=e.plugins||[],this.fetchOptions=e.fetchOptions,this.matchOptions=e.matchOptions}handle(e){const[t]=this.handleAll(e);return t}handleAll(e){e instanceof FetchEvent&&(e={event:e,request:e.request});const t=e.event,s="string"==typeof e.request?new Request(e.request):e.request,a="params"in e?e.params:void 0,n=new l(this,{event:t,request:s,params:a}),r=this._getResponse(n,s,t);return[r,this._awaitComplete(r,n,s,t)]}async _getResponse(e,s,a){let n;await e.runCallbacks("handlerWillStart",{event:a,request:s});try{if(n=await this._handle(s,e),!n||"error"===n.type)throw new t("no-response",{url:s.url})}catch(t){for(const r of e.iterateCallbacks("handlerDidError"))if(n=await r({error:t,event:a,request:s}),n)break;if(!n)throw t}for(const t of e.iterateCallbacks("handlerWillRespond"))n=await t({event:a,request:s,response:n});return n}async _awaitComplete(e,t,s,a){let n,r;try{n=await e}catch(r){}try{await t.runCallbacks("handlerDidRespond",{event:a,request:s,response:n}),await t.doneWaiting()}catch(e){r=e}if(await t.runCallbacks("handlerDidComplete",{event:a,request:s,response:n,error:r}),t.destroy(),r)throw r}}{async _handle(e,s){let a,n=await s.cacheMatch(e);if(!n)try{n=await s.fetchAndCachePut(e)}catch(e){a=e}if(!n)throw new t("no-response",{url:e.url,error:a});return n}}({cacheName:"images",plugins:[new class{constructor(e){this.cacheWillUpdate=async({response:e})=>this._cacheableResponse.isResponseCacheable(e)?e:null,this._cacheableResponse=new s(e)}}({statuses:[0,200]}),new class{constructor(e={}){var t;this.cachedResponseWillBeUsed=async({event:e,request:t,cacheName:s,cachedResponse:a})=>{if(!a)return null;const n=this._isResponseDateFresh(a),r=this._getCacheExpiration(s);u(r.expireEntries());const i=r.updateTimestamp(t.url);if(e)try{e.waitUntil(i)}catch(e){}return n?a:null},this.cacheDidUpdate=async({cacheName:e,request:t})=>{const s=this._getCacheExpiration(e);await s.updateTimestamp(t.url),await s.expireEntries()},this._config=e,this._maxAgeSeconds=e.maxAgeSeconds,this._cacheExpirations=new Map,e.purgeOnQuotaError&&(t=()=>this.deleteCacheAndMetadata(),c.add(t))}_getCacheExpiration(e){if(e===r())throw new t("expire-custom-caches-only");let s=this._cacheExpirations.get(e);return s||(s=new g(e,this._config),this._cacheExpirations.set(e,s)),s}_isResponseDateFresh(e){if(!this._maxAgeSeconds)return!0;const t=this._getDateHeaderTimestamp(e);if(null===t)return!0;return t>=Date.now()-1e3*this._maxAgeSeconds}_getDateHeaderTimestamp(e){if(!e.headers.has("date"))return null;const t=e.headers.get("date"),s=new Date(t).getTime();return isNaN(s)?null:s}async deleteCacheAndMetadata(){for(const[e,t]of this._cacheExpirations)await self.caches.delete(e),await t.delete();this._cacheExpirations=new Map}}({maxAgeSeconds:2592e3,purgeOnQuotaError:!0})]}))}(); 2 | -------------------------------------------------------------------------------- /sh/make-parts_data.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const fs = require('fs'); 4 | const path = require('path'); 5 | 6 | const BASE_DIR = process.cwd(); 7 | const PARTS_DIR = './img/ika'; 8 | const SCHEME_SRC_DIR = './src/data/_parts'; 9 | const SCHEME_DIST_DIR = './src/data/parts'; 10 | 11 | if (path.basename(BASE_DIR) !== 'ika-maker') { 12 | console.log('Execute from project root!'); 13 | process.exit(1); 14 | } 15 | 16 | console.log(`Generate ${SCHEME_DIST_DIR}.js`); 17 | 18 | /** 19 | * このオブジェクトを、存在する画像ファイルから補完する 20 | * 21 | */ 22 | const PARTS_SCHEME = require(path.resolve(BASE_DIR, SCHEME_SRC_DIR)); 23 | const cmnItemMap = { bg: 1, eyes: 1, item: 1 }; 24 | 25 | let data = { 26 | girl: _getPartsSchemebyAppType('girl'), 27 | boy: _getPartsSchemebyAppType('boy'), 28 | }; 29 | data = `module.exports = ${JSON.stringify(data, null, 2)};`; 30 | 31 | fs.writeFileSync(`${path.resolve(BASE_DIR, SCHEME_DIST_DIR)}.js`, data); 32 | console.log('Done!'); 33 | 34 | function _getPartsSchemebyAppType(appType) { 35 | let partsScheme = JSON.parse(JSON.stringify(PARTS_SCHEME)); 36 | 37 | Object.keys(partsScheme).forEach((parts) => { 38 | let appPartsType = parts in cmnItemMap ? 'cmn' : appType; 39 | let partsPath = path.resolve(PARTS_DIR, appPartsType, parts); 40 | let partsList = fs.readdirSync(partsPath); 41 | let selectType = partsScheme[parts].selectType; 42 | 43 | if (selectType === 'TYPE' || selectType === 'COLOR') { 44 | partsList 45 | .sort(_sortByFileNo) 46 | .forEach((file) => { 47 | partsScheme[parts].items.push(_getElementByFileName(file, `${PARTS_DIR}/${appPartsType}/${parts}`)); 48 | }); 49 | } 50 | 51 | if (selectType === 'TYPE_COLOR') { 52 | partsList.forEach((type) => { 53 | let colorsList = fs.readdirSync(path.resolve(PARTS_DIR, appPartsType, parts, type)); 54 | let colorItems = colorsList 55 | .sort(_sortByFileNo) 56 | .map((file) => { 57 | return _getElementByFileName(file, `${PARTS_DIR}/${appPartsType}/${parts}/${type}`); 58 | }); 59 | 60 | partsScheme[parts].items.push({ 61 | id: type|0, 62 | items: colorItems 63 | }); 64 | }); 65 | } 66 | }); 67 | 68 | return partsScheme; 69 | } 70 | 71 | function _getElementByFileName(file, path) { 72 | return { 73 | id: file.split('.')[0]|0, 74 | path: `${path}/${file}` 75 | }; 76 | } 77 | 78 | function _sortByFileNo(a, b) { 79 | return parseInt(a, 10) > parseInt(b, 10) ? 1 : -1; 80 | } 81 | -------------------------------------------------------------------------------- /sorry.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | スーパーイカメーカー 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 |

スーパーイカメーカー

18 | 19 | 20 | 21 |

に"っ!(エラー...)

22 | 23 |

24 | ココにたどり着いたイカのみなさん、
25 | どうもすみません。
26 | 予期せぬ事態が起きてしまったようです。
27 |
28 | よければ以下の順に試してみてください。 29 |

30 | 31 |
    32 |
  1. 1. お使いのブラウザのキャッシュを削除
  2. 33 |
  3. 2. しばらく時間をおいて再び試す
  4. 34 |
  5. 3. Twitterで何か起きてるか調べる
  6. 35 |
  7. 4. なかのイカに聞く
  8. 36 |
37 | 38 |
39 | 40 | 43 | 44 |
45 | 46 | 47 | -------------------------------------------------------------------------------- /src/app/component/app.svelte: -------------------------------------------------------------------------------- 1 | 33 | 34 | 35 | {title}スーパーイカメーカー 36 | 37 | 38 |
39 | 40 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /src/app/component/fix-modal.svelte: -------------------------------------------------------------------------------- 1 | 8 | 9 |
10 | 11 |

12 | ※画像を長押し or 右クリックメニューから保存できます
13 | ※ツイートする場合の画像はご自身で添付してください 14 |

15 | 19 |
20 | -------------------------------------------------------------------------------- /src/app/component/fix-modal/share-button.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 | ツイートする 8 | -------------------------------------------------------------------------------- /src/app/component/header.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 | モドル 9 |

スーパーイカメーカー

10 | dispatch("show:fixModal")} 14 | >カンセイ 15 |
16 | -------------------------------------------------------------------------------- /src/app/component/preview.svelte: -------------------------------------------------------------------------------- 1 | 4 | 5 |
{}}> 6 | 7 |
8 | -------------------------------------------------------------------------------- /src/app/component/tool-panel.svelte: -------------------------------------------------------------------------------- 1 | 17 | 18 |
19 |
20 | {#if activePartsId === "text"} 21 | 25 | {:else} 26 | {#if parts.selectType === "TYPE"} 27 | 34 | {/if} 35 | {#if parts.selectType === "COLOR"} 36 | 42 | {/if} 43 | {#if parts.selectType === "TYPE_COLOR"} 44 | 51 | {/if} 52 | {/if} 53 |
54 | 55 |
    56 | {#each tabItems as item, idx (item.order)} 57 |
  • (selectedTabIdx = idx)} 61 | > 62 |

    {item.name}

    63 |
  • 64 | {/each} 65 |
66 |
67 | -------------------------------------------------------------------------------- /src/app/component/tool-panel/color-selector.svelte: -------------------------------------------------------------------------------- 1 | 10 | 11 |
12 |

イロをえらぶ

13 |
    14 | {#each parts.items as item, idx (idx)} 15 |
  • 16 |
    dispatch("update:settings", { target, value: item.id }) } 21 | /> 22 |
  • 23 | {/each} 24 |
25 |
26 | -------------------------------------------------------------------------------- /src/app/component/tool-panel/text-form.svelte: -------------------------------------------------------------------------------- 1 | 8 | 9 |
10 |

テキストをにゅうりょく

11 |
12 | dispatch("update:settings", { target: "text", value: ev.currentTarget.value })} 17 | placeholder="入力は10文字まで" 18 | /> 19 |
20 |

21 | ※一部の文字種にはイカしたフォントが当たりません 22 |

23 |
24 | -------------------------------------------------------------------------------- /src/app/component/tool-panel/type-color-selector.svelte: -------------------------------------------------------------------------------- 1 | 13 | 14 |
15 |

タイプをえらぶ

16 |
    17 | {#each parts.items as item, idx (idx)} 18 |
  • 19 |
    dispatch("update:settings", { target: typeTarget, value: item.id }) } 23 | > 24 | 31 |
    32 |
  • 33 | {/each} 34 |
35 |

イロをえらぶ

36 |
    37 | {#each colors as item, idx (idx)} 38 |
  • 39 |
    dispatch("update:settings", { target: colorTarget, value: item.id }) } 44 | /> 45 |
  • 46 | {/each} 47 |
48 |
49 | -------------------------------------------------------------------------------- /src/app/component/tool-panel/type-selector.svelte: -------------------------------------------------------------------------------- 1 | 11 | 12 |
13 |

タイプをえらぶ

14 |
    15 | {#each parts.items as item, idx (idx)} 16 |
  • 17 |
    dispatch("update:settings", { target, value: item.id }) } 21 | > 22 | 29 |
    30 |
  • 31 | {/each} 32 |
33 |
34 | -------------------------------------------------------------------------------- /src/app/data/_parts.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** 4 | * node sh/make-parts-list.js すると、 5 | * この内容をベースに存在する画像ファイルでitemsを補完。 6 | * 7 | * そして、parts.js ができる! 8 | * 9 | */ 10 | const BODY_COLORS = { 11 | 1: 'FEECE4', 12 | 2: 'FED8C1', 13 | 3: 'FEC49F', 14 | 4: '9D6B48', 15 | 5: '79491F', 16 | 6: '4E2C07', 17 | 7: '41230F', 18 | }; 19 | 20 | const HAIR_COLORS = { 21 | 1: 'FD8424', 22 | 2: '0F4DFB', 23 | 3: 'FC1999', 24 | 4: '3DEB2B', 25 | 5: 'FED430', 26 | 6: '9D1FD8', 27 | 7: 'FFF2C4', 28 | 8: '222124', 29 | 9: 'DB0A16', 30 | 10: 'FD97B8', 31 | 11: 'D699FC', 32 | 12: 'A4F7FE', 33 | 13: '95FEE5', 34 | 14: 'C5FEB8', 35 | 15: 'FFFDA1', 36 | 16: '53A3FC', 37 | 17: 'FFFFFF', 38 | 18: 'D4D4D4', 39 | 19: 'DBEDF2', 40 | 20: 'F9DFEA' 41 | }; 42 | 43 | const EYE_COLORS = { 44 | 1: '383834', 45 | 2: '5D3C36', 46 | 3: 'C01594', 47 | 4: 'F09925', 48 | 5: 'E2D22E', 49 | 6: '159167', 50 | 7: '081EDC' 51 | }; 52 | 53 | const BG_COLORS = { 54 | 1: '000000', 55 | 2: '00212F', 56 | 3: '0C1CB0', 57 | 4: '0091FF', 58 | 5: '2CFEED', 59 | 6: '42E62A', 60 | 7: 'FEF035', 61 | 8: 'FD9126', 62 | 9: 'FD89C1', 63 | 10: 'CD0814', 64 | 11: 'ffffff', 65 | 12: 'F82287' 66 | }; 67 | 68 | module.exports = { 69 | body: { 70 | tabName: 'カラダ', 71 | tabOrder: 1, 72 | tabGroup: 'BASE', 73 | selectType: 'COLOR', 74 | items: [/* { id: 1, path: './path' } */], 75 | COLORS: BODY_COLORS 76 | }, 77 | 78 | hair: { 79 | tabName: 'カミ', 80 | tabOrder: 2, 81 | tabGroup: 'BASE', 82 | selectType: 'TYPE_COLOR', 83 | items: [], 84 | COLORS: HAIR_COLORS 85 | }, 86 | 87 | brows: { 88 | tabName: 'マユ', 89 | tabOrder: 3, 90 | tabGroup: 'FACE', 91 | selectType: 'TYPE_COLOR', 92 | items: [/* { id: 1, items: [ { id: 1, path: './path' } ] } */], 93 | COLORS: HAIR_COLORS 94 | }, 95 | 96 | eyes: { 97 | tabName: 'メ', 98 | tabOrder: 5, 99 | tabGroup: 'FACE', 100 | selectType: 'TYPE_COLOR', 101 | items: [], 102 | COLORS: EYE_COLORS 103 | }, 104 | 105 | mouth: { 106 | tabName: 'クチ', 107 | tabOrder: 6, 108 | tabGroup: 'FACE', 109 | selectType: 'TYPE', 110 | items: [], 111 | }, 112 | 113 | hat: { 114 | tabName: 'アタマ', 115 | tabOrder: 7, 116 | tabGroup: 'GEAR', 117 | selectType: 'TYPE', 118 | items: [] 119 | }, 120 | 121 | clothes: { 122 | tabName: 'フク', 123 | tabOrder: 8, 124 | tabGroup: 'GEAR', 125 | selectType: 'TYPE', 126 | items: [] 127 | }, 128 | 129 | item: { 130 | tabName: 'アイテム', 131 | tabOrder: 9, 132 | tabGroup: 'GEAR', 133 | selectType: 'TYPE', 134 | items: [] 135 | }, 136 | 137 | bg: { 138 | tabName: 'ハイケイ', 139 | tabOrder: 10, 140 | tabGroup: 'OTHERS', 141 | selectType: 'TYPE_COLOR', 142 | items: [], 143 | COLORS: BG_COLORS 144 | } 145 | }; 146 | -------------------------------------------------------------------------------- /src/app/data/const.js: -------------------------------------------------------------------------------- 1 | // export const INDEX_URL = location.origin; 2 | export const INDEX_URL = "https://leaysgur.github.io/ika-maker/"; 3 | 4 | export const IMG_SIZE = 600; 5 | 6 | export const TEXT_STYLES = { 7 | font: "80px ikamodoki", 8 | textAlign: "right", 9 | GAP: 16, 10 | COLORS: ["#000", "#fff"] 11 | }; 12 | 13 | export const DEFAULT_PARTS_SETTINGS = { 14 | girl: { 15 | bgType: 2, 16 | bgColor: 2, 17 | bodyColor: 2, 18 | mouthType: 1, 19 | browsType: 1, 20 | browsColor: 1, 21 | eyesType: 1, 22 | eyesColor: 2, 23 | clothesType: 6, 24 | hairType: 1, 25 | hairColor: 10, 26 | hatType: 21, 27 | itemType: 0, 28 | text: "" 29 | }, 30 | boy: { 31 | bgType: 2, 32 | bgColor: 1, 33 | bodyColor: 3, 34 | mouthType: 5, 35 | browsType: 1, 36 | browsColor: 2, 37 | eyesType: 3, 38 | eyesColor: 7, 39 | clothesType: 1, 40 | hairType: 1, 41 | hairColor: 2, 42 | hatType: 0, 43 | itemType: 0, 44 | text: "" 45 | } 46 | }; 47 | 48 | export const TITLE_TEXT = { 49 | girl: "イカガールをつくる | ", 50 | boy: "イカボーイをつくる | ", 51 | }; 52 | 53 | export const SHARE_URL = "https://twitter.com/intent/tweet?text="; 54 | export const SHARE_TEXT = `みんなもマイイカのアイコンつくらなイカ?\n${INDEX_URL} #スーパーイカメーカー`; 55 | -------------------------------------------------------------------------------- /src/app/domain/core.js: -------------------------------------------------------------------------------- 1 | import { 2 | DEFAULT_PARTS_SETTINGS, 3 | IMG_SIZE, 4 | TEXT_STYLES, 5 | } from "../data/const.js"; 6 | 7 | export const getTabItems = (scheme) => { 8 | const tabItems = []; 9 | 10 | for (const [partsId, parts] of Object.entries(scheme)) { 11 | tabItems.push({ 12 | id: partsId, 13 | order: parts.tabOrder, 14 | group: parts.tabGroup, 15 | name: parts.tabName 16 | }); 17 | } 18 | 19 | // これは画像がないので個別にいれる 20 | tabItems.push({ 21 | id: "text", 22 | order: 99, 23 | group: "OTHERS", 24 | name: "テキスト" 25 | }); 26 | 27 | tabItems.sort((a, b) => a.order > b.order ? 1 : -1); 28 | 29 | return tabItems; 30 | }; 31 | 32 | export const getDefaultSettings = (appType) => { 33 | return DEFAULT_PARTS_SETTINGS[appType]; 34 | }; 35 | 36 | const getImgPath = (scheme, partsId, type, color) => { 37 | const parts = scheme[partsId]; 38 | 39 | let path = ""; 40 | let types = [], colors = []; 41 | 42 | if (type && color) { 43 | types = parts.items.filter((item) => item.id === type)[0].items; 44 | colors = types.filter((item) => item.id === color); 45 | 46 | // その色は、他のタイプには存在しない場合がある 47 | // その時は、先頭のものに戻す 48 | if (colors.length !== 0) { 49 | path = colors[0].path; 50 | } else { 51 | path = types[0].path; 52 | } 53 | } 54 | else { 55 | path = parts.items.filter((item) => item.id === type)[0].path; 56 | } 57 | 58 | if (partsId === "hat" && type === 0) 59 | return null; 60 | if (partsId === "item" && type === 0) 61 | return null; 62 | 63 | return [partsId, path]; 64 | } 65 | 66 | const $canvas = document.createElement("canvas"); 67 | $canvas.width = $canvas.height = IMG_SIZE; 68 | const ctx = $canvas.getContext("2d"); 69 | 70 | export const generateFixImgSrcBySettings = async (scheme, settings) => { 71 | const imgPathArr = [ 72 | getImgPath(scheme, "bg", settings.bgType, settings.bgColor), 73 | 74 | getImgPath(scheme, "body", settings.bodyColor), 75 | 76 | getImgPath(scheme, "mouth", settings.mouthType), 77 | getImgPath(scheme, "brows", settings.browsType, settings.browsColor), 78 | getImgPath(scheme, "eyes", settings.eyesType, settings.eyesColor), 79 | 80 | getImgPath(scheme, "clothes", settings.clothesType), 81 | 82 | getImgPath(scheme, "hair", settings.hairType, settings.hairColor), 83 | 84 | getImgPath(scheme, "hat", settings.hatType), 85 | getImgPath(scheme, "item", settings.itemType), 86 | ].filter(Boolean); 87 | 88 | // 必要なすべてを読み込む 89 | const imgRefs = {}; 90 | await Promise.all(imgPathArr.map(([partsId, path]) => { 91 | return new Promise((resolve, reject) => { 92 | const img = new Image(); 93 | img.src = path; 94 | img.onload = () => { 95 | imgRefs[partsId] = img; 96 | resolve(); 97 | }; 98 | img.onerror = img.onabort = reject; 99 | }); 100 | })); 101 | 102 | // まず消して 103 | ctx.clearRect(0, 0, IMG_SIZE, IMG_SIZE); 104 | 105 | // 順番に書き込む 106 | for (const partsId of [ 107 | "bg", 108 | "body", 109 | "mouth", 110 | "brows", 111 | "eyes", 112 | "clothes", 113 | "hair", 114 | "hat", 115 | "item", 116 | ]) { 117 | const layer = imgRefs[partsId]; 118 | layer && ctx.drawImage(layer, 0, 0, IMG_SIZE, IMG_SIZE); 119 | } 120 | 121 | // 文字は別途書き込む 122 | const text = settings.text; 123 | if (text.trim().length > 0) { 124 | ctx.font = TEXT_STYLES.font; 125 | ctx.textAlign = TEXT_STYLES.textAlign; 126 | 127 | // 白いフクに白い文字だと見えないので、 128 | ctx.fillStyle = TEXT_STYLES.COLORS[0]; 129 | ctx.fillText( 130 | text, 131 | IMG_SIZE - TEXT_STYLES.GAP + 2, // x 132 | IMG_SIZE - TEXT_STYLES.GAP + 2, // y 133 | IMG_SIZE - TEXT_STYLES.GAP * 2 // maxWidth 134 | ); 135 | // 2重に書いて影をつける 136 | ctx.fillStyle = TEXT_STYLES.COLORS[1]; 137 | ctx.fillText( 138 | text, 139 | IMG_SIZE - TEXT_STYLES.GAP, // x 140 | IMG_SIZE - TEXT_STYLES.GAP, // y 141 | IMG_SIZE - TEXT_STYLES.GAP * 2 // maxWidth 142 | ); 143 | } 144 | 145 | return $canvas.toDataURL(); 146 | } 147 | -------------------------------------------------------------------------------- /src/app/main.js: -------------------------------------------------------------------------------- 1 | import App from "./component/app.svelte"; 2 | import { INDEX_URL } from "./data/const.js"; 3 | 4 | (() => { 5 | if ( 6 | location.hostname !== "localhost" && 7 | document.referrer !== INDEX_URL 8 | ) { 9 | location.replace(INDEX_URL); 10 | return; 11 | } 12 | 13 | const $app = document.getElementById("jsApp"); 14 | const appType = $app.getAttribute("data-app-type"); 15 | 16 | if (appType !== "boy" && appType !== "girl") 17 | throw new Error(`Undefined appType: ${appType}`); 18 | 19 | window.addEventListener("error", () => { 20 | location.href = "/sorry.html"; 21 | }, false); 22 | 23 | $app.innerHTML = ""; 24 | new App({ 25 | target: $app, 26 | props: { appType }, 27 | }); 28 | 29 | })(); 30 | -------------------------------------------------------------------------------- /src/entry.js: -------------------------------------------------------------------------------- 1 | (async () => { 2 | const $agree = document.getElementById('jsAgree'); 3 | const $btns = document.getElementsByClassName('jsExecBtn'); 4 | 5 | const onClickBtn = (ev) => { 6 | const agreed = $agree.checked; 7 | 8 | if (!agreed) { 9 | ev.preventDefault(); 10 | alert("注意事項に同意してね"); 11 | return; 12 | } 13 | }; 14 | 15 | for (const $el of $btns) { 16 | $el.onclick = onClickBtn; 17 | } 18 | })(); 19 | -------------------------------------------------------------------------------- /src/style/components/button.css: -------------------------------------------------------------------------------- 1 | .button-wrap { 2 | margin: 8px; 3 | 4 | .button { 5 | display: block; 6 | margin: 0 auto; 7 | } 8 | 9 | .button + .button { 10 | margin-top: 8px; 11 | } 12 | 13 | &--twins { 14 | .button { 15 | display: inline-block; 16 | width: 45%; 17 | } 18 | } 19 | } 20 | 21 | 22 | .button { 23 | display: inline; 24 | padding: 4px 8px; 25 | min-width: 64px; 26 | max-width: 200px; 27 | text-decoration: none; 28 | text-align: center; 29 | color: inherit; 30 | background-color: #FF6E00; 31 | cursor: pointer; 32 | 33 | &--negative { 34 | background-color: rgba(0,0,0,0); 35 | border: 1px solid #FF6E00; 36 | } 37 | 38 | &--tweet { 39 | background-color: #50ABF1; 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /src/style/components/fix-modal.css: -------------------------------------------------------------------------------- 1 | .fix-modal { 2 | position: absolute; 3 | top: 0; 4 | left: 0; 5 | right: 0; 6 | bottom: 0; 7 | margin: auto; 8 | z-index: 1; 9 | transition: opacity .75s cubic-bezier(0.6, -0.28, 0.74, 0.05); 10 | opacity: 0; 11 | background-color: rgba(0, 0, 0, .75); 12 | text-align: center; 13 | pointer-events: none; 14 | 15 | &.is-show { 16 | opacity: 1; 17 | pointer-events: auto; 18 | } 19 | 20 | .ika { 21 | margin-top: 8px; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/style/components/header.css: -------------------------------------------------------------------------------- 1 | .header { 2 | display: flex; 3 | justify-content: space-between; 4 | align-items: center; 5 | height: 48px; 6 | padding: 8px; 7 | } 8 | 9 | .header__title { 10 | font-size: 1rem; 11 | } 12 | -------------------------------------------------------------------------------- /src/style/components/ika.css: -------------------------------------------------------------------------------- 1 | .ika { 2 | text-align: center; 3 | user-select: none; 4 | } 5 | 6 | .ika--img { 7 | max-width: 600px; 8 | } 9 | -------------------------------------------------------------------------------- /src/style/components/index.css: -------------------------------------------------------------------------------- 1 | .index-wrap { 2 | margin: 0 auto; 3 | padding: 32px 16px; 4 | max-width: 800px; 5 | } 6 | 7 | .index-center { 8 | text-align: center; 9 | } 10 | 11 | .index-table { 12 | width: 280px; 13 | margin: 0 auto; 14 | 15 | a { 16 | color: #fff; 17 | font-size: .75rem; 18 | } 19 | 20 | img, 21 | td { vertical-align: middle; } 22 | } 23 | 24 | .index-table, 25 | .index-p, 26 | .index-list { 27 | font-size: .8rem; 28 | margin-bottom: 8px; 29 | } 30 | 31 | .index-spacer { 32 | border: none; 33 | height: 16px; 34 | } 35 | 36 | .index-link { 37 | color: #FF6E00; 38 | } 39 | 40 | .index-img { 41 | outline: 2px solid #FF6E00; 42 | } 43 | -------------------------------------------------------------------------------- /src/style/components/loading.css: -------------------------------------------------------------------------------- 1 | .loading { 2 | position: relative; 3 | } 4 | 5 | .loading--content { 6 | position: absolute; 7 | top: 0; 8 | left: 0; 9 | right: 0; 10 | bottom: 0; 11 | margin: auto; 12 | width: 138px; 13 | padding-top: 20%; 14 | text-align: center; 15 | } 16 | -------------------------------------------------------------------------------- /src/style/components/memo.css: -------------------------------------------------------------------------------- 1 | .memo { 2 | margin: 0 8px 16px; 3 | font-size: .6rem; 4 | } 5 | -------------------------------------------------------------------------------- /src/style/components/tab.css: -------------------------------------------------------------------------------- 1 | .tab-header { 2 | overflow-x: auto; 3 | -webkit-overflow-scrolling: touch; 4 | display: flex; 5 | align-items: center; 6 | text-align: center; 7 | } 8 | 9 | .tab-header__item { 10 | height: 40px; 11 | min-width: 92px; 12 | padding: 4px 8px; 13 | flex: 1 1 auto; 14 | cursor: pointer; 15 | opacity: .5; 16 | 17 | &.is-selected { 18 | border-width: 1px; 19 | border-style: solid; 20 | opacity: 1; 21 | } 22 | } 23 | 24 | .tab-header__item--type-BASE { 25 | color: #FD2A96; 26 | } 27 | .tab-header__item--type-FACE { 28 | color: #CA00DF; 29 | } 30 | .tab-header__item--type-GEAR { 31 | color: #8CB800; 32 | } 33 | .tab-header__item--type-OTHERS { 34 | color: #0021FE; 35 | } 36 | 37 | .tab-body { 38 | margin-bottom: 16px; 39 | } 40 | -------------------------------------------------------------------------------- /src/style/components/tool-panel.css: -------------------------------------------------------------------------------- 1 | .tool-panel { 2 | position: fixed; 3 | left: 0; 4 | right: 0; 5 | bottom: 8px; 6 | padding-top: 8px; 7 | padding-bottom: 16px; 8 | background-color: rgba(0, 0, 0, .5); 9 | } 10 | 11 | .parts-selector-header { 12 | text-align: center; 13 | padding-bottom: 8px; 14 | border-bottom: 1px dashed #fff; 15 | margin-bottom: 12px; 16 | } 17 | 18 | .parts-selector-items { 19 | overflow-x: auto; 20 | -webkit-overflow-scrolling: touch; 21 | display: flex; 22 | align-items: center; 23 | margin-bottom: 8px; 24 | } 25 | 26 | .parts-selector-items--item { 27 | min-width: 64px; 28 | overflow: hidden; 29 | } 30 | 31 | .parts-selector-items--text { 32 | flex: 1 1 auto; 33 | margin: 0 32px; 34 | font-size: 1.1rem; 35 | line-height: 1.5rem; 36 | text-align: center; 37 | } 38 | 39 | .type-selector, 40 | .color-selector { 41 | height: 40px; 42 | margin: auto; 43 | cursor: pointer; 44 | } 45 | 46 | .type-selector { 47 | width: 80px; 48 | text-align: center; 49 | overflow: hidden; 50 | /* XXX: なんでこんなことを・・ */ 51 | transform: translate3d(0,0,0); 52 | 53 | &.is-selected { 54 | animation: type-selected .25s 1 alternate; 55 | } 56 | } 57 | 58 | .parts-selector--app-boy, 59 | .parts-selector--app-girl { 60 | .type-selector { 61 | &--type-eyes > img { 62 | transform: scale(3); 63 | transform-origin: center 15px; 64 | } 65 | 66 | &--type-hat > img { 67 | transform: scale(1.5); 68 | transform-origin: top; 69 | } 70 | 71 | &--type-clothes > img { 72 | transform: scale(2); 73 | transform-origin: bottom; 74 | } 75 | } 76 | } 77 | 78 | .parts-selector--app-boy { 79 | .type-selector { 80 | &--type-brows > img { 81 | transform: scale(4); 82 | transform-origin: 16px 10px; 83 | } 84 | 85 | &--type-mouth > img { 86 | transform: scale(6); 87 | transform-origin: center; 88 | } 89 | 90 | &--type-hair > img { 91 | transform: scale(2); 92 | transform-origin: top right; 93 | } 94 | } 95 | } 96 | 97 | .parts-selector--app-girl { 98 | .type-selector { 99 | &--type-brows > img { 100 | transform: scale(5); 101 | transform-origin: 16px 10px; 102 | } 103 | 104 | &--type-mouth > img { 105 | transform: scale(8); 106 | transform-origin: center; 107 | } 108 | } 109 | } 110 | 111 | .color-selector { 112 | width: 40px; 113 | border-radius: 50%; 114 | 115 | &.is-selected { 116 | animation: color-selected .25s 1 alternate; 117 | } 118 | } 119 | -------------------------------------------------------------------------------- /src/style/style.css: -------------------------------------------------------------------------------- 1 | @import "./utils/default"; 2 | @import "./utils/util"; 3 | 4 | @import "./components/index"; 5 | 6 | @import "./components/loading"; 7 | @import "./components/button"; 8 | @import "./components/memo"; 9 | @import "./components/header"; 10 | @import "./components/ika"; 11 | @import "./components/tool-panel"; 12 | @import "./components/tab"; 13 | @import "./components/fix-modal"; 14 | -------------------------------------------------------------------------------- /src/style/utils/default.css: -------------------------------------------------------------------------------- 1 | * { 2 | box-sizing: border-box; 3 | } 4 | 5 | html, body { 6 | margin: 0; 7 | padding: 0; 8 | background-color: #000; 9 | color: #fff; 10 | font-size: 18px; 11 | } 12 | 13 | ol, 14 | ul { 15 | margin: 0; 16 | padding: 0; 17 | list-style: none; 18 | } 19 | 20 | h1, h2, h3 { 21 | margin: 0; 22 | margin-bottom: 8px; 23 | } 24 | 25 | h1 { 26 | font-size: 1.5rem; 27 | } 28 | 29 | h2 { 30 | font-size: 1.2rem; 31 | } 32 | 33 | h3 { 34 | font-size: 1.0rem; 35 | } 36 | -------------------------------------------------------------------------------- /src/style/utils/util.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'ikamodoki'; 3 | src: url('../font/ikamodoki1_0.ttf') format('truetype'); 4 | } 5 | 6 | .ft-ika { 7 | font-family: 'ikamodoki'; 8 | vertical-align: text-bottom; 9 | } 10 | 11 | .ft-en { 12 | font-family: Helvetica, Arial, sans-serif; 13 | } 14 | 15 | .ft-warn { 16 | color: #FED430; 17 | } 18 | 19 | 20 | @keyframes color-selected { 21 | from { transform: scale(.5); } 22 | to { transform: scale(1); } 23 | } 24 | 25 | @keyframes type-selected { 26 | from { transform: rotateZ(15deg); } 27 | to { transform: rotateZ(0deg); } 28 | } 29 | 30 | 31 | .is-selected { 32 | pointer-events: none; 33 | } 34 | 35 | .is-hidden { 36 | display: none; 37 | } 38 | -------------------------------------------------------------------------------- /src/sw.js: -------------------------------------------------------------------------------- 1 | import { CacheableResponsePlugin } from "workbox-cacheable-response"; 2 | import { CacheFirst } from "workbox-strategies"; 3 | import { ExpirationPlugin } from "workbox-expiration"; 4 | import { registerRoute } from "workbox-routing"; 5 | 6 | registerRoute( 7 | ({ request }) => request.destination === "image", 8 | new CacheFirst({ 9 | cacheName: "images", 10 | plugins: [ 11 | new CacheableResponsePlugin({ 12 | statuses: [0, 200], 13 | }), 14 | new ExpirationPlugin({ 15 | maxAgeSeconds: 30 * 24 * 60 * 60, // 30 Days 16 | purgeOnQuotaError: true, 17 | }), 18 | ], 19 | }), 20 | ); 21 | --------------------------------------------------------------------------------