Initial Commit
This commit is contained in:
commit
689c39b812
182 changed files with 817425 additions and 0 deletions
51
.gitignore
vendored
Normal file
51
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
# Ignore all files
|
||||
*.*
|
||||
|
||||
# File Types
|
||||
!*.mps
|
||||
!*.dat
|
||||
!*.json
|
||||
!*.txt
|
||||
!*.project
|
||||
!*.js
|
||||
!*.zip
|
||||
!*.7z
|
||||
!*.csv
|
||||
!*.ain
|
||||
!*.fnl
|
||||
!*.ks
|
||||
!*.tjs
|
||||
!*.yaml
|
||||
!*.rb
|
||||
!*.rvdata2
|
||||
|
||||
# Other Needed Files
|
||||
!.gitignore
|
||||
!README.md
|
||||
!patch-config.txt
|
||||
!GameUpdate*
|
||||
!patch*
|
||||
!Game.dat
|
||||
!bsxx.dat*
|
||||
!game.ini
|
||||
|
||||
# Ignore
|
||||
previous_patch_sha.txt
|
||||
kabe3_save.dat
|
||||
kabe3_system.dat
|
||||
psbpack.dat
|
||||
Save*
|
||||
cg.dat
|
||||
scene.dat
|
||||
BSXScript_*
|
||||
|
||||
# Images
|
||||
!A.rpgmvp
|
||||
!B.rpgmvp
|
||||
!C.rpgmvp
|
||||
!D.rpgmvp
|
||||
!owari.rpgmvp
|
||||
!rank.rpgmvp
|
||||
!S.rpgmvp
|
||||
!syo.rpgmvp
|
||||
!waza.rpgmvp
|
||||
14
GameUpdate.bat
Normal file
14
GameUpdate.bat
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
@echo off
|
||||
setlocal
|
||||
|
||||
REM Copy GAMEUPDATE.bat to a new file
|
||||
copy patch.bat patch2.bat
|
||||
|
||||
REM Run the new file
|
||||
call patch2.bat
|
||||
|
||||
REM Delete the new file
|
||||
del patch2.bat
|
||||
|
||||
endlocal
|
||||
@echo on
|
||||
13
GameUpdate_linux.sh
Normal file
13
GameUpdate_linux.sh
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Enable error handling
|
||||
set -e
|
||||
|
||||
# Copy patch.bat to a new file
|
||||
cp patch.sh patch2.sh
|
||||
|
||||
# Run the new file
|
||||
bash patch2.sh
|
||||
|
||||
# Delete the new file
|
||||
rm patch2.sh
|
||||
3
audio/bgm/loopogg/03壺の中.txt
Normal file
3
audio/bgm/loopogg/03壺の中.txt
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
Loop Infomation
|
||||
StartTime=0.000000 EndTime=68.572000
|
||||
StartPcmOffset=0 EndPcmOffset=3024025
|
||||
3
audio/bgm/loopogg/04神域.txt
Normal file
3
audio/bgm/loopogg/04神域.txt
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
Loop Infomation
|
||||
StartTime=0.000000 EndTime=96.001000
|
||||
StartPcmOffset=0 EndPcmOffset=4233644
|
||||
3
audio/bgm/loopogg/07善光寺の錠前.txt
Normal file
3
audio/bgm/loopogg/07善光寺の錠前.txt
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
Loop Infomation
|
||||
StartTime=0.000000 EndTime=116.364000
|
||||
StartPcmOffset=0 EndPcmOffset=5131652
|
||||
3
audio/bgm/loopogg/16美希.txt
Normal file
3
audio/bgm/loopogg/16美希.txt
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
Loop Infomation
|
||||
StartTime=0.000000 EndTime=105.001000
|
||||
StartPcmOffset=0 EndPcmOffset=4630544
|
||||
3
audio/bgm/loopogg/19山歩き.txt
Normal file
3
audio/bgm/loopogg/19山歩き.txt
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
Loop Infomation
|
||||
StartTime=0.000000 EndTime=72.001000
|
||||
StartPcmOffset=0 EndPcmOffset=3175244
|
||||
26
data/Actors.json
Normal file
26
data/Actors.json
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "hokou mayu",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
2,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "mayu kao1",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "まゆ",
|
||||
"nickname": "",
|
||||
"note": "<desc1:とある田舎の小さな村で暮らしている少女。\n母親と祖父の三人暮らし。単身赴任で都会に\nいる父を尊敬している。田舎はやる事がない\nので、退屈な日々に飽き飽きしている様子。\n\n「何か面白い事起きないかな~」>\n\n<desc2:好奇心に任せて行動した結果、森に潜む植物\n魔物に襲われてしまった。反撃に成功し、な\nんとか助かりはしたが、以前危険な状況に変\nわりは無い。他にも恐ろしい存在が待ち受け\nているかもしれないが、この森を進む以外に\n選択肢は無いだろう。>",
|
||||
"profile": ""
|
||||
}
|
||||
]
|
||||
18661
data/Animations.json
Normal file
18661
data/Animations.json
Normal file
File diff suppressed because it is too large
Load diff
2853
data/Armors.json
Normal file
2853
data/Armors.json
Normal file
File diff suppressed because it is too large
Load diff
7446
data/Classes.json
Normal file
7446
data/Classes.json
Normal file
File diff suppressed because it is too large
Load diff
119
data/CommonEvents.json
Normal file
119
data/CommonEvents.json
Normal file
|
|
@ -0,0 +1,119 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"list": [
|
||||
{
|
||||
"code": 101,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
"",
|
||||
0,
|
||||
0,
|
||||
2,
|
||||
""
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 401,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
"林道を抜けるには、正しい道を選択する必要がある。"
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 401,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
"最初の分かれ道から、\\C[24]東南西西北西北北\\C[0]と進めば林道を抜ける"
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 401,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
"事が出来るはずだ。"
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 101,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
"",
|
||||
0,
|
||||
0,
|
||||
2,
|
||||
""
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 401,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
"もし道に迷った場合は、何度か南へと進めばキノコの群生地へと辿"
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 401,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
"り着く事が出来るようになっている。理屈は不明だが、妖術の仕業"
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 401,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
"なのだろう。そうしたら、もう一度最初から進み始めるといい。"
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 0,
|
||||
"indent": 0,
|
||||
"parameters": []
|
||||
}
|
||||
],
|
||||
"name": "メモを読む",
|
||||
"switchId": 1,
|
||||
"trigger": 0
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"list": [
|
||||
{
|
||||
"code": 0,
|
||||
"indent": 0,
|
||||
"parameters": []
|
||||
}
|
||||
],
|
||||
"name": "",
|
||||
"switchId": 8,
|
||||
"trigger": 0
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"list": [
|
||||
{
|
||||
"code": 0,
|
||||
"indent": 0,
|
||||
"parameters": []
|
||||
}
|
||||
],
|
||||
"name": "",
|
||||
"switchId": 1,
|
||||
"trigger": 0
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"list": [
|
||||
{
|
||||
"code": 0,
|
||||
"indent": 0,
|
||||
"parameters": []
|
||||
}
|
||||
],
|
||||
"name": "",
|
||||
"switchId": 1,
|
||||
"trigger": 0
|
||||
}
|
||||
]
|
||||
358
data/Enemies.json
Normal file
358
data/Enemies.json
Normal file
|
|
@ -0,0 +1,358 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"actions": [
|
||||
{
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0,
|
||||
"conditionType": 0,
|
||||
"rating": 5,
|
||||
"skillId": 1
|
||||
},
|
||||
{
|
||||
"skillId": 20,
|
||||
"rating": 5,
|
||||
"conditionType": 0,
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0
|
||||
}
|
||||
],
|
||||
"battlerHue": 0,
|
||||
"battlerName": "Goblin",
|
||||
"dropItems": [
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
}
|
||||
],
|
||||
"exp": 10,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 0,
|
||||
"value": 0.95
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0.05
|
||||
},
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"gold": 5,
|
||||
"name": "ゴブリン",
|
||||
"note": "",
|
||||
"params": [
|
||||
200,
|
||||
0,
|
||||
25,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"actions": [
|
||||
{
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0,
|
||||
"conditionType": 0,
|
||||
"rating": 5,
|
||||
"skillId": 1
|
||||
},
|
||||
{
|
||||
"skillId": 23,
|
||||
"rating": 3,
|
||||
"conditionType": 1,
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 2
|
||||
}
|
||||
],
|
||||
"battlerHue": 0,
|
||||
"battlerName": "Gnome",
|
||||
"dropItems": [
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
}
|
||||
],
|
||||
"exp": 10,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 0,
|
||||
"value": 0.95
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0.05
|
||||
},
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"gold": 8,
|
||||
"name": "ノーム",
|
||||
"note": "",
|
||||
"params": [
|
||||
250,
|
||||
0,
|
||||
20,
|
||||
25,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"actions": [
|
||||
{
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0,
|
||||
"conditionType": 0,
|
||||
"rating": 5,
|
||||
"skillId": 1
|
||||
}
|
||||
],
|
||||
"battlerHue": 0,
|
||||
"battlerName": "Crow",
|
||||
"dropItems": [
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
}
|
||||
],
|
||||
"exp": 15,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 0,
|
||||
"value": 0.95
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0.1
|
||||
},
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"gold": 8,
|
||||
"name": "クロウ",
|
||||
"note": "",
|
||||
"params": [
|
||||
250,
|
||||
50,
|
||||
25,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
25,
|
||||
20
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"actions": [
|
||||
{
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0,
|
||||
"conditionType": 0,
|
||||
"rating": 5,
|
||||
"skillId": 1
|
||||
},
|
||||
{
|
||||
"skillId": 52,
|
||||
"rating": 4,
|
||||
"conditionType": 2,
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0.3
|
||||
}
|
||||
],
|
||||
"battlerHue": 0,
|
||||
"battlerName": "Treant",
|
||||
"dropItems": [
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
}
|
||||
],
|
||||
"exp": 30,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 0,
|
||||
"value": 0.95
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0.05
|
||||
},
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
},
|
||||
{
|
||||
"code": 11,
|
||||
"dataId": 2,
|
||||
"value": 2
|
||||
}
|
||||
],
|
||||
"gold": 15,
|
||||
"name": "トレント",
|
||||
"note": "",
|
||||
"params": [
|
||||
500,
|
||||
50,
|
||||
30,
|
||||
20,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"actions": [
|
||||
{
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0,
|
||||
"conditionType": 0,
|
||||
"rating": 5,
|
||||
"skillId": 1
|
||||
},
|
||||
{
|
||||
"skillId": 99,
|
||||
"rating": 4,
|
||||
"conditionType": 1,
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 2
|
||||
},
|
||||
{
|
||||
"skillId": 13,
|
||||
"rating": 6,
|
||||
"conditionType": 2,
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0.3
|
||||
}
|
||||
],
|
||||
"battlerHue": 0,
|
||||
"battlerName": "Hi_monster",
|
||||
"dropItems": [
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
}
|
||||
],
|
||||
"exp": 100,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 0,
|
||||
"value": 0.95
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0.05
|
||||
},
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
},
|
||||
{
|
||||
"code": 63,
|
||||
"dataId": 1,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"gold": 50,
|
||||
"name": "魔獣",
|
||||
"note": "",
|
||||
"params": [
|
||||
1000,
|
||||
50,
|
||||
40,
|
||||
20,
|
||||
40,
|
||||
40,
|
||||
40,
|
||||
40
|
||||
]
|
||||
}
|
||||
]
|
||||
982
data/Items.json
Normal file
982
data/Items.json
Normal file
|
|
@ -0,0 +1,982 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "回復アイテムより上位に表示したいアイテム用の枠です。",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 1,
|
||||
"name": "-----予備",
|
||||
"note": "",
|
||||
"occasion": 3,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 7,
|
||||
"itypeId": 1,
|
||||
"name": "おじいの秘蔵えっちぶっく",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "巨大な花の前に落ちていたカギ。どこのカギだろう?",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 89,
|
||||
"itypeId": 2,
|
||||
"name": "何かのカギ",
|
||||
"note": "",
|
||||
"occasion": 3,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "めちゃくちゃくさい、見た目もヤバめなキノコ。持ち歩きたくない。",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 261,
|
||||
"itypeId": 2,
|
||||
"name": "くっさいきのこ",
|
||||
"note": "",
|
||||
"occasion": 3,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "滅多にお目にかかれない激レアキノコ。食べると意識が飛ぶくらい\n旨い。",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 261,
|
||||
"itypeId": 2,
|
||||
"name": "まぼろしきのこ",
|
||||
"note": "",
|
||||
"occasion": 3,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "なんかべちょってしてるキノコ。手触りが最悪すぎる。",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 261,
|
||||
"itypeId": 2,
|
||||
"name": "べとべときのこ",
|
||||
"note": "",
|
||||
"occasion": 3,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"animationId": 0,
|
||||
"consumable": false,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "林道の抜け方を記したメモ紙。",
|
||||
"effects": [
|
||||
{
|
||||
"code": 44,
|
||||
"dataId": 1,
|
||||
"value1": 1,
|
||||
"value2": 0
|
||||
}
|
||||
],
|
||||
"hitType": 0,
|
||||
"iconIndex": 89,
|
||||
"itypeId": 2,
|
||||
"name": "林道のメモ",
|
||||
"note": "",
|
||||
"occasion": 2,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 0,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"animationId": 41,
|
||||
"consumable": false,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "箱の中に仕舞われていた誰かの装飾物。適正あるものには秘めた力\nをもたらすと書かれていた。",
|
||||
"effects": [
|
||||
{
|
||||
"code": 11,
|
||||
"dataId": 0,
|
||||
"value1": 0,
|
||||
"value2": 1500
|
||||
}
|
||||
],
|
||||
"hitType": 0,
|
||||
"iconIndex": 89,
|
||||
"itypeId": 2,
|
||||
"name": "誰かの首飾り",
|
||||
"note": "",
|
||||
"occasion": 3,
|
||||
"price": 250,
|
||||
"repeats": 1,
|
||||
"scope": 0,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"animationId": 41,
|
||||
"consumable": false,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "巫女の家系に代々受け継がれてきた首飾り。\n身に着けるのがめんどくさいので大抵持ち歩いている。",
|
||||
"effects": [
|
||||
{
|
||||
"code": 11,
|
||||
"dataId": 0,
|
||||
"value1": 0,
|
||||
"value2": 1500
|
||||
}
|
||||
],
|
||||
"hitType": 0,
|
||||
"iconIndex": 89,
|
||||
"itypeId": 2,
|
||||
"name": "巫女の首飾り",
|
||||
"note": "",
|
||||
"occasion": 3,
|
||||
"price": 250,
|
||||
"repeats": 1,
|
||||
"scope": 0,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"animationId": 41,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "MPを300ポイント回復する。",
|
||||
"effects": [
|
||||
{
|
||||
"code": 12,
|
||||
"dataId": 0,
|
||||
"value1": 0,
|
||||
"value2": 300
|
||||
}
|
||||
],
|
||||
"hitType": 0,
|
||||
"iconIndex": 176,
|
||||
"itypeId": 1,
|
||||
"name": "マジックウォーター",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 300,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"animationId": 49,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "b.mhp / 2",
|
||||
"type": 3,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "戦闘不能から復活させる。(HP半分回復)",
|
||||
"effects": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value1": 1,
|
||||
"value2": 0
|
||||
}
|
||||
],
|
||||
"hitType": 0,
|
||||
"iconIndex": 176,
|
||||
"itypeId": 1,
|
||||
"name": "スティミュラント",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 500,
|
||||
"repeats": 1,
|
||||
"scope": 9,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"animationId": 46,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "戦闘不能以外の状態異常を回復する。",
|
||||
"effects": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 4,
|
||||
"value1": 1,
|
||||
"value2": 0
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 5,
|
||||
"value1": 1,
|
||||
"value2": 0
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 6,
|
||||
"value1": 1,
|
||||
"value2": 0
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 7,
|
||||
"value1": 1,
|
||||
"value2": 0
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 8,
|
||||
"value1": 1,
|
||||
"value2": 0
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 9,
|
||||
"value1": 1,
|
||||
"value2": 0
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 10,
|
||||
"value1": 1,
|
||||
"value2": 0
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 13,
|
||||
"value1": 1,
|
||||
"value2": 0
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 12,
|
||||
"value1": 1,
|
||||
"value2": 0
|
||||
}
|
||||
],
|
||||
"hitType": 0,
|
||||
"iconIndex": 176,
|
||||
"itypeId": 1,
|
||||
"name": "ディスペルハーブ",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 200,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"animationId": 45,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "毒、麻痺状態を治療する。",
|
||||
"effects": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 4,
|
||||
"value1": 1,
|
||||
"value2": 0
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 12,
|
||||
"value1": 1,
|
||||
"value2": 0
|
||||
}
|
||||
],
|
||||
"hitType": 0,
|
||||
"iconIndex": 176,
|
||||
"itypeId": 1,
|
||||
"name": "アンチドーテ",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 80,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"animationId": 41,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "HPとMPを半分回復する。",
|
||||
"effects": [
|
||||
{
|
||||
"code": 11,
|
||||
"dataId": 0,
|
||||
"value1": 0.5,
|
||||
"value2": 0
|
||||
},
|
||||
{
|
||||
"code": 12,
|
||||
"dataId": 0,
|
||||
"value1": 0.5,
|
||||
"value2": 0
|
||||
}
|
||||
],
|
||||
"hitType": 0,
|
||||
"iconIndex": 176,
|
||||
"itypeId": 1,
|
||||
"name": "ミラクルドロップ",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 450,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"animationId": 41,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "HPとMPを完全に回復する。",
|
||||
"effects": [
|
||||
{
|
||||
"code": 11,
|
||||
"dataId": 0,
|
||||
"value1": 1,
|
||||
"value2": 0
|
||||
},
|
||||
{
|
||||
"code": 12,
|
||||
"dataId": 0,
|
||||
"value1": 1,
|
||||
"value2": 0
|
||||
}
|
||||
],
|
||||
"hitType": 0,
|
||||
"iconIndex": 176,
|
||||
"itypeId": 1,
|
||||
"name": "エリクサー",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 1200,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 1,
|
||||
"name": "",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 1,
|
||||
"name": "-----特殊系",
|
||||
"note": "",
|
||||
"occasion": 3,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"animationId": 51,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "しばらくの間、敵との遭遇率を半減させる。",
|
||||
"effects": [
|
||||
{
|
||||
"code": 21,
|
||||
"dataId": 29,
|
||||
"value1": 1,
|
||||
"value2": 0
|
||||
}
|
||||
],
|
||||
"hitType": 0,
|
||||
"iconIndex": 176,
|
||||
"itypeId": 1,
|
||||
"name": "エンカウントダウナー",
|
||||
"note": "",
|
||||
"occasion": 2,
|
||||
"price": 100,
|
||||
"repeats": 1,
|
||||
"scope": 11,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"animationId": 51,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "しばらくの間\n戦闘で得られるアイテムや賞金の獲得率を上げる。",
|
||||
"effects": [
|
||||
{
|
||||
"code": 21,
|
||||
"dataId": 30,
|
||||
"value1": 1,
|
||||
"value2": 0
|
||||
}
|
||||
],
|
||||
"hitType": 0,
|
||||
"iconIndex": 176,
|
||||
"itypeId": 1,
|
||||
"name": "ドロップアッパー",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 300,
|
||||
"repeats": 1,
|
||||
"scope": 11,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 1,
|
||||
"name": "",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 21,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 1,
|
||||
"name": "",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 1,
|
||||
"name": "-----強化系",
|
||||
"note": "",
|
||||
"occasion": 3,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"animationId": 51,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "最大HPを50ポイント上げる。",
|
||||
"effects": [
|
||||
{
|
||||
"code": 42,
|
||||
"dataId": 0,
|
||||
"value1": 50,
|
||||
"value2": 0
|
||||
}
|
||||
],
|
||||
"hitType": 0,
|
||||
"iconIndex": 32,
|
||||
"itypeId": 1,
|
||||
"name": "ライフアップ",
|
||||
"note": "",
|
||||
"occasion": 2,
|
||||
"price": 3000,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"animationId": 51,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "最大MPを10ポイント上げる。",
|
||||
"effects": [
|
||||
{
|
||||
"code": 42,
|
||||
"dataId": 1,
|
||||
"value1": 10,
|
||||
"value2": 0
|
||||
}
|
||||
],
|
||||
"hitType": 0,
|
||||
"iconIndex": 33,
|
||||
"itypeId": 1,
|
||||
"name": "マナアップ",
|
||||
"note": "",
|
||||
"occasion": 2,
|
||||
"price": 3000,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"animationId": 51,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "攻撃力を3ポイント上げる。",
|
||||
"effects": [
|
||||
{
|
||||
"code": 42,
|
||||
"dataId": 2,
|
||||
"value1": 3,
|
||||
"value2": 0
|
||||
}
|
||||
],
|
||||
"hitType": 0,
|
||||
"iconIndex": 34,
|
||||
"itypeId": 1,
|
||||
"name": "パワーアップ",
|
||||
"note": "",
|
||||
"occasion": 2,
|
||||
"price": 3000,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"animationId": 51,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "防御力を3ポイント上げる。",
|
||||
"effects": [
|
||||
{
|
||||
"code": 42,
|
||||
"dataId": 3,
|
||||
"value1": 3,
|
||||
"value2": 0
|
||||
}
|
||||
],
|
||||
"hitType": 0,
|
||||
"iconIndex": 35,
|
||||
"itypeId": 1,
|
||||
"name": "ガードアップ",
|
||||
"note": "",
|
||||
"occasion": 2,
|
||||
"price": 3000,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"animationId": 51,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "魔法力を3ポイント上げる。",
|
||||
"effects": [
|
||||
{
|
||||
"code": 42,
|
||||
"dataId": 4,
|
||||
"value1": 3,
|
||||
"value2": 0
|
||||
}
|
||||
],
|
||||
"hitType": 0,
|
||||
"iconIndex": 36,
|
||||
"itypeId": 1,
|
||||
"name": "マジックアップ",
|
||||
"note": "",
|
||||
"occasion": 2,
|
||||
"price": 3000,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"animationId": 51,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "魔法防御力を3ポイント上げる。",
|
||||
"effects": [
|
||||
{
|
||||
"code": 42,
|
||||
"dataId": 5,
|
||||
"value1": 3,
|
||||
"value2": 0
|
||||
}
|
||||
],
|
||||
"hitType": 0,
|
||||
"iconIndex": 37,
|
||||
"itypeId": 1,
|
||||
"name": "レジストアップ",
|
||||
"note": "",
|
||||
"occasion": 2,
|
||||
"price": 3000,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"animationId": 51,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "敏捷性を3ポイント上げる。",
|
||||
"effects": [
|
||||
{
|
||||
"code": 42,
|
||||
"dataId": 6,
|
||||
"value1": 3,
|
||||
"value2": 0
|
||||
}
|
||||
],
|
||||
"hitType": 0,
|
||||
"iconIndex": 38,
|
||||
"itypeId": 1,
|
||||
"name": "スピードアップ",
|
||||
"note": "",
|
||||
"occasion": 2,
|
||||
"price": 3000,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"animationId": 51,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "運を3ポイント上げる。",
|
||||
"effects": [
|
||||
{
|
||||
"code": 42,
|
||||
"dataId": 7,
|
||||
"value1": 3,
|
||||
"value2": 0
|
||||
}
|
||||
],
|
||||
"hitType": 0,
|
||||
"iconIndex": 39,
|
||||
"itypeId": 1,
|
||||
"name": "ラックアップ",
|
||||
"note": "",
|
||||
"occasion": 2,
|
||||
"price": 3000,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
}
|
||||
]
|
||||
10313
data/Map001.json
Normal file
10313
data/Map001.json
Normal file
File diff suppressed because it is too large
Load diff
6698
data/Map002.json
Normal file
6698
data/Map002.json
Normal file
File diff suppressed because it is too large
Load diff
6183
data/Map003.json
Normal file
6183
data/Map003.json
Normal file
File diff suppressed because it is too large
Load diff
3613
data/Map004.json
Normal file
3613
data/Map004.json
Normal file
File diff suppressed because it is too large
Load diff
17692
data/Map005.json
Normal file
17692
data/Map005.json
Normal file
File diff suppressed because it is too large
Load diff
7763
data/Map006.json
Normal file
7763
data/Map006.json
Normal file
File diff suppressed because it is too large
Load diff
14163
data/Map007.json
Normal file
14163
data/Map007.json
Normal file
File diff suppressed because it is too large
Load diff
6327
data/Map008.json
Normal file
6327
data/Map008.json
Normal file
File diff suppressed because it is too large
Load diff
9281
data/Map009.json
Normal file
9281
data/Map009.json
Normal file
File diff suppressed because it is too large
Load diff
5440
data/Map010.json
Normal file
5440
data/Map010.json
Normal file
File diff suppressed because it is too large
Load diff
6890
data/Map011.json
Normal file
6890
data/Map011.json
Normal file
File diff suppressed because it is too large
Load diff
16844
data/Map012.json
Normal file
16844
data/Map012.json
Normal file
File diff suppressed because it is too large
Load diff
17239
data/Map013.json
Normal file
17239
data/Map013.json
Normal file
File diff suppressed because it is too large
Load diff
1363
data/Map014.json
Normal file
1363
data/Map014.json
Normal file
File diff suppressed because it is too large
Load diff
5560
data/Map015.json
Normal file
5560
data/Map015.json
Normal file
File diff suppressed because it is too large
Load diff
13881
data/Map016.json
Normal file
13881
data/Map016.json
Normal file
File diff suppressed because it is too large
Load diff
42483
data/Map017.json
Normal file
42483
data/Map017.json
Normal file
File diff suppressed because it is too large
Load diff
5034
data/Map018.json
Normal file
5034
data/Map018.json
Normal file
File diff suppressed because it is too large
Load diff
6121
data/Map019.json
Normal file
6121
data/Map019.json
Normal file
File diff suppressed because it is too large
Load diff
1908
data/Map020.json
Normal file
1908
data/Map020.json
Normal file
File diff suppressed because it is too large
Load diff
3770
data/Map021.json
Normal file
3770
data/Map021.json
Normal file
File diff suppressed because it is too large
Load diff
6471
data/Map022.json
Normal file
6471
data/Map022.json
Normal file
File diff suppressed because it is too large
Load diff
3414
data/Map023.json
Normal file
3414
data/Map023.json
Normal file
File diff suppressed because it is too large
Load diff
5143
data/Map024.json
Normal file
5143
data/Map024.json
Normal file
File diff suppressed because it is too large
Load diff
6166
data/Map025.json
Normal file
6166
data/Map025.json
Normal file
File diff suppressed because it is too large
Load diff
7985
data/Map026.json
Normal file
7985
data/Map026.json
Normal file
File diff suppressed because it is too large
Load diff
3499
data/Map027.json
Normal file
3499
data/Map027.json
Normal file
File diff suppressed because it is too large
Load diff
1363
data/Map028.json
Normal file
1363
data/Map028.json
Normal file
File diff suppressed because it is too large
Load diff
8051
data/Map029.json
Normal file
8051
data/Map029.json
Normal file
File diff suppressed because it is too large
Load diff
3321
data/Map030.json
Normal file
3321
data/Map030.json
Normal file
File diff suppressed because it is too large
Load diff
2983
data/Map031.json
Normal file
2983
data/Map031.json
Normal file
File diff suppressed because it is too large
Load diff
6779
data/Map032.json
Normal file
6779
data/Map032.json
Normal file
File diff suppressed because it is too large
Load diff
8873
data/Map033.json
Normal file
8873
data/Map033.json
Normal file
File diff suppressed because it is too large
Load diff
7682
data/Map034.json
Normal file
7682
data/Map034.json
Normal file
File diff suppressed because it is too large
Load diff
6577
data/Map035.json
Normal file
6577
data/Map035.json
Normal file
File diff suppressed because it is too large
Load diff
6578
data/Map036.json
Normal file
6578
data/Map036.json
Normal file
File diff suppressed because it is too large
Load diff
6636
data/Map037.json
Normal file
6636
data/Map037.json
Normal file
File diff suppressed because it is too large
Load diff
6591
data/Map038.json
Normal file
6591
data/Map038.json
Normal file
File diff suppressed because it is too large
Load diff
8394
data/Map039.json
Normal file
8394
data/Map039.json
Normal file
File diff suppressed because it is too large
Load diff
9221
data/Map040.json
Normal file
9221
data/Map040.json
Normal file
File diff suppressed because it is too large
Load diff
8040
data/Map041.json
Normal file
8040
data/Map041.json
Normal file
File diff suppressed because it is too large
Load diff
11836
data/Map042.json
Normal file
11836
data/Map042.json
Normal file
File diff suppressed because it is too large
Load diff
8857
data/Map043.json
Normal file
8857
data/Map043.json
Normal file
File diff suppressed because it is too large
Load diff
6497
data/Map044.json
Normal file
6497
data/Map044.json
Normal file
File diff suppressed because it is too large
Load diff
11431
data/Map045.json
Normal file
11431
data/Map045.json
Normal file
File diff suppressed because it is too large
Load diff
5562
data/Map046.json
Normal file
5562
data/Map046.json
Normal file
File diff suppressed because it is too large
Load diff
5802
data/Map047.json
Normal file
5802
data/Map047.json
Normal file
File diff suppressed because it is too large
Load diff
12389
data/Map048.json
Normal file
12389
data/Map048.json
Normal file
File diff suppressed because it is too large
Load diff
3346
data/Map049.json
Normal file
3346
data/Map049.json
Normal file
File diff suppressed because it is too large
Load diff
10435
data/Map050.json
Normal file
10435
data/Map050.json
Normal file
File diff suppressed because it is too large
Load diff
8440
data/Map051.json
Normal file
8440
data/Map051.json
Normal file
File diff suppressed because it is too large
Load diff
44678
data/Map052.json
Normal file
44678
data/Map052.json
Normal file
File diff suppressed because it is too large
Load diff
4467
data/Map053.json
Normal file
4467
data/Map053.json
Normal file
File diff suppressed because it is too large
Load diff
8560
data/Map054.json
Normal file
8560
data/Map054.json
Normal file
File diff suppressed because it is too large
Load diff
4943
data/Map055.json
Normal file
4943
data/Map055.json
Normal file
File diff suppressed because it is too large
Load diff
1513
data/Map056.json
Normal file
1513
data/Map056.json
Normal file
File diff suppressed because it is too large
Load diff
3462
data/Map057.json
Normal file
3462
data/Map057.json
Normal file
File diff suppressed because it is too large
Load diff
5531
data/Map058.json
Normal file
5531
data/Map058.json
Normal file
File diff suppressed because it is too large
Load diff
5023
data/Map059.json
Normal file
5023
data/Map059.json
Normal file
File diff suppressed because it is too large
Load diff
6222
data/Map060.json
Normal file
6222
data/Map060.json
Normal file
File diff suppressed because it is too large
Load diff
8144
data/Map061.json
Normal file
8144
data/Map061.json
Normal file
File diff suppressed because it is too large
Load diff
7827
data/Map062.json
Normal file
7827
data/Map062.json
Normal file
File diff suppressed because it is too large
Load diff
12002
data/Map063.json
Normal file
12002
data/Map063.json
Normal file
File diff suppressed because it is too large
Load diff
17747
data/Map064.json
Normal file
17747
data/Map064.json
Normal file
File diff suppressed because it is too large
Load diff
8711
data/Map065.json
Normal file
8711
data/Map065.json
Normal file
File diff suppressed because it is too large
Load diff
1363
data/Map066.json
Normal file
1363
data/Map066.json
Normal file
File diff suppressed because it is too large
Load diff
639
data/MapInfos.json
Normal file
639
data/MapInfos.json
Normal file
|
|
@ -0,0 +1,639 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"expanded": true,
|
||||
"name": "一般家庭",
|
||||
"order": 3,
|
||||
"parentId": 0,
|
||||
"scrollX": 739.6363636363636,
|
||||
"scrollY": 542.7272727272727
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"expanded": false,
|
||||
"name": "外",
|
||||
"order": 5,
|
||||
"parentId": 0,
|
||||
"scrollX": 633.8181818181819,
|
||||
"scrollY": 680.1818181818182
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"expanded": true,
|
||||
"name": "森",
|
||||
"order": 23,
|
||||
"parentId": 0,
|
||||
"scrollX": 557.4545454545455,
|
||||
"scrollY": 686.7272727272727
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"expanded": true,
|
||||
"name": "森 細道",
|
||||
"order": 27,
|
||||
"parentId": 3,
|
||||
"scrollX": 557.4545454545455,
|
||||
"scrollY": 558
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"expanded": true,
|
||||
"name": "森 細道4",
|
||||
"order": 30,
|
||||
"parentId": 3,
|
||||
"scrollX": 1938.5454545454547,
|
||||
"scrollY": 691.0909090909091
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"expanded": true,
|
||||
"name": "外 夕方",
|
||||
"order": 6,
|
||||
"parentId": 2,
|
||||
"scrollX": 692.1818181818182,
|
||||
"scrollY": 765.2727272727273
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"expanded": true,
|
||||
"name": "森 細道5",
|
||||
"order": 31,
|
||||
"parentId": 3,
|
||||
"scrollX": 1746.5454545454545,
|
||||
"scrollY": 789.2727272727273
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"expanded": true,
|
||||
"name": "外 クリア後",
|
||||
"order": 11,
|
||||
"parentId": 56,
|
||||
"scrollX": 642.5454545454546,
|
||||
"scrollY": 660.5454545454546
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"expanded": true,
|
||||
"name": "外 クリア後 村",
|
||||
"order": 12,
|
||||
"parentId": 56,
|
||||
"scrollX": 692.7272727272727,
|
||||
"scrollY": 652.909090909091
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"expanded": true,
|
||||
"name": "一般家庭 夜",
|
||||
"order": 4,
|
||||
"parentId": 0,
|
||||
"scrollX": 566.1818181818182,
|
||||
"scrollY": 531.8181818181819
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"expanded": true,
|
||||
"name": "森 細道3",
|
||||
"order": 29,
|
||||
"parentId": 3,
|
||||
"scrollX": 682.909090909091,
|
||||
"scrollY": 516.5454545454546
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"expanded": true,
|
||||
"name": "廃墟の民家",
|
||||
"order": 33,
|
||||
"parentId": 3,
|
||||
"scrollX": 557.4545454545455,
|
||||
"scrollY": 513.2727272727273,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"expanded": true,
|
||||
"name": "森 細道2",
|
||||
"order": 28,
|
||||
"parentId": 3,
|
||||
"scrollX": 557.4545454545455,
|
||||
"scrollY": 631.0909090909091
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"expanded": true,
|
||||
"name": "エンド",
|
||||
"order": 51,
|
||||
"parentId": 0,
|
||||
"scrollX": 556.3636363636364,
|
||||
"scrollY": 513.2727272727273,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"expanded": true,
|
||||
"name": "豚小屋 入口",
|
||||
"order": 35,
|
||||
"parentId": 0,
|
||||
"scrollX": 739.6363636363636,
|
||||
"scrollY": 490.3636363636364,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"expanded": true,
|
||||
"name": "豚小屋",
|
||||
"order": 36,
|
||||
"parentId": 15,
|
||||
"scrollX": 566.1818181818182,
|
||||
"scrollY": 513.2727272727273,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"expanded": true,
|
||||
"name": "キノコの森",
|
||||
"order": 37,
|
||||
"parentId": 15,
|
||||
"scrollX": 2128.3636363636365,
|
||||
"scrollY": 513.2727272727273,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"expanded": true,
|
||||
"name": "ハエルート2",
|
||||
"order": 55,
|
||||
"parentId": 19,
|
||||
"scrollX": 557.4545454545455,
|
||||
"scrollY": 513.2727272727273,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"expanded": true,
|
||||
"name": "ハエルート1",
|
||||
"order": 54,
|
||||
"parentId": 14,
|
||||
"scrollX": 557.4545454545455,
|
||||
"scrollY": 513.2727272727273,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"expanded": true,
|
||||
"name": "ハエルート3",
|
||||
"order": 56,
|
||||
"parentId": 14,
|
||||
"scrollX": 557.4545454545455,
|
||||
"scrollY": 513.2727272727273,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 21,
|
||||
"expanded": false,
|
||||
"name": "豚ルート1",
|
||||
"order": 57,
|
||||
"parentId": 14,
|
||||
"scrollX": 557.4545454545455,
|
||||
"scrollY": 513.2727272727273,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"expanded": false,
|
||||
"name": "豚ルート2",
|
||||
"order": 58,
|
||||
"parentId": 14,
|
||||
"scrollX": 557.4545454545455,
|
||||
"scrollY": 513.2727272727273,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"expanded": false,
|
||||
"name": "二階",
|
||||
"order": 1,
|
||||
"parentId": 0,
|
||||
"scrollX": 633.8181818181819,
|
||||
"scrollY": 494.72727272727275,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"expanded": true,
|
||||
"name": "植物ルート",
|
||||
"order": 52,
|
||||
"parentId": 14,
|
||||
"scrollX": 557.4545454545455,
|
||||
"scrollY": 513.2727272727273,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"expanded": false,
|
||||
"name": "植物ルート2",
|
||||
"order": 53,
|
||||
"parentId": 14,
|
||||
"scrollX": 557.4545454545455,
|
||||
"scrollY": 513.2727272727273,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"expanded": true,
|
||||
"name": "淫魔の領域",
|
||||
"order": 48,
|
||||
"parentId": 32,
|
||||
"scrollX": 814.909090909091,
|
||||
"scrollY": 750,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"expanded": true,
|
||||
"name": "ナメクジエンド",
|
||||
"order": 64,
|
||||
"parentId": 28,
|
||||
"scrollX": 557.4545454545455,
|
||||
"scrollY": 513.2727272727273,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"expanded": true,
|
||||
"name": "サブエンド",
|
||||
"order": 62,
|
||||
"parentId": 0,
|
||||
"scrollX": 557.4545454545455,
|
||||
"scrollY": 513.2727272727273,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"expanded": false,
|
||||
"name": "廃墟の民家2",
|
||||
"order": 34,
|
||||
"parentId": 12,
|
||||
"scrollX": 566.1818181818182,
|
||||
"scrollY": 513.2727272727273,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"expanded": true,
|
||||
"name": "触手エンド",
|
||||
"order": 65,
|
||||
"parentId": 28,
|
||||
"scrollX": 557.4545454545455,
|
||||
"scrollY": 513.2727272727273,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 31,
|
||||
"expanded": false,
|
||||
"name": "キノコエンド",
|
||||
"order": 63,
|
||||
"parentId": 28,
|
||||
"scrollX": 557.4545454545455,
|
||||
"scrollY": 513.2727272727273,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 32,
|
||||
"expanded": false,
|
||||
"name": "惑わしの林道",
|
||||
"order": 38,
|
||||
"parentId": 0,
|
||||
"scrollX": 566.1818181818182,
|
||||
"scrollY": 974.7272727272727,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 33,
|
||||
"expanded": false,
|
||||
"name": "惑わしの林道2",
|
||||
"order": 39,
|
||||
"parentId": 32,
|
||||
"scrollX": 930.5454545454546,
|
||||
"scrollY": 974.7272727272727,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 34,
|
||||
"expanded": true,
|
||||
"name": "惑わしの林道3",
|
||||
"order": 41,
|
||||
"parentId": 32,
|
||||
"scrollX": 832.3636363636364,
|
||||
"scrollY": 865.6363636363636,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 35,
|
||||
"expanded": true,
|
||||
"name": "惑わしの林道4",
|
||||
"order": 42,
|
||||
"parentId": 32,
|
||||
"scrollX": 796.3636363636364,
|
||||
"scrollY": 540.5454545454546,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 36,
|
||||
"expanded": true,
|
||||
"name": "惑わしの林道5",
|
||||
"order": 43,
|
||||
"parentId": 32,
|
||||
"scrollX": 846.5454545454546,
|
||||
"scrollY": 816.5454545454546,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 37,
|
||||
"expanded": true,
|
||||
"name": "惑わしの林道6",
|
||||
"order": 44,
|
||||
"parentId": 32,
|
||||
"scrollX": 846.5454545454546,
|
||||
"scrollY": 974.7272727272727,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 38,
|
||||
"expanded": true,
|
||||
"name": "惑わしの林道7",
|
||||
"order": 45,
|
||||
"parentId": 32,
|
||||
"scrollX": 796.3636363636364,
|
||||
"scrollY": 649.6363636363636,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 39,
|
||||
"expanded": true,
|
||||
"name": "惑わしの林道8",
|
||||
"order": 46,
|
||||
"parentId": 32,
|
||||
"scrollX": 796.3636363636364,
|
||||
"scrollY": 460.90909090909093,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 40,
|
||||
"expanded": true,
|
||||
"name": "惑わしの林道9",
|
||||
"order": 47,
|
||||
"parentId": 32,
|
||||
"scrollX": 778.909090909091,
|
||||
"scrollY": 490.3636363636364,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 41,
|
||||
"expanded": false,
|
||||
"name": "惑わしの林道2 修正前",
|
||||
"order": 40,
|
||||
"parentId": 33,
|
||||
"scrollX": 1159,
|
||||
"scrollY": 941,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 42,
|
||||
"expanded": true,
|
||||
"name": "淫魔エンド 記憶の館",
|
||||
"order": 18,
|
||||
"parentId": 52,
|
||||
"scrollX": 832.3636363636364,
|
||||
"scrollY": 782.7272727272727,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 43,
|
||||
"expanded": true,
|
||||
"name": "惑わしの林道10",
|
||||
"order": 49,
|
||||
"parentId": 32,
|
||||
"scrollX": 796.3636363636364,
|
||||
"scrollY": 1459.0909090909092,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 44,
|
||||
"expanded": true,
|
||||
"name": "森 夕方",
|
||||
"order": 25,
|
||||
"parentId": 3,
|
||||
"scrollX": 557.4545454545455,
|
||||
"scrollY": 513.2727272727273
|
||||
},
|
||||
{
|
||||
"id": 45,
|
||||
"expanded": true,
|
||||
"name": "対魔の祠",
|
||||
"order": 24,
|
||||
"parentId": 3,
|
||||
"scrollX": 796.3636363636364,
|
||||
"scrollY": 686.7272727272727
|
||||
},
|
||||
{
|
||||
"id": 46,
|
||||
"expanded": true,
|
||||
"name": "外 夜",
|
||||
"order": 7,
|
||||
"parentId": 2,
|
||||
"scrollX": 692.1818181818182,
|
||||
"scrollY": 680.1818181818182
|
||||
},
|
||||
{
|
||||
"id": 47,
|
||||
"expanded": true,
|
||||
"name": "森 夜",
|
||||
"order": 26,
|
||||
"parentId": 3,
|
||||
"scrollX": 988.3636363636364,
|
||||
"scrollY": 540.5454545454546
|
||||
},
|
||||
{
|
||||
"id": 48,
|
||||
"expanded": true,
|
||||
"name": "淫魔エンド",
|
||||
"order": 59,
|
||||
"parentId": 14,
|
||||
"scrollX": 792,
|
||||
"scrollY": 781.6363636363636,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 49,
|
||||
"expanded": false,
|
||||
"name": "触手エンド2",
|
||||
"order": 66,
|
||||
"parentId": 30,
|
||||
"scrollX": 557.4545454545455,
|
||||
"scrollY": 513.2727272727273,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 50,
|
||||
"expanded": true,
|
||||
"name": "淫魔エンド2",
|
||||
"order": 60,
|
||||
"parentId": 48,
|
||||
"scrollX": 832.3636363636364,
|
||||
"scrollY": 826.3636363636364,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 51,
|
||||
"expanded": true,
|
||||
"name": "淫魔エンド 最後",
|
||||
"order": 61,
|
||||
"parentId": 48,
|
||||
"scrollX": 848,
|
||||
"scrollY": 640
|
||||
},
|
||||
{
|
||||
"id": 52,
|
||||
"expanded": true,
|
||||
"name": "記憶の館",
|
||||
"order": 15,
|
||||
"parentId": 56,
|
||||
"scrollX": 798.5454545454546,
|
||||
"scrollY": 582
|
||||
},
|
||||
{
|
||||
"id": 53,
|
||||
"expanded": true,
|
||||
"name": "村の家",
|
||||
"order": 14,
|
||||
"parentId": 56,
|
||||
"scrollX": 739.6363636363636,
|
||||
"scrollY": 542.7272727272727
|
||||
},
|
||||
{
|
||||
"id": 54,
|
||||
"expanded": true,
|
||||
"name": "淫魔エンド 館 最後",
|
||||
"order": 17,
|
||||
"parentId": 52,
|
||||
"scrollX": 557.4545454545455,
|
||||
"scrollY": 662.7272727272727
|
||||
},
|
||||
{
|
||||
"id": 55,
|
||||
"expanded": false,
|
||||
"name": "二階 グッドエンド",
|
||||
"order": 2,
|
||||
"parentId": 0,
|
||||
"scrollX": 633.8181818181819,
|
||||
"scrollY": 486,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 56,
|
||||
"expanded": true,
|
||||
"name": "クリア後",
|
||||
"order": 8,
|
||||
"parentId": 0,
|
||||
"scrollX": 557.4545454545455,
|
||||
"scrollY": 465.2727272727273,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 57,
|
||||
"expanded": true,
|
||||
"name": "二階 クリア後",
|
||||
"order": 10,
|
||||
"parentId": 58,
|
||||
"scrollX": 681,
|
||||
"scrollY": 566.25,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 58,
|
||||
"expanded": false,
|
||||
"name": "一般家庭 クリア後",
|
||||
"order": 9,
|
||||
"parentId": 56,
|
||||
"scrollX": 739.6363636363636,
|
||||
"scrollY": 534
|
||||
},
|
||||
{
|
||||
"id": 59,
|
||||
"expanded": false,
|
||||
"name": "神社",
|
||||
"order": 13,
|
||||
"parentId": 56,
|
||||
"scrollX": 633.8181818181819,
|
||||
"scrollY": 547.0909090909091,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 60,
|
||||
"expanded": true,
|
||||
"name": "クリア後 森",
|
||||
"order": 19,
|
||||
"parentId": 56,
|
||||
"scrollX": 557.4545454545455,
|
||||
"scrollY": 621.2727272727273
|
||||
},
|
||||
{
|
||||
"id": 61,
|
||||
"expanded": true,
|
||||
"name": "クリア後 対魔の祠",
|
||||
"order": 20,
|
||||
"parentId": 56,
|
||||
"scrollX": 692.7272727272727,
|
||||
"scrollY": 714
|
||||
},
|
||||
{
|
||||
"id": 62,
|
||||
"expanded": true,
|
||||
"name": "クリア後 林道",
|
||||
"order": 21,
|
||||
"parentId": 56,
|
||||
"scrollX": 796.3636363636364,
|
||||
"scrollY": 1260.5454545454545,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 63,
|
||||
"expanded": true,
|
||||
"name": "クリア後 森奥地",
|
||||
"order": 22,
|
||||
"parentId": 56,
|
||||
"scrollX": 787.6363636363636,
|
||||
"scrollY": 868.909090909091,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 64,
|
||||
"expanded": true,
|
||||
"name": "森 細道4 変更",
|
||||
"order": 32,
|
||||
"parentId": 3,
|
||||
"scrollX": 993.8181818181819,
|
||||
"scrollY": 1355.4545454545455
|
||||
},
|
||||
{
|
||||
"id": 65,
|
||||
"expanded": true,
|
||||
"name": "惑わしの林道変更",
|
||||
"order": 50,
|
||||
"parentId": 0,
|
||||
"scrollX": 846.5454545454546,
|
||||
"scrollY": 1406.7272727272727,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 66,
|
||||
"expanded": false,
|
||||
"name": "透過用",
|
||||
"order": 16,
|
||||
"parentId": 52,
|
||||
"scrollX": 557.4545454545455,
|
||||
"scrollY": 460.90909090909093,
|
||||
"quick": false
|
||||
}
|
||||
]
|
||||
7970
data/Skills.json
Normal file
7970
data/Skills.json
Normal file
File diff suppressed because it is too large
Load diff
980
data/States.json
Normal file
980
data/States.json
Normal file
|
|
@ -0,0 +1,980 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"autoRemovalTiming": 0,
|
||||
"chanceByDamage": 100,
|
||||
"iconIndex": 1,
|
||||
"maxTurns": 1,
|
||||
"message1": "%1は倒れた!",
|
||||
"message2": "%1を倒した!",
|
||||
"message3": "",
|
||||
"message4": "%1は立ち上がった!",
|
||||
"minTurns": 1,
|
||||
"motion": 3,
|
||||
"name": "戦闘不能",
|
||||
"note": "ステート1番はHP0のときに付加されます。",
|
||||
"overlay": 0,
|
||||
"priority": 100,
|
||||
"releaseByDamage": false,
|
||||
"removeAtBattleEnd": false,
|
||||
"removeByDamage": false,
|
||||
"removeByRestriction": false,
|
||||
"removeByWalking": false,
|
||||
"restriction": 4,
|
||||
"stepsToRemove": 100,
|
||||
"traits": [
|
||||
{
|
||||
"code": 23,
|
||||
"dataId": 9,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"messageType": 1
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"autoRemovalTiming": 2,
|
||||
"chanceByDamage": 100,
|
||||
"iconIndex": 0,
|
||||
"maxTurns": 1,
|
||||
"message1": "",
|
||||
"message2": "",
|
||||
"message3": "",
|
||||
"message4": "",
|
||||
"minTurns": 1,
|
||||
"motion": 0,
|
||||
"name": "防御",
|
||||
"note": "",
|
||||
"overlay": 0,
|
||||
"priority": 0,
|
||||
"removeAtBattleEnd": true,
|
||||
"removeByDamage": false,
|
||||
"removeByRestriction": true,
|
||||
"removeByWalking": false,
|
||||
"restriction": 0,
|
||||
"stepsToRemove": 100,
|
||||
"traits": [
|
||||
{
|
||||
"code": 62,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"messageType": 1
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"autoRemovalTiming": 0,
|
||||
"chanceByDamage": 100,
|
||||
"iconIndex": 0,
|
||||
"maxTurns": 1,
|
||||
"message1": "",
|
||||
"message2": "",
|
||||
"message3": "",
|
||||
"message4": "",
|
||||
"minTurns": 1,
|
||||
"motion": 0,
|
||||
"name": "不死身",
|
||||
"note": "",
|
||||
"overlay": 0,
|
||||
"priority": 0,
|
||||
"removeAtBattleEnd": true,
|
||||
"removeByDamage": false,
|
||||
"removeByRestriction": false,
|
||||
"removeByWalking": false,
|
||||
"restriction": 0,
|
||||
"stepsToRemove": 100,
|
||||
"traits": [
|
||||
{
|
||||
"code": 14,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"messageType": 1
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"autoRemovalTiming": 0,
|
||||
"chanceByDamage": 100,
|
||||
"iconIndex": 2,
|
||||
"maxTurns": 1,
|
||||
"message1": "%1は毒にかかった!",
|
||||
"message2": "%1に毒をかけた!",
|
||||
"message3": "",
|
||||
"message4": "%1の毒が消えた!",
|
||||
"minTurns": 1,
|
||||
"motion": 1,
|
||||
"overlay": 1,
|
||||
"name": "毒",
|
||||
"note": "",
|
||||
"priority": 50,
|
||||
"releaseByDamage": false,
|
||||
"removeAtBattleEnd": false,
|
||||
"removeByDamage": false,
|
||||
"removeByRestriction": false,
|
||||
"removeByWalking": false,
|
||||
"restriction": 0,
|
||||
"stepsToRemove": 100,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 7,
|
||||
"value": -0.1
|
||||
}
|
||||
],
|
||||
"messageType": 1
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"autoRemovalTiming": 1,
|
||||
"chanceByDamage": 100,
|
||||
"iconIndex": 3,
|
||||
"maxTurns": 5,
|
||||
"message1": "%1は暗闇に閉ざされた!",
|
||||
"message2": "%1を暗闇に閉ざした!",
|
||||
"message3": "",
|
||||
"message4": "%1の暗闇が消えた!",
|
||||
"minTurns": 3,
|
||||
"motion": 1,
|
||||
"name": "暗闇",
|
||||
"note": "",
|
||||
"overlay": 2,
|
||||
"priority": 60,
|
||||
"releaseByDamage": false,
|
||||
"removeAtBattleEnd": true,
|
||||
"removeByDamage": false,
|
||||
"removeByRestriction": false,
|
||||
"removeByWalking": false,
|
||||
"restriction": 0,
|
||||
"stepsToRemove": 100,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 0,
|
||||
"value": -0.5
|
||||
}
|
||||
],
|
||||
"messageType": 1
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"autoRemovalTiming": 1,
|
||||
"chanceByDamage": 100,
|
||||
"iconIndex": 4,
|
||||
"maxTurns": 5,
|
||||
"message1": "%1は沈黙した!",
|
||||
"message2": "%1を沈黙させた!",
|
||||
"message3": "",
|
||||
"message4": "%1の沈黙が解けた!",
|
||||
"minTurns": 3,
|
||||
"motion": 1,
|
||||
"name": "沈黙",
|
||||
"note": "",
|
||||
"overlay": 3,
|
||||
"priority": 65,
|
||||
"releaseByDamage": false,
|
||||
"removeAtBattleEnd": true,
|
||||
"removeByDamage": false,
|
||||
"removeByRestriction": false,
|
||||
"removeByWalking": false,
|
||||
"restriction": 0,
|
||||
"stepsToRemove": 100,
|
||||
"traits": [
|
||||
{
|
||||
"code": 42,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"messageType": 1
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"autoRemovalTiming": 1,
|
||||
"chanceByDamage": 50,
|
||||
"iconIndex": 5,
|
||||
"maxTurns": 4,
|
||||
"message1": "%1は激昂した!",
|
||||
"message2": "%1を激昂させた!",
|
||||
"message3": "",
|
||||
"message4": "%1は我に返った!",
|
||||
"minTurns": 2,
|
||||
"motion": 1,
|
||||
"name": "激昂",
|
||||
"note": "",
|
||||
"overlay": 4,
|
||||
"priority": 70,
|
||||
"releaseByDamage": false,
|
||||
"removeAtBattleEnd": true,
|
||||
"removeByDamage": true,
|
||||
"removeByRestriction": false,
|
||||
"removeByWalking": false,
|
||||
"restriction": 1,
|
||||
"stepsToRemove": 100,
|
||||
"traits": [],
|
||||
"messageType": 1
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"autoRemovalTiming": 1,
|
||||
"chanceByDamage": 50,
|
||||
"iconIndex": 6,
|
||||
"maxTurns": 4,
|
||||
"message1": "%1は混乱した!",
|
||||
"message2": "%1を混乱させた!",
|
||||
"message3": "",
|
||||
"message4": "%1は我に返った!",
|
||||
"minTurns": 2,
|
||||
"motion": 1,
|
||||
"name": "混乱",
|
||||
"note": "",
|
||||
"overlay": 5,
|
||||
"priority": 75,
|
||||
"releaseByDamage": false,
|
||||
"removeAtBattleEnd": true,
|
||||
"removeByDamage": true,
|
||||
"removeByRestriction": false,
|
||||
"removeByWalking": false,
|
||||
"restriction": 2,
|
||||
"stepsToRemove": 100,
|
||||
"traits": [],
|
||||
"messageType": 1
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"autoRemovalTiming": 1,
|
||||
"chanceByDamage": 50,
|
||||
"iconIndex": 7,
|
||||
"maxTurns": 4,
|
||||
"message1": "%1は魅了された!",
|
||||
"message2": "%1を魅了した!",
|
||||
"message3": "",
|
||||
"message4": "%1は我に返った!",
|
||||
"minTurns": 2,
|
||||
"motion": 1,
|
||||
"name": "魅了",
|
||||
"note": "",
|
||||
"overlay": 6,
|
||||
"priority": 80,
|
||||
"releaseByDamage": false,
|
||||
"removeAtBattleEnd": true,
|
||||
"removeByDamage": true,
|
||||
"removeByRestriction": false,
|
||||
"removeByWalking": false,
|
||||
"restriction": 3,
|
||||
"stepsToRemove": 100,
|
||||
"traits": [],
|
||||
"messageType": 1
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"autoRemovalTiming": 1,
|
||||
"chanceByDamage": 100,
|
||||
"iconIndex": 8,
|
||||
"maxTurns": 5,
|
||||
"message1": "%1は眠った!",
|
||||
"message2": "%1を眠らせた!",
|
||||
"message3": "%1は眠っている。",
|
||||
"message4": "%1は目を覚ました!",
|
||||
"minTurns": 3,
|
||||
"motion": 2,
|
||||
"name": "睡眠",
|
||||
"note": "",
|
||||
"overlay": 7,
|
||||
"priority": 90,
|
||||
"releaseByDamage": true,
|
||||
"removeAtBattleEnd": true,
|
||||
"removeByDamage": true,
|
||||
"removeByRestriction": false,
|
||||
"removeByWalking": false,
|
||||
"restriction": 4,
|
||||
"stepsToRemove": 100,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": -1
|
||||
}
|
||||
],
|
||||
"messageType": 1
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"autoRemovalTiming": 0,
|
||||
"chanceByDamage": 100,
|
||||
"traits": [],
|
||||
"iconIndex": 0,
|
||||
"maxTurns": 1,
|
||||
"message1": "",
|
||||
"message2": "",
|
||||
"message3": "",
|
||||
"message4": "",
|
||||
"minTurns": 1,
|
||||
"motion": 0,
|
||||
"name": "淫紋付与",
|
||||
"note": "",
|
||||
"overlay": 0,
|
||||
"priority": 50,
|
||||
"removeAtBattleEnd": false,
|
||||
"removeByDamage": false,
|
||||
"removeByRestriction": false,
|
||||
"removeByWalking": false,
|
||||
"restriction": 0,
|
||||
"stepsToRemove": 100,
|
||||
"messageType": 1
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"autoRemovalTiming": 2,
|
||||
"chanceByDamage": 100,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": -1
|
||||
}
|
||||
],
|
||||
"iconIndex": 9,
|
||||
"maxTurns": 3,
|
||||
"message1": "%1はしびれて動けなくなった!",
|
||||
"message2": "%1を麻痺させた!",
|
||||
"message3": "%1は体がしびれて動けない!",
|
||||
"message4": "%1の麻痺が解けた!",
|
||||
"minTurns": 3,
|
||||
"motion": 2,
|
||||
"name": "麻痺",
|
||||
"note": "",
|
||||
"overlay": 8,
|
||||
"priority": 95,
|
||||
"removeAtBattleEnd": true,
|
||||
"removeByDamage": false,
|
||||
"removeByRestriction": false,
|
||||
"removeByWalking": false,
|
||||
"restriction": 4,
|
||||
"stepsToRemove": 100,
|
||||
"messageType": 1
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"autoRemovalTiming": 2,
|
||||
"chanceByDamage": 100,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": -1
|
||||
}
|
||||
],
|
||||
"iconIndex": 9,
|
||||
"maxTurns": 2,
|
||||
"message1": "%1はバランスを崩した!",
|
||||
"message2": "%1はバランスを崩した!",
|
||||
"message3": "%1はバランスを崩している……",
|
||||
"message4": "%1は体勢を立て直した!",
|
||||
"minTurns": 1,
|
||||
"motion": 1,
|
||||
"name": "スタン",
|
||||
"note": "",
|
||||
"overlay": 10,
|
||||
"priority": 90,
|
||||
"removeAtBattleEnd": true,
|
||||
"removeByDamage": false,
|
||||
"removeByRestriction": false,
|
||||
"removeByWalking": false,
|
||||
"restriction": 4,
|
||||
"stepsToRemove": 100,
|
||||
"messageType": 1
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"autoRemovalTiming": 0,
|
||||
"chanceByDamage": 100,
|
||||
"traits": [],
|
||||
"iconIndex": 0,
|
||||
"maxTurns": 1,
|
||||
"message1": "",
|
||||
"message2": "",
|
||||
"message3": "",
|
||||
"message4": "",
|
||||
"minTurns": 1,
|
||||
"motion": 0,
|
||||
"name": "",
|
||||
"note": "",
|
||||
"overlay": 0,
|
||||
"priority": 50,
|
||||
"removeAtBattleEnd": false,
|
||||
"removeByDamage": false,
|
||||
"removeByRestriction": false,
|
||||
"removeByWalking": false,
|
||||
"restriction": 0,
|
||||
"stepsToRemove": 100,
|
||||
"messageType": 1
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"autoRemovalTiming": 2,
|
||||
"chanceByDamage": 100,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 7,
|
||||
"value": 0.1
|
||||
}
|
||||
],
|
||||
"iconIndex": 72,
|
||||
"maxTurns": 4,
|
||||
"message1": "",
|
||||
"message2": "",
|
||||
"message3": "",
|
||||
"message4": "",
|
||||
"minTurns": 4,
|
||||
"motion": 0,
|
||||
"name": "HP再生",
|
||||
"note": "",
|
||||
"overlay": 0,
|
||||
"priority": 40,
|
||||
"removeAtBattleEnd": true,
|
||||
"removeByDamage": false,
|
||||
"removeByRestriction": false,
|
||||
"removeByWalking": false,
|
||||
"restriction": 0,
|
||||
"stepsToRemove": 100,
|
||||
"messageType": 1
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"autoRemovalTiming": 2,
|
||||
"chanceByDamage": 100,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 8,
|
||||
"value": 0.1
|
||||
}
|
||||
],
|
||||
"iconIndex": 72,
|
||||
"maxTurns": 4,
|
||||
"message1": "",
|
||||
"message2": "",
|
||||
"message3": "",
|
||||
"message4": "",
|
||||
"minTurns": 4,
|
||||
"motion": 0,
|
||||
"name": "MP再生",
|
||||
"note": "",
|
||||
"overlay": 0,
|
||||
"priority": 40,
|
||||
"removeAtBattleEnd": true,
|
||||
"removeByDamage": false,
|
||||
"removeByRestriction": false,
|
||||
"removeByWalking": false,
|
||||
"restriction": 0,
|
||||
"stepsToRemove": 100,
|
||||
"messageType": 1
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"autoRemovalTiming": 2,
|
||||
"chanceByDamage": 100,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 9,
|
||||
"value": 0.1
|
||||
}
|
||||
],
|
||||
"iconIndex": 72,
|
||||
"maxTurns": 4,
|
||||
"message1": "",
|
||||
"message2": "",
|
||||
"message3": "",
|
||||
"message4": "",
|
||||
"minTurns": 4,
|
||||
"motion": 0,
|
||||
"name": "TP再生",
|
||||
"note": "",
|
||||
"overlay": 0,
|
||||
"priority": 40,
|
||||
"removeAtBattleEnd": true,
|
||||
"removeByDamage": false,
|
||||
"removeByRestriction": false,
|
||||
"removeByWalking": false,
|
||||
"restriction": 0,
|
||||
"stepsToRemove": 100,
|
||||
"messageType": 1
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"autoRemovalTiming": 2,
|
||||
"chanceByDamage": 100,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 5,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"iconIndex": 70,
|
||||
"maxTurns": 5,
|
||||
"message1": "",
|
||||
"message2": "",
|
||||
"message3": "",
|
||||
"message4": "",
|
||||
"minTurns": 5,
|
||||
"motion": 0,
|
||||
"name": "魔法反射",
|
||||
"note": "",
|
||||
"overlay": 0,
|
||||
"priority": 40,
|
||||
"removeAtBattleEnd": true,
|
||||
"removeByDamage": false,
|
||||
"removeByRestriction": false,
|
||||
"removeByWalking": false,
|
||||
"restriction": 0,
|
||||
"stepsToRemove": 100,
|
||||
"messageType": 1
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"autoRemovalTiming": 2,
|
||||
"chanceByDamage": 100,
|
||||
"traits": [
|
||||
{
|
||||
"code": 62,
|
||||
"dataId": 2,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"iconIndex": 81,
|
||||
"maxTurns": 1,
|
||||
"message1": "",
|
||||
"message2": "",
|
||||
"message3": "",
|
||||
"message4": "",
|
||||
"minTurns": 1,
|
||||
"motion": 0,
|
||||
"name": "かばう",
|
||||
"note": "",
|
||||
"overlay": 0,
|
||||
"priority": 40,
|
||||
"removeAtBattleEnd": true,
|
||||
"removeByDamage": false,
|
||||
"removeByRestriction": true,
|
||||
"removeByWalking": false,
|
||||
"restriction": 0,
|
||||
"stepsToRemove": 100,
|
||||
"messageType": 1
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"autoRemovalTiming": 2,
|
||||
"chanceByDamage": 100,
|
||||
"traits": [
|
||||
{
|
||||
"code": 23,
|
||||
"dataId": 0,
|
||||
"value": 9
|
||||
}
|
||||
],
|
||||
"iconIndex": 76,
|
||||
"maxTurns": 5,
|
||||
"message1": "%1は狙われやすくなった!",
|
||||
"message2": "",
|
||||
"message3": "",
|
||||
"message4": "",
|
||||
"minTurns": 5,
|
||||
"motion": 0,
|
||||
"name": "挑発",
|
||||
"note": "",
|
||||
"overlay": 0,
|
||||
"priority": 40,
|
||||
"removeAtBattleEnd": true,
|
||||
"removeByDamage": false,
|
||||
"removeByRestriction": false,
|
||||
"removeByWalking": false,
|
||||
"restriction": 0,
|
||||
"stepsToRemove": 100,
|
||||
"messageType": 1
|
||||
},
|
||||
{
|
||||
"id": 21,
|
||||
"autoRemovalTiming": 2,
|
||||
"chanceByDamage": 100,
|
||||
"traits": [
|
||||
{
|
||||
"code": 23,
|
||||
"dataId": 0,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"iconIndex": 81,
|
||||
"maxTurns": 5,
|
||||
"message1": "%1は狙われにくくなった!",
|
||||
"message2": "",
|
||||
"message3": "",
|
||||
"message4": "",
|
||||
"minTurns": 5,
|
||||
"motion": 0,
|
||||
"name": "隠れる",
|
||||
"note": "",
|
||||
"overlay": 0,
|
||||
"priority": 40,
|
||||
"removeAtBattleEnd": true,
|
||||
"removeByDamage": false,
|
||||
"removeByRestriction": false,
|
||||
"removeByWalking": false,
|
||||
"restriction": 0,
|
||||
"stepsToRemove": 100,
|
||||
"messageType": 1
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"autoRemovalTiming": 1,
|
||||
"chanceByDamage": 100,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 6,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"iconIndex": 77,
|
||||
"maxTurns": 3,
|
||||
"message1": "",
|
||||
"message2": "",
|
||||
"message3": "",
|
||||
"message4": "",
|
||||
"minTurns": 3,
|
||||
"motion": 0,
|
||||
"name": "反撃",
|
||||
"note": "",
|
||||
"overlay": 0,
|
||||
"priority": 50,
|
||||
"removeAtBattleEnd": true,
|
||||
"removeByDamage": false,
|
||||
"removeByRestriction": true,
|
||||
"removeByWalking": false,
|
||||
"restriction": 0,
|
||||
"stepsToRemove": 100,
|
||||
"messageType": 1
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"autoRemovalTiming": 2,
|
||||
"chanceByDamage": 100,
|
||||
"traits": [
|
||||
{
|
||||
"code": 14,
|
||||
"dataId": 4,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 14,
|
||||
"dataId": 5,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 14,
|
||||
"dataId": 6,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 14,
|
||||
"dataId": 7,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 14,
|
||||
"dataId": 8,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 14,
|
||||
"dataId": 9,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 14,
|
||||
"dataId": 10,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 14,
|
||||
"dataId": 12,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 14,
|
||||
"dataId": 13,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"iconIndex": 70,
|
||||
"maxTurns": 5,
|
||||
"message1": "",
|
||||
"message2": "",
|
||||
"message3": "",
|
||||
"message4": "",
|
||||
"minTurns": 5,
|
||||
"motion": 0,
|
||||
"name": "状態異常防止",
|
||||
"note": "",
|
||||
"overlay": 0,
|
||||
"priority": 50,
|
||||
"removeAtBattleEnd": true,
|
||||
"removeByDamage": false,
|
||||
"removeByRestriction": false,
|
||||
"removeByWalking": false,
|
||||
"restriction": 0,
|
||||
"stepsToRemove": 100,
|
||||
"messageType": 1
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"autoRemovalTiming": 2,
|
||||
"chanceByDamage": 100,
|
||||
"traits": [
|
||||
{
|
||||
"code": 23,
|
||||
"dataId": 4,
|
||||
"value": 0.25
|
||||
}
|
||||
],
|
||||
"iconIndex": 70,
|
||||
"maxTurns": 5,
|
||||
"message1": "",
|
||||
"message2": "",
|
||||
"message3": "",
|
||||
"message4": "",
|
||||
"minTurns": 5,
|
||||
"motion": 0,
|
||||
"name": "消費MP減",
|
||||
"note": "",
|
||||
"overlay": 0,
|
||||
"priority": 50,
|
||||
"removeAtBattleEnd": true,
|
||||
"removeByDamage": false,
|
||||
"removeByRestriction": false,
|
||||
"removeByWalking": false,
|
||||
"restriction": 0,
|
||||
"stepsToRemove": 100,
|
||||
"messageType": 1
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"autoRemovalTiming": 2,
|
||||
"chanceByDamage": 100,
|
||||
"traits": [
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 2,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 11,
|
||||
"dataId": 2,
|
||||
"value": 0.5
|
||||
},
|
||||
{
|
||||
"code": 21,
|
||||
"dataId": 2,
|
||||
"value": 1.1
|
||||
}
|
||||
],
|
||||
"iconIndex": 64,
|
||||
"maxTurns": 5,
|
||||
"message1": "%1は炎の力を身にまとった。",
|
||||
"message2": "%1は炎の力を身にまとった。",
|
||||
"message3": "",
|
||||
"message4": "",
|
||||
"minTurns": 5,
|
||||
"motion": 0,
|
||||
"name": "炎の力",
|
||||
"note": "",
|
||||
"overlay": 0,
|
||||
"priority": 50,
|
||||
"removeAtBattleEnd": true,
|
||||
"removeByDamage": false,
|
||||
"removeByRestriction": false,
|
||||
"removeByWalking": false,
|
||||
"restriction": 0,
|
||||
"stepsToRemove": 100,
|
||||
"messageType": 1
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"autoRemovalTiming": 2,
|
||||
"chanceByDamage": 100,
|
||||
"traits": [
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 3,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 11,
|
||||
"dataId": 3,
|
||||
"value": 0.5
|
||||
},
|
||||
{
|
||||
"code": 21,
|
||||
"dataId": 2,
|
||||
"value": 1.1
|
||||
}
|
||||
],
|
||||
"iconIndex": 65,
|
||||
"maxTurns": 5,
|
||||
"message1": "%1は氷の力を身にまとった。",
|
||||
"message2": "%1は氷の力を身にまとった。",
|
||||
"message3": "",
|
||||
"message4": "",
|
||||
"minTurns": 5,
|
||||
"motion": 0,
|
||||
"name": "氷の力",
|
||||
"note": "",
|
||||
"overlay": 0,
|
||||
"priority": 50,
|
||||
"removeAtBattleEnd": true,
|
||||
"removeByDamage": false,
|
||||
"removeByRestriction": false,
|
||||
"removeByWalking": false,
|
||||
"restriction": 0,
|
||||
"stepsToRemove": 100,
|
||||
"messageType": 1
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"autoRemovalTiming": 2,
|
||||
"chanceByDamage": 100,
|
||||
"traits": [
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 4,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 11,
|
||||
"dataId": 4,
|
||||
"value": 0.5
|
||||
},
|
||||
{
|
||||
"code": 21,
|
||||
"dataId": 2,
|
||||
"value": 1.1
|
||||
}
|
||||
],
|
||||
"iconIndex": 66,
|
||||
"maxTurns": 5,
|
||||
"message1": "%1は雷の力を身にまとった。",
|
||||
"message2": "%1は雷の力を身にまとった。",
|
||||
"message3": "",
|
||||
"message4": "",
|
||||
"minTurns": 5,
|
||||
"motion": 0,
|
||||
"name": "雷の力",
|
||||
"note": "",
|
||||
"overlay": 0,
|
||||
"priority": 50,
|
||||
"removeAtBattleEnd": true,
|
||||
"removeByDamage": false,
|
||||
"removeByRestriction": false,
|
||||
"removeByWalking": false,
|
||||
"restriction": 0,
|
||||
"stepsToRemove": 100,
|
||||
"messageType": 1
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"autoRemovalTiming": 0,
|
||||
"chanceByDamage": 100,
|
||||
"traits": [],
|
||||
"iconIndex": 0,
|
||||
"maxTurns": 1,
|
||||
"message1": "",
|
||||
"message2": "",
|
||||
"message3": "",
|
||||
"message4": "",
|
||||
"minTurns": 1,
|
||||
"motion": 0,
|
||||
"name": "",
|
||||
"note": "",
|
||||
"overlay": 0,
|
||||
"priority": 50,
|
||||
"removeAtBattleEnd": false,
|
||||
"removeByDamage": false,
|
||||
"removeByRestriction": false,
|
||||
"removeByWalking": false,
|
||||
"restriction": 0,
|
||||
"stepsToRemove": 100,
|
||||
"messageType": 1
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"autoRemovalTiming": 0,
|
||||
"chanceByDamage": 100,
|
||||
"traits": [
|
||||
{
|
||||
"code": 64,
|
||||
"dataId": 0,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"iconIndex": 72,
|
||||
"maxTurns": 1,
|
||||
"message1": "",
|
||||
"message2": "",
|
||||
"message3": "",
|
||||
"message4": "",
|
||||
"minTurns": 1,
|
||||
"motion": 0,
|
||||
"name": "エンカウント半減",
|
||||
"note": "",
|
||||
"overlay": 0,
|
||||
"priority": 20,
|
||||
"removeAtBattleEnd": false,
|
||||
"removeByDamage": false,
|
||||
"removeByRestriction": false,
|
||||
"removeByWalking": true,
|
||||
"restriction": 0,
|
||||
"stepsToRemove": 100,
|
||||
"messageType": 1
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"autoRemovalTiming": 0,
|
||||
"chanceByDamage": 100,
|
||||
"traits": [
|
||||
{
|
||||
"code": 64,
|
||||
"dataId": 4,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 64,
|
||||
"dataId": 5,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"iconIndex": 70,
|
||||
"maxTurns": 1,
|
||||
"message1": "",
|
||||
"message2": "",
|
||||
"message3": "",
|
||||
"message4": "",
|
||||
"minTurns": 1,
|
||||
"motion": 0,
|
||||
"name": "賞金・アイテム2倍",
|
||||
"note": "",
|
||||
"overlay": 0,
|
||||
"priority": 20,
|
||||
"removeAtBattleEnd": false,
|
||||
"removeByDamage": false,
|
||||
"removeByRestriction": false,
|
||||
"removeByWalking": true,
|
||||
"restriction": 0,
|
||||
"stepsToRemove": 100,
|
||||
"messageType": 1
|
||||
}
|
||||
]
|
||||
665
data/System.json
Normal file
665
data/System.json
Normal file
|
|
@ -0,0 +1,665 @@
|
|||
{
|
||||
"advanced": {
|
||||
"gameId": 35775983,
|
||||
"screenWidth": 1200,
|
||||
"screenHeight": 912,
|
||||
"uiAreaWidth": 1200,
|
||||
"uiAreaHeight": 912,
|
||||
"numberFontFilename": "mplus-2p-bold-sub.woff",
|
||||
"fallbackFonts": "Verdana, sans-serif",
|
||||
"fontSize": 38,
|
||||
"mainFontFilename": "mplus-1m-regular.woff",
|
||||
"windowOpacity": 192,
|
||||
"screenScale": 1,
|
||||
"picturesUpperLimit": 100
|
||||
},
|
||||
"airship": {
|
||||
"bgm": {
|
||||
"name": "Ship3",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
"characterIndex": 3,
|
||||
"characterName": "Vehicle",
|
||||
"startMapId": 0,
|
||||
"startX": 0,
|
||||
"startY": 0
|
||||
},
|
||||
"armorTypes": [
|
||||
"",
|
||||
"一般防具",
|
||||
"魔法防具",
|
||||
"軽装防具",
|
||||
"重装防具",
|
||||
"小型盾",
|
||||
"大型盾"
|
||||
],
|
||||
"attackMotions": [
|
||||
{
|
||||
"type": 0,
|
||||
"weaponImageId": 0
|
||||
},
|
||||
{
|
||||
"type": 1,
|
||||
"weaponImageId": 1
|
||||
},
|
||||
{
|
||||
"type": 1,
|
||||
"weaponImageId": 2
|
||||
},
|
||||
{
|
||||
"type": 1,
|
||||
"weaponImageId": 3
|
||||
},
|
||||
{
|
||||
"type": 1,
|
||||
"weaponImageId": 4
|
||||
},
|
||||
{
|
||||
"type": 1,
|
||||
"weaponImageId": 5
|
||||
},
|
||||
{
|
||||
"type": 1,
|
||||
"weaponImageId": 6
|
||||
},
|
||||
{
|
||||
"type": 2,
|
||||
"weaponImageId": 7
|
||||
},
|
||||
{
|
||||
"type": 2,
|
||||
"weaponImageId": 8
|
||||
},
|
||||
{
|
||||
"type": 2,
|
||||
"weaponImageId": 9
|
||||
},
|
||||
{
|
||||
"type": 0,
|
||||
"weaponImageId": 10
|
||||
},
|
||||
{
|
||||
"type": 0,
|
||||
"weaponImageId": 11
|
||||
},
|
||||
{
|
||||
"type": 0,
|
||||
"weaponImageId": 12
|
||||
}
|
||||
],
|
||||
"battleBgm": {
|
||||
"name": "Battle1",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
"battleback1Name": "GrassMaze",
|
||||
"battleback2Name": "GrassMaze",
|
||||
"battlerHue": 0,
|
||||
"battlerName": "Hi_monster",
|
||||
"battleSystem": 0,
|
||||
"boat": {
|
||||
"bgm": {
|
||||
"name": "Ship1",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
"characterIndex": 0,
|
||||
"characterName": "Vehicle",
|
||||
"startMapId": 0,
|
||||
"startX": 0,
|
||||
"startY": 0
|
||||
},
|
||||
"currencyUnit": "G",
|
||||
"defeatMe": {
|
||||
"name": "Defeat1",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
"editMapId": 59,
|
||||
"elements": [
|
||||
"",
|
||||
"物理",
|
||||
"炎",
|
||||
"氷",
|
||||
"雷",
|
||||
"水",
|
||||
"土",
|
||||
"風",
|
||||
"光",
|
||||
"闇"
|
||||
],
|
||||
"equipTypes": [
|
||||
"",
|
||||
"武器",
|
||||
"盾",
|
||||
"頭",
|
||||
"身体",
|
||||
"装飾品"
|
||||
],
|
||||
"gameTitle": "",
|
||||
"gameoverMe": {
|
||||
"name": "Gameover1",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
"itemCategories": [
|
||||
true,
|
||||
false,
|
||||
false,
|
||||
true
|
||||
],
|
||||
"locale": "ja_JP",
|
||||
"magicSkills": [
|
||||
1
|
||||
],
|
||||
"menuCommands": [
|
||||
true,
|
||||
false,
|
||||
true,
|
||||
true,
|
||||
false,
|
||||
true
|
||||
],
|
||||
"optAutosave": true,
|
||||
"optDisplayTp": true,
|
||||
"optDrawTitle": true,
|
||||
"optExtraExp": false,
|
||||
"optFloorDeath": false,
|
||||
"optFollowers": true,
|
||||
"optKeyItemsNumber": false,
|
||||
"optSideView": false,
|
||||
"optSlipDeath": false,
|
||||
"optTransparent": false,
|
||||
"partyMembers": [
|
||||
1
|
||||
],
|
||||
"ship": {
|
||||
"bgm": {
|
||||
"name": "Ship2",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
"characterIndex": 1,
|
||||
"characterName": "Vehicle",
|
||||
"startMapId": 0,
|
||||
"startX": 0,
|
||||
"startY": 0
|
||||
},
|
||||
"skillTypes": [
|
||||
"",
|
||||
"魔法",
|
||||
"必殺技"
|
||||
],
|
||||
"sounds": [
|
||||
{
|
||||
"name": "Cursor3",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
{
|
||||
"name": "Decision2",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
{
|
||||
"name": "Cancel1",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 60
|
||||
},
|
||||
{
|
||||
"name": "Buzzer1",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
{
|
||||
"name": "Equip1",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
{
|
||||
"name": "Save2",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
{
|
||||
"name": "Load2",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
{
|
||||
"name": "Battle1",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
{
|
||||
"name": "Run",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
{
|
||||
"name": "Attack3",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
{
|
||||
"name": "Damage4",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
{
|
||||
"name": "Collapse1",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
{
|
||||
"name": "Collapse2",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
{
|
||||
"name": "Collapse3",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
{
|
||||
"name": "Damage5",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
{
|
||||
"name": "Collapse4",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
{
|
||||
"name": "Recovery",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
{
|
||||
"name": "Miss",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
{
|
||||
"name": "Evasion1",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
{
|
||||
"name": "Evasion2",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
{
|
||||
"name": "Reflection",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
{
|
||||
"name": "Shop1",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
{
|
||||
"name": "Item3",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
{
|
||||
"name": "Item3",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
}
|
||||
],
|
||||
"startMapId": 1,
|
||||
"startX": 9,
|
||||
"startY": 5,
|
||||
"switches": [
|
||||
"",
|
||||
"hadaka",
|
||||
"sukumizu",
|
||||
"sihuku",
|
||||
"オープニング",
|
||||
"",
|
||||
"一度目のおなに",
|
||||
"セーブ(コモン)",
|
||||
"メニュー(コモン)",
|
||||
"",
|
||||
"森入る",
|
||||
"看板読む",
|
||||
"細道進む",
|
||||
"細道",
|
||||
"植物生還",
|
||||
"苗床ルート1",
|
||||
"植物妊娠",
|
||||
"",
|
||||
"触手固定",
|
||||
"チェイス終わり",
|
||||
"ナメクジ",
|
||||
"触手邂逅",
|
||||
"触手愛撫",
|
||||
"タンスみる",
|
||||
"日記を見る",
|
||||
"蝿チェイス",
|
||||
"蝿邂逅",
|
||||
"蝿捕まる",
|
||||
"カギ取得",
|
||||
"小屋前のカギ開ける",
|
||||
"蝿生還",
|
||||
"ヒントの紙とる",
|
||||
"日記を見る2",
|
||||
"豚邂逅",
|
||||
"くさいゲット",
|
||||
"まぼろしゲット",
|
||||
"べとべとゲット",
|
||||
"いずれかのキノコゲット",
|
||||
"正規ルート",
|
||||
"豚姦ルート",
|
||||
"豚 生還",
|
||||
"白キノコ1",
|
||||
"白キノコ2",
|
||||
"白キノコ3",
|
||||
"豚小屋入る",
|
||||
"触手壁に触る",
|
||||
"触手壁に触る2",
|
||||
"日記首飾り",
|
||||
"首飾り取得",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"首飾りを入手後 森に入る",
|
||||
"森に迷い込む",
|
||||
"森から戻る",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"淫魔と出会う",
|
||||
"入口に辿り着く",
|
||||
"祠に入る",
|
||||
"最後の日記を読む",
|
||||
"浄化完了",
|
||||
"古い日記を読む",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"淫魔ルート 開始",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"エンド後 神主と話す",
|
||||
"エンド後 淫魔と話す",
|
||||
"エンド 母と話す",
|
||||
"エンド後 森奥",
|
||||
"",
|
||||
"",
|
||||
""
|
||||
],
|
||||
"terms": {
|
||||
"basic": [
|
||||
"レベル",
|
||||
"Lv",
|
||||
"HP",
|
||||
"HP",
|
||||
"MP",
|
||||
"MP",
|
||||
"TP",
|
||||
"TP",
|
||||
"経験値",
|
||||
"EXP"
|
||||
],
|
||||
"commands": [
|
||||
"戦う",
|
||||
"逃げる",
|
||||
"攻撃",
|
||||
"防御",
|
||||
"アイテム",
|
||||
"スキル",
|
||||
"装備",
|
||||
"ステータス",
|
||||
"並び替え",
|
||||
"セーブ",
|
||||
"ゲーム終了",
|
||||
"オプション",
|
||||
"武器",
|
||||
"防具",
|
||||
"大事なもの",
|
||||
"装備",
|
||||
"最強装備",
|
||||
"全て外す",
|
||||
"はじめから",
|
||||
"つづきから",
|
||||
null,
|
||||
"タイトルへ",
|
||||
"やめる",
|
||||
null,
|
||||
"購入する",
|
||||
"売却する"
|
||||
],
|
||||
"params": [
|
||||
"最大HP",
|
||||
"最大MP",
|
||||
"攻撃力",
|
||||
"防御力",
|
||||
"魔法力",
|
||||
"魔法防御",
|
||||
"敏捷性",
|
||||
"運",
|
||||
"命中率",
|
||||
"回避率"
|
||||
],
|
||||
"messages": {
|
||||
"alwaysDash": "常時ダッシュ",
|
||||
"commandRemember": "コマンド記憶",
|
||||
"touchUI": "タッチUI",
|
||||
"bgmVolume": "BGM 音量",
|
||||
"bgsVolume": "BGS 音量",
|
||||
"meVolume": "ME 音量",
|
||||
"seVolume": "SE 音量",
|
||||
"possession": "持っている数",
|
||||
"expTotal": "現在の%1",
|
||||
"expNext": "次の%1まで",
|
||||
"saveMessage": "どのファイルにセーブしますか?",
|
||||
"loadMessage": "どのファイルをロードしますか?",
|
||||
"file": "ファイル",
|
||||
"autosave": "オートセーブ",
|
||||
"partyName": "%1たち",
|
||||
"emerge": "%1が出現!",
|
||||
"preemptive": "%1は先手を取った!",
|
||||
"surprise": "%1は不意をつかれた!",
|
||||
"escapeStart": "%1は逃げ出した!",
|
||||
"escapeFailure": "しかし逃げることはできなかった!",
|
||||
"victory": "%1の勝利!",
|
||||
"defeat": "%1は戦いに敗れた。",
|
||||
"obtainExp": "%1 の%2を獲得!",
|
||||
"obtainGold": "お金を %1\\G 手に入れた!",
|
||||
"obtainItem": "%1を手に入れた!",
|
||||
"levelUp": "%1は%2 %3 に上がった!",
|
||||
"obtainSkill": "%1を覚えた!",
|
||||
"useItem": "%1は%2を使った!",
|
||||
"criticalToEnemy": "会心の一撃!!",
|
||||
"criticalToActor": "痛恨の一撃!!",
|
||||
"actorDamage": "%1は %2 のダメージを受けた!",
|
||||
"actorRecovery": "%1の%2が %3 回復した!",
|
||||
"actorGain": "%1の%2が %3 増えた!",
|
||||
"actorLoss": "%1の%2が %3 減った!",
|
||||
"actorDrain": "%1は%2を %3 奪われた!",
|
||||
"actorNoDamage": "%1はダメージを受けていない!",
|
||||
"actorNoHit": "ミス! %1はダメージを受けていない!",
|
||||
"enemyDamage": "%1に %2 のダメージを与えた!",
|
||||
"enemyRecovery": "%1の%2が %3 回復した!",
|
||||
"enemyGain": "%1の%2が %3 増えた!",
|
||||
"enemyLoss": "%1の%2が %3 減った!",
|
||||
"enemyDrain": "%1の%2を %3 奪った!",
|
||||
"enemyNoDamage": "%1にダメージを与えられない!",
|
||||
"enemyNoHit": "ミス! %1にダメージを与えられない!",
|
||||
"evasion": "%1は攻撃をかわした!",
|
||||
"magicEvasion": "%1は魔法を打ち消した!",
|
||||
"magicReflection": "%1は魔法を跳ね返した!",
|
||||
"counterAttack": "%1の反撃!",
|
||||
"substitute": "%1が%2をかばった!",
|
||||
"buffAdd": "%1の%2が上がった!",
|
||||
"debuffAdd": "%1の%2が下がった!",
|
||||
"buffRemove": "%1の%2が元に戻った!",
|
||||
"actionFailure": "%1には効かなかった!"
|
||||
}
|
||||
},
|
||||
"testBattlers": [
|
||||
{
|
||||
"actorId": 1,
|
||||
"level": 1,
|
||||
"equips": [
|
||||
2,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"actorId": 4,
|
||||
"level": 1,
|
||||
"equips": [
|
||||
31,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"actorId": 6,
|
||||
"level": 1,
|
||||
"equips": [
|
||||
7,
|
||||
0,
|
||||
65,
|
||||
21,
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"actorId": 7,
|
||||
"level": 1,
|
||||
"equips": [
|
||||
7,
|
||||
0,
|
||||
0,
|
||||
20,
|
||||
0
|
||||
]
|
||||
}
|
||||
],
|
||||
"testTroopId": 1,
|
||||
"title1Name": "2.1",
|
||||
"title2Name": "",
|
||||
"titleBgm": {
|
||||
"name": "RPG Maker (ogg)/11_scar",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 15
|
||||
},
|
||||
"titleCommandWindow": {
|
||||
"offsetX": -215,
|
||||
"offsetY": 0,
|
||||
"background": 2
|
||||
},
|
||||
"variables": [
|
||||
"",
|
||||
"\\F[mayu_huku_def]",
|
||||
"キノコ数値",
|
||||
"森移動数",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"メッセージ速度固定",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
""
|
||||
],
|
||||
"versionId": 61220539,
|
||||
"victoryMe": {
|
||||
"name": "Victory1",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
"weaponTypes": [
|
||||
"",
|
||||
"短剣",
|
||||
"剣",
|
||||
"フレイル",
|
||||
"斧",
|
||||
"ムチ",
|
||||
"杖",
|
||||
"弓",
|
||||
"クロスボウ",
|
||||
"銃",
|
||||
"爪",
|
||||
"グローブ",
|
||||
"槍"
|
||||
],
|
||||
"windowTone": [
|
||||
34,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"tileSize": 48,
|
||||
"optSplashScreen": false,
|
||||
"optMessageSkip": true,
|
||||
"editor": {
|
||||
"messageWidth1": 60,
|
||||
"messageWidth2": 47,
|
||||
"jsonFormatLevel": 1
|
||||
},
|
||||
"faceSize": 144,
|
||||
"iconSize": 32,
|
||||
"hasEncryptedImages": true,
|
||||
"hasEncryptedAudio": true,
|
||||
"encryptionKey": "30927f4f86d870814e76c0ef886712af"
|
||||
}
|
||||
103089
data/Tilesets.json
Normal file
103089
data/Tilesets.json
Normal file
File diff suppressed because it is too large
Load diff
211
data/Troops.json
Normal file
211
data/Troops.json
Normal file
|
|
@ -0,0 +1,211 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"members": [
|
||||
{
|
||||
"enemyId": 1,
|
||||
"x": 336,
|
||||
"y": 436,
|
||||
"hidden": false
|
||||
},
|
||||
{
|
||||
"enemyId": 1,
|
||||
"x": 480,
|
||||
"y": 436,
|
||||
"hidden": false
|
||||
}
|
||||
],
|
||||
"name": "ゴブリン*2",
|
||||
"pages": [
|
||||
{
|
||||
"conditions": {
|
||||
"actorHp": 50,
|
||||
"actorId": 1,
|
||||
"actorValid": false,
|
||||
"enemyHp": 50,
|
||||
"enemyIndex": 0,
|
||||
"enemyValid": false,
|
||||
"switchId": 1,
|
||||
"switchValid": false,
|
||||
"turnA": 0,
|
||||
"turnB": 0,
|
||||
"turnEnding": false,
|
||||
"turnValid": false
|
||||
},
|
||||
"list": [
|
||||
{
|
||||
"code": 0,
|
||||
"indent": 0,
|
||||
"parameters": []
|
||||
}
|
||||
],
|
||||
"span": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"members": [
|
||||
{
|
||||
"enemyId": 2,
|
||||
"x": 337,
|
||||
"y": 436,
|
||||
"hidden": false
|
||||
},
|
||||
{
|
||||
"enemyId": 2,
|
||||
"x": 480,
|
||||
"y": 436,
|
||||
"hidden": false
|
||||
}
|
||||
],
|
||||
"name": "ノーム*2",
|
||||
"pages": [
|
||||
{
|
||||
"conditions": {
|
||||
"actorHp": 50,
|
||||
"actorId": 1,
|
||||
"actorValid": false,
|
||||
"enemyHp": 50,
|
||||
"enemyIndex": 0,
|
||||
"enemyValid": false,
|
||||
"switchId": 1,
|
||||
"switchValid": false,
|
||||
"turnA": 0,
|
||||
"turnB": 0,
|
||||
"turnEnding": false,
|
||||
"turnValid": false
|
||||
},
|
||||
"list": [
|
||||
{
|
||||
"code": 0,
|
||||
"indent": 0,
|
||||
"parameters": []
|
||||
}
|
||||
],
|
||||
"span": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"members": [
|
||||
{
|
||||
"enemyId": 3,
|
||||
"x": 337,
|
||||
"y": 436,
|
||||
"hidden": false
|
||||
},
|
||||
{
|
||||
"enemyId": 3,
|
||||
"x": 479,
|
||||
"y": 436,
|
||||
"hidden": false
|
||||
}
|
||||
],
|
||||
"name": "クロウ*2",
|
||||
"pages": [
|
||||
{
|
||||
"conditions": {
|
||||
"actorHp": 50,
|
||||
"actorId": 1,
|
||||
"actorValid": false,
|
||||
"enemyHp": 50,
|
||||
"enemyIndex": 0,
|
||||
"enemyValid": false,
|
||||
"switchId": 1,
|
||||
"switchValid": false,
|
||||
"turnA": 0,
|
||||
"turnB": 0,
|
||||
"turnEnding": false,
|
||||
"turnValid": false
|
||||
},
|
||||
"list": [
|
||||
{
|
||||
"code": 0,
|
||||
"indent": 0,
|
||||
"parameters": []
|
||||
}
|
||||
],
|
||||
"span": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"members": [
|
||||
{
|
||||
"enemyId": 4,
|
||||
"x": 408,
|
||||
"y": 436,
|
||||
"hidden": false
|
||||
}
|
||||
],
|
||||
"name": "トレント",
|
||||
"pages": [
|
||||
{
|
||||
"conditions": {
|
||||
"actorHp": 50,
|
||||
"actorId": 1,
|
||||
"actorValid": false,
|
||||
"enemyHp": 50,
|
||||
"enemyIndex": 0,
|
||||
"enemyValid": false,
|
||||
"switchId": 1,
|
||||
"switchValid": false,
|
||||
"turnA": 0,
|
||||
"turnB": 0,
|
||||
"turnEnding": false,
|
||||
"turnValid": false
|
||||
},
|
||||
"list": [
|
||||
{
|
||||
"code": 0,
|
||||
"indent": 0,
|
||||
"parameters": []
|
||||
}
|
||||
],
|
||||
"span": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"members": [
|
||||
{
|
||||
"enemyId": 5,
|
||||
"x": 408,
|
||||
"y": 436,
|
||||
"hidden": false
|
||||
}
|
||||
],
|
||||
"name": "魔獣",
|
||||
"pages": [
|
||||
{
|
||||
"conditions": {
|
||||
"actorHp": 50,
|
||||
"actorId": 1,
|
||||
"actorValid": false,
|
||||
"enemyHp": 50,
|
||||
"enemyIndex": 0,
|
||||
"enemyValid": false,
|
||||
"switchId": 1,
|
||||
"switchValid": false,
|
||||
"turnA": 0,
|
||||
"turnB": 0,
|
||||
"turnEnding": false,
|
||||
"turnValid": false
|
||||
},
|
||||
"list": [
|
||||
{
|
||||
"code": 0,
|
||||
"indent": 0,
|
||||
"parameters": []
|
||||
}
|
||||
],
|
||||
"span": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
1703
data/Weapons.json
Normal file
1703
data/Weapons.json
Normal file
File diff suppressed because it is too large
Load diff
BIN
icudtl.dat
Normal file
BIN
icudtl.dat
Normal file
Binary file not shown.
16
img/tilesets/Dungeon_A1.txt
Normal file
16
img/tilesets/Dungeon_A1.txt
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
Water A|水場A
|
||||
Deep Water|深い水場
|
||||
Swamp Grass|水草
|
||||
Lotus Pads (Flowers)|蓮の葉(花)
|
||||
Lava|溶岩
|
||||
Waterfall A (Lava Cave)|滝A(溶岩洞窟)
|
||||
Water B (Grass Maze)|水場B(草迷宮)
|
||||
Waterfall B (Grass Maze)|滝B(草迷宮)
|
||||
Water C (Dirt Cave)|水場C(土洞窟)
|
||||
Waterfall C (Dirt Cave)|滝C(土洞窟)
|
||||
Water D (Rock Cave)|水場D(岩洞窟)
|
||||
Waterfall D (Rock Cave)|滝D(岩洞窟)
|
||||
Water E (Crystal)|水場E(水晶)
|
||||
Waterfall E (Crystal)|滝E(水晶)
|
||||
Canal|水路
|
||||
Waterfall (Stone Wall)|滝F(石壁)
|
||||
32
img/tilesets/Dungeon_A2.txt
Normal file
32
img/tilesets/Dungeon_A2.txt
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
Ground A (Dirt Cave)|床A(土洞窟)
|
||||
Ground B (Grass Maze)|床B(草迷宮)
|
||||
Dark Ground A (Dirt Cave)|濃い床A(土洞窟)
|
||||
Dark Ground B (Grass Maze)|濃い床B(草迷宮)
|
||||
Hole A (Dirt Cave)|穴A(土洞窟)
|
||||
Hole B (Grass Maze)|穴B(草迷宮)
|
||||
Hole I (Stone Floor)|穴I(石の床)
|
||||
Ground Cracks|床のひび割れ
|
||||
Ground C (Rock Cave)|床C(岩洞窟)
|
||||
Ground D (Crystal)|床D(水晶)
|
||||
Dark Ground C (Rock Cave)|濃い床C(岩洞窟)
|
||||
Dark Ground D (Crystal)|濃い床D(水晶)
|
||||
Hole C (Rock Cave)|穴C(岩洞窟)
|
||||
Hole D (Crystal)|穴D(水晶)
|
||||
Hole J|穴J
|
||||
Soil on Ground|床の汚れ
|
||||
Ground E (Lava Cave)|床E(溶岩洞窟)
|
||||
Ground F (In Body)|床F(体内)
|
||||
Dark Ground E (Lava Cave)|濃い床E(溶岩洞窟)
|
||||
Rug A|じゅうたんA
|
||||
Hole E (Lava Cave)|穴E(溶岩洞窟)
|
||||
Hole F (In Body)|穴F(体内)
|
||||
Fencepost|柵
|
||||
Moss on Ground|床の苔
|
||||
Ground G (Ice Cave)|床G(氷洞窟)
|
||||
Ground H (Demonic World)|床H(魔界)
|
||||
Dark Ground G (Ice Cave)|濃い床G(氷洞窟)
|
||||
Rug B|じゅうたんB
|
||||
Hole G (Ice Cave)|穴G(氷洞窟)
|
||||
Hole H (Demonic World)|穴H(魔界)
|
||||
Raised Stone|石段
|
||||
Poison Swamp|毒の沼
|
||||
48
img/tilesets/Dungeon_A4.txt
Normal file
48
img/tilesets/Dungeon_A4.txt
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
Wall A (Dirt Cave)|壁A(土洞窟)
|
||||
Wall B (Rock Cave)|壁B(岩洞窟)
|
||||
Wall C (Lava Cave)|壁C(溶岩洞窟)
|
||||
Wall D (Ice Cave)|壁D(氷洞窟)
|
||||
Wall E (Grass Maze)|壁E(草迷宮)
|
||||
Wall F (Crystal)|壁F(水晶)
|
||||
Wall G (In Body)|壁G(体内)
|
||||
Wall H (Demonic World)|壁H(魔界)
|
||||
Wall A (Dirt Cave)|壁A(土洞窟)
|
||||
Wall B (Rock Cave)|壁B(岩洞窟)
|
||||
Wall C (Lava Cave)|壁C(溶岩洞窟)
|
||||
Wall D (Ice Cave)|壁D(氷洞窟)
|
||||
Wall E (Grass Maze)|壁E(草迷宮)
|
||||
Wall F (Crystal)|壁F(水晶)
|
||||
Wall G (In Body)|壁G(体内)
|
||||
Wall H (Demonic World)|壁H(魔界)
|
||||
Wall I (Stone)|壁I(石)
|
||||
Wall J (Brick)|壁J(レンガ)
|
||||
Wall K (Stone)|壁K(石)
|
||||
Wall L (Marble)|壁L(大理石)
|
||||
Wall M (Moss)|壁M(苔)
|
||||
Wall N (Castle)|壁N(城)
|
||||
Wall O (Fort)|壁O(砦)
|
||||
Wall P (Demon Castle)|壁P(魔王城)
|
||||
Wall I (Stone)|壁I(石)
|
||||
Wall J (Brick)|壁J(レンガ)
|
||||
Wall K (Stone)|壁K(石)
|
||||
Wall L (Marble)|壁L(大理石)
|
||||
Wall M (Moss)|壁M(苔)
|
||||
Wall N (Castle)|壁N(城)
|
||||
Wall O (Fort)|壁O(砦)
|
||||
Wall P (Demon Castle)|壁P(魔王城)
|
||||
Wall Q (Mecha)|壁Q(メカ)
|
||||
Wall R (Stone)|壁R(石)
|
||||
Wall S (Frozen)|壁S(凍結)
|
||||
Wall T (Dirt Cave, Gold)|壁T(土洞窟・黄金)
|
||||
Ledge A (Dirt Cave)|段差A(土洞窟)
|
||||
Ledge B (Rock Cave)|段差B(岩洞窟)
|
||||
Ledge C (Lava Cave)|段差C(溶岩洞窟)
|
||||
Ledge D (Ice Cave)|段差D(氷洞窟)
|
||||
Wall Q (Mecha)|壁Q(メカ)
|
||||
Wall R (Stone)|壁R(石)
|
||||
Wall S (Frozen)|壁S(凍結)
|
||||
Wall T (Dirt Cave, Gold)|壁T(土洞窟・黄金)
|
||||
Ledge A (Dirt Cave)|段差A(土洞窟)
|
||||
Ledge B (Rock Cave)|段差B(岩洞窟)
|
||||
Ledge C (Lava Cave)|段差C(溶岩洞窟)
|
||||
Ledge D (Ice Cave)|段差D(氷洞窟)
|
||||
128
img/tilesets/Dungeon_A5.txt
Normal file
128
img/tilesets/Dungeon_A5.txt
Normal file
|
|
@ -0,0 +1,128 @@
|
|||
Darkness|暗闇
|
||||
Floating Floor A (Dirt)|浮かぶ床A(土)
|
||||
Floating Floor B (Rock)|浮かぶ床B(岩)
|
||||
Translucent Floor A|半透明の床A
|
||||
Translucent Floor B|半透明の床B
|
||||
Stairs A (Dirt)|階段A(土)
|
||||
Stairs B (Translucent)|階段B(半透明)
|
||||
Wire Mesh|金網
|
||||
Transparent|透明
|
||||
Floating Floor A (Dirt)|浮かぶ床A(土)
|
||||
Floating Floor B (Rock)|浮かぶ床B(岩)
|
||||
Translucent Floor A|半透明の床A
|
||||
Translucent Floor B|半透明の床B
|
||||
Stairs A (Rock)|階段A(岩)
|
||||
Stairs B (Translucent)|階段B(半透明)
|
||||
Wire Mesh|金網
|
||||
Ground A (Wood)|床A(木製)
|
||||
Ground B (Wood)|床B(木製)
|
||||
Ground (Wood, Ruins)|床A(木製・廃墟)
|
||||
Ground (Wood, Ruins)|床B(木製・廃墟)
|
||||
Cobblestones A|石畳A
|
||||
Cobblestones B|石畳B
|
||||
Cobblestones C|石畳C
|
||||
Cobblestones D|石畳D
|
||||
Cobblestones E|石畳E
|
||||
Decorative Tile A|化粧タイルA
|
||||
Decorative Tile B|化粧タイルB
|
||||
Interior Floor A|内装床A
|
||||
Interior Floor B (Light)|内装床B(明かり)
|
||||
Tile Floor A|タイル床A
|
||||
Tile Floor B|タイル床B
|
||||
Tile Floor C|タイル床C
|
||||
Cobblestones F|石畳F
|
||||
Ground C (Rock Cave, Red Crystal)|床C(岩洞窟・赤水晶)
|
||||
Ground D (Rock Cave, Blue Crystal)|床D(岩洞窟・青水晶)
|
||||
Ground E (Rock Cave, Green Crystal)|床E(岩洞窟・緑水晶)
|
||||
Ground F (Dirt)|床F(土)
|
||||
Ground G (Demon Castle)|床G(魔王城)
|
||||
Ground H (Gold)|床H(黄金)
|
||||
Ground I (Ice)|床I(氷)
|
||||
Stairs A (Dirt Cave, Left)|階段A(土洞窟・左)
|
||||
Stairs A (Dirt Cave, Center)|階段A(土洞窟・中央)
|
||||
Stairs A (Dirt Cave, Right)|階段A(土洞窟・右)
|
||||
Stairs A (Dirt Cave)|階段A(土洞窟)
|
||||
Stairs B (Rock Cave, Left)|階段B(岩洞窟・左)
|
||||
Stairs B (Rock Cave, Center)|階段B(岩洞窟・中央)
|
||||
Stairs B (Rock Cave, Right)|階段B(岩洞窟・右)
|
||||
Stairs B (Rock Cave)|階段B(岩洞窟)
|
||||
Stairs C (Lava Cave, Left)|階段C(溶岩洞窟・左)
|
||||
Stairs C (Lava Cave, Center)|階段C(溶岩洞窟・中央)
|
||||
Stairs C (Lava Cave, Right)|階段C(溶岩洞窟・右)
|
||||
Stairs C (Lava Cave)|階段C(溶岩洞窟)
|
||||
Stairs D (Ice Cave, Left)|階段D(氷洞窟・左)
|
||||
Stairs D (Ice Cave, Center)|階段D(氷洞窟・中央)
|
||||
Stairs D (Ice Cave, Right)|階段D(氷洞窟・右)
|
||||
Stairs D (Ice Cave)|階段D(氷洞窟)
|
||||
Stairs E (Grass Maze, Left)|階段E(草迷宮・左)
|
||||
Stairs E (Grass Maze, Center)|階段E(草迷宮・中央)
|
||||
Stairs E (Grass Maze, Right)|階段E(草迷宮・右)
|
||||
Stairs E (Grass Maze)|階段E(草迷宮)
|
||||
Stairs F (Crystal, Left)|階段F(水晶・左)
|
||||
Stairs F (Crystal, Center)|階段F(水晶・中央)
|
||||
Stairs F (Crystal, Right)|階段F(水晶・右)
|
||||
Stairs F (Crystal)|階段F(水晶)
|
||||
Stairs G (In Body, Left)|階段G(体内・左)
|
||||
Stairs G (In Body, Center)|階段G(体内・中央)
|
||||
Stairs G (In Body, Right)|階段G(体内・右)
|
||||
Stairs G (In Body)|階段G(体内)
|
||||
Stairs H (Demonic World, Left)|階段H(魔界・左)
|
||||
Stairs H (Demonic World, Center)|階段H(魔界・中央)
|
||||
Stairs H (Demonic World, Right)|階段H(魔界・右)
|
||||
Stairs H (Demonic World)|階段H(魔界)
|
||||
Stairs I (Stone, Left)|階段I(石・左)
|
||||
Stairs I (Stone, Center)|階段I(石・中央)
|
||||
Stairs I (Stone, Right)|階段I(石・右)
|
||||
Stairs I (Stone)|階段I(石)
|
||||
Stairs J (Ruins, Left)|階段J(廃墟・左)
|
||||
Stairs J (Ruins, Center)|階段J(廃墟・中央)
|
||||
Stairs J (Ruins, Right)|階段J(廃墟・右)
|
||||
Stairs J (Ruins)|階段J(廃墟)
|
||||
Stairs K (Stone, Left)|階段K(石・左)
|
||||
Stairs K (Stone, Center)|階段K(石・中央)
|
||||
Stairs K (Stone, Right)|階段K(石・右)
|
||||
Stairs K (Stone)|階段K(石)
|
||||
Stairs L (Ruins, Left)|階段L(廃墟・左)
|
||||
Stairs L (Ruins, Center)|階段L(廃墟・中央)
|
||||
Stairs L (Ruins, Right)|階段L(廃墟・右)
|
||||
Stairs L (Ruins)|階段L(廃墟)
|
||||
Ground (Dirt Cave, Ruins)|床A(土洞窟・廃墟)
|
||||
Ground (Rock Cave, Ruins)|床B(岩洞窟・廃墟)
|
||||
Ground (Lava Cave, Ruins)|床C(溶岩洞窟・廃墟)
|
||||
Ground (Ice Cave, Ruins)|床D(氷洞窟・廃墟)
|
||||
Ground (Grass Maze, Ruins)|床E(草迷宮・廃墟)
|
||||
Ground (Crystal, Ruins)|床F(水晶・廃墟)
|
||||
Ground (In Body, Ruins)|床G(体内・廃墟)
|
||||
Ground (Demonic World, Ruins)|床H(魔界・廃墟)
|
||||
Cobblestones A (Ruins)|石畳A(廃墟)
|
||||
Cobblestones B (Ruins)|石畳B(廃墟)
|
||||
Cobblestones C (Ruins)|石畳C(廃墟)
|
||||
Cobblestones D (Ruins)|石畳D(廃墟)
|
||||
Cobblestones E (Ruins)|石畳E(廃墟)
|
||||
Decorative Tile A (Ruins)|化粧タイルA(廃墟)
|
||||
Decorative Tile B (Ruins)|化粧タイルB(廃墟)
|
||||
Interior Floor A (Ruins)|内装床A(廃墟)
|
||||
Tile Floor A (Ruins)|タイル床A(廃墟)
|
||||
Tile Floor B (Ruins)|タイル床B(廃墟)
|
||||
Tile Floor C (Ruins)|タイル床C(廃墟)
|
||||
Cobblestones F (Ruins)|石畳F(廃墟)
|
||||
Ground F (Dirt, Ruins)|床F(土・廃墟)
|
||||
Ground G (Demon Castle, Ruins)|床G(魔王城・廃墟)
|
||||
Ground I (Ice, Ruins)|床I(氷・廃墟)
|
||||
Relief Floor Tile (Silver)|レリーフ床(銀)
|
||||
Large Relief Floor Tile|大きなレリーフ床
|
||||
Large Relief Floor Tile|大きなレリーフ床
|
||||
Large Relief Floor Tile (Ruins)|大きなレリーフ床(廃墟)
|
||||
Large Relief Floor Tile (Ruins)|大きなレリーフ床(廃墟)
|
||||
Directional Floor Tile A (Down)|方向床A(下)
|
||||
Directional Floor Tile B (Up)|方向床B(上)
|
||||
Relief Floor Tile A (Gold)|レリーフ床A(金)
|
||||
Relief Floor Tile B (Gold)|レリーフ床B(金)
|
||||
Large Relief Floor Tile|大きなレリーフ床
|
||||
Large Relief Floor Tile|大きなレリーフ床
|
||||
Large Relief Floor Tile (Ruins)|大きなレリーフ床(廃墟)
|
||||
Large Relief Floor Tile (Ruins)|大きなレリーフ床(廃墟)
|
||||
Directional Floor Tile C (Left)|方向床C(左)
|
||||
Directional Floor Tile D (Right)|方向床D(右)
|
||||
Relief Floor Tile C (Gold)|レリーフ床C(金)
|
||||
Relief Floor Tile D (Gold, Ruins)|レリーフ床D(金・廃墟)
|
||||
256
img/tilesets/Dungeon_B.txt
Normal file
256
img/tilesets/Dungeon_B.txt
Normal file
|
|
@ -0,0 +1,256 @@
|
|||
Transparent|透明
|
||||
Wall Moss|壁の苔
|
||||
Stairs A (Up)|階段A(上り)
|
||||
Stairs B (Up)|階段B(上り)
|
||||
Metal Ladder|鉄ばしご
|
||||
Wood Ladder|木製はしご
|
||||
Rope|ロープ
|
||||
Vines A|ツタA
|
||||
Fissures A|亀裂A
|
||||
Wall Fern|壁のシダ
|
||||
Stairs A (Down)|階段A(下り)
|
||||
Stairs B (Down)|階段B(下り)
|
||||
Metal Ladder|鉄ばしご
|
||||
Wood Ladder|木製はしご
|
||||
Rope|ロープ
|
||||
Vines A|ツタA
|
||||
Crumbling Wall|崩れた壁
|
||||
Dug-Up Ground|掘られた床
|
||||
Stairs C (Up)|階段C(上り)
|
||||
Stairs D (Up)|階段D(上り)
|
||||
Metal Ladder|鉄ばしご
|
||||
Wood Ladder|木製はしご
|
||||
Rope|ロープ
|
||||
Vines B (Down)|ツタB(下り)
|
||||
Crumbling Wall|崩れた壁
|
||||
Dug-Up Ground|掘られた床
|
||||
Stairs C (Down)|階段C(下り)
|
||||
Stairs D (Down)|階段D(下り)
|
||||
Hole A (Metal Ladder)|穴A(鉄ばしご)
|
||||
Hole B (Wood Ladder)|穴B(木製はしご)
|
||||
Hole C (Rope)|穴C(ロープ)
|
||||
Hole D|穴D
|
||||
Gravel A (Dirt Cave)|砂利A(土洞窟)
|
||||
Gravel B (Rock Cave)|砂利B(岩洞窟)
|
||||
Gravel C (Lava Cave)|砂利C(溶岩洞窟)
|
||||
Ice Pieces |氷の欠片
|
||||
Small Sprouts A (Grass Maze)|小さな芽A(草迷宮)
|
||||
Small Crystals|小さな水晶
|
||||
Detritus (In Body)|床装飾(体内)
|
||||
Small Sprouts B (Demonic World)|小さな芽B(魔界)
|
||||
Boulder A (Dirt Cave)|岩A(土洞窟)
|
||||
Boulder B (Rock Cave)|岩B(岩洞窟)
|
||||
Boulder C (Lava Cave)|岩C(溶岩洞窟)
|
||||
Lump of Ice|氷塊
|
||||
Boulder D (Grass Maze)|岩D(草迷宮)
|
||||
Crystal|水晶
|
||||
Spherical Lump|球状突起物
|
||||
Boulder E (Demonic World)|岩E(魔界)
|
||||
Tall Rock A (Dirt Cave)|大きな岩A(土洞窟)
|
||||
Tall Rock B (Rock Cave)|大きな岩B(岩洞窟)
|
||||
Tall Rock C (Lava Cave)|大きな岩C(溶岩洞窟)
|
||||
Tall Lump of Ice|大きな氷塊
|
||||
Tall Rock D (Grass Maze)|大きな岩D(草迷宮)
|
||||
Large Crystal|大きな水晶
|
||||
Large Growth|大型突起物
|
||||
Tall Rock E (Demonic World)|大きな岩E(魔界)
|
||||
Tall Rock A (Dirt Cave)|大きな岩A(土洞窟)
|
||||
Tall Rock B (Rock Cave)|大きな岩B(岩洞窟)
|
||||
Tall Rock C (Lava Cave)|大きな岩C(溶岩洞窟)
|
||||
Tall Lump of Ice|大きな氷塊
|
||||
Tall Rock D (Grass Maze)|大きな岩D(草迷宮)
|
||||
Large Crystal|大きな水晶
|
||||
Large Growth|大型突起物
|
||||
Tall Rock E (Demonic World)|大きな岩E(魔界)
|
||||
Monument A|石碑A
|
||||
Monument B|石碑B
|
||||
Large Monument|大きな石碑
|
||||
Large Monument|大きな石碑
|
||||
Large Monument|大きな石碑
|
||||
Large Monument (Light)|大きな石碑(光)
|
||||
Large Monument (Light)|大きな石碑(光)
|
||||
Large Monument (Light)|大きな石碑(光)
|
||||
Monument A|石碑A
|
||||
Monument C|石碑C
|
||||
Large Monument|大きな石碑
|
||||
Large Monument|大きな石碑
|
||||
Large Monument|大きな石碑
|
||||
Large Monument (Light)|大きな石碑(光)
|
||||
Large Monument (Light)|大きな石碑(光)
|
||||
Large Monument (Light)|大きな石碑(光)
|
||||
Statue|石像
|
||||
Angel Statue|天使像
|
||||
Goddess Statue|女神像
|
||||
Dais|台座
|
||||
God Statue|神像
|
||||
Demon Statue|悪魔像
|
||||
Dragon Statue|竜像
|
||||
Dragon Statue|竜像
|
||||
Statue|石像
|
||||
Angel Statue|天使像
|
||||
Goddess Statue|女神像
|
||||
Broken Statue|壊れた像
|
||||
God Statue|神像
|
||||
Demon Statue|悪魔像
|
||||
Dragon Statue|竜像
|
||||
Dragon Statue|竜像
|
||||
Obelisk|オベリスク
|
||||
Stone Pillar A|石の柱A
|
||||
Stone Pillar B|石の柱B
|
||||
Stone Pillar B (Moss)|石の柱B(苔)
|
||||
Stone Pillar B (Ice)|石の柱B(氷)
|
||||
Stone Pillar C|石の柱C
|
||||
Stone Pillar D|石の柱D
|
||||
Orb Pillar|オーブの柱
|
||||
Obelisk|オベリスク
|
||||
Stone Pillar A|石の柱A
|
||||
Stone Pillar B|石の柱B
|
||||
Stone Pillar B (Moss)|石の柱B(苔)
|
||||
Stone Pillar B (Ice)|石の柱B(氷)
|
||||
Stone Pillar C|石の柱C
|
||||
Stone Pillar D|石の柱D
|
||||
Orb Pillar|オーブの柱
|
||||
Obelisk|オベリスク
|
||||
Broken Stone Pillar A|折れた石の柱A
|
||||
Broken Stone Pillar B|折れた石の柱B
|
||||
Broken Stone Pillar B (Moss)|折れた石の柱B(苔)
|
||||
Broken Stone Pillar B (Ice)|折れた石の柱B(氷)
|
||||
Stone Pillar C|石の柱C
|
||||
Broken Stone Pillar D|折れた石の柱D
|
||||
Broken Orb Pillar|折れたオーブの柱
|
||||
Rubble|瓦礫A
|
||||
Rubble (Moss)|瓦礫B(苔)
|
||||
Rubble (Ice)|瓦礫C(氷)
|
||||
Broken Stone Pillar C|折れた石の柱C
|
||||
Rubble (Dirt)|瓦礫D(土)
|
||||
Scrap Wood|端材
|
||||
Barricade A (H)|バリケードA(横)
|
||||
Barricade B (V)|バリケードB(縦)
|
||||
Wall Bracing|壁の補強材
|
||||
Wall Bracing|壁の補強材
|
||||
Wall Bracing|壁の補強材
|
||||
Wall Bracing|壁の補強材
|
||||
Wall Bracing|壁の補強材
|
||||
Wall Bracing (Abandoned Mine)|壁の補強材(廃坑)
|
||||
Wall Bracing (Abandoned Mine)|壁の補強材(廃坑)
|
||||
Wall Bracing (Abandoned Mine)|壁の補強材(廃坑)
|
||||
Wall Bracing|壁の補強材
|
||||
Wall Bracing|壁の補強材
|
||||
Wall Bracing|壁の補強材
|
||||
Wall Bracing|壁の補強材
|
||||
Wall Bracing|壁の補強材
|
||||
Wall Bracing (Abandoned Mine)|壁の補強材(廃坑)
|
||||
Wall Bracing (Abandoned Mine)|壁の補強材(廃坑)
|
||||
Wall Bracing (Abandoned Mine)|壁の補強材(廃坑)
|
||||
Log Bridge (V)|丸太の橋(縦)
|
||||
Log Bridge (H)|丸太の橋(横)
|
||||
Wood Bridge (V)|木の橋(縦)
|
||||
Wood Bridge (H)|木の橋(横)
|
||||
Stone Bridge (V)|石の橋(縦)
|
||||
Stone Bridge (H)|石の橋(横)
|
||||
Wood Bridge (V)|木の橋(縦)
|
||||
Wood Bridge (H)|木の橋(横)
|
||||
Bridge Spar (Wood, Center A)|橋げた(木・中央A)
|
||||
Bridge Spar (Wood, Left)|橋げた(木・左)
|
||||
Bridge Spar (Wood, Center B)|橋げた(木・中央B)
|
||||
Bridge Spar (Wood, Right)|橋げた(木・右)
|
||||
Bridge Spar (Stone, Center A)|橋げた(石・中央A)
|
||||
Bridge Spar (Stone, Left)|橋げた(石・左)
|
||||
Bridge Spar (Stone, Center B)||橋げた(石・中央B)
|
||||
Bridge Spar (Stone, Right)|橋げた(石・右)
|
||||
Exit A|外への出口A
|
||||
Entrance A|入口A
|
||||
Exit B|外への出口B
|
||||
Entrance B|入口B
|
||||
Exit C|外への出口C
|
||||
Entrance C|入口C
|
||||
Window A|窓A
|
||||
Window B|窓B
|
||||
Exit D|外への出口D
|
||||
Entrance D|入口D
|
||||
Exit E|外への出口E
|
||||
Entrance E|入口E
|
||||
Light From Exit A (Top)|出口からの光A(上)
|
||||
Light From Exit B (Bottom)|出口からの光B(下)
|
||||
Window A|窓A
|
||||
Window B|窓B
|
||||
Spider Web|蜘蛛の巣
|
||||
Stone Tablet|石版
|
||||
Stone Tablet (Ruins)|石版(廃墟)
|
||||
Entrance A|入口A
|
||||
Entrance A (Extend)|入口A(延長部分)
|
||||
Entrance A (Top Half A)|入口A(上半分A)
|
||||
Entrance B|入口B
|
||||
Entrance A (Top Half B)|入口A(上半分B)
|
||||
Wall Vines A|壁のツタA
|
||||
Wall Vines B|壁のツタB
|
||||
Wall Vines C|壁のツタC
|
||||
Fissures B|亀裂B
|
||||
Fissures C|亀裂C
|
||||
Fissures D|亀裂D
|
||||
Fissures E|亀裂E
|
||||
Beanstalk A|豆の木A
|
||||
Wall Vines A|壁のツタA
|
||||
Wall Vines B|壁のツタB
|
||||
Wall Vines C|壁のツタC
|
||||
Fissures B|亀裂B
|
||||
Fissures C|亀裂C
|
||||
Fissures D|亀裂D
|
||||
Beanstalk B (Snow)|豆の木B(雪)
|
||||
Beanstalk C (Dead)|豆の木C(枯れ)
|
||||
Large Gravel Mound A (Dirt)|大きな土砂A(土)
|
||||
Large Gravel Mound A (Dirt)|大きな土砂A(土)
|
||||
Large Gravel Mound B (Stone)|大きな土砂B(石)
|
||||
Large Gravel Mound B (Stone)|大きな土砂B(石)
|
||||
Large Gold Mound|大きな金の山
|
||||
Large Gold Mound|大きな金の山
|
||||
Large Silver Mound|大きな銀の山
|
||||
Large Silver Mound|大きな銀の山
|
||||
Large Gravel Mound A (Dirt)|大きな土砂A(土)
|
||||
Large Gravel Mound A (Dirt)|大きな土砂A(土)
|
||||
Large Gravel Mound B (Stone)|大きな土砂B(石)
|
||||
Large Gravel Mound B (Stone)|大きな土砂B(石)
|
||||
Large Gold Mound|大きな金の山
|
||||
Large Gold Mound|大きな金の山
|
||||
Large Silver Mound|大きな銀の山
|
||||
Large Silver Mound|大きな銀の山
|
||||
Gravel Mound (Dirt)|土砂A(土)
|
||||
Gravel Mound (Stone)|土砂B(石)
|
||||
Gold Bricks A|金の延べ棒A
|
||||
Gold Bricks B|金の延べ棒B
|
||||
Crate A (Dirt)|木箱A(土)
|
||||
Crate B (Stone)|木箱B(石)
|
||||
Crate C (Ruins)|木箱C(廃墟)
|
||||
Pot A (Ruins)|壺A(廃墟)
|
||||
Gold Mound|金の山
|
||||
Silver Mound|銀の山
|
||||
Silver Bricks A|銀の延べ棒A
|
||||
Silver Bricks B|銀の延べ棒B
|
||||
Crate D (Gold Dust)|木箱D(金)
|
||||
Crate E (Silver Dust)|木箱E(銀)
|
||||
Pot A|壺A
|
||||
Pot B|壺B
|
||||
Shovel|スコップ
|
||||
Pickax|つるはし
|
||||
Rope|ロープ
|
||||
Mound of Gold Coins|金貨の山
|
||||
Crate F|木箱F
|
||||
Crate G|木箱G
|
||||
Barrel A|樽A
|
||||
Barrel B (Ruins)|樽B(廃墟)
|
||||
Large Bones|大きな骸骨
|
||||
Large Bones|大きな骸骨
|
||||
Bones A|骸骨A
|
||||
Table (Ruins)|テーブル(廃墟)
|
||||
Jail Bars|鉄格子
|
||||
Jail Bars|鉄格子
|
||||
Jail Bars|鉄格子
|
||||
Jail Bars|鉄格子
|
||||
Large Bones|大きな骸骨
|
||||
Large Bones|大きな骸骨
|
||||
Bones B|骸骨B
|
||||
Stool (Ruins)|椅子(廃墟)
|
||||
Jail Bars|鉄格子
|
||||
Jail Bars|鉄格子
|
||||
Jail Bars|鉄格子
|
||||
Jail Bars|鉄格子
|
||||
256
img/tilesets/Dungeon_C.txt
Normal file
256
img/tilesets/Dungeon_C.txt
Normal file
|
|
@ -0,0 +1,256 @@
|
|||
Decorative Pillar A (Stone)|装飾柱A(石)
|
||||
Decorative Pillar B (Stone)|装飾柱B(石)
|
||||
Decorative Pillar C (Temple)|装飾柱C(遺跡)
|
||||
Decorative Pillar D (Rock Cave)|装飾柱D(岩洞窟)
|
||||
Decorative Pillar E (Demon Castle)|装飾柱E(魔王城)
|
||||
Decorative Pillar F (Fort)|装飾柱F(砦)
|
||||
Decorative Pillar G (Dirt Cave)|装飾柱G(土洞窟)
|
||||
Decorative Pillar H (Factory)|装飾柱H(工場)
|
||||
Decorative Pillar A (Stone)|装飾柱A(石)
|
||||
Decorative Pillar B (Stone)|装飾柱B(石)
|
||||
Decorative Pillar C (Temple)|装飾柱C(遺跡)
|
||||
Decorative Pillar D (Rock Cave)|装飾柱D(岩洞窟)
|
||||
Decorative Pillar E (Demon Castle)|装飾柱E(魔王城)
|
||||
Decorative Pillar F (Fort)|装飾柱F(砦)
|
||||
Decorative Pillar G (Dirt Cave)|装飾柱G(土洞窟)
|
||||
Decorative Pillar H (Factory)|装飾柱H(工場)
|
||||
Decorative Pillar A (Stone)|装飾柱A(石)
|
||||
Decorative Pillar B (Stone)|装飾柱B(石)
|
||||
Decorative Pillar C (Temple)|装飾柱C(遺跡)
|
||||
Decorative Pillar D (Rock Cave)|装飾柱D(岩洞窟)
|
||||
Decorative Pillar E (Demon Castle)|装飾柱E(魔王城)
|
||||
Decorative Pillar F (Fort)|装飾柱F(砦)
|
||||
Decorative Pillar G (Dirt Cave)|装飾柱G(土洞窟)
|
||||
Decorative Pillar H (Factory)|装飾柱H(工場)
|
||||
Decorative Pillar A (Stone, Ruins)|装飾柱A(石・廃墟)
|
||||
Decorative Pillar B (Stone, Ruins)|装飾柱B(石・廃墟)
|
||||
Decorative Pillar C (Temple, Ruins)|装飾柱C(遺跡・廃墟)
|
||||
Decorative Pillar D (Rock Cave, Ruins)|装飾柱D(岩洞窟・廃墟)
|
||||
Decorative Pillar E (Demon Castle, Ruins)|装飾柱E(魔王城・廃墟)
|
||||
Decorative Pillar F (Fort, Ruins)|装飾柱F(砦・廃墟)
|
||||
Decorative Pillar G (Dirt Cave, Ruins)|装飾柱G(土洞窟・廃墟)
|
||||
Decorative Pillar A (Stone, Front, Ruins)|装飾柱A(石・手前・廃墟)
|
||||
Decorative Pillar A (Stone, Ruins)|装飾柱A(石・廃墟)
|
||||
Decorative Pillar B (Stone, Ruins)|装飾柱B(石・廃墟)
|
||||
Decorative Pillar C (Temple, Ruins)|装飾柱C(遺跡・廃墟)
|
||||
Decorative Pillar D (Rock Cave, Ruins)|装飾柱D(岩洞窟・廃墟)
|
||||
Decorative Pillar E (Demon Castle, Ruins)|装飾柱E(魔王城・廃墟)
|
||||
Decorative Pillar F (Fort, Ruins)|装飾柱F(砦・廃墟)
|
||||
Decorative Pillar G (Dirt Cave, Ruins)|装飾柱G(土洞窟・廃墟)
|
||||
Decorative Pillar D (Rock Cave, Front, Ruins)|装飾柱F(岩洞窟・手前・廃墟)
|
||||
Decorative Pillar A (Stone, Ruins)|装飾柱A(石・廃墟)
|
||||
Decorative Pillar B (Stone, Ruins)|装飾柱B(石・廃墟)
|
||||
Decorative Pillar C (Temple, Ruins)|装飾柱C(遺跡・廃墟)
|
||||
Decorative Pillar D (Rock Cave, Ruins)|装飾柱D(岩洞窟・廃墟)
|
||||
Decorative Pillar E (Demon Castle, Ruins)|装飾柱E(魔王城・廃墟)
|
||||
Decorative Pillar F (Fort, Ruins)|装飾柱F(砦・廃墟)
|
||||
Decorative Pillar G (Dirt Cave, Ruins)|装飾柱G(土洞窟・廃墟)
|
||||
Decorative Pillar F (Fort, Front, Ruins)|装飾柱F(砦・手前・廃墟)
|
||||
Decorative Pillar A (Stone, Front)|装飾柱A(石・手前)
|
||||
Decorative Pillar B (Stone, Front)|装飾柱B(石・手前)
|
||||
Decorative Pillar C (Temple, Front)|装飾柱C(神殿・手前)
|
||||
Decorative Pillar D (Rock Cave, Front)|装飾柱D(岩洞窟・手前)
|
||||
Decorative Pillar E (Demon Castle, Front)|装飾柱E(魔王城・手前)
|
||||
Decorative Pillar F (Fort, Front)|装飾柱F(砦・手前)
|
||||
Decorative Pillar G (Dirt Cave, Front)|装飾柱G(土洞窟・手前)
|
||||
Decorative Pillar H (Factory, Front)|装飾柱H(工場・手前)
|
||||
Gate A|門A
|
||||
Gate A|門A
|
||||
Gate A|門A
|
||||
Gate B|門B
|
||||
Gate B|門B
|
||||
Gate B|門B
|
||||
Decorative Pillar I (Demonic)|装飾柱I(悪魔)
|
||||
Decorative Pillar I (Demonic, Ruins)|装飾柱I(悪魔・廃墟)
|
||||
Gate A|門A
|
||||
Gate A|門A
|
||||
Gate A|門A
|
||||
Gate B|門B
|
||||
Gate B|門B
|
||||
Gate B|門B
|
||||
Decorative Pillar I (Demonic)|装飾柱I(悪魔)
|
||||
Decorative Pillar I (Demonic, Ruins)|装飾柱I(悪魔・廃墟)
|
||||
Gate A|門A
|
||||
Gate A|門A
|
||||
Gate A|門A
|
||||
Gate B|門B
|
||||
Gate B|門B
|
||||
Gate B|門B
|
||||
Coffin A (Right)|棺A(右)
|
||||
Coffin A (Right)|棺A(右)
|
||||
Hexagram|魔法陣
|
||||
Hexagram|魔法陣
|
||||
Hexagram|魔法陣
|
||||
Hexagram (Lit)|魔法陣(光)
|
||||
Hexagram (Lit)|魔法陣(光)
|
||||
Hexagram (Lit)|魔法陣(光)
|
||||
Coffin B (Top)|棺B(上)
|
||||
Coffin C (Bottom)|棺C(下)
|
||||
Hexagram|魔法陣
|
||||
Hexagram|魔法陣
|
||||
Hexagram|魔法陣
|
||||
Hexagram (Lit)|魔法陣(光)
|
||||
Hexagram (Lit)|魔法陣(光)
|
||||
Hexagram (Lit)|魔法陣(光)
|
||||
Coffin B (Top)|棺B(上)
|
||||
Coffin C (Bottom)|棺C(下)
|
||||
Hexagram|魔法陣
|
||||
Hexagram|魔法陣
|
||||
Hexagram|魔法陣
|
||||
Hexagram (Lit)|魔法陣(光)
|
||||
Hexagram (Lit)|魔法陣(光)
|
||||
Hexagram (Lit)|魔法陣(光)
|
||||
Coffin D (Left)|棺D(左)
|
||||
Coffin D (Left)|棺D(左)
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Rails (Ruins)|線路(廃墟)
|
||||
Rails (Ruins)|線路(廃墟)
|
||||
Rails (Ruins)|線路(廃墟)
|
||||
Rails (Ruins)|線路(廃墟)
|
||||
Rails|線路
|
||||
Railroad Ties A|枕木A
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Railroad Ties B|枕木B
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Mural A|壁画A
|
||||
Hieroglyph|ヒエログリフ
|
||||
Hieroglyph|ヒエログリフ
|
||||
Large Mural A|大きな壁画A
|
||||
Large Mural A|大きな壁画A
|
||||
Large Mural A|大きな壁画A
|
||||
Bed|ベッド
|
||||
Bed (Ruins)|ベッド(廃墟)
|
||||
Mural B|壁画B
|
||||
Hieroglyph|ヒエログリフ
|
||||
Hieroglyph|ヒエログリフ
|
||||
Large Mural B|大きな壁画B
|
||||
Large Mural B|大きな壁画B
|
||||
Large Mural B|大きな壁画B
|
||||
Bed|ベッド
|
||||
Bed (Ruins)|ベッド(廃墟)
|
||||
Middle Window A|中型窓A
|
||||
Middle Window B|中型窓B
|
||||
Middle Window C|中型窓C
|
||||
Middle Window D (Ruins)|中型窓窓D(廃墟)
|
||||
Window (Demon Castle)|窓(魔王城)
|
||||
Table|テーブル
|
||||
Cheap Bed|粗末なベッド
|
||||
Straw Bed|むしろの寝床
|
||||
Middle Window A|中型窓A
|
||||
Middle Window B|中型窓B
|
||||
Middle Window C|中型窓C
|
||||
Middle Window D (Ruins)|中型窓窓D(廃墟)
|
||||
Window (Demon Castle)|窓(魔王城)
|
||||
Stool|椅子
|
||||
Cheap Bed|粗末なベッド
|
||||
Straw Bed|むしろの寝床
|
||||
Large Window A|大型窓A
|
||||
Large Window B|大型窓B
|
||||
Large Window C|大型窓C
|
||||
Stained Glass Window|ステンドグラス
|
||||
Large Window D|大型窓D
|
||||
Window A|窓A
|
||||
Window B|窓B
|
||||
Window C|窓C
|
||||
Large Window A|大型窓A
|
||||
Large Window B|大型窓B
|
||||
Large Window C|大型窓C
|
||||
Stained Glass Window|ステンドグラス
|
||||
Large Window D|大型窓D
|
||||
Window A|窓A
|
||||
Window B|窓B
|
||||
Window C|窓C
|
||||
Chest A|チェストA
|
||||
Cabinet|キャビネット
|
||||
Closet|クローゼット
|
||||
Chest of Drawers|タンス
|
||||
Dish Cabinet|食器棚
|
||||
Wine Rack|ワインセラー
|
||||
Bottle Shelf A|ボトル棚A
|
||||
Bottle Shelf B|ボトル棚B
|
||||
Chest B|チェストB
|
||||
Chest C|チェストC
|
||||
Closet|クローゼット
|
||||
Chest of Drawers|タンス
|
||||
Dish Cabinet|食器棚
|
||||
Wine Rack|ワインセラー
|
||||
Bottle Shelf A|ボトル棚A
|
||||
Bottle Shelf B|ボトル棚B
|
||||
Tipped Shelf|倒れた棚
|
||||
Sundries Shelf A|雑貨棚A
|
||||
Sundries Shelf A|雑貨棚A
|
||||
Sundries Shelf B|雑貨棚B
|
||||
Medicine Shelf|薬品棚
|
||||
Bookshelf A|本棚A
|
||||
Bookshelf B|本棚B
|
||||
Bookshelf B|本棚B
|
||||
Tipped Shelf|倒れた棚
|
||||
Sundries Shelf A|雑貨棚A
|
||||
Sundries Shelf A|雑貨棚A
|
||||
Sundries Shelf B|雑貨棚B
|
||||
Medicine Shelf|薬品棚
|
||||
Bookshelf A|本棚A
|
||||
Bookshelf B|本棚B
|
||||
Bookshelf B|本棚B
|
||||
Curtains A|カーテンA
|
||||
Curtains B|カーテンB
|
||||
Curtains C|カーテンC
|
||||
Curtains D|カーテンD
|
||||
Curtains A (Ruins)|カーテンA(廃墟)
|
||||
Curtains B (Ruins)|カーテンB(廃墟)
|
||||
Curtains C (Ruins)|カーテンC(廃墟)
|
||||
Curtains D (Ruins)|カーテンD(廃墟)
|
||||
Curtains A|カーテンA
|
||||
Curtains B|カーテンB
|
||||
Curtains C|カーテンC
|
||||
Curtains D|カーテンD
|
||||
Curtains A (Ruins)|カーテンA(廃墟)
|
||||
Curtains B (Ruins)|カーテンB(廃墟)
|
||||
Curtains C (Ruins)|カーテンC(廃墟)
|
||||
Curtains D (Ruins)|カーテンD(廃墟)
|
||||
Clock|時計
|
||||
Mirror|鏡
|
||||
Clock (Ruins)|時計(廃墟)
|
||||
Mirror (Ruins)|鏡(廃墟)
|
||||
Stacked Crates|積まれた木箱
|
||||
Stacked Crates|積まれた木箱
|
||||
Tapestry A|タペストリーA
|
||||
Tapestry A (Ruins)|タペストリーA(廃墟)
|
||||
Clock|時計
|
||||
Mirror|鏡
|
||||
Clock (Ruins)|時計(廃墟)
|
||||
Mirror (Ruins)|鏡(廃墟)
|
||||
Stacked Crates|積まれた木箱
|
||||
Stacked Crates|積まれた木箱
|
||||
Tapestry A|タペストリーA
|
||||
Tapestry A (Ruins)|タペストリーA(廃墟)
|
||||
Chair A (Wood)|背もたれ椅子A(木製)
|
||||
Chair B (Stone)|背もたれ椅子B(石)
|
||||
Throne A|玉座A
|
||||
Throne A|玉座A
|
||||
Throne A|玉座A
|
||||
Throne B (Demon Castle)|玉座B(魔王城)
|
||||
Throne B (Demon Castle)|玉座B(魔王城)
|
||||
Throne B (Demon Castle)|玉座B(魔王城)
|
||||
Chair A (Wood)|背もたれ椅子A(木製)
|
||||
Chair B (Stone)|背もたれ椅子B(石)
|
||||
Throne A|玉座A
|
||||
Throne A|玉座A
|
||||
Throne A|玉座A
|
||||
Throne B (Demon Castle)|玉座B(魔王城)
|
||||
Throne B (Demon Castle)|玉座B(魔王城)
|
||||
Throne B (Demon Castle)|玉座B(魔王城)
|
||||
16
img/tilesets/FSM Woods and Cave/fsm_Forest01_A1.txt
Normal file
16
img/tilesets/FSM Woods and Cave/fsm_Forest01_A1.txt
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
Water A (Meadow)|水場A(草地)
|
||||
Rock (Can Walk)|歩ける岩
|
||||
Swamp Grass A|水草A
|
||||
Swamp Grass B|水草B
|
||||
Water B (Meadow)|水場B(草地)
|
||||
Waterfall (Whole Surface)|滝(全面)
|
||||
Water B (Whole Surface)|水場B(全面)
|
||||
Waterfall (Boulder, Whole Surface)|滝(玉石・全面)
|
||||
Water A (Whole Surface)|水場A(全面)
|
||||
Waterfall|滝
|
||||
Water A (River Beach)|水場A(河原)
|
||||
Waterfall (Boulder)|滝(玉石)
|
||||
Water C|水場C
|
||||
|
|
||||
|
|
||||
|
|
||||
32
img/tilesets/FSM Woods and Cave/fsm_Forest01_A3.txt
Normal file
32
img/tilesets/FSM Woods and Cave/fsm_Forest01_A3.txt
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
Roof A|屋根A
|
||||
Roof B|屋根B
|
||||
Roof C|屋根C
|
||||
Roof C (Moss A)|屋根C(苔A)
|
||||
Roof C (Moss B)|屋根C(苔B)
|
||||
|
|
||||
|
|
||||
|
|
||||
Outer Wall A|外壁A
|
||||
Outer Wall B|外壁B
|
||||
Outer Wall C|外壁C
|
||||
Outer Wall C (Moss A)|外壁C(苔A)
|
||||
Outer Wall C (Moss B)|外壁C(苔B)
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
48
img/tilesets/FSM Woods and Cave/fsm_Forest01_A4.txt
Normal file
48
img/tilesets/FSM Woods and Cave/fsm_Forest01_A4.txt
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
Ledge A|段差A
|
||||
Ledge B|段差B
|
||||
Forest A|森A
|
||||
Forest B|森B
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
Cliff A (Ledge A)|崖A(段差A)
|
||||
Cliff B (Ledge B)|崖B(段差B)
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
Interior Wall A|内装壁A
|
||||
Interior Wall B|内装壁B
|
||||
Interior Floor A|内装床A
|
||||
Interior Floor B|内装床B
|
||||
Interior Floor C|内装床C
|
||||
Interior Floor D|内装床D
|
||||
Rush Mat|ござ
|
||||
Dirt (Water C)|土(水場C)
|
||||
Interior Wall A|内装壁A
|
||||
Interior Wall B|内装壁B
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
128
img/tilesets/FSM Woods and Cave/fsm_Forest01_A5.txt
Normal file
128
img/tilesets/FSM Woods and Cave/fsm_Forest01_A5.txt
Normal file
|
|
@ -0,0 +1,128 @@
|
|||
Darkness|暗闇
|
||||
River Beach|河原
|
||||
Cobblestones A|石畳A
|
||||
Cobblestones B|石畳B
|
||||
Cobblestones C|石畳C
|
||||
Cobblestones D|石畳D
|
||||
Cobblestones E|石畳E
|
||||
Cliff (Dirt)|崖(土)
|
||||
Transparent|透明
|
||||
Dirt A|土A
|
||||
Cobblestones A (Ruins)|石畳A(廃墟)
|
||||
Cobblestones B (Ruins)|石畳B(廃墟)
|
||||
Cobblestones C (Ruins)|石畳C(廃墟)
|
||||
Cobblestones D (Ruins)|石畳D(廃墟)
|
||||
Cobblestones E (Ruins)|石畳E(廃墟)
|
||||
Meadow (Dirt)|草地(土)
|
||||
Ledge A|段差A
|
||||
Meadow|草地
|
||||
Ledge A|段差A
|
||||
Ledge A|段差A
|
||||
Ledge A|段差A
|
||||
Ledge B|段差B
|
||||
Meadow|草地
|
||||
Ledge B|段差B
|
||||
Ledge A|段差A
|
||||
Ledge A|段差A
|
||||
Ledge A|段差A
|
||||
Ledge A|段差A
|
||||
Ledge A|段差A
|
||||
Ledge B|段差B
|
||||
Ledge B|段差B
|
||||
Ledge B|段差B
|
||||
Cliff (Height Over 2)|崖(高さ2マス以上)
|
||||
Cliff (Height Over 2)|崖(高さ2マス以上)
|
||||
Cliff (Height Over 2)|崖(高さ2マス以上)
|
||||
Ledge A|段差A
|
||||
Ledge A|段差A
|
||||
Cliff (Height 1)|崖(高さ1マス)
|
||||
Cliff (Height 1)|崖(高さ1マス)
|
||||
Cliff (Height 1)|崖(高さ1マス)
|
||||
Cliff (Height Over 2)|崖(高さ2マス以上)
|
||||
Cliff (Height Over 2)|崖(高さ2マス以上)
|
||||
Cliff (Height Over 2)|崖(高さ2マス以上)
|
||||
Ledge A (Shadow, Center)|段差A(影・中央)
|
||||
Ledge A (Shadow, Right)|段差A(影・右)
|
||||
Ledge B|段差B
|
||||
Ledge B|段差B
|
||||
Ledge B (Shadow, Right)|段差B(影・右)
|
||||
Ledge A|段差A
|
||||
Ledge A (Shadow, Center)|段差A(影・中央)
|
||||
Hole|穴
|
||||
Ledge A (Autotiles, Shadow, Center)|段差A(オートタイル用・影・中央)
|
||||
Ledge A (Autotiles, Shadow, Right)|段差A(オートタイル用・影・右)
|
||||
Ledge B|段差B
|
||||
Ledge B|段差B
|
||||
Ledge B (Shadow, Center)|段差B(影・中央)
|
||||
Cliff (Height Over 2)|崖(高さ2マス以上)
|
||||
Cliff (Height Over 2)|崖(高さ2マス以上)
|
||||
Cliff (Height Over 2)|崖(高さ2マス以上)
|
||||
Climbable Cliff (Height Over 2)|登れる崖(高さ2マス以上)
|
||||
Climbable Cliff (Height Over 2)|登れる崖(高さ2マス以上)
|
||||
Climbable Cliff (Height 1)|登れる崖(高さ1マス)
|
||||
Ledge B (Autotiles, Shadow, Center)|段差B(オートタイル用・影・中央)
|
||||
Ledge B (Autotiles, Shadow, Right)|段差B(オートタイル用・影・右)
|
||||
Stairs A (Left)|階段A(左)
|
||||
Stairs A (Center)|階段A(中央)
|
||||
Stairs A (Right)|階段A(右)
|
||||
Stairs B|階段B
|
||||
Cliff Decoration A|崖装飾A
|
||||
Cliff Decoration C|崖装飾C
|
||||
Cliff Decoration D|崖装飾D
|
||||
Cliff Decoration D|崖装飾D
|
||||
Stairs A (Left)|階段A(左)
|
||||
Stairs A (Center)|階段A(中央)
|
||||
Stairs A (Right)|階段A(右)
|
||||
Stairs B|階段B
|
||||
Cliff Decoration B|崖装飾B
|
||||
Cliff Decoration C|崖装飾C
|
||||
Cliff Decoration D|崖装飾D
|
||||
Cliff Decoration D|崖装飾D
|
||||
Stairs A (Height Over 2, Left)|階段A(高さ2マス以上・左)
|
||||
Stairs A (Height Over 2, Center)|階段A(高さ2マス以上・中央)
|
||||
Stairs A (Height Over 2, Right)|階段A(高さ2マス以上・右)
|
||||
Stairs B|階段B
|
||||
Cliff Decoration E|崖装飾E
|
||||
Cliff Decoration G|崖装飾G
|
||||
Cliff Decoration H|崖装飾H
|
||||
Cliff Decoration H|崖装飾H
|
||||
Stairs A (Ruins, Left)|階段A(廃墟・左)
|
||||
Stairs A (Ruins, Center)|階段A(廃墟・中央)
|
||||
Stairs A (Ruins, Right)|階段A(廃墟・右)
|
||||
Stairs B (Ruins)|階段B(廃墟)
|
||||
Cliff Decoration F|崖装飾F
|
||||
Cliff Decoration G|崖装飾G
|
||||
Cliff Decoration H|崖装飾H
|
||||
Cliff Decoration H|崖装飾H
|
||||
Stairs A (Ruins, Left)|階段A(廃墟・左)
|
||||
Stairs A (Ruins, Center)|階段A(廃墟・中央)
|
||||
Stairs A (Ruins, Right)|階段A(廃墟・右)
|
||||
Stairs B (Ruins)|階段B(廃墟)
|
||||
Cliff (Ledge B, Left)|崖(段差B・左)
|
||||
Cliff (Ledge B, Right)|崖(段差B・右)
|
||||
Cliff (Ledge B, Left)|崖(段差B・左)
|
||||
Cliff (Ledge B, Right)|崖(段差B・右)
|
||||
Stairs A (Height Over 2, Ruins, Left)|階段A(高さ2マス以上・廃墟・左)
|
||||
Stairs A (Height Over 2, Ruins, Center)|階段A(高さ2マス以上・廃墟・中央)
|
||||
Stairs A (Height Over 2, Ruins, Right)|階段A(高さ2マス以上・廃墟・右)
|
||||
Stairs B (Ruins)|階段B(廃墟)
|
||||
Dirt C (Meadow)|土C(草地)
|
||||
Dirt C (Meadow)|土C(草地)
|
||||
Dirt C (Meadow)|土C(草地)
|
||||
Dirt C (Meadow)|土C(草地)
|
||||
Stairs A (Height 1, Left)|階段A(高さ1マス・左)
|
||||
Stairs A (Height 1, Center)|階段A(高さ1マス・中央)
|
||||
Stairs A (Height 1, Right)|階段A(高さ1マス・右)
|
||||
Cliff Decoration I|崖装飾I
|
||||
Cliff Decoration J|崖装飾J
|
||||
Cliff Decoration K|崖装飾K
|
||||
Dirt C (Meadow)|土C(草地)
|
||||
Dirt C (Meadow)|土C(草地)
|
||||
Stairs A (Height 1, Ruins, Left)|階段A(高さ1マス・廃墟・左)
|
||||
Stairs A (Height 1, Ruins, Center)|階段A(高さ1マス・廃墟・中央)
|
||||
Stairs A (Height 1, Ruins, Right)|階段A(高さ1マス・廃墟・右)
|
||||
Cliff Decoration L|崖装飾L
|
||||
Cliff Decoration M|崖装飾M
|
||||
Cliff Decoration N|崖装飾N
|
||||
Dirt C (Meadow)|土C(草地)
|
||||
Dirt C (Meadow)|土C(草地)
|
||||
256
img/tilesets/FSM Woods and Cave/fsm_Forest01_B.txt
Normal file
256
img/tilesets/FSM Woods and Cave/fsm_Forest01_B.txt
Normal file
|
|
@ -0,0 +1,256 @@
|
|||
Transparent|透明
|
||||
Grass A|草A
|
||||
Grass B|草B
|
||||
Grass C|草C
|
||||
Flowers A|花A
|
||||
Flowers B|花B
|
||||
Flowers C|花C
|
||||
Flowers D|花D
|
||||
Grass D|草D
|
||||
Grass E|草E
|
||||
Grass F|草F
|
||||
Tree Branch|木の枝
|
||||
Grass G|草G
|
||||
Grass H|草H
|
||||
Grass H|草H
|
||||
Mushrooms|キノコ
|
||||
Stump A|切り株A
|
||||
Stump B|切り株B
|
||||
Small Tree A|小さな木A
|
||||
Small Tree B|小さな木B
|
||||
Boulder A|岩A
|
||||
Boulder B|岩B
|
||||
Boulder C|岩C
|
||||
Barricade A (V)|バリケードA(縦)
|
||||
Sign A|立て札A
|
||||
Sign B|立て札B
|
||||
Sign C|立て札C
|
||||
Sign D|立て札D
|
||||
Sign E|立て札E
|
||||
Sign F|立て札F
|
||||
Barricade A (H)|バリケードA(横)
|
||||
Barricade A (V)|バリケードA(縦)
|
||||
Fallen Log A (V)|倒木A(縦)
|
||||
Fallen Log B (H)|倒木B(横)
|
||||
Fallen Log B (H)|倒木B(横)
|
||||
Fallen Log B (V)|倒木B(縦)
|
||||
Bush A|植え込みA
|
||||
Tree A|木A
|
||||
Tree B|木B
|
||||
Tree B|木B
|
||||
Fallen Log A (V)|倒木A(縦)
|
||||
Fallen Log A (H)|倒木A(横)
|
||||
Fallen Log A (H)|倒木A(横)
|
||||
Fallen Log B (V)|倒木B(縦)
|
||||
Bush B|植え込みB
|
||||
Tree A|木A
|
||||
Tree B|木B
|
||||
Tree B|木B
|
||||
Ledge A (Top)|段差A(上端)
|
||||
Ledge A (Top)|段差A(上端)
|
||||
Ledge A (Top)|段差A(上端)
|
||||
Shadow|影
|
||||
Ledge A (Top)|段差A(上端)
|
||||
Ledge B (Top)|段差B(上端)
|
||||
Ledge B (Top)|段差B(上端)
|
||||
Ledge B (Top)|段差B(上端)
|
||||
Cliff (Bottom, Height Over 2)|崖(下端・高さ2マス以上)
|
||||
Cliff (Bottom, Height Over 2)|崖(下端・高さ2マス以上)
|
||||
Cliff (Bottom, Height Over 2)|崖(下端・高さ2マス以上)
|
||||
Shadow (Impassable)|影(通行不可)
|
||||
Ledge A (Top, Shadow)|段差A(上端・影)
|
||||
Ledge A (Top, Shadow)|段差A(上端・影)
|
||||
Ledge A (Top, Shadow)|段差A(上端・影)
|
||||
Ledge A (Top, Shadow)|段差A(上端・影)
|
||||
Shadow (Slope, Bottom)|坂の影(下端)
|
||||
Cliff (Bottom, Shadow, Center, Height Over 2)|崖(下端・影・中央・高さ2マス以上)
|
||||
Cliff (Bottom, Shadow, Right, Height Over 2)|崖(下端・影・右・高さ2マス以上)
|
||||
Shadow|影
|
||||
Shadow|影
|
||||
Ledge B (Top, Shadow)|段差B(上端・影)
|
||||
Ledge B (Top, Shadow)|段差B(上端・影)
|
||||
Ledge B (Top, Shadow)|段差B(上端・影)
|
||||
Stairs A (Bottom)|階段A(下端)
|
||||
Stairs A (Bottom)|階段A(下端)
|
||||
Stairs A (Bottom)|階段A(下端)
|
||||
Stairs B (Bottom)|階段B(下端)
|
||||
Shadow (Stairs B)|階段の影
|
||||
Cliff (Bottom, Height 1)|崖(下端・高さ1マス)
|
||||
Cliff (Bottom, Height 1)|崖(下端・高さ1マス)
|
||||
Cliff (Bottom, Height 1)|崖(下端・高さ1マス)
|
||||
Little Ledge D|低い段差D
|
||||
Little Ledge D|低い段差D
|
||||
Little Ledge D|低い段差D
|
||||
Little Ledge D (Shadow)|低い段差D(影)
|
||||
Little Ledge D|低い段差D
|
||||
Little Ledge D|低い段差D
|
||||
Little Ledge D (Shadow, Center)|低い段差D(影・中央)
|
||||
Little Ledge D (Shadow, Right)|低い段差D(影・右)
|
||||
Little Ledge D|低い段差D
|
||||
Little Ledge D|低い段差D
|
||||
Little Ledge D|低い段差D
|
||||
Stairs (Little Ledge D)|階段(低い段差D)
|
||||
Stairs (Little Ledge D)|階段(低い段差D)
|
||||
Stairs (Little Ledge D)|階段(低い段差D)
|
||||
Stairs (Little Ledge D)|階段(低い段差D)
|
||||
Stairs Shadow (Little Ledge D)|階段の影(低い段差D)
|
||||
Little Ledge D|低い段差D
|
||||
Little Ledge D|低い段差D
|
||||
Little Ledge D|低い段差D
|
||||
Stairs (Little Ledge D)|階段(低い段差D)
|
||||
Stairs (Little Ledge D)|階段(低い段差D)
|
||||
Stairs (Little Ledge D)|階段(低い段差D)
|
||||
Stairs (Little Ledge D)|階段(低い段差D)
|
||||
Stairs Shadow (Little Ledge D)|階段の影(低い段差D)
|
||||
Little Ledge D|低い段差D
|
||||
Little Ledge D|低い段差D
|
||||
Little Ledge D|低い段差D
|
||||
Little Ledge D|低い段差D
|
||||
Slope A|坂A
|
||||
Slope A|坂A
|
||||
Slope A|坂A
|
||||
Slope B|坂B
|
||||
Slope C (Little Ledge D)|坂C(低い段差D)
|
||||
Slope C (Little Ledge D)|坂C(低い段差D)
|
||||
Slope C (Little Ledge D)|坂C(低い段差D)
|
||||
Slope D (Little Ledge D)|坂D(低い段差D)
|
||||
Slope A|坂A
|
||||
Slope A|坂A
|
||||
Slope A|坂A
|
||||
Slope B|坂B
|
||||
Slope C (Little Ledge D)|坂C(低い段差D)
|
||||
Slope C (Little Ledge D)|坂C(低い段差D)
|
||||
Slope C (Little Ledge D)|坂C(低い段差D)
|
||||
Slope D (Little Ledge D)|坂D(低い段差D)
|
||||
Slope A|坂A
|
||||
Slope A|坂A
|
||||
Slope A|坂A
|
||||
Slope B|坂B
|
||||
Wall Vines A (Left)|壁のツタA(左)
|
||||
Wall Vines A (Center)|壁のツタA(中央)
|
||||
Wall Vines A (Right)|壁のツタA(右)
|
||||
Wall Vines B|壁のツタB
|
||||
Cave Entrance A (Vines)|洞窟入口A(ツタ)
|
||||
Cave Entrance A (Vines)|洞窟入口A(ツタ)
|
||||
Cave Entrance A (Vines)|洞窟入口A(ツタ)
|
||||
Cave Entrance B (Vines)|洞窟入口B(ツタ)
|
||||
Wall Vines A (Left)|壁のツタA(左)
|
||||
Wall Vines A (Center)|壁のツタA(中央)
|
||||
Wall Vines A (Right)|壁のツタA(右)
|
||||
Wall Vines B|壁のツタB
|
||||
Cave Entrance A|洞窟入口A
|
||||
Cave Entrance A|洞窟入口A
|
||||
Cave Entrance A|洞窟入口A
|
||||
Cave Entrance B|洞窟入口B
|
||||
Wall Vines A (Left)|壁のツタA(左)
|
||||
Wall Vines A (Center)|壁のツタA(中央)
|
||||
Wall Vines A (Right)|壁のツタA(右)
|
||||
Wall Vines B|壁のツタB
|
||||
Cave Entrance A|洞窟入口A
|
||||
Cave Entrance A|洞窟入口A
|
||||
Cave Entrance A|洞窟入口A
|
||||
Cave Entrance B|洞窟入口B
|
||||
Grass A (Wall Side)|壁際の草A
|
||||
Grass B (Wall Side)|壁際の草B
|
||||
Grass B (Wall Side)|壁際の草B
|
||||
Boulder A (Wall Side)|壁際の岩A
|
||||
Boulder B (Wall Side)|壁際の岩B
|
||||
Boulder B (Wall Side)|壁際の岩B
|
||||
Wall Grass A|壁の草A
|
||||
Wall Grass B|壁の草B
|
||||
Grass A (Wall Side)|壁際の草A
|
||||
Grass B (Wall Side)|壁際の草B
|
||||
Grass B (Wall Side)|壁際の草B
|
||||
Boulder A (Wall Side)|壁際の岩A
|
||||
Boulder B (Wall Side)|壁際の岩B
|
||||
Boulder B (Wall Side)|壁際の岩B
|
||||
Wall Grass A|壁の草A
|
||||
Wall Grass B|壁の草B
|
||||
Vines|ツタ
|
||||
Rope|ロープ
|
||||
Shadow|影
|
||||
Cliff (Water Edge)|水際の崖
|
||||
Cliff (Water Edge)|水際の崖
|
||||
Cliff (Water Edge)|水際の崖
|
||||
Grass A (Wall)|壁の草A
|
||||
Flowers A (Wall)|壁の花A
|
||||
Vines|ツタ
|
||||
Rope|ロープ
|
||||
Shadow|影
|
||||
Cliff (Water Edge)|水際の崖
|
||||
Cliff (Water Edge)|水際の崖
|
||||
Cliff (Water Edge)|水際の崖
|
||||
Grass B (Wall)|壁の草B
|
||||
Flowers B (Wall)|壁の花B
|
||||
Vines|ツタ
|
||||
Rope|ロープ
|
||||
Swamp Grass A|水草A
|
||||
Swamp Grass B|水草B
|
||||
Swamp Grass C|水草C
|
||||
Tree A (Water)|水場の木A
|
||||
Tree B (Water)|水場の木B
|
||||
Dead Tree (Water)|水場の枯れ木
|
||||
Vines (Down)|ツタ(下り)
|
||||
Rope (Down)|ロープ(下り)
|
||||
Floating Island|浮島
|
||||
Boulder A (Water)|水場の岩A
|
||||
Tree B (Water)|水場の木B
|
||||
Tree A (Water)|水場の木A
|
||||
Tree B (Water)|水場の木B
|
||||
Tree Branch (Water)|水底の枝
|
||||
Littele Ledge A|低い段差A
|
||||
Littele Ledge A|低い段差A
|
||||
Littele Ledge A|低い段差A
|
||||
Boulder B (Water)|水場の岩B
|
||||
Lotus Pads A|蓮の葉A
|
||||
Lotus Pads B|蓮の葉B
|
||||
Lotus Pads C|蓮の葉C
|
||||
Lotus Pads D|蓮の葉D
|
||||
Littele Ledge A|低い段差A
|
||||
|
|
||||
Littele Ledge A|低い段差A
|
||||
Crate A|木箱A
|
||||
Stacked Crates A (Upper left)|積まれた木箱A(左上)
|
||||
Stacked Crates A (Upper right)|積まれた木箱A(右上)
|
||||
Stacked Crates B|積まれた木箱B
|
||||
Stacked Crates B|積まれた木箱B
|
||||
Littele Ledge A|低い段差A
|
||||
Littele Ledge A|低い段差A
|
||||
Littele Ledge A|低い段差A
|
||||
Crate B|木箱B
|
||||
Stacked Crates A (Lower left)|積まれた木箱A(左下)
|
||||
Stacked Crates A (Lower right)|積まれた木箱A(右下)
|
||||
Stacked Crates B|積まれた木箱B
|
||||
Stacked Crates B|積まれた木箱B
|
||||
Wood Bridge (H, Broken)|壊れた木の橋(横)
|
||||
Wood Bridge (H, Broken)|壊れた木の橋(横)
|
||||
Wood Bridge (V, Broken)|壊れた木の橋(縦)
|
||||
Barricade B|バリケードB
|
||||
Barrel A|樽A
|
||||
Barrel B|樽B
|
||||
Log Bridge (V, Broken)|壊れた丸太の橋(縦)
|
||||
Log Bridge (V)|丸太の橋(縦)
|
||||
Wood Bridge (V)|木の橋(縦)
|
||||
Wood Bridge (V)|木の橋(縦)
|
||||
Wood Bridge (V, Broken)|壊れた木の橋(縦)
|
||||
Wood Bridge (V)|木の橋(縦)
|
||||
Wood Bridge (H)|木の橋(横)
|
||||
Log Bridge (V)|丸太の橋(縦)
|
||||
Log Bridge (V, Broken)|壊れた丸太の橋(縦)
|
||||
Log Bridge (V)|丸太の橋(縦)
|
||||
Wood Bridge (V)|木の橋(縦)
|
||||
Wood Bridge (V)|木の橋(縦)
|
||||
Wood Bridge (H)|木の橋(横)
|
||||
Wood Bridge (H)|木の橋(横)
|
||||
Wood Bridge (H)|木の橋(横)
|
||||
Log Bridge (H, Broken)|壊れた丸太の橋(横)
|
||||
Log Bridge (H, Broken)|壊れた丸太の橋(横)
|
||||
Log Bridge (V)|丸太の橋(縦)
|
||||
Wood Bridge (V)|木の橋(縦)
|
||||
Wood Bridge (V)|木の橋(縦)
|
||||
Wood Bridge (H)|木の橋(横)
|
||||
Wood Bridge (H)|木の橋(横)
|
||||
Wood Bridge (H)|木の橋(横)
|
||||
Log Bridge (H)|丸太の橋(横)
|
||||
Log Bridge (H)|丸太の橋(横)
|
||||
Log Bridge (H)|丸太の橋(横)
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue