mirror of
https://github.com/unanmed/HumanBreak.git
synced 2025-07-25 00:01:47 +08:00
Compare commits
2 Commits
a058dfda4a
...
f64cfb2c14
Author | SHA1 | Date | |
---|---|---|---|
f64cfb2c14 | |||
1ef551799b |
@ -706,7 +706,7 @@ var comment_c456ea59_6018_45ef_8bcc_211a24c627dc = {
|
|||||||
"_type": "material",
|
"_type": "material",
|
||||||
"_directory": "./project/bgms/",
|
"_directory": "./project/bgms/",
|
||||||
"_transform": (function (one) {
|
"_transform": (function (one) {
|
||||||
if (one.endsWith('.mp3') || one.endsWith('.ogg') || one.endsWith('.wav') || one.endsWith('.m4a') || one.endsWith('.flac'))
|
if (one.endsWith('.mp3') || one.endsWith('.ogg') || one.endsWith('.wav') || one.endsWith('.m4a') || one.endsWith('.flac') || one.endsWith('.opus'))
|
||||||
return one;
|
return one;
|
||||||
return null;
|
return null;
|
||||||
}).toString(),
|
}).toString(),
|
||||||
|
@ -154,7 +154,7 @@ var data_comment_c456ea59_6018_45ef_8bcc_211a24c627dc = {
|
|||||||
"_type": "material",
|
"_type": "material",
|
||||||
"_directory": "./project/bgms/",
|
"_directory": "./project/bgms/",
|
||||||
"_transform": (function (one) {
|
"_transform": (function (one) {
|
||||||
if (one.endsWith('.mp3') || one.endsWith('.ogg') || one.endsWith('.wav') || one.endsWith('.m4a') || one.endsWith('.flac'))
|
if (one.endsWith('.mp3') || one.endsWith('.ogg') || one.endsWith('.wav') || one.endsWith('.m4a') || one.endsWith('.flac') || one.endsWith('.opus'))
|
||||||
return one;
|
return one;
|
||||||
return null;
|
return null;
|
||||||
}).toString(),
|
}).toString(),
|
||||||
|
@ -526,17 +526,20 @@ control.prototype.setHeroMoveInterval = function (callback) {
|
|||||||
// render.move(true);
|
// render.move(true);
|
||||||
// });
|
// });
|
||||||
|
|
||||||
core.interval.heroMoveInterval = window.setInterval(function () {
|
core.interval.heroMoveInterval = window.setInterval(
|
||||||
// render.offset += toAdd * 4;
|
function () {
|
||||||
core.status.heroMoving += toAdd;
|
// render.offset += toAdd * 4;
|
||||||
if (core.status.heroMoving >= 8) {
|
core.status.heroMoving += toAdd;
|
||||||
clearInterval(core.interval.heroMoveInterval);
|
if (core.status.heroMoving >= 8) {
|
||||||
core.status.heroMoving = 0;
|
clearInterval(core.interval.heroMoveInterval);
|
||||||
// render.offset = 0;
|
core.status.heroMoving = 0;
|
||||||
// render.move(false);
|
// render.offset = 0;
|
||||||
if (callback) callback();
|
// render.move(false);
|
||||||
}
|
if (callback) callback();
|
||||||
}, ((core.values.moveSpeed / 8) * toAdd) / core.status.replay.speed);
|
}
|
||||||
|
},
|
||||||
|
((core.values.moveSpeed / 8) * toAdd) / core.status.replay.speed
|
||||||
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
////// 每移动一格后执行的事件 //////
|
////// 每移动一格后执行的事件 //////
|
||||||
@ -2988,25 +2991,23 @@ control.prototype.screenFlash = function (
|
|||||||
// todo: deprecate playBgm, pauseBgm, resumeBgm, triggerBgm
|
// todo: deprecate playBgm, pauseBgm, resumeBgm, triggerBgm
|
||||||
////// 播放背景音乐 //////
|
////// 播放背景音乐 //////
|
||||||
control.prototype.playBgm = function (bgm, startTime) {
|
control.prototype.playBgm = function (bgm, startTime) {
|
||||||
bgm = core.getMappedName(bgm);
|
// see src/module/fallback/audio.ts
|
||||||
if (main.mode !== 'play') return;
|
|
||||||
Mota.require('var', 'bgm').changeTo(bgm, startTime);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
////// 暂停背景音乐的播放 //////
|
////// 暂停背景音乐的播放 //////
|
||||||
control.prototype.pauseBgm = function () {
|
control.prototype.pauseBgm = function () {
|
||||||
if (main.mode !== 'play') return;
|
// see src/module/fallback/audio.ts
|
||||||
Mota.require('var', 'bgm').pause();
|
|
||||||
};
|
};
|
||||||
|
|
||||||
////// 恢复背景音乐的播放 //////
|
////// 恢复背景音乐的播放 //////
|
||||||
control.prototype.resumeBgm = function (resumeTime) {
|
control.prototype.resumeBgm = function (resumeTime) {
|
||||||
if (main.mode !== 'play') return;
|
// see src/module/fallback/audio.ts
|
||||||
Mota.require('var', 'bgm').resume();
|
|
||||||
};
|
};
|
||||||
|
|
||||||
////// 更改背景音乐的播放 //////
|
////// 更改背景音乐的播放 //////
|
||||||
control.prototype.triggerBgm = function () {
|
control.prototype.triggerBgm = function () {
|
||||||
|
// see src/module/fallback/audio.ts
|
||||||
|
return;
|
||||||
if (main.mode !== 'play') return;
|
if (main.mode !== 'play') return;
|
||||||
const bgm = Mota.require('var', 'bgm');
|
const bgm = Mota.require('var', 'bgm');
|
||||||
bgm.disable = !bgm.disable;
|
bgm.disable = !bgm.disable;
|
||||||
@ -3036,6 +3037,8 @@ control.prototype.getPlayingSounds = function (name) {
|
|||||||
|
|
||||||
////// 检查bgm状态 //////
|
////// 检查bgm状态 //////
|
||||||
control.prototype.checkBgm = function () {
|
control.prototype.checkBgm = function () {
|
||||||
|
// see src/module/fallback/audio.ts
|
||||||
|
return;
|
||||||
const bgm = Mota.require('var', 'bgm');
|
const bgm = Mota.require('var', 'bgm');
|
||||||
if (bgm.disable) {
|
if (bgm.disable) {
|
||||||
bgm.pause();
|
bgm.pause();
|
||||||
|
@ -696,12 +696,12 @@ events.prototype.getItem = function (id, num, x, y, isGentleClick, callback) {
|
|||||||
(id.endsWith('Key')
|
(id.endsWith('Key')
|
||||||
? '(钥匙类道具,遇到对应的门时自动打开)'
|
? '(钥匙类道具,遇到对应的门时自动打开)'
|
||||||
: itemCls == 'tools'
|
: itemCls == 'tools'
|
||||||
? '(消耗类道具,请按T在道具栏使用)'
|
? '(消耗类道具,请按T在道具栏使用)'
|
||||||
: itemCls == 'constants'
|
: itemCls == 'constants'
|
||||||
? '(永久类道具,请按T在道具栏使用)'
|
? '(永久类道具,请按T在道具栏使用)'
|
||||||
: itemCls == 'equips'
|
: itemCls == 'equips'
|
||||||
? '(装备类道具,请按Q在装备栏进行装备)'
|
? '(装备类道具,请按Q在装备栏进行装备)'
|
||||||
: '')
|
: '')
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
itemHint.push(id);
|
itemHint.push(id);
|
||||||
|
Binary file not shown.
BIN
public/project/bgms/beforeBoss.opus
Normal file
BIN
public/project/bgms/beforeBoss.opus
Normal file
Binary file not shown.
Binary file not shown.
BIN
public/project/bgms/beforeNight.opus
Normal file
BIN
public/project/bgms/beforeNight.opus
Normal file
Binary file not shown.
Binary file not shown.
BIN
public/project/bgms/cave.opus
Normal file
BIN
public/project/bgms/cave.opus
Normal file
Binary file not shown.
Binary file not shown.
BIN
public/project/bgms/chapter2ED.opus
Normal file
BIN
public/project/bgms/chapter2ED.opus
Normal file
Binary file not shown.
Binary file not shown.
BIN
public/project/bgms/escape.opus
Normal file
BIN
public/project/bgms/escape.opus
Normal file
Binary file not shown.
Binary file not shown.
BIN
public/project/bgms/escape2.opus
Normal file
BIN
public/project/bgms/escape2.opus
Normal file
Binary file not shown.
Binary file not shown.
BIN
public/project/bgms/grass.opus
Normal file
BIN
public/project/bgms/grass.opus
Normal file
Binary file not shown.
Binary file not shown.
BIN
public/project/bgms/mount.opus
Normal file
BIN
public/project/bgms/mount.opus
Normal file
Binary file not shown.
Binary file not shown.
BIN
public/project/bgms/night.opus
Normal file
BIN
public/project/bgms/night.opus
Normal file
Binary file not shown.
Binary file not shown.
BIN
public/project/bgms/palaceCenter.opus
Normal file
BIN
public/project/bgms/palaceCenter.opus
Normal file
Binary file not shown.
Binary file not shown.
BIN
public/project/bgms/palaceNorth.opus
Normal file
BIN
public/project/bgms/palaceNorth.opus
Normal file
Binary file not shown.
Binary file not shown.
BIN
public/project/bgms/palaceSouth.opus
Normal file
BIN
public/project/bgms/palaceSouth.opus
Normal file
Binary file not shown.
Binary file not shown.
BIN
public/project/bgms/plot1.opus
Normal file
BIN
public/project/bgms/plot1.opus
Normal file
Binary file not shown.
Binary file not shown.
BIN
public/project/bgms/road.opus
Normal file
BIN
public/project/bgms/road.opus
Normal file
Binary file not shown.
Binary file not shown.
BIN
public/project/bgms/title.opus
Normal file
BIN
public/project/bgms/title.opus
Normal file
Binary file not shown.
Binary file not shown.
BIN
public/project/bgms/tower.opus
Normal file
BIN
public/project/bgms/tower.opus
Normal file
Binary file not shown.
Binary file not shown.
BIN
public/project/bgms/towerBoss.opus
Normal file
BIN
public/project/bgms/towerBoss.opus
Normal file
Binary file not shown.
Binary file not shown.
BIN
public/project/bgms/towerBoss2.opus
Normal file
BIN
public/project/bgms/towerBoss2.opus
Normal file
Binary file not shown.
Binary file not shown.
BIN
public/project/bgms/towerBoss3.opus
Normal file
BIN
public/project/bgms/towerBoss3.opus
Normal file
Binary file not shown.
Binary file not shown.
BIN
public/project/bgms/winter.opus
Normal file
BIN
public/project/bgms/winter.opus
Normal file
Binary file not shown.
Binary file not shown.
BIN
public/project/bgms/winterTown.opus
Normal file
BIN
public/project/bgms/winterTown.opus
Normal file
Binary file not shown.
@ -194,25 +194,26 @@ var data_a1e2fb4a_e986_4524_b0da_9b7ba7c0874d =
|
|||||||
],
|
],
|
||||||
"bgms": [
|
"bgms": [
|
||||||
"beforeBoss.opus",
|
"beforeBoss.opus",
|
||||||
"cave.mp3",
|
"beforeNight.opus",
|
||||||
"escape.mp3",
|
"cave.opus",
|
||||||
"escape2.mp3",
|
"chapter2ED.opus",
|
||||||
"grass.mp3",
|
"escape.opus",
|
||||||
|
"escape2.opus",
|
||||||
|
"grass.opus",
|
||||||
"mount.opus",
|
"mount.opus",
|
||||||
"night.mp3",
|
"night.opus",
|
||||||
"output6.ogg",
|
"palaceCenter.opus",
|
||||||
"palaceCenter.mp3",
|
"palaceNorth.opus",
|
||||||
"palaceNorth.mp3",
|
"palaceSouth.opus",
|
||||||
"palaceSouth.mp3",
|
"plot1.opus",
|
||||||
"plot1.mp3",
|
"road.opus",
|
||||||
"road.mp3",
|
"title.opus",
|
||||||
"title.mp3",
|
"tower.opus",
|
||||||
"tower.mp3",
|
"towerBoss.opus",
|
||||||
"towerBoss.mp3",
|
"towerBoss2.opus",
|
||||||
"towerBoss2.mp3",
|
"towerBoss3.opus",
|
||||||
"towerBoss3.mp3",
|
"winter.opus",
|
||||||
"winter.mp3",
|
"winterTown.opus"
|
||||||
"winterTown.mp3"
|
|
||||||
],
|
],
|
||||||
"sounds": [
|
"sounds": [
|
||||||
"008-System08.ogg",
|
"008-System08.ogg",
|
||||||
@ -356,7 +357,7 @@ var data_a1e2fb4a_e986_4524_b0da_9b7ba7c0874d =
|
|||||||
"首饰",
|
"首饰",
|
||||||
"首饰"
|
"首饰"
|
||||||
],
|
],
|
||||||
"startBgm": "title.mp3",
|
"startBgm": "title.opus",
|
||||||
"styles": {
|
"styles": {
|
||||||
"floorChangingStyle": " ",
|
"floorChangingStyle": " ",
|
||||||
"statusBarColor": [
|
"statusBarColor": [
|
||||||
|
@ -120,7 +120,7 @@ main.floors.MT0=
|
|||||||
"width": 15,
|
"width": 15,
|
||||||
"height": 15,
|
"height": 15,
|
||||||
"autoEvent": {},
|
"autoEvent": {},
|
||||||
"bgm": "cave.mp3",
|
"bgm": "cave.opus",
|
||||||
"beforeBattle": {},
|
"beforeBattle": {},
|
||||||
"bg2map": [
|
"bg2map": [
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT1=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 1,
|
"ratio": 1,
|
||||||
"defaultGround": "T331",
|
"defaultGround": "T331",
|
||||||
"bgm": "cave.mp3",
|
"bgm": "cave.opus",
|
||||||
"firstArrive": [
|
"firstArrive": [
|
||||||
"\t[原始人]不知为何,最近这些蝙蝠的攻击性变得很强,而且还不知道从哪冒出来了这些黏糊糊的东西。",
|
"\t[原始人]不知为何,最近这些蝙蝠的攻击性变得很强,而且还不知道从哪冒出来了这些黏糊糊的东西。",
|
||||||
"\t[原始人]之前捡到了一个来历不明的方块状东西(怪物手册),好像能打开,不知道里面有没有写什么",
|
"\t[原始人]之前捡到了一个来历不明的方块状东西(怪物手册),好像能打开,不知道里面有没有写什么",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT10=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 1,
|
"ratio": 1,
|
||||||
"defaultGround": "grass",
|
"defaultGround": "grass",
|
||||||
"bgm": "grass.mp3",
|
"bgm": "grass.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT11=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 1,
|
"ratio": 1,
|
||||||
"defaultGround": "grass",
|
"defaultGround": "grass",
|
||||||
"bgm": "grass.mp3",
|
"bgm": "grass.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT12=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 1,
|
"ratio": 1,
|
||||||
"defaultGround": "grass",
|
"defaultGround": "grass",
|
||||||
"bgm": "grass.mp3",
|
"bgm": "grass.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT13=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 1,
|
"ratio": 1,
|
||||||
"defaultGround": "grass",
|
"defaultGround": "grass",
|
||||||
"bgm": "mount.mp3",
|
"bgm": "mount.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT14=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 1,
|
"ratio": 1,
|
||||||
"defaultGround": "T331",
|
"defaultGround": "T331",
|
||||||
"bgm": "mount.mp3",
|
"bgm": "mount.opus",
|
||||||
"firstArrive": null,
|
"firstArrive": null,
|
||||||
"eachArrive": [
|
"eachArrive": [
|
||||||
{
|
{
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT15=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 1,
|
"ratio": 1,
|
||||||
"defaultGround": "T331",
|
"defaultGround": "T331",
|
||||||
"bgm": "mount.mp3",
|
"bgm": "mount.opus",
|
||||||
"color": [
|
"color": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT16=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 1,
|
"ratio": 1,
|
||||||
"defaultGround": "T331",
|
"defaultGround": "T331",
|
||||||
"bgm": "mount.mp3",
|
"bgm": "mount.opus",
|
||||||
"color": null,
|
"color": null,
|
||||||
"weather": [
|
"weather": [
|
||||||
"cloud",
|
"cloud",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT17=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 2,
|
"ratio": 2,
|
||||||
"defaultGround": "grass",
|
"defaultGround": "grass",
|
||||||
"bgm": "plot1.mp3",
|
"bgm": "plot1.opus",
|
||||||
"color": null,
|
"color": null,
|
||||||
"weather": null,
|
"weather": null,
|
||||||
"firstArrive": [
|
"firstArrive": [
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT18=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 2,
|
"ratio": 2,
|
||||||
"defaultGround": "grass",
|
"defaultGround": "grass",
|
||||||
"bgm": "plot1.mp3",
|
"bgm": "plot1.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT19=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 2,
|
"ratio": 2,
|
||||||
"defaultGround": "grass",
|
"defaultGround": "grass",
|
||||||
"bgm": "plot1.mp3",
|
"bgm": "plot1.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT20=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 2,
|
"ratio": 2,
|
||||||
"defaultGround": "grass",
|
"defaultGround": "grass",
|
||||||
"bgm": "plot1.mp3",
|
"bgm": "plot1.opus",
|
||||||
"firstArrive": null,
|
"firstArrive": null,
|
||||||
"eachArrive": [
|
"eachArrive": [
|
||||||
{
|
{
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT21=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 2,
|
"ratio": 2,
|
||||||
"defaultGround": "grass",
|
"defaultGround": "grass",
|
||||||
"bgm": "plot1.mp3",
|
"bgm": "plot1.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT22=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 2,
|
"ratio": 2,
|
||||||
"defaultGround": "grass",
|
"defaultGround": "grass",
|
||||||
"bgm": "road.mp3",
|
"bgm": "road.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT23=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 2,
|
"ratio": 2,
|
||||||
"defaultGround": "grass",
|
"defaultGround": "grass",
|
||||||
"bgm": "road.mp3",
|
"bgm": "road.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT24=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 2,
|
"ratio": 2,
|
||||||
"defaultGround": "grass",
|
"defaultGround": "grass",
|
||||||
"bgm": "road.mp3",
|
"bgm": "road.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT25=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 2,
|
"ratio": 2,
|
||||||
"defaultGround": "grass",
|
"defaultGround": "grass",
|
||||||
"bgm": "road.mp3",
|
"bgm": "road.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT26=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 2,
|
"ratio": 2,
|
||||||
"defaultGround": "grass",
|
"defaultGround": "grass",
|
||||||
"bgm": "road.mp3",
|
"bgm": "road.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT27=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 2,
|
"ratio": 2,
|
||||||
"defaultGround": "grass",
|
"defaultGround": "grass",
|
||||||
"bgm": "road.mp3",
|
"bgm": "road.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT28=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 2,
|
"ratio": 2,
|
||||||
"defaultGround": "grass",
|
"defaultGround": "grass",
|
||||||
"bgm": "road.mp3",
|
"bgm": "road.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT3=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 1,
|
"ratio": 1,
|
||||||
"defaultGround": "T331",
|
"defaultGround": "T331",
|
||||||
"bgm": "cave.mp3",
|
"bgm": "cave.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT30=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 2,
|
"ratio": 2,
|
||||||
"defaultGround": "grass",
|
"defaultGround": "grass",
|
||||||
"bgm": "road.mp3",
|
"bgm": "road.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT31=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 2,
|
"ratio": 2,
|
||||||
"defaultGround": "grass",
|
"defaultGround": "grass",
|
||||||
"bgm": "road.mp3",
|
"bgm": "road.opus",
|
||||||
"firstArrive": [
|
"firstArrive": [
|
||||||
"\t[低级智人]\b[up,hero]杰克,你为什么在这?",
|
"\t[低级智人]\b[up,hero]杰克,你为什么在这?",
|
||||||
"\t[杰克,thief]\b[up,4,7]哟,咱好久不见了,我只是来这里寻找点东西。",
|
"\t[杰克,thief]\b[up,4,7]哟,咱好久不见了,我只是来这里寻找点东西。",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT32=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 8,
|
"ratio": 8,
|
||||||
"defaultGround": "T580",
|
"defaultGround": "T580",
|
||||||
"bgm": "winter.mp3",
|
"bgm": "winter.opus",
|
||||||
"firstArrive": [
|
"firstArrive": [
|
||||||
{
|
{
|
||||||
"type": "function",
|
"type": "function",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT33=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 8,
|
"ratio": 8,
|
||||||
"defaultGround": "T580",
|
"defaultGround": "T580",
|
||||||
"bgm": "winter.mp3",
|
"bgm": "winter.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT34=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 8,
|
"ratio": 8,
|
||||||
"defaultGround": "T580",
|
"defaultGround": "T580",
|
||||||
"bgm": "winter.mp3",
|
"bgm": "winter.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT35=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 8,
|
"ratio": 8,
|
||||||
"defaultGround": "T580",
|
"defaultGround": "T580",
|
||||||
"bgm": "winter.mp3",
|
"bgm": "winter.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT36=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 8,
|
"ratio": 8,
|
||||||
"defaultGround": "T580",
|
"defaultGround": "T580",
|
||||||
"bgm": "winter.mp3",
|
"bgm": "winter.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT37=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 8,
|
"ratio": 8,
|
||||||
"defaultGround": "T580",
|
"defaultGround": "T580",
|
||||||
"bgm": "winter.mp3",
|
"bgm": "winter.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT38=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 8,
|
"ratio": 8,
|
||||||
"defaultGround": "T580",
|
"defaultGround": "T580",
|
||||||
"bgm": "winter.mp3",
|
"bgm": "winter.opus",
|
||||||
"firstArrive": [
|
"firstArrive": [
|
||||||
"\t[低级智人]\b[down,hero]奇怪,这里的山崖边竟然有护栏,难道这附近有其他人吗?"
|
"\t[低级智人]\b[down,hero]奇怪,这里的山崖边竟然有护栏,难道这附近有其他人吗?"
|
||||||
],
|
],
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT39=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 8,
|
"ratio": 8,
|
||||||
"defaultGround": "T580",
|
"defaultGround": "T580",
|
||||||
"bgm": "winter.mp3",
|
"bgm": "winter.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT4=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 1,
|
"ratio": 1,
|
||||||
"defaultGround": "T331",
|
"defaultGround": "T331",
|
||||||
"bgm": "cave.mp3",
|
"bgm": "cave.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT40=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 8,
|
"ratio": 8,
|
||||||
"defaultGround": "T580",
|
"defaultGround": "T580",
|
||||||
"bgm": "winter.mp3",
|
"bgm": "winter.opus",
|
||||||
"firstArrive": null,
|
"firstArrive": null,
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT41=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 8,
|
"ratio": 8,
|
||||||
"defaultGround": "T331",
|
"defaultGround": "T331",
|
||||||
"bgm": "winter.mp3",
|
"bgm": "winter.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT42=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 8,
|
"ratio": 8,
|
||||||
"defaultGround": "T580",
|
"defaultGround": "T580",
|
||||||
"bgm": "winter.mp3",
|
"bgm": "winter.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT43=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 8,
|
"ratio": 8,
|
||||||
"defaultGround": "T580",
|
"defaultGround": "T580",
|
||||||
"bgm": "winter.mp3",
|
"bgm": "winter.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT44=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 8,
|
"ratio": 8,
|
||||||
"defaultGround": "T580",
|
"defaultGround": "T580",
|
||||||
"bgm": "winter.mp3",
|
"bgm": "winter.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT45=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 8,
|
"ratio": 8,
|
||||||
"defaultGround": "T580",
|
"defaultGround": "T580",
|
||||||
"bgm": "winter.mp3",
|
"bgm": "winter.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT46=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 8,
|
"ratio": 8,
|
||||||
"defaultGround": "T331",
|
"defaultGround": "T331",
|
||||||
"bgm": "winter.mp3",
|
"bgm": "winter.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT47=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 8,
|
"ratio": 8,
|
||||||
"defaultGround": "T580",
|
"defaultGround": "T580",
|
||||||
"bgm": "winter.mp3",
|
"bgm": "winter.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT48=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 8,
|
"ratio": 8,
|
||||||
"defaultGround": "T580",
|
"defaultGround": "T580",
|
||||||
"bgm": "winter.mp3",
|
"bgm": "winter.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT49=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 8,
|
"ratio": 8,
|
||||||
"defaultGround": "T580",
|
"defaultGround": "T580",
|
||||||
"bgm": "winter.mp3",
|
"bgm": "winter.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT5=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 1,
|
"ratio": 1,
|
||||||
"defaultGround": "T331",
|
"defaultGround": "T331",
|
||||||
"bgm": "cave.mp3",
|
"bgm": "cave.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT50=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 8,
|
"ratio": 8,
|
||||||
"defaultGround": "T650",
|
"defaultGround": "T650",
|
||||||
"bgm": "palaceSouth.mp3",
|
"bgm": "palaceSouth.opus",
|
||||||
"firstArrive": [
|
"firstArrive": [
|
||||||
{
|
{
|
||||||
"type": "openDoor",
|
"type": "openDoor",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT51=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 8,
|
"ratio": 8,
|
||||||
"defaultGround": "T650",
|
"defaultGround": "T650",
|
||||||
"bgm": "palaceSouth.mp3",
|
"bgm": "palaceSouth.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT52=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 8,
|
"ratio": 8,
|
||||||
"defaultGround": "T650",
|
"defaultGround": "T650",
|
||||||
"bgm": "palaceSouth.mp3",
|
"bgm": "palaceSouth.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT53=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 8,
|
"ratio": 8,
|
||||||
"defaultGround": "T650",
|
"defaultGround": "T650",
|
||||||
"bgm": "palaceSouth.mp3",
|
"bgm": "palaceSouth.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT54=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 8,
|
"ratio": 8,
|
||||||
"defaultGround": "T650",
|
"defaultGround": "T650",
|
||||||
"bgm": "palaceSouth.mp3",
|
"bgm": "palaceSouth.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT55=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 8,
|
"ratio": 8,
|
||||||
"defaultGround": "T650",
|
"defaultGround": "T650",
|
||||||
"bgm": "palaceSouth.mp3",
|
"bgm": "palaceSouth.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT56=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 8,
|
"ratio": 8,
|
||||||
"defaultGround": "T650",
|
"defaultGround": "T650",
|
||||||
"bgm": "palaceSouth.mp3",
|
"bgm": "palaceSouth.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT57=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 8,
|
"ratio": 8,
|
||||||
"defaultGround": "T650",
|
"defaultGround": "T650",
|
||||||
"bgm": "palaceSouth.mp3",
|
"bgm": "palaceSouth.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
@ -12,7 +12,7 @@ main.floors.MT58=
|
|||||||
"images": [],
|
"images": [],
|
||||||
"ratio": 8,
|
"ratio": 8,
|
||||||
"defaultGround": "T650",
|
"defaultGround": "T650",
|
||||||
"bgm": "palaceSouth.mp3",
|
"bgm": "palaceSouth.opus",
|
||||||
"firstArrive": [],
|
"firstArrive": [],
|
||||||
"eachArrive": [],
|
"eachArrive": [],
|
||||||
"parallelDo": "",
|
"parallelDo": "",
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user