Compare commits
2 commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 96ee4d38b4 | |||
| f4737dd84c |
10 changed files with 12 additions and 12 deletions
17
.gitignore
vendored
17
.gitignore
vendored
|
|
@ -41,13 +41,10 @@ scene.dat
|
|||
BSXScript_*
|
||||
|
||||
# Images
|
||||
!Layout_Command.rpgmvp
|
||||
!titles10410_kakou.rpgmvp
|
||||
!titles10410_kakou2.rpgmvp
|
||||
!titles10410_kakou3.rpgmvp
|
||||
!titles10410_kakou4.rpgmvp
|
||||
!titles10410_kakou5.rpgmvp
|
||||
!titles10410_kakou6.rpgmvp
|
||||
!titles10410_kakou7.rpgmvp
|
||||
!title_ev.rpgmvp
|
||||
!title.rpgmvp
|
||||
!901CutinPussyServiceCompleted.png_
|
||||
!Help01_Life.png_
|
||||
!Help02_ProstituteLevelUp.png_
|
||||
!Help03_EnterDemhuman.png_
|
||||
!Help04_ProstituteLevelUpPoint.png_
|
||||
!state_description.png_
|
||||
!TitleImage.png_
|
||||
|
|
|
|||
|
|
@ -143,7 +143,7 @@
|
|||
"身体",
|
||||
"装飾品"
|
||||
],
|
||||
"gameTitle": "監獄勇者 version 1.1.0",
|
||||
"gameTitle": "監獄勇者 version 1.1.1",
|
||||
"gameoverMe": {
|
||||
"name": "Gameover1",
|
||||
"pan": 0,
|
||||
|
|
|
|||
Binary file not shown.
BIN
img/pictures/600Help/Help01_Life.png_
Normal file
BIN
img/pictures/600Help/Help01_Life.png_
Normal file
Binary file not shown.
BIN
img/pictures/600Help/Help02_ProstituteLevelUp.png_
Normal file
BIN
img/pictures/600Help/Help02_ProstituteLevelUp.png_
Normal file
Binary file not shown.
BIN
img/pictures/600Help/Help03_EnterDemhuman.png_
Normal file
BIN
img/pictures/600Help/Help03_EnterDemhuman.png_
Normal file
Binary file not shown.
BIN
img/pictures/600Help/Help04_ProstituteLevelUpPoint.png_
Normal file
BIN
img/pictures/600Help/Help04_ProstituteLevelUpPoint.png_
Normal file
Binary file not shown.
BIN
img/system/battle_state/state_description.png_
Normal file
BIN
img/system/battle_state/state_description.png_
Normal file
Binary file not shown.
BIN
img/titles1/PrisonBrave/TitleImage.png_
Normal file
BIN
img/titles1/PrisonBrave/TitleImage.png_
Normal file
Binary file not shown.
|
|
@ -127,6 +127,8 @@
|
|||
// 初回イベント未指定の場合は飛ばす
|
||||
break;
|
||||
}
|
||||
// 次の初回イベントはまだ見てないので
|
||||
data.firstPlayed = false;
|
||||
}
|
||||
|
||||
// indexが4以上になることを抑止
|
||||
|
|
@ -144,9 +146,10 @@
|
|||
} else {
|
||||
// 初回イベントの取りこぼしがあるのでそれを流す
|
||||
data.firstPlayed = true;
|
||||
const playedIndex = Math.min(index + 1, 3); // 間違ってもLv.4以上の箇所を見ないように
|
||||
return {
|
||||
data: data,
|
||||
event: events[index + 1].firstEvent,
|
||||
event: events[playedIndex].firstEvent,
|
||||
level: index,
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue