Initial Commit
This commit is contained in:
commit
9c90cd52ef
228 changed files with 1282119 additions and 0 deletions
105
.gitignore
vendored
Normal file
105
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,105 @@
|
|||
# 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
|
||||
|
||||
# Ignore
|
||||
previous_patch_sha.txt
|
||||
kabe3_save.dat
|
||||
kabe3_system.dat
|
||||
psbpack.dat
|
||||
Save*
|
||||
|
||||
# Images
|
||||
!1menyu-gamenn.png
|
||||
!eriahyouzi-1.png
|
||||
!eriahyouzi-2.png
|
||||
!eriahyouzi-3.png
|
||||
!eriahyouzi-4.png
|
||||
!eriahyouzi-5.png
|
||||
!ero52-supityannbakku-1.png
|
||||
!ero52-supityannbakku-2.png
|
||||
!ero52-supityannbakku-3.png
|
||||
!ero52-supityannsonogo-1.png
|
||||
!ero52-supityannsonogo-2.png
|
||||
!ero53-mobukann-1.png
|
||||
!ero53-mobukann-2.png
|
||||
!erosutekuri1.png
|
||||
!erosutekuri2.png
|
||||
!erosutekuri3.png
|
||||
!erosutekuri4.png
|
||||
!erosutekuri5.png
|
||||
!erosutekuti1.png
|
||||
!erosutekuti2.png
|
||||
!erosutekuti3.png
|
||||
!erosutekuti4.png
|
||||
!erosutekuti5.png
|
||||
!erosutemune1.png
|
||||
!erosutemune2.png
|
||||
!erosutemune3.png
|
||||
!erosutemune4.png
|
||||
!erosutemune5.png
|
||||
!erosutesiri1.png
|
||||
!erosutesiri2.png
|
||||
!erosutesiri3.png
|
||||
!erosutesiri4.png
|
||||
!erosutesiri5.png
|
||||
!erosutetitu1.png
|
||||
!erosutetitu2.png
|
||||
!erosutetitu3.png
|
||||
!erosutetitu4.png
|
||||
!erosutetitu5.png
|
||||
!innranndo.png
|
||||
!kandomozi-anaru-ue-1.png
|
||||
!kandomozi-hatuzyouge-zi-ue-1.png
|
||||
!kandomozi-higyakukeikenn.png
|
||||
!kandomozi-hounyou.png
|
||||
!kandomozi-innranndo.png
|
||||
!kandomozi-kuri-ue-1.png
|
||||
!kandomozi-kuti-ue-1.png
|
||||
!kandomozi-mune-ue-1.png
|
||||
!kandomozi-nakadasi.png
|
||||
!kandomozi-titu-ue-1.png
|
||||
!kandomozi-zettyoukeikenn.png
|
||||
!kandomozi-ziikeikenn.png
|
||||
!op-messe-zi-daigakusei.png
|
||||
!op-messe-zi-hatena.png
|
||||
!op-messe-zi-kaisyainn.png
|
||||
!op-messe-zi-minadukiruri.png
|
||||
!op-messe-zi-momoiayana.png
|
||||
!op-messe-zi-OL.png
|
||||
!op-messe-zi-rapisuforia-mozi.png
|
||||
!op-messe-zi-senntouinn.png
|
||||
!op-messe-zi-sireikann.png
|
||||
!QTE-waku.rpgmvp
|
||||
!maruhi1.rpgmvp
|
||||
!maruhi2.rpgmvp
|
||||
!maruhi3.rpgmvp
|
||||
!maruhi4.rpgmvp
|
||||
!maruhi5.rpgmvp
|
||||
!maruhi6.rpgmvp
|
||||
!maruhi7.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
|
||||
91
README.md
Normal file
91
README.md
Normal file
|
|
@ -0,0 +1,91 @@
|
|||
# Apply Patch
|
||||
1. Click Code
|
||||
2. Click Download ZIP
|
||||
3. Extract to game folder and Replace All.
|
||||
|
||||
## Future Patching
|
||||
1. Run GAMEUPDATE.bat to auto patch.
|
||||
|
||||
# Troubleshooting
|
||||
**GAMEUPDATE.bat doesn't update and closes immediately**
|
||||
1. Make sure your path doesn't contain any Japanese characters or lots of whitespace.
|
||||
2. Make sure you actually have permissions in the folder
|
||||
|
||||
# Edit/Contribute
|
||||
TLDR 3 steps.
|
||||
|
||||
Fork the repository.
|
||||
Make the changes.
|
||||
Submit a merge request.
|
||||
|
||||
If everything looks good and doesn't break things I'll merge it in.
|
||||
|
||||
Longer Version:
|
||||
|
||||
# Required Software:
|
||||
* [VSCode](https://code.visualstudio.com/) Make sure you check all the boxes for context menus.
|
||||
* [Git](https://git-scm.com/downloads) (Use the default for everything. Just keep clicking Next)
|
||||
|
||||
# Guide to contributing
|
||||
|
||||
### 1. Fork the Repository
|
||||
- Go to the repository you want to fork.
|
||||
- Click the "Fork" button.
|
||||
|
||||
### 2. Clone Your Fork
|
||||
- Clone your forked repository to your local machine.
|
||||
```sh
|
||||
git clone https://gitgud.io/YOUR_USERNAME/REPO_NAME.git
|
||||
```
|
||||
|
||||
### 3. Make Your Changes (In VSCode)
|
||||
- Edit the files locally on your new branch using VSCode.
|
||||
- Add and commit your changes.
|
||||
```sh
|
||||
git add .
|
||||
git commit -m "Description of your changes"
|
||||
```
|
||||
|
||||
### 4. Push Your Changes
|
||||
- Push your changes to your fork on GitGud.io.
|
||||
```sh
|
||||
git push origin your-feature-branch
|
||||
```
|
||||
|
||||
### 5. Create a Merge Request
|
||||
- Go to your fork on GitGud.io.
|
||||
- Click on "Merge Requests" in the sidebar.
|
||||
- Click the "New merge request" button.
|
||||
- Select the branch you made changes to and the target project (the original repo).
|
||||
- Provide a title and description for your merge request and submit it.
|
||||
|
||||
---
|
||||
|
||||
## Example
|
||||
|
||||
Assuming you want to fork a repository named `example-project`:
|
||||
|
||||
### 1. Fork the Repo
|
||||
- Navigate to `https://gitgud.io/original_user/example-project` and click "Fork".
|
||||
|
||||
### 2. Clone Your Fork
|
||||
```sh
|
||||
git clone https://gitgud.io/YOUR_USERNAME/example-project.git
|
||||
```
|
||||
|
||||
### 3. Make Changes and Commit
|
||||
```sh
|
||||
# Make changes to the files
|
||||
git add .
|
||||
git commit -m "Add new feature to example project"
|
||||
```
|
||||
|
||||
### 4. Push Changes
|
||||
```sh
|
||||
git push origin add-new-feature
|
||||
```
|
||||
|
||||
### 5. Create a Merge Request
|
||||
- Go to `https://gitgud.io/YOUR_USERNAME/example-project/merge_requests` and click on "New merge request".
|
||||
- Choose the source branch `add-new-feature` and target branch (default: `main` or `master`).
|
||||
- Fill in the details and submit the merge request.
|
||||
BIN
icudtl.dat
Normal file
BIN
icudtl.dat
Normal file
Binary file not shown.
12
package.json
Normal file
12
package.json
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"name": "",
|
||||
"main": "www/index.html",
|
||||
"js-flags": "--expose-gc",
|
||||
"window": {
|
||||
"title": "",
|
||||
"toolbar": false,
|
||||
"width": 816,
|
||||
"height": 624,
|
||||
"icon": "www/icon/icon.png"
|
||||
}
|
||||
}
|
||||
3
patch-config.txt
Normal file
3
patch-config.txt
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
username=dazed-translations
|
||||
repo=blue-sky-princess-lapisphilia
|
||||
branch=main
|
||||
105
patch.bat
Normal file
105
patch.bat
Normal file
|
|
@ -0,0 +1,105 @@
|
|||
@echo off
|
||||
setlocal EnableExtensions EnableDelayedExpansion
|
||||
|
||||
echo Checking for pwsh...
|
||||
set _my_shell=pwsh
|
||||
|
||||
REM Check if pwsh.exe exists
|
||||
where /q !_my_shell!
|
||||
if !errorlevel! neq 0 (
|
||||
echo pwsh not found. Falling back to powershell...
|
||||
REM If pwsh is not found, set to powershell
|
||||
set _my_shell=powershell
|
||||
|
||||
REM Check if powershell.exe exists
|
||||
echo Checking for powershell...
|
||||
where /q !_my_shell!
|
||||
if !errorlevel! neq 0 (
|
||||
echo.Error: Powershell not found!
|
||||
pause
|
||||
exit /B 1
|
||||
) else (
|
||||
echo powershell found.
|
||||
)
|
||||
) else (
|
||||
echo pwsh found.
|
||||
)
|
||||
|
||||
echo Using !_my_shell! for script execution.
|
||||
|
||||
REM Check if patch-config.txt exists
|
||||
if not exist patch-config.txt (
|
||||
echo "Config file (patch-config.txt) not found! Assuming no patching needed."
|
||||
pause
|
||||
exit /b
|
||||
)
|
||||
|
||||
REM Read configuration from file
|
||||
for /f "tokens=1,2 delims==" %%a in (patch-config.txt) do (
|
||||
if "%%a"=="username" set "username=%%b"
|
||||
if "%%a"=="repo" set "repo=%%b"
|
||||
if "%%a"=="branch" set "branch=%%b"
|
||||
)
|
||||
|
||||
REM Get the latest hash
|
||||
echo "Getting latest commit SHA hash"
|
||||
!_my_shell! -Command "(Invoke-RestMethod -Uri 'https://gitgud.io/api/v4/projects/%username%%%2F%repo%/repository/branches/%branch%').commit.id" > latest_patch_sha.txt
|
||||
|
||||
REM Read the latest SHA from the file
|
||||
set /p latest_patch_sha=<latest_patch_sha.txt
|
||||
|
||||
REM Check if previous_patch_sha.txt exists
|
||||
if not exist previous_patch_sha.txt (
|
||||
echo "Previous SHA hash not found!"
|
||||
echo "Assuming first time patching..."
|
||||
goto download_extract
|
||||
)
|
||||
|
||||
REM Read the stored SHA from previous check
|
||||
set /p previous_patch_sha=<previous_patch_sha.txt
|
||||
|
||||
REM Trim whitespace from SHA strings
|
||||
set "previous_patch_sha=%previous_patch_sha: =%"
|
||||
set "latest_patch_sha=%latest_patch_sha: =%"
|
||||
|
||||
REM Compare trimmed SHAs
|
||||
if "%latest_patch_sha%" neq "%previous_patch_sha%" (
|
||||
echo "Update found! Patching..."
|
||||
goto download_extract
|
||||
) else (
|
||||
echo "Patch is up to date."
|
||||
)
|
||||
|
||||
REM Delete latest_patch_sha.txt
|
||||
del latest_patch_sha.txt
|
||||
|
||||
endlocal
|
||||
pause
|
||||
exit /b
|
||||
|
||||
:download_extract
|
||||
REM Download zip file
|
||||
echo "Downloading latest patch..."
|
||||
!_my_shell! -Command "Invoke-WebRequest -Uri 'https://gitgud.io/%username%/%repo%/-/archive/%branch%/%repo%-%branch%.zip' -OutFile 'repo.zip'"
|
||||
if !errorlevel! neq 0 (
|
||||
pause
|
||||
exit /b
|
||||
)
|
||||
|
||||
REM Extract contents, overwriting conflicts
|
||||
echo "Extracting..."
|
||||
!_my_shell! -Command "Expand-Archive -Path '.\repo.zip' -DestinationPath '.' -Force"
|
||||
echo "Applying patch..."
|
||||
xcopy /s /e /y "%repo%-%branch%\*" "."
|
||||
|
||||
REM Clean up
|
||||
echo "Cleaning up..."
|
||||
del repo.zip
|
||||
rmdir /s /q "%repo%-%branch%"
|
||||
del latest_patch_sha.txt
|
||||
|
||||
REM Store latest SHA for next check
|
||||
echo %latest_patch_sha% > previous_patch_sha.txt
|
||||
endlocal
|
||||
pause
|
||||
exit /b
|
||||
74
patch.sh
Normal file
74
patch.sh
Normal file
|
|
@ -0,0 +1,74 @@
|
|||
#!/bin/bash
|
||||
|
||||
check_dependency() {
|
||||
if ! command -v "$1" > /dev/null 2>&1; then
|
||||
echo "Error: '$1' is not installed. Please install it using 'pkg install $1'."
|
||||
exit 1
|
||||
fi
|
||||
}
|
||||
|
||||
# Check for jq, unzip, and curl
|
||||
check_dependency jq
|
||||
check_dependency unzip
|
||||
check_dependency curl
|
||||
|
||||
CONFIG_FILE="patch-config.txt"
|
||||
|
||||
# Check if CONFIG_FILE exists
|
||||
if [ ! -f "$CONFIG_FILE" ]; then
|
||||
echo "Config file '$CONFIG_FILE' not found! Assuming no patching needed."
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# Convert line endings to Unix format
|
||||
sed -i 's/\r$//' "$CONFIG_FILE"
|
||||
|
||||
# Debug information
|
||||
echo "Current directory: $(pwd)"
|
||||
echo "Config file path: $(pwd)/$CONFIG_FILE"
|
||||
|
||||
# Read configuration from file
|
||||
. "$(pwd)/$CONFIG_FILE"
|
||||
|
||||
# Get the latest hash
|
||||
echo "Getting latest commit SHA hash"
|
||||
latest_patch_sha=$(curl -s "https://gitgud.io/api/v4/projects/$username%2F$repo/repository/branches/$branch" | jq -r '.commit.id')
|
||||
|
||||
download_extract() {
|
||||
# Download zip file
|
||||
echo "Downloading latest patch..."
|
||||
curl -sL "https://gitgud.io/$username/$repo/-/archive/$branch/$repo-$branch.zip" -o repo.zip
|
||||
|
||||
# Extract contents, overwriting conflicts
|
||||
echo "Extracting..."
|
||||
unzip -qo repo.zip
|
||||
|
||||
echo "Applying patch..."
|
||||
cp -r "$repo-$branch/"* .
|
||||
|
||||
echo "Cleaning up..."
|
||||
rm repo.zip
|
||||
rm -rf "$repo-$branch"
|
||||
rm -f latest_patch_sha.txt
|
||||
|
||||
# Store latest SHA for next check
|
||||
echo "$latest_patch_sha" > previous_patch_sha.txt
|
||||
}
|
||||
|
||||
# Check if previous_patch_sha.txt exists
|
||||
if [ ! -f previous_patch_sha.txt ]; then
|
||||
echo "Previous SHA hash not found!"
|
||||
echo "Assuming first time patching..."
|
||||
download_extract
|
||||
else
|
||||
# Read the stored SHA from previous check
|
||||
previous_patch_sha=$(cat previous_patch_sha.txt)
|
||||
|
||||
# Compare trimmed SHAs
|
||||
if [ "$latest_patch_sha" != "$previous_patch_sha" ]; then
|
||||
echo "Update found! Patching..."
|
||||
download_extract
|
||||
else
|
||||
echo "Patch is up to date."
|
||||
fi
|
||||
fi
|
||||
76
readme.txt
Normal file
76
readme.txt
Normal file
|
|
@ -0,0 +1,76 @@
|
|||
『NTR冒険者リエナ~狙われ彼女と小さな彼~』
|
||||
|
||||
この度は『NTR冒険者リエナ~狙われ彼女と小さな彼~』をご購入いただき、誠にありがとうございます。
|
||||
|
||||
■このゲームについて
|
||||
本ゲームはRPGツクールMVにて制作されています。
|
||||
|
||||
★体験版のセーブデータはそのまま使用できると思います。
|
||||
saveフォルダ下に移してプレイしてください。
|
||||
|
||||
■操作方法(デフォルト)
|
||||
[キーボード]
|
||||
Z/Enter :決定
|
||||
X :キャンセル、メニュー呼び出し
|
||||
方向キー :キャラ移動、選択カーソル移動
|
||||
ctrl :メッセージスキップ
|
||||
右クリック :ウィンドウの一時消去
|
||||
|
||||
[マウス]
|
||||
左クリック:キャラ移動、選択カーソル移動、決定
|
||||
右クリック:キャンセル、メッセージウィンドウ一時消去
|
||||
|
||||
■イベントの進め方
|
||||
ステージが進むと街中でイベントのフラグが立つ場合があります。
|
||||
進行可能なイベントが発生している場合、「!」または「♥」のアイコンが該当箇所に表示されます。
|
||||
|
||||
■連絡先
|
||||
不具合等が発生した場合は、以下からご連絡ください。
|
||||
https://ci-en.dlsite.com/creator/21163
|
||||
|
||||
-----
|
||||
■謝辞
|
||||
制作にあたり、下記の素材を使用させて頂きました。誠にありがとうございます。
|
||||
|
||||
■グラフィック素材
|
||||
魚圭 様 https://akictake.wixsite.com/encountered
|
||||
PandaMaru 様
|
||||
|
||||
|
||||
■プラグイン素材
|
||||
うなぎおおとろ 様
|
||||
やな 様
|
||||
tomoaky 様
|
||||
トリアコンタン 様 https://triacontane.blogspot.com/
|
||||
ルルの教会 様 https://nine-yusha.com/
|
||||
うたかたの夢跡 様 https://www.utakata-no-yume.net/
|
||||
ペンギンの寝床 様 https://woodpenguin.web.fc2.com/MV_Plugin/index.html
|
||||
|
||||
■オーディオ素材
|
||||
効果音ラボ 様 https://soundeffect-lab.info/
|
||||
ノタの森 様 http://notanomori.net/termsofuse/
|
||||
On-Jin ~音人~ 様 https://on-jin.com/
|
||||
OtoLogic 様 https://otologic.jp/
|
||||
|
||||
----
|
||||
|
||||
★回想部屋に含まれていないHシーンについて
|
||||
回想部屋に含まれていない、汎用Hシーンの見方について説明します。
|
||||
|
||||
◆4階層(催淫ガスエリア)
|
||||
・吹き出るガスに接触した後、モブに接触すると立ち絵エロが始まります。
|
||||
その後、何度かモブに接触すると手マン、立ちバック、フィニッシュに遷移します。
|
||||
◆6階層(催眠罠エリア)
|
||||
・設置してある魔法陣(赤色)に接触するか、旋回している悪魔のモブに数度接触するとリエナが裸になります。
|
||||
裸になるとエリア内のモブが♥のフキダシを出すようになるので、話しかけるとHシーンが見れます。
|
||||
・リエナが裸の状態で、6階層から地上に帰還するとHシーンが見れます
|
||||
|
||||
----
|
||||
■更新履歴
|
||||
2023/09/08 製品版公開
|
||||
2023/09/11 (v1.01)バグ修正
|
||||
14 (v1.02)バグ修正
|
||||
|
||||
----
|
||||
■制作 ミラクルきらめてぃか
|
||||
https://ci-en.dlsite.com/creator/21163
|
||||
49
www/data/Actors.json
Normal file
49
www/data/Actors.json
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "liena",
|
||||
"classId": 5,
|
||||
"equips": [
|
||||
1,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 20,
|
||||
"maxLevel": 99,
|
||||
"name": "リエナ",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "ilu",
|
||||
"classId": 3,
|
||||
"equips": [
|
||||
2,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
0
|
||||
],
|
||||
"faceIndex": 7,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 12,
|
||||
"maxLevel": 99,
|
||||
"name": "イル",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
}
|
||||
]
|
||||
135756
www/data/Animations.json
Normal file
135756
www/data/Animations.json
Normal file
File diff suppressed because it is too large
Load diff
111
www/data/Armors.json
Normal file
111
www/data/Armors.json
Normal file
|
|
@ -0,0 +1,111 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"atypeId": 5,
|
||||
"description": "",
|
||||
"etypeId": 2,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"iconIndex": 128,
|
||||
"name": "盾",
|
||||
"note": "",
|
||||
"params": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
10,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"price": 300
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"atypeId": 1,
|
||||
"description": "",
|
||||
"etypeId": 3,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"iconIndex": 130,
|
||||
"name": "帽子",
|
||||
"note": "",
|
||||
"params": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
10,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"price": 300
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"atypeId": 1,
|
||||
"description": "",
|
||||
"etypeId": 4,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"iconIndex": 135,
|
||||
"name": "服",
|
||||
"note": "",
|
||||
"params": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
10,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"price": 300
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"atypeId": 1,
|
||||
"description": "",
|
||||
"etypeId": 5,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"iconIndex": 145,
|
||||
"name": "指輪",
|
||||
"note": "",
|
||||
"params": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
10,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"price": 300
|
||||
}
|
||||
]
|
||||
4401
www/data/Classes.json
Normal file
4401
www/data/Classes.json
Normal file
File diff suppressed because it is too large
Load diff
102274
www/data/CommonEvents.json
Normal file
102274
www/data/CommonEvents.json
Normal file
File diff suppressed because it is too large
Load diff
251
www/data/Enemies.json
Normal file
251
www/data/Enemies.json
Normal file
|
|
@ -0,0 +1,251 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"actions": [
|
||||
{
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0,
|
||||
"conditionType": 0,
|
||||
"rating": 5,
|
||||
"skillId": 1
|
||||
}
|
||||
],
|
||||
"battlerHue": 0,
|
||||
"battlerName": "Bat",
|
||||
"dropItems": [
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
}
|
||||
],
|
||||
"exp": 0,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 0,
|
||||
"value": 0.95
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0.05
|
||||
},
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"gold": 0,
|
||||
"name": "こうもり",
|
||||
"note": "",
|
||||
"params": [
|
||||
200,
|
||||
0,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"actions": [
|
||||
{
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0,
|
||||
"conditionType": 0,
|
||||
"rating": 5,
|
||||
"skillId": 1
|
||||
}
|
||||
],
|
||||
"battlerHue": 0,
|
||||
"battlerName": "Slime",
|
||||
"dropItems": [
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
}
|
||||
],
|
||||
"exp": 0,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 0,
|
||||
"value": 0.95
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0.05
|
||||
},
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"gold": 0,
|
||||
"name": "スライム",
|
||||
"note": "",
|
||||
"params": [
|
||||
250,
|
||||
0,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"actions": [
|
||||
{
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0,
|
||||
"conditionType": 0,
|
||||
"rating": 5,
|
||||
"skillId": 1
|
||||
}
|
||||
],
|
||||
"battlerHue": 0,
|
||||
"battlerName": "Orc",
|
||||
"dropItems": [
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
}
|
||||
],
|
||||
"exp": 0,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 0,
|
||||
"value": 0.95
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0.05
|
||||
},
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"gold": 0,
|
||||
"name": "オーク",
|
||||
"note": "",
|
||||
"params": [
|
||||
300,
|
||||
0,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"actions": [
|
||||
{
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0,
|
||||
"conditionType": 0,
|
||||
"rating": 5,
|
||||
"skillId": 1
|
||||
}
|
||||
],
|
||||
"battlerHue": 0,
|
||||
"battlerName": "Minotaur",
|
||||
"dropItems": [
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
}
|
||||
],
|
||||
"exp": 0,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 0,
|
||||
"value": 0.95
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0.05
|
||||
},
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"gold": 0,
|
||||
"name": "ミノタウロス",
|
||||
"note": "",
|
||||
"params": [
|
||||
500,
|
||||
0,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30
|
||||
]
|
||||
}
|
||||
]
|
||||
6545
www/data/Items.json
Normal file
6545
www/data/Items.json
Normal file
File diff suppressed because it is too large
Load diff
1817
www/data/Map001.json
Normal file
1817
www/data/Map001.json
Normal file
File diff suppressed because it is too large
Load diff
3640
www/data/Map003.json
Normal file
3640
www/data/Map003.json
Normal file
File diff suppressed because it is too large
Load diff
21974
www/data/Map004.json
Normal file
21974
www/data/Map004.json
Normal file
File diff suppressed because it is too large
Load diff
15000
www/data/Map005.json
Normal file
15000
www/data/Map005.json
Normal file
File diff suppressed because it is too large
Load diff
5463
www/data/Map006.json
Normal file
5463
www/data/Map006.json
Normal file
File diff suppressed because it is too large
Load diff
7371
www/data/Map007.json
Normal file
7371
www/data/Map007.json
Normal file
File diff suppressed because it is too large
Load diff
3447
www/data/Map008.json
Normal file
3447
www/data/Map008.json
Normal file
File diff suppressed because it is too large
Load diff
25219
www/data/Map009.json
Normal file
25219
www/data/Map009.json
Normal file
File diff suppressed because it is too large
Load diff
21400
www/data/Map010.json
Normal file
21400
www/data/Map010.json
Normal file
File diff suppressed because it is too large
Load diff
9745
www/data/Map011.json
Normal file
9745
www/data/Map011.json
Normal file
File diff suppressed because it is too large
Load diff
5967
www/data/Map012.json
Normal file
5967
www/data/Map012.json
Normal file
File diff suppressed because it is too large
Load diff
12573
www/data/Map013.json
Normal file
12573
www/data/Map013.json
Normal file
File diff suppressed because it is too large
Load diff
20728
www/data/Map014.json
Normal file
20728
www/data/Map014.json
Normal file
File diff suppressed because it is too large
Load diff
13090
www/data/Map018.json
Normal file
13090
www/data/Map018.json
Normal file
File diff suppressed because it is too large
Load diff
13871
www/data/Map019.json
Normal file
13871
www/data/Map019.json
Normal file
File diff suppressed because it is too large
Load diff
12507
www/data/Map021.json
Normal file
12507
www/data/Map021.json
Normal file
File diff suppressed because it is too large
Load diff
1363
www/data/Map023.json
Normal file
1363
www/data/Map023.json
Normal file
File diff suppressed because it is too large
Load diff
14353
www/data/Map025.json
Normal file
14353
www/data/Map025.json
Normal file
File diff suppressed because it is too large
Load diff
13585
www/data/Map026.json
Normal file
13585
www/data/Map026.json
Normal file
File diff suppressed because it is too large
Load diff
21514
www/data/Map027.json
Normal file
21514
www/data/Map027.json
Normal file
File diff suppressed because it is too large
Load diff
22855
www/data/Map028.json
Normal file
22855
www/data/Map028.json
Normal file
File diff suppressed because it is too large
Load diff
22915
www/data/Map029.json
Normal file
22915
www/data/Map029.json
Normal file
File diff suppressed because it is too large
Load diff
21183
www/data/Map031.json
Normal file
21183
www/data/Map031.json
Normal file
File diff suppressed because it is too large
Load diff
6551
www/data/Map032.json
Normal file
6551
www/data/Map032.json
Normal file
File diff suppressed because it is too large
Load diff
25111
www/data/Map033.json
Normal file
25111
www/data/Map033.json
Normal file
File diff suppressed because it is too large
Load diff
10297
www/data/Map035.json
Normal file
10297
www/data/Map035.json
Normal file
File diff suppressed because it is too large
Load diff
2045
www/data/Map036.json
Normal file
2045
www/data/Map036.json
Normal file
File diff suppressed because it is too large
Load diff
3390
www/data/Map037.json
Normal file
3390
www/data/Map037.json
Normal file
File diff suppressed because it is too large
Load diff
10981
www/data/Map038.json
Normal file
10981
www/data/Map038.json
Normal file
File diff suppressed because it is too large
Load diff
7100
www/data/Map039.json
Normal file
7100
www/data/Map039.json
Normal file
File diff suppressed because it is too large
Load diff
5444
www/data/Map040.json
Normal file
5444
www/data/Map040.json
Normal file
File diff suppressed because it is too large
Load diff
9627
www/data/Map041.json
Normal file
9627
www/data/Map041.json
Normal file
File diff suppressed because it is too large
Load diff
5392
www/data/Map042.json
Normal file
5392
www/data/Map042.json
Normal file
File diff suppressed because it is too large
Load diff
5385
www/data/Map043.json
Normal file
5385
www/data/Map043.json
Normal file
File diff suppressed because it is too large
Load diff
1426
www/data/Map044.json
Normal file
1426
www/data/Map044.json
Normal file
File diff suppressed because it is too large
Load diff
16200
www/data/Map045.json
Normal file
16200
www/data/Map045.json
Normal file
File diff suppressed because it is too large
Load diff
6819
www/data/Map046.json
Normal file
6819
www/data/Map046.json
Normal file
File diff suppressed because it is too large
Load diff
6583
www/data/Map047.json
Normal file
6583
www/data/Map047.json
Normal file
File diff suppressed because it is too large
Load diff
14953
www/data/Map048.json
Normal file
14953
www/data/Map048.json
Normal file
File diff suppressed because it is too large
Load diff
12661
www/data/Map049.json
Normal file
12661
www/data/Map049.json
Normal file
File diff suppressed because it is too large
Load diff
9491
www/data/Map050.json
Normal file
9491
www/data/Map050.json
Normal file
File diff suppressed because it is too large
Load diff
6642
www/data/Map051.json
Normal file
6642
www/data/Map051.json
Normal file
File diff suppressed because it is too large
Load diff
25069
www/data/Map052.json
Normal file
25069
www/data/Map052.json
Normal file
File diff suppressed because it is too large
Load diff
30512
www/data/Map053.json
Normal file
30512
www/data/Map053.json
Normal file
File diff suppressed because it is too large
Load diff
21366
www/data/Map055.json
Normal file
21366
www/data/Map055.json
Normal file
File diff suppressed because it is too large
Load diff
19479
www/data/Map056.json
Normal file
19479
www/data/Map056.json
Normal file
File diff suppressed because it is too large
Load diff
28366
www/data/Map058.json
Normal file
28366
www/data/Map058.json
Normal file
File diff suppressed because it is too large
Load diff
20888
www/data/Map060.json
Normal file
20888
www/data/Map060.json
Normal file
File diff suppressed because it is too large
Load diff
5751
www/data/Map061.json
Normal file
5751
www/data/Map061.json
Normal file
File diff suppressed because it is too large
Load diff
7921
www/data/Map062.json
Normal file
7921
www/data/Map062.json
Normal file
File diff suppressed because it is too large
Load diff
6360
www/data/Map063.json
Normal file
6360
www/data/Map063.json
Normal file
File diff suppressed because it is too large
Load diff
7431
www/data/Map064.json
Normal file
7431
www/data/Map064.json
Normal file
File diff suppressed because it is too large
Load diff
15970
www/data/Map065.json
Normal file
15970
www/data/Map065.json
Normal file
File diff suppressed because it is too large
Load diff
6819
www/data/Map066.json
Normal file
6819
www/data/Map066.json
Normal file
File diff suppressed because it is too large
Load diff
501
www/data/MapInfos.json
Normal file
501
www/data/MapInfos.json
Normal file
|
|
@ -0,0 +1,501 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"expanded": true,
|
||||
"name": "OP",
|
||||
"order": 1,
|
||||
"parentId": 0,
|
||||
"scrollX": 1364.3999999999999,
|
||||
"scrollY": 547.8
|
||||
},
|
||||
null,
|
||||
{
|
||||
"id": 3,
|
||||
"expanded": false,
|
||||
"name": "マッサージ屋",
|
||||
"order": 16,
|
||||
"parentId": 9,
|
||||
"scrollX": 1364.3999999999999,
|
||||
"scrollY": 546.6
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"expanded": true,
|
||||
"name": "街(OPイベント用)",
|
||||
"order": 2,
|
||||
"parentId": 1,
|
||||
"scrollX": 1354.8,
|
||||
"scrollY": 935.4
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"expanded": true,
|
||||
"name": "ギルド",
|
||||
"order": 3,
|
||||
"parentId": 1,
|
||||
"scrollX": 1347.5,
|
||||
"scrollY": 567.5
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"expanded": true,
|
||||
"name": "アトリエOP用",
|
||||
"order": 4,
|
||||
"parentId": 1,
|
||||
"scrollX": 1364.3999999999999,
|
||||
"scrollY": 547.8
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"expanded": false,
|
||||
"name": "主人公のアトリエ",
|
||||
"order": 6,
|
||||
"parentId": 9,
|
||||
"scrollX": 1364.3999999999999,
|
||||
"scrollY": 547.8
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"expanded": false,
|
||||
"name": "主人公の寝室",
|
||||
"order": 7,
|
||||
"parentId": 7,
|
||||
"scrollX": 1364.3999999999999,
|
||||
"scrollY": 546.6
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"expanded": false,
|
||||
"name": "街",
|
||||
"order": 5,
|
||||
"parentId": 0,
|
||||
"scrollX": 1354.8,
|
||||
"scrollY": 1021.8
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"expanded": true,
|
||||
"name": "ギルド",
|
||||
"order": 8,
|
||||
"parentId": 9,
|
||||
"scrollX": 1525.2,
|
||||
"scrollY": 1127.3999999999999
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"expanded": false,
|
||||
"name": "領主の家",
|
||||
"order": 9,
|
||||
"parentId": 9,
|
||||
"scrollX": 1354.8,
|
||||
"scrollY": 988.1999999999999
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"expanded": true,
|
||||
"name": "ダンジョン入口",
|
||||
"order": 20,
|
||||
"parentId": 0,
|
||||
"scrollX": 1364.3999999999999,
|
||||
"scrollY": 547.8
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"expanded": true,
|
||||
"name": "領主の家 2F",
|
||||
"order": 10,
|
||||
"parentId": 11,
|
||||
"scrollX": 1354.8,
|
||||
"scrollY": 743.4
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"expanded": true,
|
||||
"name": "1(1階層:1-3F)",
|
||||
"order": 21,
|
||||
"parentId": 12,
|
||||
"scrollX": 1410,
|
||||
"scrollY": 773.4
|
||||
},
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
{
|
||||
"id": 18,
|
||||
"expanded": true,
|
||||
"name": "× F2",
|
||||
"order": 26,
|
||||
"parentId": 25,
|
||||
"scrollX": 1505.3333333333333,
|
||||
"scrollY": 830
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"expanded": true,
|
||||
"name": "F2",
|
||||
"order": 22,
|
||||
"parentId": 14,
|
||||
"scrollX": 1354.8,
|
||||
"scrollY": 783
|
||||
},
|
||||
null,
|
||||
{
|
||||
"id": 21,
|
||||
"expanded": true,
|
||||
"name": "F4botu",
|
||||
"order": 25,
|
||||
"parentId": 25,
|
||||
"scrollX": 1505.3333333333333,
|
||||
"scrollY": 1104.6666666666667
|
||||
},
|
||||
null,
|
||||
{
|
||||
"id": 23,
|
||||
"expanded": false,
|
||||
"name": "回想用",
|
||||
"order": 42,
|
||||
"parentId": 0,
|
||||
"scrollX": 483.5,
|
||||
"scrollY": 456.5
|
||||
},
|
||||
null,
|
||||
{
|
||||
"id": 25,
|
||||
"expanded": false,
|
||||
"name": "F3",
|
||||
"order": 23,
|
||||
"parentId": 14,
|
||||
"scrollX": 1354.8,
|
||||
"scrollY": 1175.3999999999999
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"expanded": true,
|
||||
"name": "F3(回想用2)",
|
||||
"order": 24,
|
||||
"parentId": 25,
|
||||
"scrollX": 1506,
|
||||
"scrollY": 928
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"expanded": false,
|
||||
"name": "4(2階層:4-6F)",
|
||||
"order": 28,
|
||||
"parentId": 12,
|
||||
"scrollX": 1426.8,
|
||||
"scrollY": 1440.6
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"expanded": true,
|
||||
"name": "5F",
|
||||
"order": 29,
|
||||
"parentId": 27,
|
||||
"scrollX": 1429.2,
|
||||
"scrollY": 1410.6
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"expanded": false,
|
||||
"name": "6F",
|
||||
"order": 30,
|
||||
"parentId": 27,
|
||||
"scrollX": 1429.2,
|
||||
"scrollY": 804.5999999999999
|
||||
},
|
||||
null,
|
||||
{
|
||||
"id": 31,
|
||||
"expanded": true,
|
||||
"name": "7(3階層:7-8",
|
||||
"order": 31,
|
||||
"parentId": 12,
|
||||
"scrollX": 1429.2,
|
||||
"scrollY": 1872.6
|
||||
},
|
||||
{
|
||||
"id": 32,
|
||||
"expanded": false,
|
||||
"name": "7F 小屋",
|
||||
"order": 32,
|
||||
"parentId": 31,
|
||||
"scrollX": 816,
|
||||
"scrollY": 800
|
||||
},
|
||||
{
|
||||
"id": 33,
|
||||
"expanded": false,
|
||||
"name": "8F",
|
||||
"order": 33,
|
||||
"parentId": 31,
|
||||
"scrollX": 1429.2,
|
||||
"scrollY": 949.8
|
||||
},
|
||||
null,
|
||||
{
|
||||
"id": 35,
|
||||
"expanded": false,
|
||||
"name": "酒場",
|
||||
"order": 13,
|
||||
"parentId": 9,
|
||||
"scrollX": 1354.8,
|
||||
"scrollY": 1276.2
|
||||
},
|
||||
{
|
||||
"id": 36,
|
||||
"expanded": false,
|
||||
"name": "道具屋",
|
||||
"order": 11,
|
||||
"parentId": 9,
|
||||
"scrollX": 1364.3999999999999,
|
||||
"scrollY": 547.8
|
||||
},
|
||||
{
|
||||
"id": 37,
|
||||
"expanded": false,
|
||||
"name": "武器屋",
|
||||
"order": 12,
|
||||
"parentId": 9,
|
||||
"scrollX": 1366.8,
|
||||
"scrollY": 553.1999999999999
|
||||
},
|
||||
{
|
||||
"id": 38,
|
||||
"expanded": false,
|
||||
"name": "教会",
|
||||
"order": 14,
|
||||
"parentId": 9,
|
||||
"scrollX": 1354.8,
|
||||
"scrollY": 796.1999999999999
|
||||
},
|
||||
{
|
||||
"id": 39,
|
||||
"expanded": false,
|
||||
"name": "教会 寝室",
|
||||
"order": 15,
|
||||
"parentId": 38,
|
||||
"scrollX": 1354.8,
|
||||
"scrollY": 780.5999999999999
|
||||
},
|
||||
{
|
||||
"id": 40,
|
||||
"expanded": true,
|
||||
"name": "アトリエ(試作P事後用)",
|
||||
"order": 43,
|
||||
"parentId": 23,
|
||||
"scrollX": 1364.3999999999999,
|
||||
"scrollY": 546.6
|
||||
},
|
||||
{
|
||||
"id": 41,
|
||||
"expanded": true,
|
||||
"name": "[回想用]領主の家 2F",
|
||||
"order": 44,
|
||||
"parentId": 23,
|
||||
"scrollX": 1354.8,
|
||||
"scrollY": 780.5999999999999
|
||||
},
|
||||
{
|
||||
"id": 42,
|
||||
"expanded": true,
|
||||
"name": "アトリエOP用",
|
||||
"order": 45,
|
||||
"parentId": 23,
|
||||
"scrollX": 1952.5714285714284,
|
||||
"scrollY": 790.2857142857142
|
||||
},
|
||||
{
|
||||
"id": 43,
|
||||
"expanded": true,
|
||||
"name": "アトリエ回想(コンドーム)",
|
||||
"order": 46,
|
||||
"parentId": 23,
|
||||
"scrollX": 1952.5714285714284,
|
||||
"scrollY": 790.2857142857142
|
||||
},
|
||||
{
|
||||
"id": 44,
|
||||
"expanded": false,
|
||||
"name": "テント内(身体検査)",
|
||||
"order": 47,
|
||||
"parentId": 23,
|
||||
"scrollX": 1952.5714285714284,
|
||||
"scrollY": 790.2857142857142
|
||||
},
|
||||
{
|
||||
"id": 45,
|
||||
"expanded": true,
|
||||
"name": "街(メリッサ1用)",
|
||||
"order": 48,
|
||||
"parentId": 23,
|
||||
"scrollX": 1354.8,
|
||||
"scrollY": 1443
|
||||
},
|
||||
{
|
||||
"id": 46,
|
||||
"expanded": false,
|
||||
"name": "宿屋",
|
||||
"order": 17,
|
||||
"parentId": 9,
|
||||
"scrollX": 1949.142857142857,
|
||||
"scrollY": 780.8571428571428
|
||||
},
|
||||
{
|
||||
"id": 47,
|
||||
"expanded": false,
|
||||
"name": "宿‗部屋",
|
||||
"order": 18,
|
||||
"parentId": 46,
|
||||
"scrollX": 1949.142857142857,
|
||||
"scrollY": 780.8571428571428
|
||||
},
|
||||
{
|
||||
"id": 48,
|
||||
"expanded": true,
|
||||
"name": "ボツF3",
|
||||
"order": 27,
|
||||
"parentId": 25,
|
||||
"scrollX": 1505.3333333333333,
|
||||
"scrollY": 1120.6666666666667
|
||||
},
|
||||
{
|
||||
"id": 49,
|
||||
"expanded": false,
|
||||
"name": "回想部屋",
|
||||
"order": 54,
|
||||
"parentId": 0,
|
||||
"scrollX": 1131.5,
|
||||
"scrollY": 548.5
|
||||
},
|
||||
{
|
||||
"id": 50,
|
||||
"expanded": true,
|
||||
"name": "領主の家 2F[回想用]",
|
||||
"order": 53,
|
||||
"parentId": 23,
|
||||
"scrollX": 1354,
|
||||
"scrollY": 624
|
||||
},
|
||||
{
|
||||
"id": 51,
|
||||
"expanded": false,
|
||||
"name": "宿‗部屋(メリッサ2)",
|
||||
"order": 19,
|
||||
"parentId": 46,
|
||||
"scrollX": 1354.8,
|
||||
"scrollY": 605.4
|
||||
},
|
||||
{
|
||||
"id": 52,
|
||||
"expanded": false,
|
||||
"name": "10F",
|
||||
"order": 35,
|
||||
"parentId": 53,
|
||||
"scrollX": 1354.8,
|
||||
"scrollY": 1872.6
|
||||
},
|
||||
{
|
||||
"id": 53,
|
||||
"expanded": true,
|
||||
"name": "9F(9~11F)4階層",
|
||||
"order": 34,
|
||||
"parentId": 12,
|
||||
"scrollX": 816,
|
||||
"scrollY": 1856
|
||||
},
|
||||
null,
|
||||
{
|
||||
"id": 55,
|
||||
"expanded": false,
|
||||
"name": "6-2",
|
||||
"order": 39,
|
||||
"parentId": 60,
|
||||
"scrollX": 1358.3999999999999,
|
||||
"scrollY": 1351.8
|
||||
},
|
||||
{
|
||||
"id": 56,
|
||||
"expanded": false,
|
||||
"name": "5階層",
|
||||
"order": 36,
|
||||
"parentId": 12,
|
||||
"scrollX": 1354.8,
|
||||
"scrollY": 1381.8
|
||||
},
|
||||
null,
|
||||
{
|
||||
"id": 58,
|
||||
"expanded": false,
|
||||
"name": "5階層-2",
|
||||
"order": 37,
|
||||
"parentId": 56,
|
||||
"scrollX": 1354.8,
|
||||
"scrollY": 585
|
||||
},
|
||||
null,
|
||||
{
|
||||
"id": 60,
|
||||
"expanded": true,
|
||||
"name": "6-1新",
|
||||
"order": 38,
|
||||
"parentId": 12,
|
||||
"scrollX": 1425.6,
|
||||
"scrollY": 1033.8
|
||||
},
|
||||
{
|
||||
"id": 61,
|
||||
"expanded": true,
|
||||
"name": "7-1",
|
||||
"order": 40,
|
||||
"parentId": 12,
|
||||
"scrollX": 1354.8,
|
||||
"scrollY": 631.8
|
||||
},
|
||||
{
|
||||
"id": 62,
|
||||
"expanded": false,
|
||||
"name": "7-2",
|
||||
"order": 41,
|
||||
"parentId": 61,
|
||||
"scrollX": 1354.8,
|
||||
"scrollY": 781.8
|
||||
},
|
||||
{
|
||||
"id": 63,
|
||||
"expanded": true,
|
||||
"name": "アトリエ[7-2]",
|
||||
"order": 49,
|
||||
"parentId": 23,
|
||||
"scrollX": 1949.142857142857,
|
||||
"scrollY": 780.8571428571428
|
||||
},
|
||||
{
|
||||
"id": 64,
|
||||
"expanded": false,
|
||||
"name": "アトリエ[ヨーグEND]",
|
||||
"order": 50,
|
||||
"parentId": 23,
|
||||
"scrollX": 896,
|
||||
"scrollY": 624
|
||||
},
|
||||
{
|
||||
"id": 65,
|
||||
"expanded": true,
|
||||
"name": "街[END]",
|
||||
"order": 51,
|
||||
"parentId": 64,
|
||||
"scrollX": 1935.4285714285713,
|
||||
"scrollY": 1322.5714285714284
|
||||
},
|
||||
{
|
||||
"id": 66,
|
||||
"expanded": false,
|
||||
"name": "宿(C END)",
|
||||
"order": 52,
|
||||
"parentId": 23,
|
||||
"scrollX": 1354.8,
|
||||
"scrollY": 605.4
|
||||
}
|
||||
]
|
||||
345
www/data/Skills.json
Normal file
345
www/data/Skills.json
Normal file
|
|
@ -0,0 +1,345 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"animationId": -1,
|
||||
"damage": {
|
||||
"critical": true,
|
||||
"elementId": -1,
|
||||
"formula": "a.atk * 4 - b.def * 2",
|
||||
"type": 1,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [
|
||||
{
|
||||
"code": 21,
|
||||
"dataId": 0,
|
||||
"value1": 1,
|
||||
"value2": 0
|
||||
}
|
||||
],
|
||||
"hitType": 1,
|
||||
"iconIndex": 76,
|
||||
"message1": "の攻撃!",
|
||||
"message2": "",
|
||||
"mpCost": 0,
|
||||
"name": "攻撃",
|
||||
"note": "スキル1番は[攻撃]コマンドを\n選択したときに使用されます。",
|
||||
"occasion": 1,
|
||||
"repeats": 1,
|
||||
"requiredWtypeId1": 0,
|
||||
"requiredWtypeId2": 0,
|
||||
"scope": 1,
|
||||
"speed": 0,
|
||||
"stypeId": 0,
|
||||
"successRate": 100,
|
||||
"tpCost": 0,
|
||||
"tpGain": 10
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"animationId": 0,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [
|
||||
{
|
||||
"code": 21,
|
||||
"dataId": 2,
|
||||
"value1": 1,
|
||||
"value2": 0
|
||||
}
|
||||
],
|
||||
"hitType": 0,
|
||||
"iconIndex": 81,
|
||||
"message1": "は身を守っている。",
|
||||
"message2": "",
|
||||
"mpCost": 0,
|
||||
"name": "防御",
|
||||
"note": "スキル2番は[防御]コマンドを\n選択したときに使用されます。",
|
||||
"occasion": 1,
|
||||
"repeats": 1,
|
||||
"requiredWtypeId1": 0,
|
||||
"requiredWtypeId2": 0,
|
||||
"scope": 11,
|
||||
"speed": 2000,
|
||||
"stypeId": 0,
|
||||
"successRate": 100,
|
||||
"tpCost": 0,
|
||||
"tpGain": 10
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"animationId": -1,
|
||||
"damage": {
|
||||
"critical": true,
|
||||
"elementId": -1,
|
||||
"formula": "a.atk * 4 - b.def * 2",
|
||||
"type": 1,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [
|
||||
{
|
||||
"code": 21,
|
||||
"dataId": 0,
|
||||
"value1": 1,
|
||||
"value2": 0
|
||||
}
|
||||
],
|
||||
"hitType": 1,
|
||||
"iconIndex": 76,
|
||||
"message1": "の攻撃!",
|
||||
"message2": "",
|
||||
"mpCost": 0,
|
||||
"name": "連続攻撃",
|
||||
"note": "",
|
||||
"occasion": 1,
|
||||
"repeats": 2,
|
||||
"requiredWtypeId1": 0,
|
||||
"requiredWtypeId2": 0,
|
||||
"scope": 1,
|
||||
"speed": 0,
|
||||
"stypeId": 0,
|
||||
"successRate": 100,
|
||||
"tpCost": 0,
|
||||
"tpGain": 5
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"animationId": -1,
|
||||
"damage": {
|
||||
"critical": true,
|
||||
"elementId": -1,
|
||||
"formula": "a.atk * 4 - b.def * 2",
|
||||
"type": 1,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [
|
||||
{
|
||||
"code": 21,
|
||||
"dataId": 0,
|
||||
"value1": 1,
|
||||
"value2": 0
|
||||
}
|
||||
],
|
||||
"hitType": 1,
|
||||
"iconIndex": 76,
|
||||
"message1": "の攻撃!",
|
||||
"message2": "",
|
||||
"mpCost": 0,
|
||||
"name": "2回攻撃",
|
||||
"note": "",
|
||||
"occasion": 1,
|
||||
"repeats": 1,
|
||||
"requiredWtypeId1": 0,
|
||||
"requiredWtypeId2": 0,
|
||||
"scope": 4,
|
||||
"speed": 0,
|
||||
"stypeId": 0,
|
||||
"successRate": 100,
|
||||
"tpCost": 0,
|
||||
"tpGain": 5
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"animationId": -1,
|
||||
"damage": {
|
||||
"critical": true,
|
||||
"elementId": -1,
|
||||
"formula": "a.atk * 4 - b.def * 2",
|
||||
"type": 1,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [
|
||||
{
|
||||
"code": 21,
|
||||
"dataId": 0,
|
||||
"value1": 1,
|
||||
"value2": 0
|
||||
}
|
||||
],
|
||||
"hitType": 1,
|
||||
"iconIndex": 76,
|
||||
"message1": "の攻撃!",
|
||||
"message2": "",
|
||||
"mpCost": 0,
|
||||
"name": "3回攻撃",
|
||||
"note": "",
|
||||
"occasion": 1,
|
||||
"repeats": 1,
|
||||
"requiredWtypeId1": 0,
|
||||
"requiredWtypeId2": 0,
|
||||
"scope": 5,
|
||||
"speed": 0,
|
||||
"stypeId": 0,
|
||||
"successRate": 100,
|
||||
"tpCost": 0,
|
||||
"tpGain": 4
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"animationId": 0,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [
|
||||
{
|
||||
"code": 41,
|
||||
"dataId": 0,
|
||||
"value1": 0,
|
||||
"value2": 0
|
||||
}
|
||||
],
|
||||
"hitType": 0,
|
||||
"iconIndex": 82,
|
||||
"message1": "は逃げてしまった。",
|
||||
"message2": "",
|
||||
"mpCost": 0,
|
||||
"name": "逃げる",
|
||||
"note": "",
|
||||
"occasion": 1,
|
||||
"repeats": 1,
|
||||
"requiredWtypeId1": 0,
|
||||
"requiredWtypeId2": 0,
|
||||
"scope": 11,
|
||||
"speed": 0,
|
||||
"stypeId": 0,
|
||||
"successRate": 100,
|
||||
"tpCost": 0,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"animationId": 0,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 81,
|
||||
"message1": "は様子を見ている。",
|
||||
"message2": "",
|
||||
"mpCost": 0,
|
||||
"name": "様子を見る",
|
||||
"note": "",
|
||||
"occasion": 1,
|
||||
"repeats": 1,
|
||||
"requiredWtypeId1": 0,
|
||||
"requiredWtypeId2": 0,
|
||||
"scope": 0,
|
||||
"speed": 0,
|
||||
"stypeId": 0,
|
||||
"successRate": 100,
|
||||
"tpCost": 0,
|
||||
"tpGain": 10
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"animationId": 41,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "200 + a.mat",
|
||||
"type": 3,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 72,
|
||||
"message1": "は%1を唱えた!",
|
||||
"message2": "",
|
||||
"mpCost": 5,
|
||||
"name": "ヒール",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"repeats": 1,
|
||||
"requiredWtypeId1": 0,
|
||||
"requiredWtypeId2": 0,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"stypeId": 1,
|
||||
"successRate": 100,
|
||||
"tpCost": 0,
|
||||
"tpGain": 10
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"animationId": 66,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 2,
|
||||
"formula": "100 + a.mat * 2 - b.mdf * 2",
|
||||
"type": 1,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 2,
|
||||
"iconIndex": 64,
|
||||
"message1": "は%1を唱えた!",
|
||||
"message2": "",
|
||||
"mpCost": 5,
|
||||
"name": "ファイア",
|
||||
"note": "",
|
||||
"occasion": 1,
|
||||
"repeats": 1,
|
||||
"requiredWtypeId1": 0,
|
||||
"requiredWtypeId2": 0,
|
||||
"scope": 1,
|
||||
"speed": 0,
|
||||
"stypeId": 1,
|
||||
"successRate": 100,
|
||||
"tpCost": 0,
|
||||
"tpGain": 10
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"animationId": 78,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 4,
|
||||
"formula": "100 + a.mat * 2 - b.mdf * 2",
|
||||
"type": 1,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 2,
|
||||
"iconIndex": 66,
|
||||
"message1": "は%1を唱えた!",
|
||||
"message2": "",
|
||||
"mpCost": 5,
|
||||
"name": "スパーク",
|
||||
"note": "",
|
||||
"occasion": 1,
|
||||
"repeats": 1,
|
||||
"requiredWtypeId1": 0,
|
||||
"requiredWtypeId2": 0,
|
||||
"scope": 2,
|
||||
"speed": 0,
|
||||
"stypeId": 1,
|
||||
"successRate": 100,
|
||||
"tpCost": 0,
|
||||
"tpGain": 10
|
||||
}
|
||||
]
|
||||
295
www/data/States.json
Normal file
295
www/data/States.json
Normal file
|
|
@ -0,0 +1,295 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"autoRemovalTiming": 0,
|
||||
"chanceByDamage": 100,
|
||||
"iconIndex": 1,
|
||||
"maxTurns": 1,
|
||||
"message1": "は倒れた!",
|
||||
"message2": "を倒した!",
|
||||
"message3": "",
|
||||
"message4": "は立ち上がった!",
|
||||
"minTurns": 1,
|
||||
"motion": 3,
|
||||
"name": "戦闘不能",
|
||||
"note": "ステート1番はHPが0になったときに\n自動的に付加されます。",
|
||||
"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
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"autoRemovalTiming": 2,
|
||||
"chanceByDamage": 100,
|
||||
"description": "",
|
||||
"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
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"autoRemovalTiming": 0,
|
||||
"chanceByDamage": 100,
|
||||
"description": "",
|
||||
"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
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"autoRemovalTiming": 0,
|
||||
"chanceByDamage": 100,
|
||||
"iconIndex": 2,
|
||||
"maxTurns": 1,
|
||||
"message1": "は毒にかかった!",
|
||||
"message2": "に毒をかけた!",
|
||||
"message3": "",
|
||||
"message4": "の毒が消えた!",
|
||||
"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.15
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"autoRemovalTiming": 1,
|
||||
"chanceByDamage": 100,
|
||||
"iconIndex": 3,
|
||||
"maxTurns": 5,
|
||||
"message1": "は暗闇に閉ざされた!",
|
||||
"message2": "を暗闇に閉ざした!",
|
||||
"message3": "",
|
||||
"message4": "の暗闇が消えた!",
|
||||
"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
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"autoRemovalTiming": 1,
|
||||
"chanceByDamage": 100,
|
||||
"iconIndex": 4,
|
||||
"maxTurns": 5,
|
||||
"message1": "は沈黙した!",
|
||||
"message2": "を沈黙させた!",
|
||||
"message3": "",
|
||||
"message4": "の沈黙が解けた!",
|
||||
"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
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"autoRemovalTiming": 1,
|
||||
"chanceByDamage": 50,
|
||||
"iconIndex": 5,
|
||||
"maxTurns": 4,
|
||||
"message1": "は激昂した!",
|
||||
"message2": "を激昂させた!",
|
||||
"message3": "",
|
||||
"message4": "は我に返った!",
|
||||
"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": []
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"autoRemovalTiming": 1,
|
||||
"chanceByDamage": 50,
|
||||
"iconIndex": 6,
|
||||
"maxTurns": 4,
|
||||
"message1": "は混乱した!",
|
||||
"message2": "を混乱させた!",
|
||||
"message3": "",
|
||||
"message4": "は我に返った!",
|
||||
"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": []
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"autoRemovalTiming": 0,
|
||||
"chanceByDamage": 50,
|
||||
"iconIndex": 7,
|
||||
"maxTurns": 4,
|
||||
"message1": "は魅了された!",
|
||||
"message2": "を魅了した!",
|
||||
"message3": "",
|
||||
"message4": "は我に返った!",
|
||||
"minTurns": 1,
|
||||
"motion": 1,
|
||||
"name": "魅了",
|
||||
"note": "",
|
||||
"overlay": 6,
|
||||
"priority": 80,
|
||||
"releaseByDamage": false,
|
||||
"removeAtBattleEnd": false,
|
||||
"removeByDamage": false,
|
||||
"removeByRestriction": false,
|
||||
"removeByWalking": false,
|
||||
"restriction": 3,
|
||||
"stepsToRemove": 100,
|
||||
"traits": []
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"autoRemovalTiming": 1,
|
||||
"chanceByDamage": 100,
|
||||
"iconIndex": 8,
|
||||
"maxTurns": 5,
|
||||
"message1": "は眠った!",
|
||||
"message2": "を眠らせた!",
|
||||
"message3": "は眠っている。",
|
||||
"message4": "は目を覚ました!",
|
||||
"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
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
885
www/data/System.json
Normal file
885
www/data/System.json
Normal file
|
|
@ -0,0 +1,885 @@
|
|||
{
|
||||
"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": "Grassland",
|
||||
"battleback2Name": "Grassland",
|
||||
"battlerHue": 0,
|
||||
"battlerName": "Dragon",
|
||||
"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": 49,
|
||||
"elements": [
|
||||
"",
|
||||
"物理",
|
||||
"炎",
|
||||
"氷",
|
||||
"雷",
|
||||
"水",
|
||||
"土",
|
||||
"風",
|
||||
"光",
|
||||
"闇"
|
||||
],
|
||||
"equipTypes": [
|
||||
"",
|
||||
"武器",
|
||||
"盾",
|
||||
"頭",
|
||||
"身体",
|
||||
"装飾品"
|
||||
],
|
||||
"gameTitle": "NTR冒険者リエナ",
|
||||
"gameoverMe": {
|
||||
"name": "Gameover1",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
"locale": "ja_JP",
|
||||
"magicSkills": [
|
||||
1
|
||||
],
|
||||
"menuCommands": [
|
||||
true,
|
||||
true,
|
||||
true,
|
||||
true,
|
||||
true,
|
||||
true
|
||||
],
|
||||
"optDisplayTp": true,
|
||||
"optDrawTitle": false,
|
||||
"optExtraExp": false,
|
||||
"optFloorDeath": false,
|
||||
"optFollowers": true,
|
||||
"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": "Cursor2",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
{
|
||||
"name": "Decision1",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
{
|
||||
"name": "Cancel2",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
{
|
||||
"name": "Buzzer1",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
{
|
||||
"name": "Equip1",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
{
|
||||
"name": "Save",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
{
|
||||
"name": "Load",
|
||||
"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": 8,
|
||||
"startY": 6,
|
||||
"switches": [
|
||||
"",
|
||||
"歩数イベント判定",
|
||||
"#EV 4F身体検査",
|
||||
"#EV 3F宝箱トラップ",
|
||||
"#EV 6F橋建設‗後",
|
||||
"毒噴出",
|
||||
"毒噴出B",
|
||||
"#EV 6F初到着",
|
||||
"イベント用毒噴出",
|
||||
"ピストン並列",
|
||||
"ガスイベント一時停止",
|
||||
"[2]ガスイベント一時停止",
|
||||
"敵の移動を止める",
|
||||
"12F[スイッチR]",
|
||||
"12F[スイッチL]",
|
||||
"",
|
||||
"#6-1 岩突破",
|
||||
"#6-1 魔法陣ON",
|
||||
"#6-1 モブ帰還",
|
||||
"#6-2 鍵B獲得",
|
||||
"#6-2 扉開放",
|
||||
"**ストーリー進行度**",
|
||||
"オープニングの終了",
|
||||
"OPの男グラ変更",
|
||||
"# 1階層突破",
|
||||
"# 2階層突破",
|
||||
"# 3階層突破",
|
||||
"# 4階層突破",
|
||||
"# 5階層突破",
|
||||
"# 6階層突破",
|
||||
"",
|
||||
"5階層到達イベ完了",
|
||||
"野盗ダウン",
|
||||
"#レイプイベント中",
|
||||
"#5-2 野党討伐 ",
|
||||
"6F-1:スイッチ1",
|
||||
"6F-1:スイッチ2",
|
||||
"6F-1:扉開く",
|
||||
"6F-2:到達イベント",
|
||||
"7F-2:到達イベント",
|
||||
"7F-2:(後)到達イベント",
|
||||
"***クエスト進行度***",
|
||||
"1.ポーション改良‗受付",
|
||||
"3.ポーション使用",
|
||||
"2.ポーション改良‗開始",
|
||||
"4.ポーション改良完了",
|
||||
"5.メリッサから話を聞く",
|
||||
"6.ヨーグと初回セックス",
|
||||
"7.イルの仕入れについて",
|
||||
"8.ヨーグと2回目のセックス[済]",
|
||||
"9.コンドーム導入1",
|
||||
"10.コンドーム完了",
|
||||
"11.精力剤作成[開始]",
|
||||
"12.精力剤作成[完了]",
|
||||
"13.ヨーグ[覗き]完了",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"***クエスト進行度***",
|
||||
"シスター 挨拶",
|
||||
"シスター1 依頼受託",
|
||||
"シスター1 完了",
|
||||
"シスター2 依頼受託",
|
||||
"シスター2 完了",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"***クエスト進行度***",
|
||||
"(イベント用)試作Pオナニー",
|
||||
"壁尻1",
|
||||
"壁尻2",
|
||||
"壁尻3",
|
||||
"",
|
||||
"",
|
||||
"森の老人1[胸弄り]",
|
||||
"森の老人2[パイズリ]",
|
||||
"F9 湿気の制御",
|
||||
"",
|
||||
"10F 身体検査[完了]",
|
||||
"",
|
||||
"5層[レイプ]済",
|
||||
"6-2 催眠4P",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"***クエスト進行度***",
|
||||
"[マッサージ1]開始",
|
||||
"[マッサージ1]完了",
|
||||
"[マッサージ2]完了",
|
||||
"[マッサージ3]完了",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"***クエスト進行度***",
|
||||
"メリッサ1 完了",
|
||||
"メリッサ2 完了",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"***クエスト進行度***",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"***その他汎用***",
|
||||
"[10F]湿気を一時停止",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"[無効]",
|
||||
"***回想解放用***",
|
||||
"#[ポーション]オナニー",
|
||||
"#[ポーション]イルSEX",
|
||||
"#[ヨーグ]ヨーグ初セックス",
|
||||
"#[ヨーグ]2回目セックス",
|
||||
"#[ヨーグ]コンドーム作成",
|
||||
"#[ヨーグ]精力剤",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"#マッサージ1",
|
||||
"#マッサージ2",
|
||||
"#マッサージ3",
|
||||
"",
|
||||
"",
|
||||
"#シスター1",
|
||||
"#シスター2",
|
||||
"#シスター3",
|
||||
"",
|
||||
"",
|
||||
"***回想解放用***",
|
||||
"#メリッサ1",
|
||||
"#メリッサ2",
|
||||
"#メリッサ3",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"***回想解放用(ダンジョン)***",
|
||||
"#身体検査1",
|
||||
"#身体検査2",
|
||||
"",
|
||||
"",
|
||||
"#森の老人1",
|
||||
"#森の老人2",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"#壁尻1",
|
||||
"#壁尻2",
|
||||
"#壁尻3",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"#催淫ガス輪姦",
|
||||
"#5層レイプ",
|
||||
"###消去",
|
||||
"",
|
||||
"***回想解放用(ダンジョン)***",
|
||||
"#F6 催眠3P",
|
||||
"#F6 裸で帰還",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"NTR,NTRR END",
|
||||
"ヨーグEND",
|
||||
"",
|
||||
"***回想解放用(ダンジョン)***",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
""
|
||||
],
|
||||
"terms": {
|
||||
"basic": [
|
||||
"レベル",
|
||||
"Lv",
|
||||
"HP",
|
||||
"HP",
|
||||
"SP",
|
||||
"SP",
|
||||
"TP",
|
||||
"TP",
|
||||
"経験値",
|
||||
"EXP"
|
||||
],
|
||||
"commands": [
|
||||
"戦う",
|
||||
"逃げる",
|
||||
"攻撃",
|
||||
"防御",
|
||||
"アイテム",
|
||||
"スキル",
|
||||
"装備",
|
||||
"ステータス",
|
||||
"並び替え",
|
||||
"セーブ",
|
||||
"ゲーム終了",
|
||||
"オプション",
|
||||
"武器",
|
||||
"防具",
|
||||
"大事なもの",
|
||||
"装備",
|
||||
"最強装備",
|
||||
"全て外す",
|
||||
"ニューゲーム",
|
||||
"コンティニュー",
|
||||
null,
|
||||
"タイトルへ",
|
||||
"やめる",
|
||||
null,
|
||||
"購入する",
|
||||
"売却する"
|
||||
],
|
||||
"params": [
|
||||
"最大HP",
|
||||
"最大MP",
|
||||
"攻撃力",
|
||||
"防御力",
|
||||
"魔法力",
|
||||
"魔法防御",
|
||||
"敏捷性",
|
||||
"運",
|
||||
"命中率",
|
||||
"回避率"
|
||||
],
|
||||
"messages": {
|
||||
"actionFailure": "%1には効かなかった!",
|
||||
"actorDamage": "%1は %2 のダメージを受けた!",
|
||||
"actorDrain": "%1は%2を %3 奪われた!",
|
||||
"actorGain": "%1の%2が %3 増えた!",
|
||||
"actorLoss": "%1の%2が %3 減った!",
|
||||
"actorNoDamage": "%1はダメージを受けていない!",
|
||||
"actorNoHit": "ミス! %1はダメージを受けていない!",
|
||||
"actorRecovery": "%1の%2が %3 回復した!",
|
||||
"alwaysDash": "常時ダッシュ",
|
||||
"bgmVolume": "BGM 音量",
|
||||
"bgsVolume": "BGS 音量",
|
||||
"buffAdd": "%1の%2が上がった!",
|
||||
"buffRemove": "%1の%2が元に戻った!",
|
||||
"commandRemember": "コマンド記憶",
|
||||
"counterAttack": "%1の反撃!",
|
||||
"criticalToActor": "痛恨の一撃!!",
|
||||
"criticalToEnemy": "会心の一撃!!",
|
||||
"debuffAdd": "%1の%2が下がった!",
|
||||
"defeat": "%1は戦いに敗れた。",
|
||||
"emerge": "%1が出現!",
|
||||
"enemyDamage": "%1に %2 のダメージを与えた!",
|
||||
"enemyDrain": "%1の%2を %3 奪った!",
|
||||
"enemyGain": "%1の%2が %3 増えた!",
|
||||
"enemyLoss": "%1の%2が %3 減った!",
|
||||
"enemyNoDamage": "%1にダメージを与えられない!",
|
||||
"enemyNoHit": "ミス! %1にダメージを与えられない!",
|
||||
"enemyRecovery": "%1の%2が %3 回復した!",
|
||||
"escapeFailure": "しかし逃げることはできなかった!",
|
||||
"escapeStart": "%1は逃げ出した!",
|
||||
"evasion": "%1は攻撃をかわした!",
|
||||
"expNext": "次の%1まで",
|
||||
"expTotal": "現在の%1",
|
||||
"file": "ファイル",
|
||||
"levelUp": "%1は%2 %3 に上がった!",
|
||||
"loadMessage": "どのファイルをロードしますか?",
|
||||
"magicEvasion": "%1は魔法を打ち消した!",
|
||||
"magicReflection": "%1は魔法を跳ね返した!",
|
||||
"meVolume": "ME 音量",
|
||||
"obtainExp": "%1 の%2を獲得!",
|
||||
"obtainGold": "お金を %1\\G 手に入れた!",
|
||||
"obtainItem": "%1を手に入れた!",
|
||||
"obtainSkill": "%1を覚えた!",
|
||||
"partyName": "%1たち",
|
||||
"possession": "持っている数",
|
||||
"preemptive": "%1は先手を取った!",
|
||||
"saveMessage": "どのファイルにセーブしますか?",
|
||||
"seVolume": "SE 音量",
|
||||
"substitute": "%1が%2をかばった!",
|
||||
"surprise": "%1は不意をつかれた!",
|
||||
"useItem": "%1は%2を使った!",
|
||||
"victory": "%1の勝利!"
|
||||
}
|
||||
},
|
||||
"testBattlers": [
|
||||
{
|
||||
"actorId": 1,
|
||||
"equips": [
|
||||
1,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
0
|
||||
],
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"actorId": 2,
|
||||
"equips": [
|
||||
2,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
0
|
||||
],
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"actorId": 3,
|
||||
"equips": [
|
||||
3,
|
||||
0,
|
||||
2,
|
||||
3,
|
||||
4
|
||||
],
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"actorId": 4,
|
||||
"equips": [
|
||||
4,
|
||||
0,
|
||||
2,
|
||||
3,
|
||||
4
|
||||
],
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"testTroopId": 4,
|
||||
"title1Name": "タイトル",
|
||||
"title2Name": "",
|
||||
"titleBgm": {
|
||||
"name": "BGM Symbol",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
"variables": [
|
||||
"",
|
||||
"歩数[ダメージ量]",
|
||||
"歩数[カウント]",
|
||||
"歩数[ダメージカウント]",
|
||||
"ダメージ軽減量",
|
||||
"アクターのHP",
|
||||
"アクターのSP",
|
||||
"敵接触時のダメージ",
|
||||
"敵接触時のダメージ[軽減量]",
|
||||
"マップ位置:ID",
|
||||
"マップ位置:X",
|
||||
"マップ位置:Y",
|
||||
"催淫回数",
|
||||
"",
|
||||
"毒罠位置‗X",
|
||||
"毒罠位置‗Y",
|
||||
"R-ID",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"最大HP",
|
||||
"試作ポーション使用時のHP",
|
||||
"",
|
||||
"催淫値",
|
||||
"分岐用乱数",
|
||||
"胸揉み:上/下:手マン",
|
||||
"手マン:上/下:セックス",
|
||||
"レイプ",
|
||||
"",
|
||||
"[6階層]催眠レベル",
|
||||
"[立ち絵]ベース",
|
||||
"[立ち絵]表情",
|
||||
"",
|
||||
"",
|
||||
"6-1F 1X",
|
||||
"6-1F 1Y",
|
||||
"リージョンID 1",
|
||||
"6-1F 2X",
|
||||
"6-1F 2Y",
|
||||
"リージョンID 2",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
""
|
||||
],
|
||||
"versionId": 49320963,
|
||||
"victoryMe": {
|
||||
"name": "Victory1",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
"weaponTypes": [
|
||||
"",
|
||||
"短剣",
|
||||
"剣",
|
||||
"フレイル",
|
||||
"斧",
|
||||
"ムチ",
|
||||
"杖",
|
||||
"弓",
|
||||
"クロスボウ",
|
||||
"銃",
|
||||
"爪",
|
||||
"グローブ",
|
||||
"槍"
|
||||
],
|
||||
"windowTone": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"hasEncryptedImages": true,
|
||||
"hasEncryptedAudio": true,
|
||||
"encryptionKey": "d41d8cd98f00b204e9800998ecf8427e"
|
||||
}
|
||||
213527
www/data/Tilesets.json
Normal file
213527
www/data/Tilesets.json
Normal file
File diff suppressed because it is too large
Load diff
167
www/data/Troops.json
Normal file
167
www/data/Troops.json
Normal file
|
|
@ -0,0 +1,167 @@
|
|||
[
|
||||
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": 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": 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
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
135
www/data/Weapons.json
Normal file
135
www/data/Weapons.json
Normal file
|
|
@ -0,0 +1,135 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"animationId": 6,
|
||||
"description": "",
|
||||
"etypeId": 1,
|
||||
"traits": [
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 0,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"iconIndex": 97,
|
||||
"name": "剣",
|
||||
"note": "",
|
||||
"params": [
|
||||
0,
|
||||
0,
|
||||
10,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"price": 500,
|
||||
"wtypeId": 2
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"animationId": 6,
|
||||
"description": "",
|
||||
"etypeId": 1,
|
||||
"traits": [
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 0,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"iconIndex": 99,
|
||||
"name": "斧",
|
||||
"note": "",
|
||||
"params": [
|
||||
0,
|
||||
0,
|
||||
10,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"price": 500,
|
||||
"wtypeId": 4
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"animationId": 1,
|
||||
"description": "",
|
||||
"etypeId": 1,
|
||||
"traits": [
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 0,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"iconIndex": 101,
|
||||
"name": "杖",
|
||||
"note": "",
|
||||
"params": [
|
||||
0,
|
||||
0,
|
||||
10,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"price": 500,
|
||||
"wtypeId": 6
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"animationId": 11,
|
||||
"description": "",
|
||||
"etypeId": 1,
|
||||
"traits": [
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 0,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"iconIndex": 102,
|
||||
"name": "弓",
|
||||
"note": "",
|
||||
"params": [
|
||||
0,
|
||||
0,
|
||||
10,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"price": 500,
|
||||
"wtypeId": 7
|
||||
}
|
||||
]
|
||||
1
www/img/characters/liena.json
Normal file
1
www/img/characters/liena.json
Normal file
File diff suppressed because one or more lines are too long
5
www/img/special/MV_characters/readme.txt
Normal file
5
www/img/special/MV_characters/readme.txt
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
このフォルダにある素材は、サンプルゲームで使用するためにRPGツクールMV同梱素材を改変して作成したものです。そのため、RPGツクールMVをお持ちの方がツクールシリーズ上でのみ使用することが出来ます。
|
||||
|
||||
----------
|
||||
|
||||
Characters in this folder are based on the original RPG Maker MV resource. Please only use with RPG Maker series products.
|
||||
16
www/img/tilesets/Dungeon_A1.txt
Normal file
16
www/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
www/img/tilesets/Dungeon_A2.txt
Normal file
32
www/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
www/img/tilesets/Dungeon_A4.txt
Normal file
48
www/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 (Brick)|壁K(レンガ)
|
||||
Wall L (Stone)|壁L(石)
|
||||
Wall M (Stone)|壁M(石)
|
||||
Wall N (Castle)|壁N(城)
|
||||
Wall O (Fort)|壁O(砦)
|
||||
Wall P (Demon Castle)|壁P(魔王城)
|
||||
Wall I (Stone)|壁I(石)
|
||||
Wall J (Brick)|壁J(レンガ)
|
||||
Wall K (Brick)|壁K(レンガ)
|
||||
Wall L (Stone)|壁L(石)
|
||||
Wall M (Stone)|壁M(石)
|
||||
Wall N (Castle)|壁N(城)
|
||||
Wall O (Fort)|壁O(砦)
|
||||
Wall P (Demon Castle)|壁P(魔王城)
|
||||
Wall Q (Temple)|壁Q(神殿)
|
||||
Wall R (Marble)|壁R(大理石)
|
||||
Wall S (Frozen)|壁S(凍結)
|
||||
Wall T (Factory)|壁T(工場)
|
||||
Ledge A (Dirt Cave)|段差A(土洞窟)
|
||||
Ledge B (Rock Cave)|段差B(岩洞窟)
|
||||
Ledge C (Lava Cave)|段差C(溶岩洞窟)
|
||||
Ledge D (Ice Cave)|段差D(氷洞窟)
|
||||
Wall Q (Temple)|壁Q(神殿)
|
||||
Wall R (Marble)|壁R(大理石)
|
||||
Wall S (Frozen)|壁S(凍結)
|
||||
Wall T (Factory)|壁T(工場)
|
||||
Ledge A (Dirt Cave)|段差A(土洞窟)
|
||||
Ledge B (Rock Cave)|段差B(岩洞窟)
|
||||
Ledge C (Lava Cave)|段差C(溶岩洞窟)
|
||||
Ledge D (Ice Cave)|段差D(氷洞窟)
|
||||
128
www/img/tilesets/Dungeon_A5.txt
Normal file
128
www/img/tilesets/Dungeon_A5.txt
Normal file
|
|
@ -0,0 +1,128 @@
|
|||
Darkness|暗闇
|
||||
Translucent Floor A|半透明の床A
|
||||
Translucent Floor B|半透明の床B
|
||||
Translucent Floor C|半透明の床C
|
||||
Translucent Floor D|半透明の床D
|
||||
Stairs A (Translucent)|階段A(半透明)
|
||||
Stairs B (Translucent)|階段B(半透明)
|
||||
Wire Mesh|金網
|
||||
Transparent|透明
|
||||
Translucent Floor A|半透明の床A
|
||||
Translucent Floor B|半透明の床B
|
||||
Translucent Floor C|半透明の床C
|
||||
Translucent Floor D|半透明の床D
|
||||
Stairs A (Translucent)|階段C(半透明)
|
||||
Stairs B (Translucent)|階段D(半透明)
|
||||
Wire Mesh|金網
|
||||
Ground A (Dirt Cave)|床A(土洞窟)
|
||||
Ground B (Rock Cave)|床B(岩洞窟)
|
||||
Ground C (Lava Cave)|床C(溶岩洞窟)
|
||||
Ground D (Ice Cave)|床D(氷洞窟)
|
||||
Ground E (Grass Maze)|床E(草迷宮)
|
||||
Ground F (Crystal)|床F(水晶)
|
||||
Ground G (In Body)|床G(体内)
|
||||
Ground H (Demonic World)|床H(魔界)
|
||||
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(岩洞窟)
|
||||
Cobblestones A|石畳A
|
||||
Cobblestones B|石畳B
|
||||
Cobblestones C|石畳C
|
||||
Cobblestones D|石畳D
|
||||
Cobblestones E|石畳E
|
||||
Cobblestones F|石畳F
|
||||
Cobblestones G|石畳G
|
||||
Interior Floor A (Demon Castle)|内装床A(魔王城)
|
||||
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(氷洞窟)
|
||||
Cobblestones H|石畳H
|
||||
Interior Floor B (Concrete)|内装床B(コンクリート)
|
||||
Icy Ground A|氷の床A
|
||||
Interior Floor C (Factory)|内装床C(工場)
|
||||
Decorative Tile|舗装床
|
||||
Cobblestones I|石畳I
|
||||
Cobblestones J|石畳J
|
||||
Decorative Tile|化粧タイル
|
||||
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(廃墟)
|
||||
Cobblestones F (Ruins)|石畳F(廃墟)
|
||||
Cobblestones G (Ruins)|石畳G(廃墟)
|
||||
Interior Floor A (Demon Castle, Ruins)|内装床A(魔王城・廃墟)
|
||||
Cobblestones H (Ruins)|石畳H(廃墟)
|
||||
Interior Floor B (Concrete, Ruins)|内装床B(コンクリート・廃墟)
|
||||
Icy Ground B|氷の床B
|
||||
Interior Floor D (Factory)|内装床D(工場)
|
||||
Decorative Tile (Ruins)|舗装床(廃墟)
|
||||
Cobblestones I (Ruins)|石畳I(廃墟)
|
||||
Cobblestones J (Ruins)|石畳J(廃墟)
|
||||
Decorative Tile (Ruins)|化粧タイル(廃墟)
|
||||
Large Relief Floor Tile A|大きなレリーフ床A
|
||||
Large Relief Floor Tile A|大きなレリーフ床A
|
||||
Large Relief Floor Tile B|大きなレリーフ床B
|
||||
Large Relief Floor Tile B|大きなレリーフ床B
|
||||
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 A|大きなレリーフ床A
|
||||
Large Relief Floor Tile A|大きなレリーフ床A
|
||||
Large Relief Floor Tile B|大きなレリーフ床B
|
||||
Large Relief Floor Tile B|大きなレリーフ床B
|
||||
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
www/img/tilesets/Dungeon_B.txt
Normal file
256
www/img/tilesets/Dungeon_B.txt
Normal file
|
|
@ -0,0 +1,256 @@
|
|||
Transparent|透明
|
||||
Beanstalk A|豆の木A
|
||||
Stairs A (Up)|階段A(上り)
|
||||
Stairs B (Up)|階段B(上り)
|
||||
Metal Ladder|鉄ばしご
|
||||
Rope Ladder|縄ばしご
|
||||
Rope|ロープ
|
||||
Vines A|ツタA
|
||||
Beanstalk B (Snow)|豆の木B(雪)
|
||||
Beanstalk C (Dead)|豆の木C(枯れ)
|
||||
Stairs A (Down)|階段A(下り)
|
||||
Stairs B (Down)|階段B(下り)
|
||||
Metal Ladder|鉄ばしご
|
||||
Rope Ladder|縄ばしご
|
||||
Rope|ロープ
|
||||
Vines A|ツタA
|
||||
Crumbling Wall|崩れた壁
|
||||
Dug-Up Ground|掘られた床
|
||||
Stairs C (Up)|階段C(上り)
|
||||
Stairs D (Up)|階段D(上り)
|
||||
Metal Ladder|鉄ばしご
|
||||
Rope 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 (Rope Ladder)|穴B(縄ばしご)
|
||||
Hole C (Rope)|穴C(ロープ)
|
||||
Hole D|穴D
|
||||
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)|橋げた(石・右)
|
||||
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(魔界)
|
||||
Stone Pillar A|石の柱A
|
||||
Stone Pillar B|石の柱B
|
||||
Stone Pillar C|石の柱C
|
||||
Stone Pillar C (Moss)|石の柱C(苔)
|
||||
Stone Pillar C (Ice)|石の柱C(氷)
|
||||
Wood Pillar|木の柱
|
||||
Stone Pillar D|石の柱D
|
||||
Orb Pillar|オーブの柱
|
||||
Stone Pillar A|石の柱A
|
||||
Stone Pillar B|石の柱B
|
||||
Stone Pillar C|石の柱C
|
||||
Stone Pillar C (Moss)|石の柱C(苔)
|
||||
Stone Pillar C (Ice)|石の柱C(氷)
|
||||
Wood Pillar|木の柱
|
||||
Stone Pillar D|石の柱D
|
||||
Orb Pillar|オーブの柱
|
||||
Broken Stone Pillar A|折れた石の柱A
|
||||
Broken Stone Pillar B|折れた石の柱B
|
||||
Broken Stone Pillar C|折れた石の柱C
|
||||
Broken Stone Pillar C (Moss)|折れた石の柱C(苔)
|
||||
Broken Stone Pillar C (Ice)|折れた石の柱C(氷)
|
||||
Broken Wood Pillar A|折れた木の柱A
|
||||
Broken Stone Pillar D|折れた石の柱D
|
||||
Broken Orb Pillar|折れたオーブの柱
|
||||
Rubble|瓦礫A
|
||||
Rubble (Moss)|瓦礫B(苔)
|
||||
Rubble (Ice)|瓦礫C(氷)
|
||||
Broken Wood Pillar B|折れた木の柱B
|
||||
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)|壁の補強材(廃坑)
|
||||
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
|
||||
Wall Fern|壁のシダ
|
||||
Fissures A|亀裂A
|
||||
Fissures B|亀裂B
|
||||
Fissures C|亀裂C
|
||||
Fissures D|亀裂D
|
||||
Wall Vines A|壁のツタA
|
||||
Wall Vines B|壁のツタB
|
||||
Wall Vines C|壁のツタC
|
||||
Wall Moss|壁の苔
|
||||
Fissures A|亀裂A
|
||||
Fissures B|亀裂B
|
||||
Fissures C|亀裂C
|
||||
Fissures D|亀裂D
|
||||
Monument A|石碑A
|
||||
Monument B|石碑B
|
||||
Large Monument|大きな石碑
|
||||
Large Monument|大きな石碑
|
||||
Large Monument|大きな石碑
|
||||
Large Monument (Lit)|大きな石碑(光)
|
||||
Large Monument (Lit)|大きな石碑(光)
|
||||
Large Monument (Lit)|大きな石碑(光)
|
||||
Monument A|石碑A
|
||||
Monument C|石碑C
|
||||
Large Monument|大きな石碑
|
||||
Large Monument|大きな石碑
|
||||
Large Monument|大きな石碑
|
||||
Large Monument (Lit)|大きな石碑(光)
|
||||
Large Monument (Lit)|大きな石碑(光)
|
||||
Large Monument (Lit)|大きな石碑(光)
|
||||
Statue A|石像A
|
||||
Angel Statue A|天使像A
|
||||
Angel Statue B|天使像B
|
||||
Dais|台座
|
||||
Statue B|石像B
|
||||
Demon Statue|悪魔像
|
||||
Dragon Statue|竜像
|
||||
Dragon Statue|竜像
|
||||
Statue A|石像A
|
||||
Angel Statue A|天使像A
|
||||
Angel Statue B|天使像B
|
||||
Dais|台座
|
||||
Statue B|石像B
|
||||
Demon Statue|悪魔像
|
||||
Dragon Statue|竜像
|
||||
Dragon Statue|竜像
|
||||
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
www/img/tilesets/Dungeon_C.txt
Normal file
256
www/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
www/img/tilesets/Inside_A1.txt
Normal file
16
www/img/tilesets/Inside_A1.txt
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
Canal A|水路A
|
||||
Deep Canal|深い水路
|
||||
Lotus Pads (Flowers)|蓮の葉(花)
|
||||
Junk|ゴミ
|
||||
Pool A (Stone Lined)|水場A(石の縁)
|
||||
Waterfall A (Stone Wall)|滝A(石壁)
|
||||
Pool B (Wood Lined)|水場B(木の縁)
|
||||
Waterfall B (Stone Wall)|滝B(石壁)
|
||||
Canal B|水路B
|
||||
Waterfall C (Stone Wall)|滝C(石壁)
|
||||
Pool C (Stone Lined)|水場C(石の縁)
|
||||
Waterfall D (Stone Wall)|滝D(石壁)
|
||||
Bathing Spot|水浴び場
|
||||
Waterfall E (Dirt Wall)|滝E(土壁)
|
||||
Open Bath|露天風呂
|
||||
Waterfall F (Demon Castle)|滝F(魔王城)
|
||||
32
www/img/tilesets/Inside_A2.txt
Normal file
32
www/img/tilesets/Inside_A2.txt
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
Wood Floor A|木の床A
|
||||
Cobblestones A|石畳A
|
||||
Rug A|じゅうたんA
|
||||
Straw Mat|ござ
|
||||
Hole A (Wood Floor)|穴A(木の床)
|
||||
Raised Stone A|石段A
|
||||
Ground Cracks|床のひび割れ
|
||||
Table A|テーブルA
|
||||
Wood Floor B|木の床B
|
||||
Cobblestones B|石畳B
|
||||
Rug B|じゅうたんB
|
||||
Rug C|じゅうたんC
|
||||
Hole B (Wood Floor)|穴B(木の床)
|
||||
Raised Stone B|石段B
|
||||
Soil on Ground|床の汚れ
|
||||
Table B|テーブルB
|
||||
Cobblestones C|石畳C
|
||||
Cobblestones D|石畳D
|
||||
Rug D|じゅうたんD
|
||||
Demon Castle Floor|魔王城の床
|
||||
Hole C (Stone Floor)|穴C(石の床)
|
||||
Raised Stone C|石段C
|
||||
Moss on Ground|床の苔
|
||||
Table C|テーブルC
|
||||
Cobblestones E|石畳E
|
||||
Cobblestones F|石畳F
|
||||
Rug E|じゅうたんE
|
||||
Rug F|じゅうたんF
|
||||
Hole D|穴D
|
||||
Raised Stone D|石段D
|
||||
Wire mesh|金網
|
||||
Table D|テーブルD
|
||||
48
www/img/tilesets/Inside_A4.txt
Normal file
48
www/img/tilesets/Inside_A4.txt
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
Wall A (Stone)|壁A(石)
|
||||
Wall B (Brick)|壁B(レンガ)
|
||||
Wall C (Brick)|壁C(レンガ)
|
||||
Wall D (Stone)|壁D(石)
|
||||
Wall E (Stone)|壁E(石)
|
||||
Wall F (Castle)|壁F(城)
|
||||
Wall G (Fort)|壁G(砦)
|
||||
Wall H (Demon Castle)|壁H(魔王城)
|
||||
Wall A (Stone)|壁A(石)
|
||||
Wall B (Brick)|壁B(レンガ)
|
||||
Wall C (Brick)|壁C(レンガ)
|
||||
Wall D (Stone)|壁D(石)
|
||||
Wall E (Stone)|壁E(石)
|
||||
Wall F (Castle)|壁F(城)
|
||||
Wall G (Fort)|壁G(砦)
|
||||
Wall H (Demon Castle)|壁H(魔王城)
|
||||
Wall I (Wood)|壁I(木造)
|
||||
Wall J (Log)|壁J(丸太)
|
||||
Wall K (Wood)|壁K(木造)
|
||||
Interior Wall A (Wood)|内装壁A(木造)
|
||||
Interior Wall (Stone)|内装壁B(石)
|
||||
Wall L (Stone)|壁L(石)
|
||||
Wall M (Marble)|壁M(大理石)
|
||||
Wall N (Concrete)|壁N(コンクリート)
|
||||
Wall I (Wood)|壁I(木造)
|
||||
Wall J (Log)|壁J(丸太)
|
||||
Wall K (Wood)|壁K(木造)
|
||||
Interior Wall A (Wood)|内装壁A(木造)
|
||||
Interior Wall (Stone)|内装壁B(石)
|
||||
Wall L (Stone)|壁L(石)
|
||||
Wall M (Marble)|壁M(大理石)
|
||||
Wall N (Concrete)|壁N(コンクリート)
|
||||
Interior Wall C (Stone)|内装壁C(石)
|
||||
Interior Wall D (Brick)|内装壁D(レンガ)
|
||||
Interior Wall E (Stone)|内装壁E(石)
|
||||
Interior Wall F (Desert)|内装壁F(砂漠風)
|
||||
Interior Wall G (Mansion)|内装壁G(豪邸)
|
||||
Interior Wall H (Temple)|内装壁H(神殿)
|
||||
Wall O (Tent)|壁O(テント)
|
||||
Wall P (Stage)|壁P(舞台)
|
||||
Interior Wall C (Stone)|内装壁C(石)
|
||||
Interior Wall D (Brick)|内装壁D(レンガ)
|
||||
Interior Wall E (Stone)|内装壁E(石)
|
||||
Interior Wall F (Desert)|内装壁F(砂漠風)
|
||||
Interior Wall G (Mansion)|内装壁G(豪邸)
|
||||
Interior Wall H (Temple)|内装壁H(神殿)
|
||||
Wall O (Tent)|壁O(テント)
|
||||
Wall P (Stage)|壁P(舞台)
|
||||
129
www/img/tilesets/Inside_A5.txt
Normal file
129
www/img/tilesets/Inside_A5.txt
Normal file
|
|
@ -0,0 +1,129 @@
|
|||
Darkness|暗闇
|
||||
Wire Mesh|金網
|
||||
Stone Bridge (V, Left)|石の橋(縦・左)
|
||||
Stone Bridge (V Center)|石の橋(縦・中央)
|
||||
Stone Bridge (V, Riight)|石の橋(縦・右)
|
||||
Stone Bridge (H, Top)|石の橋(横・上)
|
||||
Stone Bridge (H Center)|石の橋(横・中央)
|
||||
Broken Bridge (H, Top)|壊れた橋(横・上)
|
||||
Transparent|透明
|
||||
Wire Mesh|金網
|
||||
Broken Bridge (V, Left)|壊れた橋(縦・左)
|
||||
Broken Bridge (V Center)|壊れた橋(縦・中央)
|
||||
Broken Bridge (V, Riight)|壊れた橋(縦・右)
|
||||
Stone Bridge (H, Bottom)|石の橋(横・下)
|
||||
Broken Bridge (H Center)|壊れた橋(横・中央)
|
||||
Broken Bridge (H, Bottom)|壊れた橋(横・下)
|
||||
Wood Floor A|木の床A
|
||||
Wood Floor B|木の床B
|
||||
Wood Floor C|木の床C
|
||||
Wood Floor D|木の床D
|
||||
Cobblestones A|石畳A
|
||||
Cobblestones B|石畳B
|
||||
Cobblestones C|石畳C
|
||||
Cobblestones D|石畳D
|
||||
Ledge A (Wood)|段差A(木製)
|
||||
Ledge B (Wood)|段差B(木製)
|
||||
Ledge C (Log)|段差C(丸太)
|
||||
Ledge D (Log)|段差D(丸太)
|
||||
Ledge E (Brick)|段差E(レンガ)
|
||||
Ledge F (Stone)|段差F(石)
|
||||
Ledge G (Stone)|段差G(石)
|
||||
Ledge H (Stone)|段差H(石)
|
||||
Cobblestones E|石畳E
|
||||
Cobblestones F|石畳F
|
||||
Wood Floor E|木の床E
|
||||
Wood Floor F|木の床F
|
||||
Cobblestones G|石畳G
|
||||
Cobblestones H|石畳H
|
||||
Cobblestones I|石畳I
|
||||
Cobblestones J|石畳J
|
||||
Ledge I (Brick)|段差I(レンガ)
|
||||
Ledge J (Castle)|段差J(城)
|
||||
Ledge K (Fort)|段差K(砦)
|
||||
Ledge L (Wood)|段差L(木製)
|
||||
Ledge M (Stone)|段差M(石)
|
||||
Ledge N (Stone)|段差N(石)
|
||||
Ledge O (Marble)|段差O(大理石)
|
||||
Ledge P (Stone)|段差P(石)
|
||||
Interior Floor A (Wood)|内装床A(木製)
|
||||
Interior Floor B (Brick)|内装床B(レンガ)
|
||||
Interior Floor C (Temple)|内装床C(神殿)
|
||||
Interior Floor D (Stone)|内装床D(石)
|
||||
Interior Floor E (Demon Castle)|内装床E(魔王城)
|
||||
Interior Floor F (Tent)|内装床F(テント)
|
||||
Interior Floor G (Concrete)|内装床G(コンクリート)
|
||||
Interior Floor H (Dirt)|内装床H(土)
|
||||
Ledge Q (Wood)|段差Q(木製)
|
||||
Ledge R (Desert)|段差R(砂漠風)
|
||||
Ledge S (Temple)|段差S(神殿)
|
||||
Ledge T (Stone)|段差T(石)
|
||||
Ledge U (Demon Castle)|段差U(魔界城)
|
||||
Ledge V (Tent)|段差V(テント)
|
||||
Ledge W (Concrete)|段差W(コンクリート)
|
||||
Ledge X (Dirt)|段差X(土)
|
||||
Stairs A (Wood, Left)|階段A(木製・左)
|
||||
Stairs A (Wood, Center)|階段A(木製・中央)
|
||||
Stairs A (Wood)|階段A(木製・右)
|
||||
Stairs A (Wood)|階段A(木製)
|
||||
Stairs B (Stone, Left)|階段B(石・左)
|
||||
Stairs B (Stone, Center)|階段B(石・中央)
|
||||
Stairs B (Stone, Right)|階段B(石・右)
|
||||
Stairs B (Stone)|階段B(石)
|
||||
Stairs C (Stone, Left)|階段C(石・左)
|
||||
Stairs C (Stone, Center)|階段C(石・中央)
|
||||
Stairs C (Stone, Right)|階段C(石・右)
|
||||
Stairs C (Stone)|階段C(石)
|
||||
Stairs C (Stone, Ruins, Left)|階段C(石・廃墟・左)
|
||||
Stairs C (Stone, Ruins, Center)|階段C(石・廃墟・中央)
|
||||
Stairs C (Stone, Ruins, Right)|階段C(石・廃墟・右)
|
||||
Stairs C (Stone, Ruins)|階段C(石・廃墟)
|
||||
Stairs D (Carpet, Left)|階段D(じゅうたん・左)
|
||||
Stairs D (Carpet, Center)|階段D(じゅうたん・中央)
|
||||
Stairs D (Carpet, Right)|階段D(じゅうたん・右)
|
||||
Stairs D (Carpet)|階段D(じゅうたん)
|
||||
Stairs E (Carpet, Left)|階段E(じゅうたん・左)
|
||||
Stairs E (Carpet, Center)|階段E(じゅうたん・中央)
|
||||
Stairs E (Carpet, Right)|階段E(じゅうたん・右)
|
||||
Stairs E (Carpet)|階段E(じゅうたん)
|
||||
Wood Floor A (Ruins)|木の床A(廃墟)
|
||||
Wood Floor B (Ruins)|木の床B(廃墟)
|
||||
Wood Floor C (Ruins)|木の床C(廃墟)
|
||||
Wood Floor D (Ruins)|木の床D(廃墟)
|
||||
Cobblestones A (Ruins)|石畳A(廃墟)
|
||||
Cobblestones B (Ruins)|石畳B(廃墟)
|
||||
Cobblestones C (Ruins)|石畳C(廃墟)
|
||||
Cobblestones D (Ruins)|石畳D(廃墟)
|
||||
Cobblestones E (Ruins)|石畳E(廃墟)
|
||||
Cobblestones F (Ruins)|石畳F(廃墟)
|
||||
Wood Floor E (Ruins)|木の床E(廃墟)
|
||||
Wood Floor F (Ruins)|木の床F(廃墟)
|
||||
Cobblestones G (Ruins)|石畳G(廃墟)
|
||||
Cobblestones H (Ruins)|石畳H(廃墟)
|
||||
Cobblestones I (Ruins)|石畳I(廃墟)
|
||||
Cobblestones J (Ruins)|石畳J(廃墟)
|
||||
Interior Floor A (Wood, Ruins)|内装床A(木製・廃墟)
|
||||
Interior Floor B (Brick, Ruins)|内装床B(レンガ・廃墟)
|
||||
Interior Floor C (Temple, Ruins)|内装床C(神殿・廃墟)
|
||||
Interior Floor D (Stone, Ruins)|内装床D(石・廃墟)
|
||||
Interior Floor E (Demon Castle, Ruins)|内装床E(魔王城・廃墟)
|
||||
Interior Floor F (Concrete, Ruins)|内装床F(コンクリート・廃墟)
|
||||
Interior Floor G (Tent, Ruins)|内装床G(テント・廃墟)
|
||||
Interior Floor H (Dirt, Ruins)|内装床H(土・廃墟)
|
||||
Large Relief Floor Tile A|大きなレリーフ床A
|
||||
Large Relief Floor Tile A|大きなレリーフ床A
|
||||
Large Relief Floor Tile B|大きなレリーフ床B
|
||||
Large Relief Floor Tile B|大きなレリーフ床B
|
||||
Relief Floor Tile A (Silver)|レリーフ床A(銀)
|
||||
Relief Floor Tile B (Silver)|レリーフ床B(銀)
|
||||
Relief Floor Tile C (Gold)|レリーフ床C(金)
|
||||
Relief Floor Tile D (Gold)|レリーフ床D(金)
|
||||
Large Relief Floor Tile A|大きなレリーフ床A
|
||||
Large Relief Floor Tile A|大きなレリーフ床A
|
||||
Large Relief Floor Tile B|大きなレリーフ床B
|
||||
Large Relief Floor Tile B|大きなレリーフ床B
|
||||
Relief Floor Tile E (Silver, Ruins)|レリーフ床E(銀・廃墟)
|
||||
Relief Floor Tile F (Silver)|レリーフ床F(銀)
|
||||
Relief Floor Tile G (Gold, Ruins)|レリーフ床G(金・廃墟)
|
||||
Relief Floor Tile H (Gold)|レリーフ床H(金)
|
||||
|
||||
256
www/img/tilesets/Inside_B.txt
Normal file
256
www/img/tilesets/Inside_B.txt
Normal file
|
|
@ -0,0 +1,256 @@
|
|||
Transparent|透明
|
||||
Stairs A (Up)|階段A(上り)
|
||||
Stairs B (Up)|階段B(上り)
|
||||
Stairs C (Up)|階段C(上り)
|
||||
Stairs D (Up)|階段D(上り)
|
||||
Metal Ladder|鉄ばしご
|
||||
Rope Ladder|縄ばしご
|
||||
Rope|ロープ
|
||||
Hole|穴
|
||||
Stairs A (Down)|階段A(下り)
|
||||
Stairs B (Down)|階段B(下り)
|
||||
Stairs C (Down)|階段C(下り)
|
||||
Stairs D (Down)|階段D(下り)
|
||||
Metal Ladder|鉄ばしご
|
||||
Rope Ladder|縄ばしご
|
||||
Rope|ロープ
|
||||
Middle Window A|中型窓A
|
||||
Middle Window B|中型窓B
|
||||
Middle Window C|中型窓C
|
||||
Middle Window D (Ruins)|中型窓D(廃墟)
|
||||
Window (Demon Castle)|窓(魔王城)
|
||||
Metal Ladder|鉄ばしご
|
||||
Rope Ladder|縄ばしご
|
||||
Rope|ロープ
|
||||
Middle Window A|中型窓A
|
||||
Middle Window B|中型窓B
|
||||
Middle Window C|中型窓C
|
||||
Middle Window D (Ruins)|中型窓D(廃墟)
|
||||
Window (Demon Castle)|窓(魔王城)
|
||||
Hole A (Metal Ladder)|穴A(鉄ばしご)
|
||||
Hole B (Rope Ladder)|穴B(縄ばしご)
|
||||
Hole C (Rope)|穴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
|
||||
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
|
||||
Bread Shelf|パン棚
|
||||
Sundries Shelf A|雑貨棚A
|
||||
Sundries Shelf A|雑貨棚A
|
||||
Sundries Shelf B|雑貨棚B
|
||||
Medicine Shelf|薬品棚
|
||||
Bookshelf A|本棚A
|
||||
Bookshelf B|本棚B
|
||||
Bookshelf B|本棚B
|
||||
Bread Shelf|パン棚
|
||||
Sundries Shelf A|雑貨棚A
|
||||
Sundries Shelf A|雑貨棚A
|
||||
Sundries Shelf B|雑貨棚B
|
||||
Medicine Shelf|薬品棚
|
||||
Bookshelf A|本棚A
|
||||
Bookshelf B|本棚B
|
||||
Bookshelf B|本棚B
|
||||
Bed|ベッド
|
||||
Large Bed|ダブルベッド
|
||||
Large Bed|ダブルベッド
|
||||
Cheap Bed A|粗末なベッドA
|
||||
Cheap Bed B|粗末なベッドB
|
||||
Straw Bed|むしろの寝床
|
||||
Bed (Ruins)|ベッド(廃墟)
|
||||
Tipped Shelf|倒れた棚
|
||||
Bed|ベッド
|
||||
Large Bed|ダブルベッド
|
||||
Large Bed|ダブルベッド
|
||||
Cheap Bed A|粗末なベッドA
|
||||
Cheap Bed B|粗末なベッドB
|
||||
Straw Bed|むしろの寝床
|
||||
Bed (Ruins)|ベッド(廃墟)
|
||||
Tipped Shelf|倒れた棚
|
||||
Table A|テーブルA
|
||||
Table B|テーブルB
|
||||
Table C|テーブルC
|
||||
Fortuneteller's Table A|占い台A
|
||||
Mini Table A|ミニテーブルA
|
||||
Piano|ピアノ
|
||||
Piano|ピアノ
|
||||
Piano|ピアノ
|
||||
Stool A|椅子A
|
||||
Stool B|椅子B
|
||||
Stool C|椅子C
|
||||
Fortuneteller's Table B (Crystal)|占い台B(水晶)
|
||||
Mini Table B (Flower)|ミニテーブルB(花瓶)
|
||||
Piano|ピアノ
|
||||
Piano|ピアノ
|
||||
Piano|ピアノ
|
||||
Oven|かまど
|
||||
Sink|流し
|
||||
Kitchen Counter A|調理台A
|
||||
Kitchen Counter B|調理台B
|
||||
Dresser|ドレッサー
|
||||
Pipe Organ|パイプオルガン
|
||||
Pipe Organ|パイプオルガン
|
||||
Pipe Organ|パイプオルガン
|
||||
Simple Shelf A|簡易棚A
|
||||
Simple Shelf B (Jars)|簡易棚B(瓶)
|
||||
Simple Shelf C (Books)|簡易棚C(本)
|
||||
Simple Shelf D (Sacks)|簡易棚D(袋)
|
||||
Simple Shelf E (Bottles)|簡易棚E(ボトル)
|
||||
Pipe Organ|パイプオルガン
|
||||
Pipe Organ|パイプオルガン
|
||||
Pipe Organ|パイプオルガン
|
||||
Large Fireplace|大きな暖炉
|
||||
Large Fireplace|大きな暖炉
|
||||
Large Fireplace|大きな暖炉
|
||||
Fireplace A (Stone)|暖炉A(石)
|
||||
Fireplace B (Brick)|暖炉B(レンガ)
|
||||
Fireplace C (Iron)|暖炉C(鉄)
|
||||
Tapestry A|タペストリーA
|
||||
Tapestry A (Ruins)|タペストリーA(廃墟)
|
||||
Large Fireplace|大きな暖炉
|
||||
Large Fireplace|大きな暖炉
|
||||
Large Fireplace|大きな暖炉
|
||||
Fireplace A (Stone)|暖炉A(石)
|
||||
Fireplace B (Brick)|暖炉B(レンガ)
|
||||
Fireplace C (Iron)|暖炉C(鉄)
|
||||
Tapestry A|タペストリーA
|
||||
Tapestry A (Ruins)|タペストリーA(廃墟)
|
||||
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|鏡
|
||||
Posted Notice|貼り紙
|
||||
Posted Notice (Ruins)|貼り紙(廃墟)
|
||||
World Map|世界地図
|
||||
World Map|世界地図
|
||||
Painting|絵画
|
||||
Painting|絵画
|
||||
Clock|時計
|
||||
Mirror|鏡
|
||||
Stone Tablet|石版
|
||||
Stone Tablet (Ruins)|石版(廃墟)
|
||||
Portrait A|肖像画A
|
||||
Portrait B|肖像画B
|
||||
Painting A|絵画A
|
||||
Painting B|絵画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(魔王城)
|
||||
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(魔王城)
|
||||
Shield|盾
|
||||
Swords A|剣A
|
||||
Swords B|剣B
|
||||
Entrance A|入口A
|
||||
Entrance A (Extend)|入口A(延長部分)
|
||||
Entrance A (Top Half A)|入口A(上半分A)S
|
||||
Entrance B|入口B
|
||||
Entrance A (Top Half B)|入口A(上半分B)
|
||||
Pot A|壺A
|
||||
Pot B|壺B
|
||||
Pot C (Ruins)|壺C(廃墟)
|
||||
Table A (Ruins)|テーブルA(廃墟)
|
||||
Stone Pillar A|石の柱A
|
||||
Stone Pillar B|石の柱B
|
||||
Fort Pillar|砦の柱
|
||||
Rubble|瓦礫
|
||||
Basin|桶
|
||||
Barrel |樽
|
||||
Barrel (Ruins)|樽(廃墟)
|
||||
Stool (Ruins)|椅子(廃墟)
|
||||
Stone Pillar A|石の柱A
|
||||
Stone Pillar B|石の柱B
|
||||
Fort Pillar|砦の柱
|
||||
Rubble|瓦礫
|
||||
Basin|桶
|
||||
Tub A|たらいA
|
||||
Tub B|たらいB
|
||||
Crate A (Ruins)|木箱A(廃墟)
|
||||
Broken Stone Pillar A|折れた石の柱A
|
||||
Broken Stone Pillar B|折れた石の柱B
|
||||
Broken Fort Pillar|折れた砦の柱
|
||||
Scrap Wood|端材
|
||||
Crate B|木箱B
|
||||
Crate C|木箱C
|
||||
Stacked Crates|積まれた木箱
|
||||
Stacked Crates|積まれた木箱
|
||||
Fissures A|亀裂A
|
||||
Fissures B|亀裂B
|
||||
Fissures C|亀裂C
|
||||
Fissures D|亀裂D
|
||||
Crate D|木箱D
|
||||
Crate E|木箱E
|
||||
Stacked Crates|積まれた木箱
|
||||
Stacked Crates|積まれた木箱
|
||||
Fissures A|亀裂A
|
||||
Fissures B|亀裂B
|
||||
Fissures C|亀裂C
|
||||
Fissures D|亀裂D
|
||||
Crate F|木箱F
|
||||
Crate G|木箱G
|
||||
Sacks C|麻袋C
|
||||
Large Crate|大きな木箱
|
||||
Jail Bar|鉄格子
|
||||
Jail Bar|鉄格子
|
||||
Jail Bar|鉄格子
|
||||
Jail Bar|鉄格子
|
||||
Sack A|麻袋A
|
||||
Sack B|麻袋B
|
||||
Sacks C|麻袋C
|
||||
Large Crate|大きな木箱
|
||||
Jail Bar|鉄格子
|
||||
Jail Bar|鉄格子
|
||||
Jail Bar|鉄格子
|
||||
Jail Bar|鉄格子
|
||||
256
www/img/tilesets/Inside_C.txt
Normal file
256
www/img/tilesets/Inside_C.txt
Normal file
|
|
@ -0,0 +1,256 @@
|
|||
Cup & Teapot A (Bottom)|カップとポットA(下)
|
||||
Cup & Teapot B (Top)|カップとポットB(上)
|
||||
Cup & Teapot C (Left)|カップとポットC(左)
|
||||
Cup & Teapot D (Right)|カップとポットD(右)
|
||||
Cup A (Bottom)|カップA(下)
|
||||
Cup B (Top)|カップB(上)
|
||||
Cup C (Left)|カップC(左)
|
||||
Cup D (Right)|カップD(右)
|
||||
Glass & Bottle A (Bottom)|グラスとボトルA(下)
|
||||
Glass & Bottle B (Top)|グラスとボトルB(上)
|
||||
Glass & Bottle C (Left)|グラスとボトルC(左)
|
||||
Glass & Bottle D (Right)|グラスとボトルD(右)
|
||||
Glass A (Bottom)|グラスA(下)
|
||||
Glass B (Top)|グラスB(上)
|
||||
Glass C (Left)|グラスC(左)
|
||||
Glass D (Right)|グラスD(右)
|
||||
Pint Mug & Ale Bottle A (Bottom)|ジョッキと瓶A(下)
|
||||
Pint Mug & Ale Bottles B (Top)|ジョッキと瓶B(上)
|
||||
Pint Mug & Ale Bottles C (Left)|ジョッキと瓶C(左)
|
||||
Pint Mug & Ale Bottle D (Right)|ジョッキと瓶D(右)
|
||||
Pint Mug A (Bottom)|ジョッキA(下)
|
||||
Pint Mug B (Top)|ジョッキB(上)
|
||||
Pint Mug C (Left)|ジョッキC(左)
|
||||
Pint Mug D (Right)|ジョッキD(右)
|
||||
Teapot|ポット
|
||||
Bottle A|ボトルA
|
||||
Bottles B|ボトルB
|
||||
Bottles C|ボトルC
|
||||
Broken Bottle|割れたボトル
|
||||
Ale Bottle A|瓶A
|
||||
Ale Bottles B|瓶B
|
||||
Ale Bottles C|瓶C
|
||||
Meal (Fish)|魚料理
|
||||
Meal (Meat)|肉料理
|
||||
Side Dishes|副菜
|
||||
Fruit Bowl|フルーツ盛り合わせ
|
||||
Roast Pig|丸焼き
|
||||
Cake|ケーキ
|
||||
Pizza|ピザ
|
||||
Meal (Fish)|魚料理
|
||||
Dinner Set A (Bottom)|夕食セットA(下)
|
||||
Dinner Set B (Top)|夕食セットB(上)
|
||||
Dinner Set C (Left)|夕食セットC(左)
|
||||
Dinner Set D (Right)|夕食セットD(右)
|
||||
Pie|パイ
|
||||
Fried Rice|チャーハン
|
||||
Mystery Dishes|謎の料理
|
||||
Cooking Disaster|失敗料理
|
||||
Breakfast Set A (Bottom)|朝食セットA(下)
|
||||
Breakfast Set B (Top)|朝食セットB(上)
|
||||
Breakfast Set C (Left)|朝食セットC(左)
|
||||
Breakfast Set D (Right)|朝食セットD(右)
|
||||
Plate A|皿A
|
||||
Bowl|ボウル
|
||||
Plates B|皿B
|
||||
Plates C|皿C
|
||||
Closed Book A (Bottom)|閉じた本A(下)
|
||||
Closed Book B (Top)|閉じた本B(上)
|
||||
Closed Book C (Left)|閉じた本C(左)
|
||||
Closed Book D (Right)|閉じた本D(右)
|
||||
Open Book A (Bottom)|開いた本A(下)
|
||||
Open Book B (Top)|開いた本B(上)
|
||||
Open Book C (Left)|開いた本C(左)
|
||||
Open Book D (Right)|開いた本D(右)
|
||||
Closed Old Book A (Bottom)|閉じた古文書A(下)
|
||||
Closed Old Book B (Top)|閉じた古文書B(上)
|
||||
Closed Old Book C (Left)|閉じた古文書C(左)
|
||||
Closed Old Book D (Right)|閉じた古文書D(右)
|
||||
Open Old Book A (Bottom)|開いた古文書A(下)
|
||||
Open Old Book B (Top)|開いた古文書B(上)
|
||||
Open Old Book C (Left)|開いた古文書C(左)
|
||||
Open Old Book D (Right)|開いた古文書D(右)
|
||||
Notes & Pen A (Bottom)|メモとペンA(下)
|
||||
Notes & Pen B (Top)|メモとペンB(上)
|
||||
Notes & Pen C (Left)|メモとペンC(左)
|
||||
Notes & Pen D (Right)|メモとペンD(右)
|
||||
Map A (Bottom)|地図A(下)
|
||||
Map B (Top)|地図B(上)
|
||||
Map C (Left)|地図C(左)
|
||||
Map D (Right)|地図D(右)
|
||||
Envelope & Letter|封筒と便箋
|
||||
Envelope|封筒
|
||||
Scrolls A|巻物A
|
||||
Scrolls B|巻物B
|
||||
Vase|花瓶
|
||||
Potted Plant A|植木鉢A
|
||||
Potted Plant B|植木鉢B
|
||||
Planter|プランター
|
||||
Case A|ケースA
|
||||
Case B|ケースB
|
||||
Letter Case|レターケース
|
||||
Cutting Board|まな板
|
||||
Small Box A|小箱A
|
||||
Small Box B|小箱B
|
||||
Small Box C|小箱C
|
||||
Small Box D|小箱D
|
||||
Sack A|袋A
|
||||
Sacks B|袋B
|
||||
Sacks C|袋C
|
||||
Medicine Bottle A|薬瓶A
|
||||
Medicine Bottles B|薬瓶B
|
||||
Medicine Bottles C|薬瓶C
|
||||
Potion A|液体入り瓶A
|
||||
Potions B|液体入り瓶B
|
||||
Basket A|バスケットA
|
||||
Basket B|バスケットB
|
||||
Basket C|バスケットC
|
||||
Basket D|バスケットD
|
||||
Rugs A|じゅうたんA
|
||||
Rugs B|じゅうたんB
|
||||
Rugs C|じゅうたんC
|
||||
Lab Equipment|実験器具
|
||||
Stuffed Doll A|ぬいぐるみA
|
||||
Stuffed Doll B|ぬいぐるみB
|
||||
Stuffed Doll C|ぬいぐるみC
|
||||
Stuffed Doll D|ぬいぐるみD
|
||||
Doll A|人形A
|
||||
Doll B|人形B
|
||||
Gifts A|プレゼントA
|
||||
Gifts B|プレゼントB
|
||||
Shovel|スコップ
|
||||
Pickax|つるはし
|
||||
Rope A|ロープA
|
||||
Rope B|ロープB
|
||||
Pendant|ペンダント
|
||||
Jewelry Case A|宝石ケースA
|
||||
Necklace|ネックレス
|
||||
Jewelry Case B|宝石ケースB
|
||||
Sword A|剣A
|
||||
Swords B|剣B
|
||||
Swords C|剣C
|
||||
Axes|斧
|
||||
Spears A|槍A
|
||||
Spears B|槍B
|
||||
Whip|鞭
|
||||
Knives|短剣
|
||||
Cooking Utensils|調理器具
|
||||
Dry Flowers|ドライフラワー
|
||||
Shield A|盾A
|
||||
Shield B|盾B
|
||||
Men's Clothing A (Hanging)|男物の服A(壁掛け)
|
||||
Men's Clothing B (Hanging)|男物の服B(壁掛け)
|
||||
Women's Clothing A (Hanging)|女物の服A(壁掛け)
|
||||
Women's Clothing B (Hanging)|女物の服B(壁掛け)
|
||||
Sword Rack A|剣掛台A
|
||||
Sword Rack B|剣掛台B
|
||||
Hammers|ハンマー
|
||||
Bows & Arrows|弓矢
|
||||
Blacksmith's Table A|金床A
|
||||
Blacksmith's Table B|金床B
|
||||
Large Basin|水桶
|
||||
Scrap Metal|鉄くず
|
||||
Helmet A|兜A
|
||||
Helmet B|兜B
|
||||
Helmet C|兜C
|
||||
Hat A (Stand)|帽子A(スタンド)
|
||||
Hat B (Stand)|帽子B(スタンド)
|
||||
Hat C (Stand)|帽子C(スタンド)
|
||||
Women's Clothing (Stand)|女物の服(スタンド)
|
||||
Dress (Stand)|ドレス(スタンド)
|
||||
Armor A (Stand)|鎧A(スタンド)
|
||||
Armor B (Stand)|鎧B(スタンド)
|
||||
Armor C (Stand)|鎧C(スタンド)
|
||||
Armor D (Stand)|鎧D(スタンド)
|
||||
Men's Clothing (Stand)|男物の服(スタンド)
|
||||
Cape (Stand)|マント(スタンド)
|
||||
Robe A (Stand)|ローブA(スタンド)
|
||||
Robe B (Stand)|ローブB(スタンド)
|
||||
Church Symbol|教会のシンボル
|
||||
Angel Statue A|天使像A
|
||||
Angel Statue B|天使像B
|
||||
Goddess Statue|女神像
|
||||
Statue|石像
|
||||
Dais|台座
|
||||
Repository of Swords|剣立て
|
||||
Repository of Spears|槍立て
|
||||
Church Symbol|教会のシンボル
|
||||
Angel Statue A|天使像A
|
||||
Angel Statue B|天使像B
|
||||
Goddess Statue|女神像
|
||||
Statue|石像
|
||||
Broken Statue|壊れた像
|
||||
Repository of Swords|剣立て
|
||||
Repository of Spears|槍立て
|
||||
Church Table A|教会机A
|
||||
Church Table A|教会机A
|
||||
Church Table A|教会机A
|
||||
Church Table B|教会机B
|
||||
Decorative Pillar A|装飾柱A
|
||||
Decorative Pillar B|装飾柱B
|
||||
Decorative Pillar A (Ruins)|装飾柱A(廃墟)
|
||||
Decorative Pillar B (Ruins)|装飾柱B(廃墟)
|
||||
Church Table A|教会机A
|
||||
Church Table A|教会机A
|
||||
Church Table A|教会机A
|
||||
Church Table B|教会机B
|
||||
Decorative Pillar A|装飾柱A
|
||||
Decorative Pillar B|装飾柱B
|
||||
Decorative Pillar A (Ruins)|装飾柱A(廃墟)
|
||||
Decorative Pillar B (Ruins)|装飾柱B(廃墟)
|
||||
Gold Bricks A|金の延べ棒A
|
||||
Gold Bricks B|金の延べ棒B
|
||||
Silver Bricks A|銀の延べ棒A
|
||||
Silver Bricks B|銀の延べ棒B
|
||||
Decorative Pillar A|装飾柱A
|
||||
Decorative Pillar B|装飾柱B
|
||||
Decorative Pillar A (Ruins)|装飾柱A(廃墟)
|
||||
Decorative Pillar B (Ruins)|装飾柱B(廃墟)
|
||||
Monument A|石碑A
|
||||
Monument B|石碑B
|
||||
Demon Statue|悪魔像
|
||||
Dragon Statue|竜像
|
||||
Dragon Statue|竜像
|
||||
Large Monument|大きな石碑
|
||||
Large Monument|大きな石碑
|
||||
Large Monument|大きな石碑
|
||||
Monument A|石碑A
|
||||
Monument C|石碑C
|
||||
Demon Statue|悪魔像
|
||||
Dragon Statue|竜像
|
||||
Dragon Statue|竜像
|
||||
Large Monument|大きな石碑
|
||||
Large Monument|大きな石碑
|
||||
Large Monument|大きな石碑
|
||||
Railings (Wood)|段差用手すり(木製)
|
||||
Railings (Wood)|段差用手すり(木製)
|
||||
Railings (Wood)|段差用手すり(木製)
|
||||
Railings (Wood)|段差用手すり(木製)
|
||||
Railings (Wood)|段差用手すり(木製)
|
||||
Railings (Wood)|段差用手すり(木製)
|
||||
Railings (Wood)|段差用手すり(木製)
|
||||
Railings (Wood)|段差用手すり(木製)
|
||||
Banister A (Wood)|階段用手すりA(木製)
|
||||
Banister A (Wood)|階段用手すりA(木製)
|
||||
Banister B (Stone)|階段用手すりB(石)
|
||||
Banister B (Stone)|階段用手すりB(石)
|
||||
Banister C (Temple)|階段用手すりC(神殿)
|
||||
Banister C (Temple)|階段用手すりC(神殿)
|
||||
Banister D (Castle)|階段用手すりD(城)
|
||||
Banister D (Castle)|階段用手すりD(城)
|
||||
Banister A (Wood)|階段用手すりA(木製)
|
||||
Banister A (Wood)|階段用手すりA(木製)
|
||||
Banister B (Stone)|階段用手すりB(石)
|
||||
Banister B (Stone)|階段用手すりB(石)
|
||||
Banister C (Temple)|階段用手すりC(神殿)
|
||||
Banister C (Temple)|階段用手すりC(神殿)
|
||||
Banister D (Castle)|階段用手すりD(城)
|
||||
Banister D (Castle)|階段用手すりD(城)
|
||||
Banister A (Wood)|階段用手すりA(木製)
|
||||
Banister A (Wood)|階段用手すりA(木製)
|
||||
Banister B (Stone)|階段用手すりB(石)
|
||||
Banister B (Stone)|階段用手すりB(石)
|
||||
Banister C (Temple)|階段用手すりC(神殿)
|
||||
Banister C (Temple)|階段用手すりC(神殿)
|
||||
Banister D (Castle)|階段用手すりD(城)
|
||||
Banister D (Castle)|階段用手すりD(城)
|
||||
16
www/img/tilesets/Outside_A1.txt
Normal file
16
www/img/tilesets/Outside_A1.txt
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
Water A (Meadow)|水場A(草地)
|
||||
Deep Water|深い水場
|
||||
Lotus Pads|蓮の葉
|
||||
Swamp Grass|水草
|
||||
Water B (Snow)|水場B(雪)
|
||||
Waterfall A (Stone Wall)|滝A(石壁)
|
||||
Canal|水路
|
||||
Waterfall B (Dirt Wall)|滝B(土壁)
|
||||
Water C (Dirt)|水場C(土)
|
||||
Waterfall C (Cliff)|滝C(崖)
|
||||
Water D (Sand)|水場 D(砂)
|
||||
Waterfall D (Boulder)|滝D(玉石)
|
||||
Water E (Port)|水場E(港)
|
||||
Waterfall E (Stone Wall)|滝E(石壁)
|
||||
Poison Swamp|毒の沼
|
||||
Dead Tree|枯れ木
|
||||
32
www/img/tilesets/Outside_A2.txt
Normal file
32
www/img/tilesets/Outside_A2.txt
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
Meadow|草地
|
||||
Dirt (Meadow)|土(草地)
|
||||
Road (Meadow)|道(草地)
|
||||
Cobblestones A|石畳A
|
||||
Bush|茂み
|
||||
Road Edging|縁石
|
||||
Fencepost A (Wood)|柵A(木製)
|
||||
Fissures|ひび割れ
|
||||
Dirt|土
|
||||
Grass (Dirt)|草地(土)
|
||||
Road (Dirt)|道(土)
|
||||
Cobblestones A (Snow)|石畳A(雪)
|
||||
Bush (Dead)|茂み(枯れ草)
|
||||
Road Edging (Snow)|縁石(雪)
|
||||
Fencepost B (Metal)|柵B(金属)
|
||||
Soil|汚れ
|
||||
Sand|砂地
|
||||
Grass (Sand)|草地(砂地)
|
||||
Road (Sand)|道(砂地)
|
||||
Cobblestones B|石畳B
|
||||
Bush (Sand)|茂み(砂地)
|
||||
Hole|穴
|
||||
Fencepost C (Stone)|柵C(石)
|
||||
Moss|苔
|
||||
Snow|雪
|
||||
Dirt (Snow)|土(雪)
|
||||
Road (Snow)|道(雪)
|
||||
Carpet|カーペット
|
||||
Bush (Snow)|茂み(雪)
|
||||
Hole|穴
|
||||
Fencepost A (Wood, Snow)|柵A(木製・雪)
|
||||
Poison Swamp|毒の沼
|
||||
32
www/img/tilesets/Outside_A3.txt
Normal file
32
www/img/tilesets/Outside_A3.txt
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
Roof A (Red Tile)|屋根A(赤瓦)
|
||||
Roof B (Orange Tile)|屋根B(橙瓦)
|
||||
Roof C (Indigo Tile)|屋根C(藍瓦)
|
||||
Roof D (Green Tile)|屋根D(緑瓦)
|
||||
Roof E (Blue Tile)|屋根E(青瓦)
|
||||
Roof F (Dressed Tile)|屋根F(化粧瓦)
|
||||
Roof G (Khaki Tile)|屋根G(カーキ瓦)
|
||||
Roof H (Sheet Metal)|屋根H(鉄板)
|
||||
Outer Wall A (Plaster)|外壁A(白壁)
|
||||
Outer Wall B (Rock Wall)|外壁B(石壁)
|
||||
Outer Wall C (Rock Wall)|外壁C(石壁)
|
||||
Outer Wall D (Rock Wall)|外壁D(石壁)
|
||||
Outer Wall E (Brick)|外壁E(レンガ)
|
||||
Outer Wall F (Decorative Tile)|外壁F(化粧タイル)
|
||||
Outer Wall G (Dirt)|外壁G(土壁)
|
||||
Outer Wall H (Wood)|外壁H(木造)
|
||||
Roof I (Wood)|屋根I(木造)
|
||||
Roof J (Wood)|屋根J(木造)
|
||||
Roof K (Log)|屋根K(丸太)
|
||||
Roof L (Thatch)|屋根L(藁)
|
||||
Roof M (Stone)|屋根M(石)
|
||||
Roof N (Tent)|屋根N(テント)
|
||||
Snow Roof A|雪の屋根A
|
||||
Snow Roof B|雪の屋根B
|
||||
Outer Wall I (Wood)|外壁I(木造)
|
||||
Outer Wall J (Wood)|外壁J(木造)
|
||||
Outer Wall K (Log)|外壁K(丸太)
|
||||
Outer Wall L (Wood)|外壁L(木造)
|
||||
Outer Wall M (Rock Wall)|外壁M(石壁)
|
||||
Outer Wall N (Tent)|外壁N(テント)
|
||||
Snow Outer Wall (Wood)|雪の外壁(木造)
|
||||
Snow Outer Wall (Brick)|雪の外壁(レンガ)
|
||||
48
www/img/tilesets/Outside_A4.txt
Normal file
48
www/img/tilesets/Outside_A4.txt
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
Wall A (Stone)|壁A(石)
|
||||
Wall B (Brick)|壁B(レンガ)
|
||||
Wall C (Stone)|壁C(石)
|
||||
Wall D (Stone)|壁D(石)
|
||||
Wall E (Stone)|壁E(石)
|
||||
Wall F (Marble)|壁F(大理石)
|
||||
Wall G (Hedge)|壁G(生け垣)
|
||||
Wall G (Frozen)|壁H(凍結)
|
||||
Wall A (Stone)|壁A(石)
|
||||
Wall B (Brick)|壁B(レンガ)
|
||||
Wall C (Stone)|壁C(石)
|
||||
Wall D (Stone)|壁D(石)
|
||||
Wall E (Stone)|壁E(石)
|
||||
Wall F (Marble)|壁F(大理石)
|
||||
Wall G (Hedge)|壁G(生け垣)
|
||||
Wall G (Frozen)|壁H(凍結)
|
||||
Building A (Urban)|建物A(都会風)
|
||||
Building B (Dirt Wall)|建物B(土壁)
|
||||
Building C (Desert)|建物C(砂漠風)
|
||||
Building D (Temple, Snow)|建物D(神殿・雪)
|
||||
Building E (Castle)|建物E(城)
|
||||
Building F (Castle, Snow)|建物F(城・雪)
|
||||
Building G (Fort)|建物G(砦)
|
||||
Building H (Fort, Snow)|建物H(砦・雪)
|
||||
Building A (Urban)|建物A(都会風)
|
||||
Building B (Dirt Wall)|建物B(土壁)
|
||||
Building C (Desert)|建物C(砂漠風)
|
||||
Building D (Temple, Snow)|建物D(神殿・雪)
|
||||
Building E (Castle)|建物E(城)
|
||||
Building F (Castle, Snow)|建物F(城・雪)
|
||||
Building G (Fort)|建物G(砦)
|
||||
Building H (Fort, Snow)|建物H(砦・雪)
|
||||
Ledge A (Meadow)|段差A(草地)
|
||||
Ledge B (Dirt)|段差B(土)
|
||||
Ledge C (Desert)|段差C(砂地)
|
||||
Ledge D (Snow)|段差D(雪)
|
||||
Ledge E (Paved)|段差E(舗装)
|
||||
Forest A|森A
|
||||
Forest B (Snow)|森B(雪)
|
||||
Demon Castle|魔王城
|
||||
Cliff A (Meadow)|崖A(草地)
|
||||
Cliff B (Dirt)|崖B(土)
|
||||
Cliff C (Desert)|崖C(砂地)
|
||||
Cliff D (Snow)|崖D(雪)
|
||||
Wall (Paved)|壁(舗装)
|
||||
Forest A|森A
|
||||
Forest B (Snow)|森B(雪)
|
||||
Demon Castle|魔王城
|
||||
128
www/img/tilesets/Outside_A5.txt
Normal file
128
www/img/tilesets/Outside_A5.txt
Normal file
|
|
@ -0,0 +1,128 @@
|
|||
Darkness|暗闇
|
||||
Wire Mesh|金網
|
||||
Large Bridge (V, Left)|大きな橋(縦・左)
|
||||
Large Bridge (V, Center)|大きな橋(縦・中央)
|
||||
Large Bridge (V, Right)|大きな橋(縦・右)
|
||||
Large Bridge (H, Top)|大きな橋(横・上)
|
||||
Large Bridge (H, Center)|大きな橋(横・中央)
|
||||
Large Bridge (Snow, H, Top)|大きな橋(雪・横・上)
|
||||
Transparent|透明
|
||||
Wire Mesh|金網
|
||||
Large Bridge (Snow, V, Left)|大きな橋(雪・縦・左)
|
||||
Large Bridge (Snow, V, Center)|大きな橋(雪・縦・中央)
|
||||
Large Bridge (Snow, V, Right)|大きな橋(雪・縦・右)
|
||||
Large Bridge (H, Bottom)|大きな橋(横・下)
|
||||
Large Bridge (Snow, H, Center)|大きな橋(雪・横・中央)
|
||||
Large Bridge (Snow, H, Bottom)|大きな橋(雪・横・下)
|
||||
Meadow A|草地A
|
||||
Dirt A|土A
|
||||
Desert A|砂地A
|
||||
Snow A|雪A
|
||||
Meadow|草地B
|
||||
Dirt B|土B
|
||||
Desert B|砂地B
|
||||
Snow B|雪B
|
||||
Stairs (Meadow, Left)|階段(草地・左)
|
||||
Stairs (Meadow, Center)|階段(草地・中央)
|
||||
Stairs (Meadow, Right)|階段(草地・右)
|
||||
Stairs (Meadow)|階段
|
||||
Stairs (Dirt, Left)|階段(土・左)
|
||||
Stairs (Dirt, Center)|階段(土・中央)
|
||||
Stairs (Dirt, Right)|階段(土・右)
|
||||
Stairs (Dirt)|階段(土)
|
||||
Cobblestones A|石畳A
|
||||
Cobblestones B|石畳B
|
||||
Cobblestones C|石畳C
|
||||
Cobblestones D|石畳D
|
||||
Cobblestones A (Ruins)|石畳A(廃墟)
|
||||
Cobblestones B (Ruins)|石畳B(廃墟)
|
||||
Cobblestones C (Ruins)|石畳C(廃墟)
|
||||
Cobblestones D (Ruins)|石畳D(廃墟)
|
||||
Stairs (Desert, Left)|階段(砂地・左)
|
||||
Stairs (Desert, Center)|階段(砂地・中央)
|
||||
Stairs (Desert, Right)|階段(砂地・右)
|
||||
Stairs (Desert)|階段(砂地)
|
||||
Stairs (Snow, Left)|階段(雪・左)
|
||||
Stairs (Snow, Center)|階段(雪・中央)
|
||||
Stairs (Snow, Right)|階段(雪・右)
|
||||
Stairs (Snow)|階段(雪)
|
||||
Cobblestones E|石畳E
|
||||
Cobblestones F|石畳F
|
||||
Cobblestones G|石畳G
|
||||
Ice Floor A|氷の床A
|
||||
Cobblestones E (Ruins)|石畳E(廃墟)
|
||||
Cobblestones F (Ruins)|石畳F(廃墟)
|
||||
Cobblestones G (Ruins)|石畳G(廃墟)
|
||||
Ice Floor B|氷の床B
|
||||
Stairs (Paved, Left)|階段(舗装・左)
|
||||
Stairs (Paved, Center)|階段(舗装・中央)
|
||||
Stairs (Paved, Right)|階段(舗装・右)
|
||||
Stairs (Paved)|階段(舗装)
|
||||
Stairs (Ruins, Left)|階段(廃墟・左)
|
||||
Stairs (Ruins, Center)|階段(廃墟・中央)
|
||||
Stairs (Ruins, Right)|階段(廃墟・右)
|
||||
Stairs (Ruins)|階段(廃墟)
|
||||
Ledge (Port, Left)|段差(港・左)
|
||||
Ledge (Port, Center)|段差(港・中央)
|
||||
Ledge (Port, Right)|段差(港・右)
|
||||
Ledge (Port)|段差(港)
|
||||
Cobblestones H|石畳H
|
||||
Cobblestones I|石畳I
|
||||
Cloud A|雲A
|
||||
Cloud B|雲B
|
||||
Farm Field A (Top)|畑A(上)
|
||||
Farm Field A (Center)|畑A(中央)
|
||||
Farm Field B (Snow, Top)|畑B(雪・上)
|
||||
Farm Field B (Snow, Center)|畑B(雪・中央)
|
||||
Large Relief Floor Tile A|大きなレリーフ床A
|
||||
Large Relief Floor Tile A|大きなレリーフ床A
|
||||
Large Relief Floor Tile B|大きなレリーフ床B
|
||||
Large Relief Floor Tile B|大きなレリーフ床B
|
||||
Farm Field A (Bottom)|畑A(下)
|
||||
Farm Field A|畑A
|
||||
Farm Field B (Snow, Bottom)|畑B(雪・下)
|
||||
Farm Field B (Snow)|畑B(雪)
|
||||
Large Relief Floor Tile A|大きなレリーフ床A
|
||||
Large Relief Floor Tile A|大きなレリーフ床A
|
||||
Large Relief Floor Tile B|大きなレリーフ床B
|
||||
Large Relief Floor Tile B|大きなレリーフ床B
|
||||
Ledge (Meadow)|段差(草地)
|
||||
Ledge (Meadow)|段差(草地)
|
||||
Ledge (Meadow)|段差(草地)
|
||||
Garden A|花壇A
|
||||
Garden B (Snow)|花壇B(雪)
|
||||
Ledge (Dirt)|段差(土)
|
||||
Ledge (Dirt)|段差(土)
|
||||
Ledge (Dirt)|段差(土)
|
||||
Ledge (Meadow)|段差(草地)
|
||||
Ledge (Meadow)|段差(草地)
|
||||
Ledge (Meadow)|段差(草地)
|
||||
Ledge (Meadow)|段差(草地)
|
||||
Ledge (Meadow)|段差(草地)
|
||||
Ledge (Dirt)|段差(土)
|
||||
Ledge (Dirt)|段差(土)
|
||||
Ledge (Dirt)|段差(土)
|
||||
Ledge (Meadow)|段差(草地)
|
||||
Ledge (Meadow)|段差(草地)
|
||||
Ledge (Meadow)|段差(草地)
|
||||
Ledge (Meadow)|段差(草地)
|
||||
Ledge (Meadow)|段差(草地)
|
||||
Ledge (Dirt)|段差(土)
|
||||
Ledge (Dirt)|段差(土)
|
||||
Ledge (Dirt)|段差(土)
|
||||
Cliff|崖
|
||||
Cliff|崖
|
||||
Cliff|崖
|
||||
Ledge (Dirt)|段差(土)
|
||||
Ledge (Dirt)|段差(土)
|
||||
Cliff|崖
|
||||
Cliff|崖
|
||||
Cliff|崖
|
||||
Cliff (Meadow)|崖(草地)
|
||||
Cliff (Meadow)|崖(草地)
|
||||
Cliff (Meadow)|崖(草地)
|
||||
Ledge (Dirt)|段差(土)
|
||||
Ledge (Dirt)|段差(土)
|
||||
Cliff (Dirt)|崖(土)
|
||||
Cliff (Dirt)|崖(土)
|
||||
Cliff (Dirt)|崖(土)
|
||||
256
www/img/tilesets/Outside_B.txt
Normal file
256
www/img/tilesets/Outside_B.txt
Normal file
|
|
@ -0,0 +1,256 @@
|
|||
Transparent|透明
|
||||
Shop Sign (Sword)|看板(剣)
|
||||
Shop Sign (Sword & Shield)|看板(剣と盾)
|
||||
Shop Sign (Armor)|看板(鎧)
|
||||
Shop Sign (Sack)|看板(袋)
|
||||
Shop Sign (Teapot)|看板(ポット)
|
||||
Shop Sign (Inn)|看板(宿)
|
||||
Shop Sign (Pub)|看板(酒場)
|
||||
Shop Sign (Eatery)|看板(食堂)
|
||||
Shop Sign (Hexagram)|看板(魔法陣)
|
||||
Shop Sign (Staves)|看板(杖)
|
||||
Shop Sign (Coin)|看板(コイン)
|
||||
Shop Sign (Necklace)|看板(ネックレス)
|
||||
Shop Sign (Hammer)|看板(ハンマー)
|
||||
Shop Sign (Crest)|看板(紋章)
|
||||
Shop Sign (Blank)|看板(無地)
|
||||
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)|橋げた(石・右)
|
||||
Window A|窓A
|
||||
Window B|窓B
|
||||
Window C|窓C
|
||||
Window D|窓D
|
||||
Middle Window A|中型窓A
|
||||
Middle Window B|中型窓B
|
||||
Middle Window C|中型窓C
|
||||
Middle Window D|中型窓D
|
||||
Window E|窓E
|
||||
Window F|窓F
|
||||
Window G|窓G
|
||||
Stained Glass Window A|ステンドグラスA
|
||||
Middle Window A|中型窓A
|
||||
Middle Window E|中型窓E
|
||||
Middle Window C|中型窓C
|
||||
Middle Window D|中型窓D
|
||||
Large Window A|大型窓A
|
||||
Large Window B|大型窓B
|
||||
Large Window C|大型窓C
|
||||
Stained Glass Window B|ステンドグラスB
|
||||
Large Window D|大型窓D
|
||||
Middle Window F|中型窓F
|
||||
Middle Window G|中型窓G
|
||||
Middle Window H|中型窓H
|
||||
Large Window A|大型窓A
|
||||
Large Window E|大型窓E
|
||||
Large Window C|大型窓C
|
||||
Stained Glass Window B|ステンドグラスB
|
||||
Large Window D|大型窓D
|
||||
Middle Window F|中型窓F
|
||||
Middle Window G|中型窓G
|
||||
Middle Window H|中型窓H
|
||||
Chimney A|煙突A
|
||||
Mooring Bollard A|ビットA
|
||||
Mooring Bollard B (Rope)|ビットB(ロープ)
|
||||
Entrance A|入口A
|
||||
Entrance A (Extend)|入口A(延長部分)
|
||||
Entrance A (Top Half A)|入口A(上半分A)S
|
||||
Entrance B|入口B
|
||||
Entrance A (Top Half B)|入口A(上半分B)
|
||||
Chimney B|煙突B
|
||||
Sign A|立て札A
|
||||
Sign B|立て札B
|
||||
Well|井戸
|
||||
Stepping Stones|踏み石
|
||||
Barrel|樽
|
||||
Grave A|墓A
|
||||
Grave B|墓B
|
||||
Pot|壺
|
||||
Basin A|桶A
|
||||
Basin B|桶B
|
||||
Rock Fire Pit A|石のかまどA
|
||||
Rock Fire Pit B|石のかまどB
|
||||
Barricade (H)|バリケード(横)
|
||||
Barricade (V)|バリケード(縦)
|
||||
Beanstalk|豆の木
|
||||
Grass A|草A
|
||||
Grass B|草B
|
||||
Grass C|草C
|
||||
Grass D|草D
|
||||
Stump|切り株
|
||||
Tree|木
|
||||
Tree|木
|
||||
Boulder A|岩A
|
||||
Flowers A|花A
|
||||
Flowers B|花B
|
||||
Flowers C|花C
|
||||
Flowers D|花D
|
||||
Fallen Log|倒木
|
||||
Tree|木
|
||||
Bush|植え込み
|
||||
Boulder B|岩B
|
||||
Scarecrow|かかし
|
||||
Hole|穴
|
||||
Firewood|薪
|
||||
Rocks|小石
|
||||
Crops A|農作物A
|
||||
Crops B|農作物B
|
||||
Crops C|農作物C
|
||||
Crops D|農作物D
|
||||
Large Tree|大木
|
||||
Large Tree|大木
|
||||
Large Tree|大木
|
||||
Large Tree|大木
|
||||
Large Crate|大きな木箱
|
||||
Crate A|木箱A
|
||||
Crate B|木箱B
|
||||
Crate C|木箱C
|
||||
Large Tree|大木
|
||||
Large Tree|大木
|
||||
Large Tree|大木
|
||||
Large Tree|大木
|
||||
Large Crate|大きな木箱
|
||||
Crate D|木箱D
|
||||
Crate E|木箱E
|
||||
Crate F|木箱F
|
||||
Conifer Tree (Snow)|針葉樹(雪)
|
||||
Conifer Tree (Snow)|針葉樹(雪)
|
||||
Conifer Tree (Snow)|針葉樹(雪)
|
||||
Conifer Tree (Snow)|針葉樹(雪)
|
||||
Scarecrow (Snow)|かかし(雪)
|
||||
Pot (Snow)|壺(雪)
|
||||
Bucket (Snow)|桶(雪)
|
||||
Crate (Snow)|木箱(雪)
|
||||
Large Conifer Tree (Snow)|大針葉樹(雪)
|
||||
Large Conifer Tree (Snow)|大針葉樹(雪)
|
||||
Large Conifer Tree (Snow)|大針葉樹(雪)
|
||||
Large Conifer Tree (Snow)|大針葉樹(雪)
|
||||
Mooring Bollard (Snow)|ビット(雪)
|
||||
Barricade (H, Snow)|バリケード(横・雪)
|
||||
Barricade (H, Snow)|バリケード(縦・雪)
|
||||
Beanstalk (Snow)|豆の木(雪)
|
||||
Chimney (Snow)|煙突(雪)
|
||||
Sign A (Snow)|立て札A(雪)
|
||||
Sign B (Snow)|立て札B(雪)
|
||||
Well (Snow)|井戸(雪)
|
||||
Stepping Stones (Snow)|踏み石(雪)
|
||||
Barrel (Snow)|樽(雪)
|
||||
Grave A (Snow)|墓A(雪)
|
||||
Grave B (Snow)|墓B(雪)
|
||||
Grass A (Snow)|草A(雪)
|
||||
Grass B (Snow)|草B(雪)
|
||||
Grass C (Snow)|草C(雪)
|
||||
Grass D (Snow)|草D(雪)
|
||||
Stump (Snow)|切り株(雪)
|
||||
Conifer Tree (Snow)|針葉樹(雪)
|
||||
Conifer Tree (Snow)|針葉樹(雪)
|
||||
Boulder A (Snow)|岩A(雪)
|
||||
Snowman|雪だるま
|
||||
Hole (Snow)|穴(雪)
|
||||
Firewood (Snow)|薪(雪)
|
||||
Rocks (Snow)|小石(雪)
|
||||
Fallen Log (Snow)|倒木(雪)
|
||||
Conifer Tree (Snow)|針葉樹(雪)
|
||||
Bush (Snow)|植え込み(雪)
|
||||
Boulder B (Snow)|岩B(雪)
|
||||
Dead Tree|枯れ木
|
||||
Dead Tree|枯れ木
|
||||
Mushrooms A|キノコA
|
||||
Mushrooms B|キノコB
|
||||
Palm Tree|ヤシの木
|
||||
Palm Tree|ヤシの木
|
||||
Cactus|サボテン
|
||||
Dead Grass A|枯れ草A
|
||||
Dead Tree|枯れ木
|
||||
Dead Tree (Shrub)|枯れ木(低木)
|
||||
Rafflesia|ラフレシア
|
||||
Stump (Moss)|切り株(苔)
|
||||
Palm Tree|ヤシの木
|
||||
Bush (Flowers)|植え込み(花)
|
||||
Fern|シダ
|
||||
Dead Grass B|枯れ草B
|
||||
Hay|干し草
|
||||
Hay (Snow)|干し草(雪)
|
||||
Floral Patch|花畑
|
||||
Susuki Grass|ススキ
|
||||
Fallen Leaves|落ち葉
|
||||
Lotus Pads A|蓮の葉A
|
||||
Lotus Pads B (Flowers)|蓮の葉B(花)
|
||||
Lotus Pads C|蓮の葉C
|
||||
Wall Vines A|壁のツタA
|
||||
Wall Vines B|壁のツタB
|
||||
Wall Vines C|壁のツタC
|
||||
Wall Fern|壁のシダ
|
||||
Fissures A|亀裂A
|
||||
Fissures B|亀裂B
|
||||
Fissures C|亀裂C
|
||||
Fissures D|亀裂D
|
||||
Wall Vines A|壁のツタA
|
||||
Wall Vines B|壁のツタB
|
||||
Wall Vines C|壁のツタC
|
||||
Wall Moss|壁の苔
|
||||
Fissures A|亀裂A
|
||||
Fissures B|亀裂B
|
||||
Fissures C|亀裂C
|
||||
Fissures D|亀裂D
|
||||
Tent A|テントA
|
||||
Tent A|テントA
|
||||
Tent A|テントA
|
||||
Streetlight A|街灯A
|
||||
Stairs A (Up)|階段A(上り)
|
||||
Stairs B (Up)|階段B(上り)
|
||||
Stairs C (Up)|階段C(上り)
|
||||
Stairs D (Up)|階段D(上り)
|
||||
Tent A|テントA
|
||||
Tent A|テントA
|
||||
Tent A|テントA
|
||||
Streetlight A|街灯A
|
||||
Stairs A (Down)|階段A(下り)
|
||||
Stairs B (Down)|階段B(下り)
|
||||
Stairs C (Down)|階段C(下り)
|
||||
Stairs D (Down)|階段D(下り)
|
||||
Tent A|テントA
|
||||
Tent A (Entrance)|テントA(入口)
|
||||
Tent A|テントA
|
||||
Streetlight A|街灯A
|
||||
Metal Ladder|鉄ばしご
|
||||
Rope Ladder|縄ばしご
|
||||
Rope|ロープ
|
||||
Vines A|ツタ
|
||||
Tent B (Snow)|テントB(雪)
|
||||
Tent B (Snow)|テントB(雪)
|
||||
Tent B (Snow)|テントB(雪)
|
||||
Streetlight B (Snow)|街灯B(雪)
|
||||
Metal Ladder|鉄ばしご
|
||||
Rope Ladder|縄ばしご
|
||||
Rope|ロープ
|
||||
Vines A|ツタA
|
||||
Tent B (Snow)|テントB(雪)
|
||||
Tent B (Snow)|テントB(雪)
|
||||
Tent B (Snow)|テントB(雪)
|
||||
Streetlight B (Snow)|街灯B(雪)
|
||||
Metal Ladder|鉄ばしご
|
||||
Rope Ladder|縄ばしご
|
||||
Rope|ロープ
|
||||
Vines B (Down)|ツタB(下り)
|
||||
Tent B (Snow)|テントB(雪)
|
||||
Tent B (Entrance, Snow)|テント(入口・雪)
|
||||
Tent B (Snow)|テントB(雪)
|
||||
Streetlight B (Snow)|街灯B(雪)
|
||||
Hole A (Metal Ladder)|穴A(鉄ばしご)
|
||||
Hole B (Rope Ladder)|穴B(縄ばしご)
|
||||
Hole C (Rope)|穴C(ロープ)
|
||||
Hole D|穴D
|
||||
256
www/img/tilesets/Outside_C.txt
Normal file
256
www/img/tilesets/Outside_C.txt
Normal file
|
|
@ -0,0 +1,256 @@
|
|||
Stone Pillar A|石の柱A
|
||||
Stone Pillar B|石の柱B
|
||||
Stone Pillar C|石の柱C
|
||||
Stone Pillar C (Moss)|石の柱C(苔)
|
||||
Stone Pillar C (Snow)|石の柱C(雪)
|
||||
Wood Pillar|木の柱
|
||||
Stone Pillar D|石の柱D
|
||||
Demon Castle Pillar|魔王城の柱
|
||||
Stone Pillar A|石の柱A
|
||||
Stone Pillar B|石の柱B
|
||||
Stone Pillar C|石の柱C
|
||||
Stone Pillar C (Moss)|石の柱C(苔)
|
||||
Stone Pillar C (Snow)|石の柱C(雪)
|
||||
Wood Pillar|木の柱
|
||||
Stone Pillar D|石の柱D
|
||||
Demon Castle Pillar|魔王城の柱
|
||||
Broken Stone Pillar|折れた石の柱A
|
||||
Broken Stone Pillar|折れた石の柱B
|
||||
Broken Stone Pillar|折れた石の柱C
|
||||
Broken Stone Pillar C (Moss)|折れた石の柱C(苔)
|
||||
Broken Stone Pillar C (Snow)|折れた石の柱C(雪)
|
||||
Broken Wood Pillar|折れた木の柱
|
||||
Broken Stone Pillar F|折れた石の柱D
|
||||
Broken Demon Castle Pillar|折れた魔王城の柱
|
||||
Bones A|骸骨A
|
||||
Bones B|骸骨B
|
||||
Rubble|瓦礫A
|
||||
Rubble B (Moss)|瓦礫B(苔)
|
||||
Rubble C (Snow)|瓦礫C(雪)
|
||||
Broken Wood Pillar|折れた木の柱
|
||||
Rubble D|瓦礫D
|
||||
Rubble E (Demon Castle)|瓦礫E(魔王城)
|
||||
Tapestry A|タペストリーA
|
||||
Tapestry A (Ruins)|タペストリーA(廃墟)
|
||||
Tapestry B|タペストリーB
|
||||
Tapestry B (Ruins)|タペストリーB(廃墟)
|
||||
Tapestry C|タペストリーC
|
||||
Tapestry C (Ruins)|タペストリーC(廃墟)
|
||||
Tapestry D|タペストリーD
|
||||
Tapestry D (Ruins)|タペストリーD(廃墟)
|
||||
Tapestry A|タペストリーA
|
||||
Tapestry A (Ruins)|タペストリーA(廃墟)
|
||||
Tapestry B|タペストリーB
|
||||
Tapestry B (Ruins)|タペストリーB(廃墟)
|
||||
Tapestry C|タペストリーC
|
||||
Tapestry C (Ruins)|タペストリーC(廃墟)
|
||||
Tapestry D|タペストリーD
|
||||
Tapestry D (Ruins)|タペストリーD(廃墟)
|
||||
Monument A|石碑A
|
||||
Monument B|石碑B
|
||||
Large Monument|大きな石碑
|
||||
Large Monument|大きな石碑
|
||||
Large Monument|大きな石碑
|
||||
Large Monument (Lit)|大きな石碑(光)
|
||||
Large Monument (Lit)|大きな石碑(光)
|
||||
Large Monument (Lit)|大きな石碑(光)
|
||||
Monument A|石碑A
|
||||
Monument C|石碑C
|
||||
Large Monument|大きな石碑
|
||||
Large Monument|大きな石碑
|
||||
Large Monument|大きな石碑
|
||||
Large Monument (Lit)|大きな石碑(光)
|
||||
Large Monument (Lit)|大きな石碑(光)
|
||||
Large Monument (Lit)|大きな石碑(光)
|
||||
Monument A (Snow)|石碑A(雪)
|
||||
Monument B (Snow)|石碑B(雪)
|
||||
Large Monument (Snow)|大きな石碑(雪)
|
||||
Large Monument (Snow)|大きな石碑(雪)
|
||||
Large Monument (Snow)|大きな石碑(雪)
|
||||
Large Monument (Ruins)|大きな石碑(廃墟)
|
||||
Large Monument (Ruins)|大きな石碑(廃墟)
|
||||
Large Monument (Ruins)|大きな石碑(廃墟)
|
||||
Monument A (Snow)|石碑A(雪)
|
||||
Monument B (Snow)|石碑B(雪)
|
||||
Large Monument (Snow)|大きな石碑(雪)
|
||||
Large Monument (Snow)|大きな石碑(雪)
|
||||
Large Monument (Snow)|大きな石碑(雪)
|
||||
Large Monument (Ruins)|大きな石碑(廃墟)
|
||||
Large Monument (Ruins)|大きな石碑(廃墟)
|
||||
Large Monument (Ruins)|大きな石碑(廃墟)
|
||||
Statue A|石像A
|
||||
Angel Statue A|天使像A
|
||||
Angel Statue B|天使像B
|
||||
Demon Statue|悪魔像
|
||||
Dais|台座
|
||||
Dragon Statue|竜像
|
||||
Dragon Statue|竜像
|
||||
Statue B|石像B
|
||||
Statue A|石像A
|
||||
Angel Statue A|天使像A
|
||||
Angel Statue B|天使像B
|
||||
Demon Statue|悪魔像
|
||||
Dais|台座
|
||||
Dragon Statue|竜像
|
||||
Dragon Statue|竜像
|
||||
Statue B|石像B
|
||||
Statue A (Snow)|石像A(雪)
|
||||
Angel Statue A (Snow)|天使像A(雪)
|
||||
Angel Statue B (Snow)|天使像B(雪)
|
||||
Demon Statue (Snow)|悪魔像(雪)
|
||||
Dais (Snow)|台座(雪)
|
||||
Dragon Statue (Snow)|竜像(雪)
|
||||
Dragon Statue (Snow)|竜像(雪)
|
||||
Ice Statue|氷像
|
||||
Statue A (Snow)|石像A(雪)
|
||||
Angel Statue A (Snow)|天使像A(雪)
|
||||
Angel Statue B (Snow)|天使像B(雪)
|
||||
Demon Statue (Snow)|悪魔像(雪)
|
||||
Dais (Snow)|台座(雪)
|
||||
Dragon Statue (Snow)|竜像(雪)
|
||||
Dragon Statue (Snow)|竜像(雪)
|
||||
Ice Statue|氷像
|
||||
Window A (Demon Castle)|窓A(魔王城)
|
||||
Window B (Demon Castle)|窓B(魔王城)
|
||||
Window C (Demon Castle)|窓C(魔王城)
|
||||
Gravel Mound (Dirt)|土砂A(土)
|
||||
Large Gravel Mound (Dirt)|大きな土砂(土)
|
||||
Large Gravel Mound (Dirt)|大きな土砂(土)
|
||||
Cave Entrance|洞窟入口
|
||||
Mine Entrance|坑道入口
|
||||
Window A (Demon Castle)|窓A(魔王城)
|
||||
Window B (Demon Castle)|窓B(魔王城)
|
||||
Window D (Demon Castle)|窓D(魔王城)
|
||||
Gravel Mound B (Dirt, Snow)|土砂B(土・雪)
|
||||
Large Gravel Mound (Dirt)|大きな土砂(土)
|
||||
Large Gravel Mound (Dirt)|大きな土砂(土)
|
||||
Cave Entrance|洞窟入口
|
||||
Mine Entrance|坑道入口
|
||||
Roof A (Red Tile)|屋根A(赤瓦)
|
||||
Roof A (Red Tile)|屋根A(赤瓦)
|
||||
Roof A (Red Tile)|屋根A(赤瓦)
|
||||
Roof A (Red Tile)|屋根A(赤瓦)
|
||||
Roof A (Red Tile)|屋根A(赤瓦)
|
||||
Roof B (Snow)|屋根B(雪)
|
||||
Roof B (Snow)|屋根B(雪)
|
||||
Roof B (Snow)|屋根B(雪)
|
||||
Roof A (Red Tile)|屋根A(赤瓦)
|
||||
Roof A (Red Tile)|屋根A(赤瓦)
|
||||
Roof A (Red Tile)|屋根A(赤瓦)
|
||||
Roof A (Red Tile)|屋根A(赤瓦)
|
||||
Roof A (Red Tile)|屋根A(赤瓦)
|
||||
Roof B (Snow)|屋根B(雪)
|
||||
Roof B (Snow)|屋根B(雪)
|
||||
Roof B (Snow)|屋根B(雪)
|
||||
Roof A (Red Tile)|屋根A(赤瓦)
|
||||
Roof A (Red Tile)|屋根A(赤瓦)
|
||||
Roof A (Red Tile)|屋根A(赤瓦)
|
||||
Roof B (Snow)|屋根B(雪)
|
||||
Roof B (Snow)|屋根B(雪)
|
||||
Roof B (Snow)|屋根B(雪)
|
||||
Roof B (Snow)|屋根B(雪)
|
||||
Roof B (Snow)|屋根B(雪)
|
||||
Roof C (Indigo Tile)|屋根C(藍瓦)
|
||||
Roof C (Indigo Tile)|屋根C(藍瓦)
|
||||
Roof C (Indigo Tile)|屋根C(藍瓦)
|
||||
Roof B (Snow)|屋根B(雪)
|
||||
Roof B (Snow)|屋根B(雪)
|
||||
Roof D (Wood)|屋根D(木造)
|
||||
Roof D (Wood)|屋根D(木造)
|
||||
Roof D (Wood)|屋根D(木造)
|
||||
Roof C (Indigo Tile)|屋根C(藍瓦)
|
||||
Roof C (Indigo Tile)|屋根C(藍瓦)
|
||||
Roof C (Indigo Tile)|屋根C(藍瓦)
|
||||
Roof C (Indigo Tile)|屋根C(藍瓦)
|
||||
Roof C (Indigo Tile)|屋根C(藍瓦)
|
||||
Roof D (Wood)|屋根D(木造)
|
||||
Roof D (Wood)|屋根D(木造)
|
||||
Roof D (Wood)|屋根D(木造)
|
||||
Roof C (Indigo Tile)|屋根C(藍瓦)
|
||||
Roof C (Indigo Tile)|屋根C(藍瓦)
|
||||
Roof C (Indigo Tile)|屋根C(藍瓦)
|
||||
Roof C (Indigo Tile)|屋根C(藍瓦)
|
||||
Roof C (Indigo Tile)|屋根C(藍瓦)
|
||||
Roof D (Wood)|屋根D(木造)
|
||||
Roof D (Wood)|屋根D(木造)
|
||||
Roof D (Wood)|屋根D(木造)
|
||||
Round Tower A (Castle)|円塔A(城)
|
||||
Round Tower A (Castle)|円塔A(城)
|
||||
Roof Detail A (Red Tile)|屋根飾りA(赤瓦)
|
||||
Roof Detail B (Snow)|屋根飾りB(雪)
|
||||
Roof D (Wood)|屋根D(木造)
|
||||
Roof D (Wood)|屋根D(木造)
|
||||
Round Tower B (Fort)|円塔B(砦)
|
||||
Round Tower B (Fort)|円塔B(砦)
|
||||
Round Tower A (Castle)|円塔A(城)
|
||||
Round Tower A (Castle)|円塔A(城)
|
||||
Roof Detail C (Indigo Tile)|屋根飾りC(藍瓦)
|
||||
Roof Detail D (Wood)|屋根飾りD(木造)
|
||||
Roof D (Wood)|屋根D(木造)
|
||||
Roof D (Wood)|屋根D(木造)
|
||||
Round Tower B (Fort)|円塔B(砦)
|
||||
Round Tower B (Fort)|円塔B(砦)
|
||||
Round Tower A (Castle)|円塔A(城)
|
||||
Round Tower A (Castle)|円塔A(城)
|
||||
Round Tower A (Castle's Spire)|円塔A(城の尖塔)
|
||||
Round Tower A (Castle's Spire)|円塔A(城の尖塔)
|
||||
Round Tower B (Fort)|円塔B(砦)
|
||||
Round Tower B (Fort)|円塔B(砦)
|
||||
Round Tower B (Fort)|円塔B(砦)
|
||||
Round Tower B (Fort)|円塔B(砦)
|
||||
Round Tower A (Castle)|円塔A(城)
|
||||
Round Tower A (Castle)|円塔A(城)
|
||||
Round Tower A (Castle's Spire)|円塔A(城の尖塔)
|
||||
Round Tower A (Castle's Spire)|円塔A(城の尖塔)
|
||||
Round Tower C (Demon Castle)|円塔C(魔王城)
|
||||
Round Tower C (Demon Castle)|円塔C(魔王城)
|
||||
Round Tower B (Fort)|円塔B(砦)
|
||||
Round Tower B (Fort)|円塔B(砦)
|
||||
Round Tower A (Castle)|円塔A(城)
|
||||
Round Tower A (Castle)|円塔A(城)
|
||||
Round Tower A (Castle's Spire)|円塔A(城の尖塔)
|
||||
Round Tower A (Castle's Spire)|円塔A(城の尖塔)
|
||||
Round Tower C (Demon Castle)|円塔C(魔王城)
|
||||
Round Tower C (Demon Castle)|円塔C(魔王城)
|
||||
Round Tower B (Fort)|円塔B(砦)
|
||||
Round Tower B (Fort)|円塔B(砦)
|
||||
Round Tower A (Castle, Snow)|円塔A(城・雪)
|
||||
Round Tower A (Castle, Snow)|円塔A(城・雪)
|
||||
Round Tower A (Castle)|円塔A(城)
|
||||
Round Tower A (Castle)|円塔A(城)
|
||||
Round Tower C (Demon Castle)|円塔C(魔王城)
|
||||
Round Tower C (Demon Castle)|円塔C(魔王城)
|
||||
Round Tower B (Fort, Snow)|円塔B(砦・雪)
|
||||
Round Tower B (Fort, Snow)|円塔B(砦・雪)
|
||||
Round Tower A (Castle, Snow)|円塔A(城・雪)
|
||||
Round Tower A (Castle, Snow)|円塔A(城・雪)
|
||||
Round Tower A (Castle's Spire, Snow)|円塔A(城の尖塔・雪)
|
||||
Round Tower A (Castle's Spire, Snow)|円塔A(城の尖塔・雪)
|
||||
Round Tower C (Demon Castle)|円塔C(魔王城)
|
||||
Round Tower C (Demon Castle)|円塔C(魔王城)
|
||||
Round Tower B (Fort, Snow)|円塔B(砦・雪)
|
||||
Round Tower B (Fort, Snow)|円塔B(砦・雪)
|
||||
Round Tower A (Castle, Snow)|円塔A(城・雪)
|
||||
Round Tower A (Castle, Snow)|円塔A(城・雪)
|
||||
Round Tower A (Castle's Spire, Snow)|円塔A(城の尖塔・雪)
|
||||
Round Tower A (Castle's Spire, Snow)|円塔A(城の尖塔・雪)
|
||||
Round Tower C (Demon Castle)|円塔C(魔王城)
|
||||
Round Tower C (Demon Castle)|円塔C(魔王城)
|
||||
Round Tower B (Fort, Snow)|円塔B(砦・雪)
|
||||
Round Tower B (Fort, Snow)|円塔B(砦・雪)
|
||||
Round Tower A (Castle, Snow)|円塔A(城・雪)
|
||||
Round Tower A (Castle, Snow)|円塔A(城・雪)
|
||||
Round Tower A (Castle's Spire, Snow)|円塔A(城の尖塔・雪)
|
||||
Round Tower A (Castle's Spire, Snow)|円塔A(城の尖塔・雪)
|
||||
Round Tower C (Demon Castle)|円塔C(魔王城)
|
||||
Round Tower C (Demon Castle)|円塔C(魔王城)
|
||||
Round Tower B (Fort, Snow)|円塔B(砦・雪)
|
||||
Round Tower B (Fort, Snow)|円塔B(砦・雪)
|
||||
Round Tower A (Castle, Snow)|円塔A(城・雪)
|
||||
Round Tower A (Castle, Snow)|円塔A(城・雪)
|
||||
Round Tower A (Castle, Snow)|円塔A(城・雪)
|
||||
Round Tower A (Castle, Snow)|円塔A(城・雪)
|
||||
Round Tower B (Fort, Snow)|円塔B(砦・雪)
|
||||
Round Tower B (Fort, Snow)|円塔B(砦・雪)
|
||||
Round Tower B (Fort, Snow)|円塔B(砦・雪)
|
||||
Round Tower B (Fort, Snow)|円塔B(砦・雪)
|
||||
48
www/img/tilesets/SF_Inside_A4.txt
Normal file
48
www/img/tilesets/SF_Inside_A4.txt
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
Wall A (Concrete)|壁A(コンクリート)
|
||||
Wall B (Concrete, Dirty)|壁B(コンクリート・汚れ)
|
||||
Wall C (House)|壁C(現代住宅)
|
||||
Wall D (Metal)|壁D(金属)
|
||||
Wall E (Metal, Red Rust)|壁E(金属・赤錆)
|
||||
Wall F (Metal, Patina)|壁F(金属・緑青錆)
|
||||
Wall G (Barracks)|壁G(バラック)
|
||||
Wall H (Chinese)|壁H(中華風)
|
||||
Wall A (Concrete)|壁A(コンクリート)
|
||||
Wall B (Concrete, Dirty)|壁B(コンクリート・汚れ)
|
||||
Wall C (House)|壁C(現代住宅)
|
||||
Wall D (Metal)|壁D(金属)
|
||||
Wall E (Metal, Red Rust)|壁E(金属・赤錆)
|
||||
Wall F (Metal, Patina)|壁F(金属・緑青錆)
|
||||
Wall G (Barracks)|壁G(バラック)
|
||||
Wall H (Chinese)|壁H(中華風)
|
||||
Wall I (Factory)|壁I(工場)
|
||||
Wall J (Factory)|壁J(工場)
|
||||
Wall K (Building)|壁K(ビル)
|
||||
Wall L (Checkered)|壁L(市松)
|
||||
Interior Wall A (Pattern)|内装壁A(模様)
|
||||
Interior Wall B (Pattern)|内装壁B(模様)
|
||||
Interior Wall C (Pattern)|内装壁C(模様)
|
||||
Wall M (Brick)|壁M(レンガ)
|
||||
Wall I (Factory)|壁I(工場)
|
||||
Wall J (Factory)|壁J(工場)
|
||||
Wall K (Building)|壁K(ビル)
|
||||
Wall L (Checkered)|壁L(市松)
|
||||
Interior Wall A (Pattern)|内装壁A(模様)
|
||||
Interior Wall B (Pattern)|内装壁B(模様)
|
||||
Interior Wall C (Pattern)|内装壁C(模様)
|
||||
Wall M (Brick)|壁M(レンガ)
|
||||
Wall N (Wood)|壁N(木造)
|
||||
Wall O (Wood, Dirty)|壁O(木造・汚れ)
|
||||
Wall P (Artery)|壁P(動脈)
|
||||
Wall Q (In Body)|壁Q(体内)
|
||||
Wall R (Neon)|壁R(ネオン)
|
||||
Wall S (Wire Mesh)|壁S(金網)
|
||||
Wall T (Wire Mesh, Red Rust)|壁T(金網・赤錆)
|
||||
Wall U (Wire Mesh, Patina)|壁U(金網・緑青錆)
|
||||
Wall N (Wood)|壁N(木造)
|
||||
Wall O (Wood, Dirty)|壁O(木造・汚れ)
|
||||
Wall P (Artery)|壁P(動脈)
|
||||
Wall Q (In Body)|壁Q(体内)
|
||||
Wall R (Neon)|壁R(ネオン)
|
||||
Wall S (Wire Mesh)|壁S(金網)
|
||||
Wall T (Wire Mesh, Red Rust)|壁T(金網・赤錆)
|
||||
Wall U (Wire Mesh, Patina)|壁U(金網・緑青錆)
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue