Initial Commit

This commit is contained in:
DazedAnon 2025-01-22 11:50:45 -06:00
commit ed6b4c532a
353 changed files with 1457256 additions and 0 deletions

73
.gitignore vendored Normal file
View file

@ -0,0 +1,73 @@
# 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
!Action_parfect.png_
!Action_parfect_ss.png_
!IconSet.png_
!Title01_char_trial.png_
!Title02_char.png_
!BattlePic
!Estatus
!Event
!Shop
!Enm_30_01.png_
!Enm_30_02.png_
!Enm_30_03.png_
!Enm_30_150_01.png_
!Enm_30_150_02.png_
!Enm_30_150_03.png_
!UI_enmDP.png_
!UI_enmDP_s.png_
!UI_enmHP.png_
!UI_enmHP_s.png_
!BG_HstatusB_win.png_
!totalLv.png_
!totalnumber_100.png_
!C0_02.png_
!C3_battle01.png_
!CEPI_20.png_
!CEPI_21.png_
!CEPI_23.png_
!CEx_memory.png_
!Dungen00.png_
!Dungen01.png_
!Dungen02.png_
!EV_ScreenHideL_ss.png_
!EV_ScreenHideR_ss.png_
!Actor9_shop.png_
!LOGO.png_
!!$Guide_1.png_

14
GameUpdate.bat Normal file
View 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
View 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
View 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

Binary file not shown.

12
package.json Normal file
View 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
View file

@ -0,0 +1,3 @@
username=dazed-translations
repo=sakura-gozen
branch=main

105
patch.bat Normal file
View 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
View 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

23
www/data/Actors.json Normal file
View file

@ -0,0 +1,23 @@
[
null,
{"id":1,"battlerName":"","characterIndex":0,"characterName":"irumina","classId":1,"equips":[1,1,5,9],"faceIndex":0,"faceName":"","traits":[{"code":23,"dataId":5,"value":0}],"initialLevel":1,"maxLevel":99,"name":"イルミナ","nickname":"","note":"<SwitchOnDamage:13>\n<stand_picture:menu_stand0>\n<AddState24Common:62>\n<RemoveState24Common:63>\n<SACItemSwitch:33>\n<RemoveState34Common:342>\n<RemoveState35Common:342>\n<RemoveState36Common:342>\n<RemoveState38Common:342>\n<RemoveState39Common:342>","profile":""},
{"id":2,"battlerName":"","characterIndex":1,"characterName":"Actor1","classId":2,"equips":[0,0,0,0],"faceIndex":0,"faceName":"","traits":[{"code":23,"dataId":5,"value":0}],"initialLevel":1,"maxLevel":99,"name":"セラ","nickname":"","note":"<SwitchOnDamage:14>\n<stand_picture:menu_stand1>\n<AddState24Common:62>\n<RemoveState24Common:63>","profile":""},
{"id":3,"battlerName":"","characterIndex":2,"characterName":"Actor1","classId":3,"equips":[0,0,0,0],"faceIndex":0,"faceName":"","traits":[{"code":23,"dataId":5,"value":0}],"initialLevel":1,"maxLevel":99,"name":"リアン","nickname":"","note":"<SwitchOnDamage:15>\n<stand_picture:menu_stand2>\n<AddState24Common:62>\n<RemoveState24Common:63>","profile":""},
{"id":4,"battlerName":"","characterIndex":3,"characterName":"Actor1","classId":4,"equips":[0,0,0,0],"faceIndex":0,"faceName":"","traits":[{"code":23,"dataId":5,"value":0}],"initialLevel":1,"maxLevel":99,"name":"イニス","nickname":"","note":"<SwitchOnDamage:16>\n<stand_picture:menu_stand3>\n<AddState24Common:62>\n<RemoveState24Common:63>","profile":""},
{"id":5,"battlerName":"","characterIndex":0,"characterName":"","classId":1,"equips":[0,0,0,0],"faceIndex":0,"faceName":"","traits":[],"initialLevel":1,"maxLevel":99,"name":"","nickname":"","note":"","profile":"a\n"},
{"id":6,"battlerName":"","characterIndex":0,"characterName":"","classId":1,"equips":[0,0,0,0],"faceIndex":0,"faceName":"","traits":[],"initialLevel":1,"maxLevel":99,"name":"","nickname":"","note":"","profile":""},
{"id":7,"battlerName":"","characterIndex":0,"characterName":"","classId":1,"equips":[0,0,0,0],"faceIndex":0,"faceName":"","traits":[],"initialLevel":1,"maxLevel":99,"name":"","nickname":"","note":"","profile":""},
{"id":8,"battlerName":"","characterIndex":0,"characterName":"","classId":1,"equips":[0,0,0,0],"faceIndex":0,"faceName":"","traits":[],"initialLevel":1,"maxLevel":99,"name":"","nickname":"","note":"","profile":""},
{"id":9,"battlerName":"","characterIndex":0,"characterName":"","classId":1,"equips":[0,0,0,0],"faceIndex":0,"faceName":"","traits":[],"initialLevel":1,"maxLevel":99,"name":"","nickname":"","note":"","profile":""},
{"id":10,"battlerName":"","characterIndex":0,"characterName":"","classId":1,"equips":[0,0,0,0],"faceIndex":0,"faceName":"","traits":[],"initialLevel":1,"maxLevel":99,"name":"","nickname":"","note":"","profile":""},
{"id":11,"battlerName":"","characterIndex":0,"characterName":"","classId":1,"equips":[0,0,0,0],"faceIndex":0,"faceName":"","traits":[],"initialLevel":1,"maxLevel":99,"name":"","nickname":"","note":"","profile":""},
{"id":12,"battlerName":"","characterIndex":0,"characterName":"","classId":1,"equips":[0,0,0,0],"faceIndex":0,"faceName":"","traits":[],"initialLevel":1,"maxLevel":99,"name":"","nickname":"","note":"","profile":""},
{"id":13,"battlerName":"","characterIndex":0,"characterName":"","classId":1,"equips":[0,0,0,0],"faceIndex":0,"faceName":"","traits":[],"initialLevel":1,"maxLevel":99,"name":"","nickname":"","note":"","profile":""},
{"id":14,"battlerName":"","characterIndex":0,"characterName":"","classId":1,"equips":[0,0,0,0],"faceIndex":0,"faceName":"","traits":[],"initialLevel":1,"maxLevel":99,"name":"","nickname":"","note":"","profile":""},
{"id":15,"battlerName":"","characterIndex":0,"characterName":"","classId":1,"equips":[0,0,0,0],"faceIndex":0,"faceName":"","traits":[],"initialLevel":1,"maxLevel":99,"name":"","nickname":"","note":"","profile":""},
{"id":16,"battlerName":"","characterIndex":0,"characterName":"","classId":1,"equips":[0,0,0,0],"faceIndex":0,"faceName":"","traits":[],"initialLevel":1,"maxLevel":99,"name":"","nickname":"","note":"","profile":""},
{"id":17,"battlerName":"","characterIndex":0,"characterName":"","classId":1,"equips":[0,0,0,0],"faceIndex":0,"faceName":"","traits":[],"initialLevel":1,"maxLevel":99,"name":"","nickname":"","note":"","profile":""},
{"id":18,"battlerName":"","characterIndex":0,"characterName":"","classId":1,"equips":[0,0,0,0],"faceIndex":0,"faceName":"","traits":[],"initialLevel":1,"maxLevel":99,"name":"","nickname":"","note":"","profile":""},
{"id":19,"battlerName":"","characterIndex":0,"characterName":"","classId":1,"equips":[0,0,0,0],"faceIndex":0,"faceName":"","traits":[],"initialLevel":1,"maxLevel":99,"name":"","nickname":"","note":"","profile":""},
{"id":20,"battlerName":"","characterIndex":0,"characterName":"","classId":1,"equips":[0,0,0,0],"faceIndex":0,"faceName":"","traits":[],"initialLevel":1,"maxLevel":99,"name":"ダミー","nickname":"","note":"","profile":""}
]

338171
www/data/Animations.json Normal file

File diff suppressed because it is too large Load diff

543
www/data/Armors.json Normal file
View file

@ -0,0 +1,543 @@
[
null,
{
"id": 1,
"atypeId": 5,
"description": "装着した者の防御力を上げる腕輪。\n防御力2",
"etypeId": 2,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0
}
],
"iconIndex": 145,
"name": "守りの指輪",
"note": "",
"params": [
0,
0,
0,
2,
0,
2,
0,
0
],
"price": 0
},
{
"id": 2,
"atypeId": 5,
"description": "古代のエルフが鍛えたとされる指輪。\n防御力6",
"etypeId": 2,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0
}
],
"iconIndex": 145,
"name": "エルフライトの指輪",
"note": "",
"params": [
0,
0,
0,
6,
0,
6,
0,
0
],
"price": 0
},
{
"id": 3,
"atypeId": 5,
"description": "軽量で丈夫なミスリル製の指輪。\n防御力11",
"etypeId": 2,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0
}
],
"iconIndex": 145,
"name": "ミスリルの指輪",
"note": "",
"params": [
0,
0,
0,
11,
0,
11,
0,
0
],
"price": 0
},
{
"id": 4,
"atypeId": 5,
"description": "希少金属オリハルコンで作られた指輪。\n防御力16",
"etypeId": 2,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0
}
],
"iconIndex": 145,
"name": "オリハルコンの指輪",
"note": "",
"params": [
0,
0,
0,
16,
0,
16,
0,
0
],
"price": 0
},
{
"id": 5,
"atypeId": 1,
"description": "柔らかい革で作られたシンプルな帽子。\n最大MP+4",
"etypeId": 3,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0
}
],
"iconIndex": 134,
"name": "レザーキャップ",
"note": "",
"params": [
0,
4,
0,
0,
0,
0,
0,
0
],
"price": 0
},
{
"id": 6,
"atypeId": 1,
"description": "鍛えられた鉄製のサークレット。\n最大MP+8",
"etypeId": 3,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0
}
],
"iconIndex": 134,
"name": "アイアンサークレット",
"note": "",
"params": [
0,
8,
0,
0,
0,
0,
0,
0
],
"price": 0
},
{
"id": 7,
"atypeId": 1,
"description": "ミスリルで作られた軽量な王冠型装備。\n最大MP+12",
"etypeId": 3,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0
}
],
"iconIndex": 134,
"name": "ミスリルクラウン",
"note": "",
"params": [
0,
12,
0,
0,
0,
0,
0,
0
],
"price": 0
},
{
"id": 8,
"atypeId": 1,
"description": "聖なる力が込められた美しいサークレット。\n最大MP+20",
"etypeId": 3,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0
}
],
"iconIndex": 134,
"name": "聖なるサークレット",
"note": "",
"params": [
0,
20,
0,
0,
0,
0,
0,
0
],
"price": 0
},
{
"id": 9,
"atypeId": 1,
"description": "イルミナの服。\n最大HP+20",
"etypeId": 4,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0
}
],
"iconIndex": 135,
"name": "イルミナの服",
"note": "",
"params": [
20,
0,
0,
0,
0,
0,
0,
0
],
"price": 0
},
{
"id": 10,
"atypeId": 1,
"description": "柔軟な革で作られた軽装の服。\n最大HP+50",
"etypeId": 4,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0
}
],
"iconIndex": 135,
"name": "革のチュニック",
"note": "",
"params": [
50,
0,
0,
0,
0,
0,
0,
0
],
"price": 0
},
{
"id": 11,
"atypeId": 1,
"description": "ミスリル糸を織り込んだ光沢のあるローブ。\n最大HP+120",
"etypeId": 4,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0
}
],
"iconIndex": 135,
"name": "ミスリルローブ",
"note": "",
"params": [
120,
0,
0,
0,
0,
0,
0,
0
],
"price": 0
},
{
"id": 12,
"atypeId": 1,
"description": "かつて偉大な勇者が纏ったとされる衣装。\n最大HP+150",
"etypeId": 4,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0
}
],
"iconIndex": 135,
"name": "勇者のマント",
"note": "",
"params": [
150,
0,
0,
0,
0,
0,
0,
0
],
"price": 0
},
{
"id": 13,
"atypeId": 0,
"description": "",
"etypeId": 2,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0
}
],
"iconIndex": 0,
"name": "",
"note": "",
"params": [
0,
0,
0,
0,
0,
0,
0,
0
],
"price": 0
},
{
"id": 14,
"atypeId": 0,
"description": "",
"etypeId": 2,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0
}
],
"iconIndex": 0,
"name": "",
"note": "",
"params": [
0,
0,
0,
0,
0,
0,
0,
0
],
"price": 0
},
{
"id": 15,
"atypeId": 0,
"description": "",
"etypeId": 2,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0
}
],
"iconIndex": 0,
"name": "",
"note": "",
"params": [
0,
0,
0,
0,
0,
0,
0,
0
],
"price": 0
},
{
"id": 16,
"atypeId": 0,
"description": "",
"etypeId": 2,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0
}
],
"iconIndex": 0,
"name": "",
"note": "",
"params": [
0,
0,
0,
0,
0,
0,
0,
0
],
"price": 0
},
{
"id": 17,
"atypeId": 0,
"description": "",
"etypeId": 2,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0
}
],
"iconIndex": 0,
"name": "",
"note": "",
"params": [
0,
0,
0,
0,
0,
0,
0,
0
],
"price": 0
},
{
"id": 18,
"atypeId": 0,
"description": "",
"etypeId": 2,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0
}
],
"iconIndex": 0,
"name": "",
"note": "",
"params": [
0,
0,
0,
0,
0,
0,
0,
0
],
"price": 0
},
{
"id": 19,
"atypeId": 0,
"description": "",
"etypeId": 2,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0
}
],
"iconIndex": 0,
"name": "",
"note": "",
"params": [
0,
0,
0,
0,
0,
0,
0,
0
],
"price": 0
},
{
"id": 20,
"atypeId": 0,
"description": "",
"etypeId": 2,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0
}
],
"iconIndex": 0,
"name": "",
"note": "",
"params": [
0,
0,
0,
0,
0,
0,
0,
0
],
"price": 0
}
]

3549
www/data/Classes.json Normal file

File diff suppressed because it is too large Load diff

134527
www/data/CommonEvents.json Normal file

File diff suppressed because it is too large Load diff

3043
www/data/Enemies.json Normal file

File diff suppressed because it is too large Load diff

933
www/data/Items.json Normal file
View file

@ -0,0 +1,933 @@
[
null,
{
"id": 1,
"animationId": 41,
"consumable": true,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "HPを30%回復する薬。\nポーション類は毎ターンに1回すぐに使用出来る。",
"effects": [
{
"code": 11,
"dataId": 0,
"value1": 0.3,
"value2": 0
}
],
"hitType": 0,
"iconIndex": 176,
"itypeId": 1,
"name": "ポーション",
"note": "<QuickSkill>\n<enableSwitch:124>\n<EVC 使用時>\ns[124] = false\n</EVC 使用時>\n",
"occasion": 0,
"price": 20,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 2,
"animationId": 41,
"consumable": true,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "HPを50%回復する薬。\nポーション類は毎ターンに1回すぐに使用出来る。",
"effects": [
{
"code": 11,
"dataId": 0,
"value1": 0.5,
"value2": 0
}
],
"hitType": 0,
"iconIndex": 176,
"itypeId": 1,
"name": "上質なポーション",
"note": "<QuickSkill>\n<enableSwitch:124>\n<EVC 使用時>\ns[124] = false\n</EVC 使用時>\n",
"occasion": 0,
"price": 50,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 3,
"animationId": 41,
"consumable": true,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "MPを30%回復する薬。\nポーション類は毎ターンに1回すぐに使用出来る。",
"effects": [
{
"code": 12,
"dataId": 0,
"value1": 0.3,
"value2": 0
}
],
"hitType": 0,
"iconIndex": 176,
"itypeId": 1,
"name": "マナポーション",
"note": "<QuickSkill>\n<enableSwitch:124>\n<EVC 使用時>\ns[124] = false\n</EVC 使用時>\n",
"occasion": 0,
"price": 30,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 4,
"animationId": 41,
"consumable": true,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "MPを50%回復する薬。\nポーション類は毎ターンに1回すぐに使用出来る。",
"effects": [
{
"code": 12,
"dataId": 0,
"value1": 0.5,
"value2": 0
}
],
"hitType": 0,
"iconIndex": 176,
"itypeId": 1,
"name": "上質なマナポーション",
"note": "<QuickSkill>\n<enableSwitch:124>\n<EVC 使用時>\ns[124] = false\n</EVC 使用時>\n",
"occasion": 0,
"price": 60,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 5,
"animationId": 45,
"consumable": true,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "毒場を解除する薬。",
"effects": [
{
"code": 22,
"dataId": 4,
"value1": 1,
"value2": 0
}
],
"hitType": 0,
"iconIndex": 228,
"itypeId": 1,
"name": "解毒薬",
"note": "",
"occasion": 0,
"price": 20,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 6,
"animationId": 52,
"consumable": true,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "5ターンの間攻撃力を強化するポーション。\nポーション類は毎ターンに1回すぐに使用出来る。",
"effects": [
{
"code": 31,
"dataId": 2,
"value1": 5,
"value2": 0
}
],
"hitType": 0,
"iconIndex": 228,
"itypeId": 1,
"name": "アタックポーション",
"note": "<QuickSkill>\n<enableSwitch:124>\n<EVC 使用時>\ns[124] = false\n</EVC 使用時>\n",
"occasion": 0,
"price": 50,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 7,
"animationId": 41,
"consumable": true,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "HPを80%回復する薬。\nポーション類は毎ターンに1回すぐに使用出来る。",
"effects": [
{
"code": 11,
"dataId": 0,
"value1": 0.8,
"value2": 0
}
],
"hitType": 0,
"iconIndex": 176,
"itypeId": 1,
"name": "最上級ポーション",
"note": "<QuickSkill>\n<enableSwitch:124>\n<EVC 使用時>\ns[124] = false\n</EVC 使用時>\n",
"occasion": 0,
"price": 80,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 8,
"animationId": 41,
"consumable": true,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "MPを80%回復する薬。\nポーション類は毎ターンに1回すぐに使用出来る。",
"effects": [
{
"code": 12,
"dataId": 0,
"value1": 0.8,
"value2": 0
}
],
"hitType": 0,
"iconIndex": 176,
"itypeId": 1,
"name": "最上級マナポーション",
"note": "<QuickSkill>\n<enableSwitch:124>\n<EVC 使用時>\ns[124] = false\n</EVC 使用時>\n",
"occasion": 0,
"price": 100,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 9,
"animationId": 41,
"consumable": true,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "植物の悪魔が放つ【瘴気】を浄化するための薬。\n解毒剤に聖なる魔力が込められている。",
"effects": [
{
"code": 22,
"dataId": 27,
"value1": 1,
"value2": 0
},
{
"code": 22,
"dataId": 28,
"value1": 1,
"value2": 0
},
{
"code": 22,
"dataId": 29,
"value1": 1,
"value2": 0
}
],
"hitType": 0,
"iconIndex": 228,
"itypeId": 1,
"name": "瘴気浄化薬",
"note": "",
"occasion": 0,
"price": 40,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 10,
"animationId": 0,
"consumable": true,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "破損した衣服を修復するための裁縫箱。\n【衣服破損】【全裸】を解除する。",
"effects": [
{
"code": 22,
"dataId": 31,
"value1": 1,
"value2": 0
},
{
"code": 22,
"dataId": 32,
"value1": 1,
"value2": 0
},
{
"code": 44,
"dataId": 94,
"value1": 1,
"value2": 0
}
],
"hitType": 0,
"iconIndex": 206,
"itypeId": 1,
"name": "魔法の裁縫箱",
"note": "<VCI変数番号:66>\n<VCI代入値:4>",
"occasion": 0,
"price": 30,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 11,
"animationId": 41,
"consumable": true,
"damage": {
"critical": false,
"elementId": 0,
"formula": "a.gainTp(-100);10",
"type": 3,
"variance": 0
},
"description": "性欲や快楽を抑えるときに飲む薬。\nターンを消費することなく使え、HPも少し回復する。",
"effects": [],
"hitType": 0,
"iconIndex": 85,
"itypeId": 1,
"name": "鎮性剤",
"note": "<QuickSkill>",
"occasion": 0,
"price": 10,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 12,
"animationId": 0,
"consumable": true,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 0,
"itypeId": 1,
"name": "",
"note": "",
"occasion": 0,
"price": 0,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 13,
"animationId": 0,
"consumable": true,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 0,
"itypeId": 1,
"name": "",
"note": "",
"occasion": 0,
"price": 0,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 14,
"animationId": 0,
"consumable": false,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "ゴブリンから付けられた目隠し。\nわざわざ付ける必要は無いが…。",
"effects": [
{
"code": 21,
"dataId": 34,
"value1": 1,
"value2": 0
}
],
"hitType": 0,
"iconIndex": 5,
"itypeId": 1,
"name": "目隠し",
"note": "",
"occasion": 2,
"price": 0,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 15,
"animationId": 0,
"consumable": false,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "ゴブリンから付けられたボールギャグ。\nわざわざ付ける必要は無いが…。",
"effects": [
{
"code": 21,
"dataId": 35,
"value1": 1,
"value2": 0
}
],
"hitType": 0,
"iconIndex": 6,
"itypeId": 1,
"name": "ボールギャグ",
"note": "",
"occasion": 2,
"price": 0,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 16,
"animationId": 0,
"consumable": false,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "【目隠し状態】を解除する。",
"effects": [
{
"code": 22,
"dataId": 34,
"value1": 1,
"value2": 0
}
],
"hitType": 0,
"iconIndex": 5,
"itypeId": 1,
"name": "目隠し解除",
"note": "",
"occasion": 0,
"price": 0,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 17,
"animationId": 0,
"consumable": false,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "【猿轡状態】を解除する。",
"effects": [
{
"code": 22,
"dataId": 35,
"value1": 1,
"value2": 0
}
],
"hitType": 0,
"iconIndex": 6,
"itypeId": 1,
"name": "ボールギャグ解除",
"note": "",
"occasion": 0,
"price": 0,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 18,
"animationId": 0,
"consumable": true,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 0,
"itypeId": 1,
"name": "",
"note": "",
"occasion": 0,
"price": 0,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 19,
"animationId": 0,
"consumable": true,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 0,
"itypeId": 1,
"name": "",
"note": "",
"occasion": 0,
"price": 0,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 20,
"animationId": 0,
"consumable": false,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "魔導機械研究塔で見つけたふたなりの薬。\nおちんちんで気持ちよくなりたければ、飲むのです。",
"effects": [
{
"code": 21,
"dataId": 39,
"value1": 1,
"value2": 0
}
],
"hitType": 0,
"iconIndex": 10,
"itypeId": 1,
"name": "ふたなり薬",
"note": "",
"occasion": 2,
"price": 0,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 21,
"animationId": 0,
"consumable": false,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "【ふたなり】状態を解除する薬。",
"effects": [
{
"code": 22,
"dataId": 39,
"value1": 1,
"value2": 0
}
],
"hitType": 0,
"iconIndex": 10,
"itypeId": 1,
"name": "ふたなり解除薬",
"note": "",
"occasion": 0,
"price": 0,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 22,
"animationId": 0,
"consumable": false,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "普通のタオル。\n【ぶっかけ】状態を解除する。",
"effects": [
{
"code": 22,
"dataId": 36,
"value1": 1,
"value2": 0
}
],
"hitType": 0,
"iconIndex": 7,
"itypeId": 1,
"name": "タオル",
"note": "",
"occasion": 0,
"price": 0,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 23,
"animationId": 0,
"consumable": false,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "洗剤をしみ込ませた洗うためのタオル。\n【ラクガキ】状態を解除する。",
"effects": [
{
"code": 22,
"dataId": 38,
"value1": 1,
"value2": 0
}
],
"hitType": 0,
"iconIndex": 9,
"itypeId": 1,
"name": "洗剤タオル",
"note": "",
"occasion": 0,
"price": 0,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 24,
"animationId": 0,
"consumable": true,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 0,
"itypeId": 1,
"name": "",
"note": "",
"occasion": 0,
"price": 0,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 25,
"animationId": 0,
"consumable": true,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 0,
"itypeId": 1,
"name": "",
"note": "",
"occasion": 0,
"price": 0,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 26,
"animationId": 0,
"consumable": true,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 0,
"itypeId": 1,
"name": "",
"note": "",
"occasion": 0,
"price": 0,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 27,
"animationId": 0,
"consumable": true,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 0,
"itypeId": 1,
"name": "",
"note": "",
"occasion": 0,
"price": 0,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 28,
"animationId": 0,
"consumable": true,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 0,
"itypeId": 1,
"name": "",
"note": "",
"occasion": 0,
"price": 0,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 29,
"animationId": 0,
"consumable": true,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 0,
"itypeId": 1,
"name": "",
"note": "",
"occasion": 0,
"price": 0,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 30,
"animationId": 0,
"consumable": true,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 0,
"itypeId": 1,
"name": "",
"note": "",
"occasion": 0,
"price": 0,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
}
]

10858
www/data/Map001.json Normal file

File diff suppressed because it is too large Load diff

1841
www/data/Map002.json Normal file

File diff suppressed because it is too large Load diff

20708
www/data/Map003.json Normal file

File diff suppressed because it is too large Load diff

27331
www/data/Map004.json Normal file

File diff suppressed because it is too large Load diff

10239
www/data/Map005.json Normal file

File diff suppressed because it is too large Load diff

14909
www/data/Map006.json Normal file

File diff suppressed because it is too large Load diff

12852
www/data/Map007.json Normal file

File diff suppressed because it is too large Load diff

8834
www/data/Map008.json Normal file

File diff suppressed because it is too large Load diff

21810
www/data/Map009.json Normal file

File diff suppressed because it is too large Load diff

28810
www/data/Map010.json Normal file

File diff suppressed because it is too large Load diff

5004
www/data/Map011.json Normal file

File diff suppressed because it is too large Load diff

18863
www/data/Map012.json Normal file

File diff suppressed because it is too large Load diff

18318
www/data/Map013.json Normal file

File diff suppressed because it is too large Load diff

26325
www/data/Map014.json Normal file

File diff suppressed because it is too large Load diff

4082
www/data/Map015.json Normal file

File diff suppressed because it is too large Load diff

3090
www/data/Map016.json Normal file

File diff suppressed because it is too large Load diff

17648
www/data/Map018.json Normal file

File diff suppressed because it is too large Load diff

25884
www/data/Map019.json Normal file

File diff suppressed because it is too large Load diff

18454
www/data/Map020.json Normal file

File diff suppressed because it is too large Load diff

18254
www/data/Map021.json Normal file

File diff suppressed because it is too large Load diff

24882
www/data/Map022.json Normal file

File diff suppressed because it is too large Load diff

59300
www/data/Map023.json Normal file

File diff suppressed because it is too large Load diff

10000
www/data/Map024.json Normal file

File diff suppressed because it is too large Load diff

18946
www/data/Map025.json Normal file

File diff suppressed because it is too large Load diff

59176
www/data/Map026.json Normal file

File diff suppressed because it is too large Load diff

11559
www/data/Map027.json Normal file

File diff suppressed because it is too large Load diff

10397
www/data/Map028.json Normal file

File diff suppressed because it is too large Load diff

11184
www/data/Map029.json Normal file

File diff suppressed because it is too large Load diff

8561
www/data/Map030.json Normal file

File diff suppressed because it is too large Load diff

5361
www/data/Map031.json Normal file

File diff suppressed because it is too large Load diff

2447
www/data/Map032.json Normal file

File diff suppressed because it is too large Load diff

6395
www/data/Map033.json Normal file

File diff suppressed because it is too large Load diff

36
www/data/Map034.json Normal file
View file

@ -0,0 +1,36 @@
{
"autoplayBgm": false,
"autoplayBgs": false,
"battleback1Name": "",
"battleback2Name": "",
"bgm": {
"name": "",
"pan": 0,
"pitch": 100,
"volume": 90
},
"bgs": {
"name": "",
"pan": 0,
"pitch": 100,
"volume": 90
},
"disableDashing": false,
"displayName": "",
"encounterList": [],
"encounterStep": 30,
"height": 0,
"note": "",
"parallaxLoopX": false,
"parallaxLoopY": false,
"parallaxName": "",
"parallaxShow": true,
"parallaxSx": 0,
"parallaxSy": 0,
"scrollType": 0,
"specifyBattleback": false,
"tilesetId": 1,
"width": 0,
"data": [],
"events": []
}

36
www/data/Map035.json Normal file
View file

@ -0,0 +1,36 @@
{
"autoplayBgm": false,
"autoplayBgs": false,
"battleback1Name": "",
"battleback2Name": "",
"bgm": {
"name": "",
"pan": 0,
"pitch": 100,
"volume": 90
},
"bgs": {
"name": "",
"pan": 0,
"pitch": 100,
"volume": 90
},
"disableDashing": false,
"displayName": "",
"encounterList": [],
"encounterStep": 30,
"height": 0,
"note": "",
"parallaxLoopX": false,
"parallaxLoopY": false,
"parallaxName": "",
"parallaxShow": true,
"parallaxSx": 0,
"parallaxSy": 0,
"scrollType": 0,
"specifyBattleback": false,
"tilesetId": 1,
"width": 0,
"data": [],
"events": []
}

5480
www/data/Map036.json Normal file

File diff suppressed because it is too large Load diff

36
www/data/Map037.json Normal file
View file

@ -0,0 +1,36 @@
{
"autoplayBgm": false,
"autoplayBgs": false,
"battleback1Name": "",
"battleback2Name": "",
"bgm": {
"name": "",
"pan": 0,
"pitch": 100,
"volume": 90
},
"bgs": {
"name": "",
"pan": 0,
"pitch": 100,
"volume": 90
},
"disableDashing": false,
"displayName": "",
"encounterList": [],
"encounterStep": 30,
"height": 0,
"note": "",
"parallaxLoopX": false,
"parallaxLoopY": false,
"parallaxName": "",
"parallaxShow": true,
"parallaxSx": 0,
"parallaxSy": 0,
"scrollType": 0,
"specifyBattleback": false,
"tilesetId": 1,
"width": 0,
"data": [],
"events": []
}

4805
www/data/Map038.json Normal file

File diff suppressed because it is too large Load diff

18357
www/data/Map039.json Normal file

File diff suppressed because it is too large Load diff

8016
www/data/Map040.json Normal file

File diff suppressed because it is too large Load diff

6871
www/data/Map041.json Normal file

File diff suppressed because it is too large Load diff

364
www/data/MapInfos.json Normal file
View file

@ -0,0 +1,364 @@
[
null,
{
"id": 1,
"expanded": true,
"name": "テストフィールド",
"order": 38,
"parentId": 5,
"scrollX": 1494,
"scrollY": 1899
},
{
"id": 2,
"expanded": false,
"name": "OP_プレイヤー初期位置",
"order": 1,
"parentId": 0,
"scrollX": 2278,
"scrollY": 1282
},
{
"id": 3,
"expanded": false,
"name": "蛮族の巣食う洞窟1",
"order": 13,
"parentId": 8,
"scrollX": 967,
"scrollY": 1529
},
{
"id": 4,
"expanded": false,
"name": "蛮族の巣食う洞窟3",
"order": 15,
"parentId": 3,
"scrollX": 1453.5,
"scrollY": 1909.5
},
{
"id": 5,
"expanded": false,
"name": "テストマップ",
"order": 36,
"parentId": 0,
"scrollX": 969,
"scrollY": 1273
},
{
"id": 6,
"expanded": true,
"name": "OP_商人を助ける場所",
"order": 2,
"parentId": 2,
"scrollX": 1348.2,
"scrollY": 1165.8
},
{
"id": 7,
"expanded": true,
"name": "廃墟",
"order": 3,
"parentId": 2,
"scrollX": 1828.1999999999998,
"scrollY": 1165.8
},
{
"id": 8,
"expanded": false,
"name": "ワールドマップ",
"order": 12,
"parentId": 0,
"scrollX": 2278,
"scrollY": 1282
},
{
"id": 9,
"expanded": false,
"name": "瘴気満ちる汚染林1",
"order": 16,
"parentId": 8,
"scrollX": 967,
"scrollY": 1529
},
{
"id": 10,
"expanded": false,
"name": "テキスト流し込み用",
"order": 37,
"parentId": 5,
"scrollX": 1494,
"scrollY": 1899
},
{
"id": 11,
"expanded": true,
"name": "遺跡1",
"order": 5,
"parentId": 34,
"scrollX": 1194.5454545454545,
"scrollY": 1388.7272727272727
},
{
"id": 12,
"expanded": true,
"name": "蛮族の巣食う洞窟2",
"order": 14,
"parentId": 3,
"scrollX": 1162.8,
"scrollY": 1527.6
},
{
"id": 13,
"expanded": true,
"name": "瘴気満ちる汚染林2",
"order": 17,
"parentId": 9,
"scrollX": 953,
"scrollY": 1607
},
{
"id": 14,
"expanded": false,
"name": "瘴気満ちる汚染林3",
"order": 18,
"parentId": 9,
"scrollX": 953,
"scrollY": 1525
},
{
"id": 15,
"expanded": false,
"name": "回想時遺跡",
"order": 6,
"parentId": 34,
"scrollX": 657,
"scrollY": 763.8
},
{
"id": 16,
"expanded": true,
"name": "遺跡2",
"order": 7,
"parentId": 34,
"scrollX": 2173.090909090909,
"scrollY": 2762.1818181818185
},
null,
{
"id": 18,
"expanded": false,
"name": "夢の世界_リアンの故郷",
"order": 23,
"parentId": 26,
"scrollX": 969,
"scrollY": 1257
},
{
"id": 19,
"expanded": false,
"name": "夢幻虚空街_最深部",
"order": 27,
"parentId": 26,
"scrollX": 967,
"scrollY": 1287
},
{
"id": 20,
"expanded": true,
"name": "魔導機械研究塔1",
"order": 19,
"parentId": 8,
"scrollX": 967,
"scrollY": 1491
},
{
"id": 21,
"expanded": true,
"name": "魔導機械研究塔2",
"order": 20,
"parentId": 20,
"scrollX": 967,
"scrollY": 1257
},
{
"id": 22,
"expanded": false,
"name": "魔導機械研究塔3",
"order": 21,
"parentId": 20,
"scrollX": 1300.2,
"scrollY": 1509
},
{
"id": 23,
"expanded": true,
"name": "アルマキリアの街",
"order": 28,
"parentId": 0,
"scrollX": 2262,
"scrollY": 1608
},
{
"id": 24,
"expanded": true,
"name": "宿屋",
"order": 29,
"parentId": 23,
"scrollX": 1057.0909090909092,
"scrollY": 1388.7272727272727
},
{
"id": 25,
"expanded": true,
"name": "夢の世界_魔導研究の塔",
"order": 24,
"parentId": 26,
"scrollX": 967,
"scrollY": 1491
},
{
"id": 26,
"expanded": false,
"name": "夢幻ノ虚空街",
"order": 22,
"parentId": 8,
"scrollX": 2262,
"scrollY": 1266
},
{
"id": 27,
"expanded": false,
"name": "孤児院_中",
"order": 35,
"parentId": 33,
"scrollX": 2278,
"scrollY": 1282
},
{
"id": 28,
"expanded": true,
"name": "夢の世界_孤児院",
"order": 25,
"parentId": 26,
"scrollX": 667.0909090909091,
"scrollY": 685.6363636363636
},
{
"id": 29,
"expanded": false,
"name": "イニスの部屋",
"order": 32,
"parentId": 24,
"scrollX": 2278,
"scrollY": 1282
},
{
"id": 30,
"expanded": true,
"name": "イルミナの部屋",
"order": 30,
"parentId": 24,
"scrollX": 2278,
"scrollY": 1282
},
{
"id": 31,
"expanded": true,
"name": "リアンの部屋",
"order": 31,
"parentId": 24,
"scrollX": 969,
"scrollY": 1273
},
{
"id": 32,
"expanded": false,
"name": "イリオスの部屋",
"order": 33,
"parentId": 24,
"scrollX": 969,
"scrollY": 1273
},
{
"id": 33,
"expanded": true,
"name": "孤児院",
"order": 34,
"parentId": 24,
"scrollX": 969,
"scrollY": 1273
},
{
"id": 34,
"expanded": false,
"name": "1章",
"order": 4,
"parentId": 2,
"scrollX": 2173.090909090909,
"scrollY": 2762.1818181818185
},
{
"id": 35,
"expanded": true,
"name": "2章",
"order": 8,
"parentId": 2,
"scrollX": 581.4,
"scrollY": 763.8
},
{
"id": 36,
"expanded": true,
"name": "遺跡_2章終了時",
"order": 9,
"parentId": 35,
"scrollX": 581.4,
"scrollY": 763.8
},
{
"id": 37,
"expanded": true,
"name": "3章",
"order": 10,
"parentId": 2,
"scrollX": 938.5714285714286,
"scrollY": 1091.142857142857
},
{
"id": 38,
"expanded": true,
"name": "遺跡_3章終了時",
"order": 11,
"parentId": 37,
"scrollX": 2173.090909090909,
"scrollY": 2762.1818181818185
},
{
"id": 39,
"expanded": false,
"name": "回想部屋",
"order": 39,
"parentId": 0,
"scrollX": 2278,
"scrollY": 1282
},
{
"id": 40,
"expanded": false,
"name": "夢の世界_花の道",
"order": 26,
"parentId": 26,
"scrollX": 969,
"scrollY": 1273
},
{
"id": 41,
"expanded": false,
"name": "ED",
"order": 40,
"parentId": 0,
"scrollX": 969,
"scrollY": 1273
}
]

7375
www/data/Skills.json Normal file

File diff suppressed because it is too large Load diff

24
www/data/SoundTest.csv Normal file
View file

@ -0,0 +1,24 @@
fileName,displayName,description,type
"勇者がいた世界","勇者がいた世界","タイトル画面BGM","bgm"
"危機","危機","イベントシーンBGM","bgm"
"勇者が世界を救うと信じて!","勇者が世界を救うと信じて!","イベントシーンBGM","bgm"
"商人さんは焦ってる","商人さんは焦ってる","商人キャロのイベントシーンBGM","bgm"
"敵を見据えて","敵を見据えて","通常戦闘BGM","bgm"
"映る世界は","映る世界は","ワールドマップBGM","bgm"
"束の間の平穏","束の間の平穏","イベントシーンBGM","bgm"
"アルマキリアの街","アルマキリアの街","アルマキリアの街BGM","bgm"
"緊迫","緊迫","ボス戦闘前BGM","bgm"
"蛮族の巣食う洞穴","蛮族の巣食う洞穴","ダンジョン、蛮族の巣食う洞窟BGM","bgm"
"誰が為に戦う","誰が為に戦う","ドレッドウォー戦BGM","bgm"
"瘴気満ちる汚染林","瘴気満ちる汚染林","ダンジョン、瘴気満ちる汚染林BGM","bgm"
"瘴気散らす森の支配者","瘴気散らす森の支配者","インフェリアード戦BGM","bgm"
"旧魔導機械研究塔","旧魔導機械研究塔","ダンジョン、旧魔導機械研究塔BGM","bgm"
"魔塔に君臨する鋼鉄の探求者","魔塔に君臨する鋼鉄の探求者","マクスウェル戦BGM","bgm"
"わたしの大切なおもいで","わたしの大切なおもいで","夜イベントBGM","bgm"
"おやすみ","おやすみ","イベントシーンBGM","bgm"
"ナイトメア","ナイトメア","イベントシーンBGM","bgm"
"夢幻ノ虚空街","夢幻ノ虚空街","ダンジョン、夢幻虚空街BGM","bgm"
"わたしの、さいごのたたかい","わたしの、さいごのたたかい","ナイトメア戦BGM","bgm"
"戦いの後で","戦いの後で","イベントシーンBGM","bgm"
"勇者の眠り","勇者の眠り","エンディングBGM","bgm"
"皆のために","皆のために","3人と会話を重ねる事で聴ける隠しBGM。","bgm"
1 fileName displayName description type
2 勇者がいた世界 勇者がいた世界 タイトル画面BGM bgm
3 危機 危機 イベントシーンBGM bgm
4 勇者が世界を救うと信じて! 勇者が世界を救うと信じて! イベントシーンBGM bgm
5 商人さんは焦ってる 商人さんは焦ってる 商人キャロのイベントシーンBGM bgm
6 敵を見据えて 敵を見据えて 通常戦闘BGM bgm
7 映る世界は 映る世界は ワールドマップBGM bgm
8 束の間の平穏 束の間の平穏 イベントシーンBGM bgm
9 アルマキリアの街 アルマキリアの街 アルマキリアの街BGM bgm
10 緊迫 緊迫 ボス戦闘前BGM bgm
11 蛮族の巣食う洞穴 蛮族の巣食う洞穴 ダンジョン、蛮族の巣食う洞窟BGM bgm
12 誰が為に戦う 誰が為に戦う ドレッドウォー戦BGM bgm
13 瘴気満ちる汚染林 瘴気満ちる汚染林 ダンジョン、瘴気満ちる汚染林BGM bgm
14 瘴気散らす森の支配者 瘴気散らす森の支配者 インフェリアード戦BGM bgm
15 旧魔導機械研究塔 旧魔導機械研究塔 ダンジョン、旧魔導機械研究塔BGM bgm
16 魔塔に君臨する鋼鉄の探求者 魔塔に君臨する鋼鉄の探求者 マクスウェル戦BGM bgm
17 わたしの大切なおもいで わたしの大切なおもいで 夜イベントBGM bgm
18 おやすみ おやすみ イベントシーンBGM bgm
19 ナイトメア ナイトメア イベントシーンBGM bgm
20 夢幻ノ虚空街 夢幻ノ虚空街 ダンジョン、夢幻ノ虚空街BGM bgm
21 わたしの、さいごのたたかい わたしの、さいごのたたかい ナイトメア戦BGM bgm
22 戦いの後で 戦いの後で イベントシーンBGM bgm
23 勇者の眠り 勇者の眠り エンディングBGM bgm
24 皆のために 皆のために 3人と会話を重ねる事で聴ける隠しBGM。 bgm

2792
www/data/States.json Normal file

File diff suppressed because it is too large Load diff

2022
www/data/System.json Normal file

File diff suppressed because it is too large Load diff

163446
www/data/Tilesets.json Normal file

File diff suppressed because it is too large Load diff

9987
www/data/Troops.json Normal file

File diff suppressed because it is too large Load diff

168
www/data/Weapons.json Normal file
View file

@ -0,0 +1,168 @@
[
null,
{
"id": 1,
"animationId": 6,
"description": "光の力を宿した聖なる腕輪。\n攻撃力2",
"etypeId": 1,
"traits": [
{
"code": 31,
"dataId": 1,
"value": 0
},
{
"code": 22,
"dataId": 0,
"value": 0
}
],
"iconIndex": 97,
"name": "光の腕輪",
"note": "",
"params": [
0,
0,
2,
0,
2,
0,
0,
0
],
"price": 0,
"wtypeId": 2
},
{
"id": 2,
"animationId": 6,
"description": "聖なる光が脈打つ腕輪。\n攻撃力6",
"etypeId": 1,
"traits": [
{
"code": 31,
"dataId": 1,
"value": 0
},
{
"code": 22,
"dataId": 0,
"value": 0
}
],
"iconIndex": 97,
"name": "聖光の腕輪",
"note": "",
"params": [
0,
0,
6,
0,
6,
0,
0,
0
],
"price": 0,
"wtypeId": 2
},
{
"id": 3,
"animationId": 6,
"description": "天からの裁きを象徴する腕輪。\n攻撃力11",
"etypeId": 1,
"traits": [
{
"code": 31,
"dataId": 1,
"value": 0
},
{
"code": 22,
"dataId": 0,
"value": 0
}
],
"iconIndex": 97,
"name": "裁きの腕輪",
"note": "",
"params": [
0,
0,
11,
0,
11,
0,
0,
0
],
"price": 0,
"wtypeId": 2
},
{
"id": 4,
"animationId": 6,
"description": "人々の祈りと希望が結晶化した腕輪。\n攻撃力16",
"etypeId": 1,
"traits": [
{
"code": 31,
"dataId": 1,
"value": 0
},
{
"code": 22,
"dataId": 0,
"value": 0
}
],
"iconIndex": 97,
"name": "希望の腕輪",
"note": "",
"params": [
0,
0,
16,
0,
16,
0,
0,
0
],
"price": 0,
"wtypeId": 2
},
{
"id": 5,
"animationId": 0,
"description": "",
"etypeId": 1,
"traits": [
{
"code": 31,
"dataId": 1,
"value": 0
},
{
"code": 22,
"dataId": 0,
"value": 0
}
],
"iconIndex": 0,
"name": "",
"note": "",
"params": [
0,
0,
0,
0,
0,
0,
0,
0
],
"price": 0,
"wtypeId": 0
}
]

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View 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石壁

View 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|毒の沼

View 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氷洞窟

View 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金・廃墟

View 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|鉄格子

View 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魔王城

View 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魔王城

View 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

View 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舞台

View 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

Some files were not shown because too many files have changed in this diff Show more