Added in some base stuff for bridal gears.

updated translations.
这个提交包含在:
fire bingo 2018-06-01 20:20:38 -07:00
父节点 5d51d0f2a9
当前提交 d086fc2f71
共有 2 个文件被更改,包括 28 次插入3 次删除

查看文件

@ -681,7 +681,6 @@ class Player {
break;
case "getitem01": //103400252
break;
case "skillmovie": //103500341
break;
case "arcanoise_appearance02": { //103500341
@ -724,7 +723,6 @@ class Player {
break;
}
case "noise_disappearance03": { //103500552
debugger;
this.waitTime = Number(cur.Arg1) * 1000;
let c1 = this.currentCharacters['キャラ右'] || this.currentCharacters['キャラ右02'];
if(c1) {
@ -745,6 +743,21 @@ class Player {
case "noise_disappearance11": //103500341
this.waitTime = Number(cur.Arg1) * 1000;
break;
case "enemy_disappearance01": //312000112
processTryRemoveChar(cur.Arg1);
break;
case "enemy_disappearance02": //312000111
processTryRemoveChar(cur.Arg1);
processTryRemoveChar(cur.Arg2);
break;
case "darkaura01": //312000111
break;
case "somethingnew_appearance01": //312000111
break;
case "unhappyseed_appearance01"://312000112
break;
case "unhappyseed_appearance02": //312000111
break;
case "continue01":
break;
}
@ -930,6 +943,18 @@ class Player {
}
}
processTryRemoveChar(character) {
let curChar = undefined;
for(let c of Object.keys(this.currentCharacters)) {
if(!this.currentCharacters[c]) { continue; }
if(this.currentCharacters[c].charName === character) {
curChar = this.currentCharacters[c];
}
}
if(!curChar)
return;
}
//Checks if the current command is trying to put text on the screen.
checkPutText(cur) {
if(this.playingVoice) {

@ -1 +1 @@
Subproject commit 33001c747cc5bad3ce398f72058088fad34124be
Subproject commit 1f88521db3728137541cde68c0389562cb390fc6