- ライブスキルを使うときには、ユニット全員のステータスが影響する。
- レベルを上げるとステータスもスキルも強くなるぞ。
- レベルを上げるのに必要な経験値はどんどん増える。1人を上げるよりも平均的に上げよう。
- 特訓すると、より強力なスキルが解放されていく!特訓2回目の バフスキル、4回目のライブスキルをうまく覚えさせよう。
- 「意地っ張りサンセット 西条樹里」「メロウビート・スローダウン 三峰結華」など、sSR でも破格に強いカードはある。
| // Place your key bindings in this file to overwrite the defaults | |
| [ | |
| { | |
| "key": "alt+cmd+p", | |
| "command": "workbench.action.focusActiveEditorGroup", | |
| "when": "terminalFocus" | |
| }, | |
| { | |
| "key": "alt+cmd+[", | |
| "command": "workbench.action.terminal.focusNextPane", |
| <link rel="manifest" href="/manifest.json"> |
| { | |
| "name": "pixiv chatstory", | |
| "short_name": "chatstory", | |
| "start_url": ".", | |
| "display": "standalone", | |
| "orientation": "portrait", | |
| "icons": [{ | |
| "src": "assets/imgs/logo.png", | |
| "sizes": "512x512", | |
| "type": "image/png" |
| if ('serviceWorker' in navigator) { | |
| navigator.serviceWorker.register('/sw.js') | |
| .then(function(registration) { | |
| // 登録成功時の処理 | |
| }).catch(function(err) { | |
| // 登録失敗時の処理 | |
| }); | |
| } |
| self.addEventListener('install', (event) => { | |
| // install時に行われる処理… | |
| }); | |
| self.addEventListener('fetch', (event) => { | |
| // fetch時に行われる処理… | |
| }); |