Initial Commit
This commit is contained in:
commit
d9118bd10f
504 changed files with 3620452 additions and 0 deletions
57
.gitignore
vendored
Normal file
57
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
# Ignore all files
|
||||
*.*
|
||||
|
||||
# File Types
|
||||
!*.mps
|
||||
!*.dat
|
||||
!*.json
|
||||
!*.txt
|
||||
!*.project
|
||||
!*.js
|
||||
!*.zip
|
||||
!*.7z
|
||||
!*.csv
|
||||
!*.ain
|
||||
!*.fnl
|
||||
!*.ks
|
||||
!*.tjs
|
||||
!*.yaml
|
||||
!*.rb
|
||||
!*.rvdata2
|
||||
|
||||
# Other Needed Files
|
||||
!.gitignore
|
||||
!README.md
|
||||
!patch-config.txt
|
||||
!GameUpdate*
|
||||
!patch*
|
||||
!Game.dat
|
||||
!bsxx.dat*
|
||||
!game.ini
|
||||
|
||||
# Ignore
|
||||
previous_patch_sha.txt
|
||||
kabe3_save.dat
|
||||
kabe3_system.dat
|
||||
psbpack.dat
|
||||
Save*
|
||||
cg.dat
|
||||
scene.dat
|
||||
BSXScript_*
|
||||
|
||||
# Images
|
||||
!clys1.rpgmvp
|
||||
!eroste_0.rpgmvp
|
||||
!eroste_1.rpgmvp
|
||||
!eroste_2.rpgmvp
|
||||
!eroste_3.rpgmvp
|
||||
!eroste_4.rpgmvp
|
||||
!hp_2.rpgmvp
|
||||
!hp_3.rpgmvp
|
||||
!hp_4.rpgmvp
|
||||
!hp_5.rpgmvp
|
||||
!hp_6.rpgmvp
|
||||
!hp_7.rpgmvp
|
||||
!hp_8.rpgmvp
|
||||
!hp_9.rpgmvp
|
||||
!Map.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
|
||||
102
README.md
Normal file
102
README.md
Normal file
|
|
@ -0,0 +1,102 @@
|
|||
# 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
|
||||
|
||||
For WOLF RPG games, if you downloaded the game off of DLSite, you will need to do some extra steps to patch it. This is because there is a "master" file called Data.wolf that will take priority over the english patch files. You will need this file to be a folder before patching will work.
|
||||
|
||||
# Wolf Games
|
||||
1) Download the latest UberWolf.exe release from the following link:
|
||||
https://github.com/Sinflower/UberWolf/releases
|
||||
2) Drag Data.wolf onto UberWolf.exe. This will create a new folder called data.wolf~
|
||||
3) Rename the new data.wolf~ folder to Data
|
||||
4) Delete the Data.wolf file
|
||||
5) Delete previous_patch_sha.txt (this will exist if you ran GameUpdate.bat previously)
|
||||
6) Run GameUpdate.bat
|
||||
|
||||
# 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.
|
||||
213
data/Actors.json
Normal file
213
data/Actors.json
Normal file
|
|
@ -0,0 +1,213 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"battlerName": "",
|
||||
"characterIndex": 4,
|
||||
"characterName": "01_主人公",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "00",
|
||||
"traits": [
|
||||
{
|
||||
"code": 51,
|
||||
"dataId": 15,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 51,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 52,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 11,
|
||||
"dataId": 2,
|
||||
"value": 1.05
|
||||
},
|
||||
{
|
||||
"code": 11,
|
||||
"dataId": 10,
|
||||
"value": 1.05
|
||||
}
|
||||
],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "支倉五鈴",
|
||||
"nickname": "作中唯一の常識人",
|
||||
"note": "<attackVoice:Normal_Attack_Voice_01,Normal_Attack_Voice_02,Normal_Attack_Voice_03>\n<damageVoice:Normal_Attack_Voice_04,Normal_Attack_Voice_05,Normal_Attack_Voice_06>\n<evadeVoice:Normal_Attack_Voice_07>\n<firstVoice:Normal_Attack_Voice_08,Normal_Attack_Voice_09,Normal_Attack_Voice_10,Normal_Attack_Voice_11>\n<victoryVoice:Normal_Attack_Voice_12,Normal_Attack_Voice_13,Normal_Attack_Voice_14>\n<allDeadVoice:Normal_Attack_Voice_15,Normal_Attack_Voice_16>",
|
||||
"profile": "常識人だがドスケベ学園入学にあたり、エロ知識を詰め込んで意気込んでいた。\nしかし普通のセックスがしたいため反逆。ドスケベ学園を変えるため奔走することに"
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"battlerName": "",
|
||||
"characterIndex": 6,
|
||||
"characterName": "SF_Actor3",
|
||||
"classId": 2,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "高野君",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": "とある秘密を抱えた塩顔イケメン。\n"
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
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,
|
||||
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,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
}
|
||||
]
|
||||
674898
data/Animations.json
Normal file
674898
data/Animations.json
Normal file
File diff suppressed because it is too large
Load diff
4581
data/Armors.json
Normal file
4581
data/Armors.json
Normal file
File diff suppressed because it is too large
Load diff
9210
data/Classes.json
Normal file
9210
data/Classes.json
Normal file
File diff suppressed because it is too large
Load diff
1355807
data/CommonEvents.json
Normal file
1355807
data/CommonEvents.json
Normal file
File diff suppressed because it is too large
Load diff
6122
data/Enemies.json
Normal file
6122
data/Enemies.json
Normal file
File diff suppressed because it is too large
Load diff
1640
data/Items.json
Normal file
1640
data/Items.json
Normal file
File diff suppressed because it is too large
Load diff
2068
data/Map001.json
Normal file
2068
data/Map001.json
Normal file
File diff suppressed because it is too large
Load diff
12604
data/Map002.json
Normal file
12604
data/Map002.json
Normal file
File diff suppressed because it is too large
Load diff
65014
data/Map003.json
Normal file
65014
data/Map003.json
Normal file
File diff suppressed because it is too large
Load diff
89176
data/Map004.json
Normal file
89176
data/Map004.json
Normal file
File diff suppressed because it is too large
Load diff
24109
data/Map005.json
Normal file
24109
data/Map005.json
Normal file
File diff suppressed because it is too large
Load diff
17155
data/Map006.json
Normal file
17155
data/Map006.json
Normal file
File diff suppressed because it is too large
Load diff
48846
data/Map007.json
Normal file
48846
data/Map007.json
Normal file
File diff suppressed because it is too large
Load diff
37281
data/Map008.json
Normal file
37281
data/Map008.json
Normal file
File diff suppressed because it is too large
Load diff
33667
data/Map009.json
Normal file
33667
data/Map009.json
Normal file
File diff suppressed because it is too large
Load diff
10890
data/Map010.json
Normal file
10890
data/Map010.json
Normal file
File diff suppressed because it is too large
Load diff
45744
data/Map011.json
Normal file
45744
data/Map011.json
Normal file
File diff suppressed because it is too large
Load diff
18589
data/Map012.json
Normal file
18589
data/Map012.json
Normal file
File diff suppressed because it is too large
Load diff
10308
data/Map013.json
Normal file
10308
data/Map013.json
Normal file
File diff suppressed because it is too large
Load diff
12733
data/Map014.json
Normal file
12733
data/Map014.json
Normal file
File diff suppressed because it is too large
Load diff
11829
data/Map015.json
Normal file
11829
data/Map015.json
Normal file
File diff suppressed because it is too large
Load diff
9179
data/Map016.json
Normal file
9179
data/Map016.json
Normal file
File diff suppressed because it is too large
Load diff
12197
data/Map017.json
Normal file
12197
data/Map017.json
Normal file
File diff suppressed because it is too large
Load diff
14993
data/Map018.json
Normal file
14993
data/Map018.json
Normal file
File diff suppressed because it is too large
Load diff
13920
data/Map019.json
Normal file
13920
data/Map019.json
Normal file
File diff suppressed because it is too large
Load diff
30438
data/Map020.json
Normal file
30438
data/Map020.json
Normal file
File diff suppressed because it is too large
Load diff
14731
data/Map021.json
Normal file
14731
data/Map021.json
Normal file
File diff suppressed because it is too large
Load diff
6034
data/Map022.json
Normal file
6034
data/Map022.json
Normal file
File diff suppressed because it is too large
Load diff
7101
data/Map023.json
Normal file
7101
data/Map023.json
Normal file
File diff suppressed because it is too large
Load diff
49719
data/Map024.json
Normal file
49719
data/Map024.json
Normal file
File diff suppressed because it is too large
Load diff
43878
data/Map025.json
Normal file
43878
data/Map025.json
Normal file
File diff suppressed because it is too large
Load diff
36690
data/Map026.json
Normal file
36690
data/Map026.json
Normal file
File diff suppressed because it is too large
Load diff
10655
data/Map027.json
Normal file
10655
data/Map027.json
Normal file
File diff suppressed because it is too large
Load diff
8792
data/Map028.json
Normal file
8792
data/Map028.json
Normal file
File diff suppressed because it is too large
Load diff
11002
data/Map029.json
Normal file
11002
data/Map029.json
Normal file
File diff suppressed because it is too large
Load diff
11952
data/Map030.json
Normal file
11952
data/Map030.json
Normal file
File diff suppressed because it is too large
Load diff
11742
data/Map031.json
Normal file
11742
data/Map031.json
Normal file
File diff suppressed because it is too large
Load diff
12201
data/Map032.json
Normal file
12201
data/Map032.json
Normal file
File diff suppressed because it is too large
Load diff
7541
data/Map033.json
Normal file
7541
data/Map033.json
Normal file
File diff suppressed because it is too large
Load diff
3998
data/Map034.json
Normal file
3998
data/Map034.json
Normal file
File diff suppressed because it is too large
Load diff
6431
data/Map035.json
Normal file
6431
data/Map035.json
Normal file
File diff suppressed because it is too large
Load diff
7775
data/Map036.json
Normal file
7775
data/Map036.json
Normal file
File diff suppressed because it is too large
Load diff
8526
data/Map037.json
Normal file
8526
data/Map037.json
Normal file
File diff suppressed because it is too large
Load diff
6051
data/Map038.json
Normal file
6051
data/Map038.json
Normal file
File diff suppressed because it is too large
Load diff
6662
data/Map039.json
Normal file
6662
data/Map039.json
Normal file
File diff suppressed because it is too large
Load diff
1938
data/Map040.json
Normal file
1938
data/Map040.json
Normal file
File diff suppressed because it is too large
Load diff
10670
data/Map041.json
Normal file
10670
data/Map041.json
Normal file
File diff suppressed because it is too large
Load diff
8810
data/Map042.json
Normal file
8810
data/Map042.json
Normal file
File diff suppressed because it is too large
Load diff
8188
data/Map043.json
Normal file
8188
data/Map043.json
Normal file
File diff suppressed because it is too large
Load diff
8483
data/Map044.json
Normal file
8483
data/Map044.json
Normal file
File diff suppressed because it is too large
Load diff
9890
data/Map045.json
Normal file
9890
data/Map045.json
Normal file
File diff suppressed because it is too large
Load diff
9645
data/Map046.json
Normal file
9645
data/Map046.json
Normal file
File diff suppressed because it is too large
Load diff
9280
data/Map047.json
Normal file
9280
data/Map047.json
Normal file
File diff suppressed because it is too large
Load diff
8872
data/Map048.json
Normal file
8872
data/Map048.json
Normal file
File diff suppressed because it is too large
Load diff
10639
data/Map049.json
Normal file
10639
data/Map049.json
Normal file
File diff suppressed because it is too large
Load diff
485
data/MapInfos.json
Normal file
485
data/MapInfos.json
Normal file
|
|
@ -0,0 +1,485 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"expanded": true,
|
||||
"name": "OP",
|
||||
"order": 3,
|
||||
"parentId": 0,
|
||||
"scrollX": 811,
|
||||
"scrollY": 453.5,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"expanded": true,
|
||||
"name": "学園 -通学路-",
|
||||
"order": 5,
|
||||
"parentId": 3,
|
||||
"scrollX": 1622,
|
||||
"scrollY": 923,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"expanded": true,
|
||||
"name": "学園 -校庭-",
|
||||
"order": 4,
|
||||
"parentId": 0,
|
||||
"scrollX": 1622,
|
||||
"scrollY": 923,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"expanded": true,
|
||||
"name": "学園 -体育館-",
|
||||
"order": 6,
|
||||
"parentId": 3,
|
||||
"scrollX": 1622,
|
||||
"scrollY": 923
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"expanded": true,
|
||||
"name": "お試し空間",
|
||||
"order": 1,
|
||||
"parentId": 0,
|
||||
"scrollX": 1638,
|
||||
"scrollY": 1035,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"expanded": true,
|
||||
"name": "放課後_自由時間_学園 -生徒会執行部-",
|
||||
"order": 10,
|
||||
"parentId": 3,
|
||||
"scrollX": 1216,
|
||||
"scrollY": 640,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"expanded": true,
|
||||
"name": "学園 -学生寮-",
|
||||
"order": 47,
|
||||
"parentId": 3,
|
||||
"scrollX": 1622.1818181818182,
|
||||
"scrollY": 1372.909090909091,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"expanded": true,
|
||||
"name": "学園 -玄関-",
|
||||
"order": 12,
|
||||
"parentId": 3,
|
||||
"scrollX": 811,
|
||||
"scrollY": 569.5,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"expanded": true,
|
||||
"name": "学園 -部室棟-",
|
||||
"order": 28,
|
||||
"parentId": 3,
|
||||
"scrollX": 1018,
|
||||
"scrollY": 640,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"expanded": false,
|
||||
"name": "学園 -保健室-",
|
||||
"order": 13,
|
||||
"parentId": 8,
|
||||
"scrollX": 1035,
|
||||
"scrollY": 503.5,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"expanded": true,
|
||||
"name": "学園 -教室-",
|
||||
"order": 14,
|
||||
"parentId": 8,
|
||||
"scrollX": 973.3333333333334,
|
||||
"scrollY": 640.4444444444445
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"expanded": true,
|
||||
"name": "幕間用_学園 -ゲーミングちんぽ茶道部-",
|
||||
"order": 38,
|
||||
"parentId": 9,
|
||||
"scrollX": 816,
|
||||
"scrollY": 517.7777777777778,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"expanded": true,
|
||||
"name": "幕間用_学園 -マゾちんぽランド運営部-",
|
||||
"order": 40,
|
||||
"parentId": 9,
|
||||
"scrollX": 816,
|
||||
"scrollY": 624.4444444444445,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"expanded": true,
|
||||
"name": "幕間用_学園 -オホ声合唱部-",
|
||||
"order": 37,
|
||||
"parentId": 9,
|
||||
"scrollX": 1622,
|
||||
"scrollY": 923,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"expanded": true,
|
||||
"name": "幕間用_学園 -ドスケベ物理学部-",
|
||||
"order": 39,
|
||||
"parentId": 9,
|
||||
"scrollX": 816,
|
||||
"scrollY": 624.4444444444445,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"expanded": true,
|
||||
"name": "幕間用_学園 -バトルファックお嬢様部-",
|
||||
"order": 44,
|
||||
"parentId": 9,
|
||||
"scrollX": 816,
|
||||
"scrollY": 624.5,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"expanded": true,
|
||||
"name": "幕間用_学園 -ご令嬢聖水開発部-",
|
||||
"order": 43,
|
||||
"parentId": 9,
|
||||
"scrollX": 816,
|
||||
"scrollY": 624.4444444444445,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"expanded": true,
|
||||
"name": "幕間用_学園 -オナニー大会執行部-",
|
||||
"order": 42,
|
||||
"parentId": 9,
|
||||
"scrollX": 816,
|
||||
"scrollY": 624.5,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"expanded": true,
|
||||
"name": "幕間用_学園 -母乳研究部-",
|
||||
"order": 41,
|
||||
"parentId": 9,
|
||||
"scrollX": 816,
|
||||
"scrollY": 624.4444444444445,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"expanded": true,
|
||||
"name": "学園 -中庭-",
|
||||
"order": 18,
|
||||
"parentId": 8,
|
||||
"scrollX": 884.7272727272727,
|
||||
"scrollY": 646.3636363636364,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 21,
|
||||
"expanded": true,
|
||||
"name": "学園 -SM館-",
|
||||
"order": 26,
|
||||
"parentId": 20,
|
||||
"scrollX": 1035,
|
||||
"scrollY": 615.5,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"expanded": true,
|
||||
"name": "学園 -男子トイレ-",
|
||||
"order": 17,
|
||||
"parentId": 8,
|
||||
"scrollX": 811,
|
||||
"scrollY": 461.5
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"expanded": false,
|
||||
"name": "学園 -女子トイレ-",
|
||||
"order": 16,
|
||||
"parentId": 8,
|
||||
"scrollX": 884.7272727272727,
|
||||
"scrollY": 718.3636363636364
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"expanded": true,
|
||||
"name": "ドスケベ学園 -裏山第一階層-",
|
||||
"order": 19,
|
||||
"parentId": 20,
|
||||
"scrollX": 1622,
|
||||
"scrollY": 923
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"expanded": true,
|
||||
"name": "ドスケベ学園 -裏山第三階層-",
|
||||
"order": 23,
|
||||
"parentId": 20,
|
||||
"scrollX": 1622,
|
||||
"scrollY": 1957
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"expanded": false,
|
||||
"name": "ドスケベ学園 -裏山第二階層-",
|
||||
"order": 22,
|
||||
"parentId": 20,
|
||||
"scrollX": 1622,
|
||||
"scrollY": 1717
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"expanded": false,
|
||||
"name": "ドスケベ学園 -牢獄-",
|
||||
"order": 24,
|
||||
"parentId": 20,
|
||||
"scrollX": 884.7272727272727,
|
||||
"scrollY": 844.909090909091,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"expanded": false,
|
||||
"name": "ドスケベ学園 -神社-",
|
||||
"order": 25,
|
||||
"parentId": 20,
|
||||
"scrollX": 974.2222222222222,
|
||||
"scrollY": 748.8888888888889,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"expanded": false,
|
||||
"name": "学園 -体育倉庫-",
|
||||
"order": 7,
|
||||
"parentId": 4,
|
||||
"scrollX": 728,
|
||||
"scrollY": 680.4444444444445,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"expanded": true,
|
||||
"name": "ドスケベ学園 -裏山隠し部屋-",
|
||||
"order": 20,
|
||||
"parentId": 24,
|
||||
"scrollX": 1622,
|
||||
"scrollY": 923,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 31,
|
||||
"expanded": false,
|
||||
"name": "ドスケベ学園 -体育館管理室-",
|
||||
"order": 8,
|
||||
"parentId": 4,
|
||||
"scrollX": 1622,
|
||||
"scrollY": 923,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 32,
|
||||
"expanded": false,
|
||||
"name": "ドスケベ学園 -監禁部屋-",
|
||||
"order": 27,
|
||||
"parentId": 21,
|
||||
"scrollX": 1622,
|
||||
"scrollY": 923,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 33,
|
||||
"expanded": false,
|
||||
"name": "ドスケベ学園 -マリィの部屋-",
|
||||
"order": 21,
|
||||
"parentId": 24,
|
||||
"scrollX": 811,
|
||||
"scrollY": 552.5,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 34,
|
||||
"expanded": true,
|
||||
"name": "とある廊下",
|
||||
"order": 48,
|
||||
"parentId": 0,
|
||||
"scrollX": 884.7272727272727,
|
||||
"scrollY": 503.4545454545455,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 35,
|
||||
"expanded": false,
|
||||
"name": "ドスケベ学園 -ペット小屋-",
|
||||
"order": 49,
|
||||
"parentId": 34,
|
||||
"scrollX": 884.7272727272727,
|
||||
"scrollY": 555.8181818181819,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 36,
|
||||
"expanded": true,
|
||||
"name": "学園 -亀頭漫湖の隠し部屋-",
|
||||
"order": 45,
|
||||
"parentId": 9,
|
||||
"scrollX": 720.8888888888889,
|
||||
"scrollY": 800.4444444444445,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 37,
|
||||
"expanded": false,
|
||||
"name": "学園 -秘密の部屋-",
|
||||
"order": 11,
|
||||
"parentId": 6,
|
||||
"scrollX": 884.4444444444445,
|
||||
"scrollY": 614.6666666666666,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 38,
|
||||
"expanded": false,
|
||||
"name": "特別肉便器棟",
|
||||
"order": 46,
|
||||
"parentId": 36,
|
||||
"scrollX": 720.8888888888889,
|
||||
"scrollY": 591.5555555555555,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 39,
|
||||
"expanded": true,
|
||||
"name": "放課後授業用教室",
|
||||
"order": 15,
|
||||
"parentId": 11,
|
||||
"scrollX": 973.1999999999999,
|
||||
"scrollY": 553.8
|
||||
},
|
||||
{
|
||||
"id": 40,
|
||||
"expanded": true,
|
||||
"name": "",
|
||||
"order": 2,
|
||||
"parentId": 0,
|
||||
"scrollX": 1622,
|
||||
"scrollY": 923,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 41,
|
||||
"expanded": true,
|
||||
"name": "メイン用_学園 -オホ声合唱部-",
|
||||
"order": 29,
|
||||
"parentId": 9,
|
||||
"scrollX": 819,
|
||||
"scrollY": 624.5,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 42,
|
||||
"expanded": true,
|
||||
"name": "メイン用_学園 -ゲーミングちんぽ茶道部-",
|
||||
"order": 30,
|
||||
"parentId": 9,
|
||||
"scrollX": 861.3333333333334,
|
||||
"scrollY": 493.77777777777777,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 43,
|
||||
"expanded": true,
|
||||
"name": "メイン用_学園 -ドスケベ物理学部-",
|
||||
"order": 31,
|
||||
"parentId": 9,
|
||||
"scrollX": 869,
|
||||
"scrollY": 453.5,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 44,
|
||||
"expanded": true,
|
||||
"name": "メイン用_学園 -マゾちんぽランド運営部-",
|
||||
"order": 32,
|
||||
"parentId": 9,
|
||||
"scrollX": 816,
|
||||
"scrollY": 624.5,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 45,
|
||||
"expanded": true,
|
||||
"name": "メイン用_学園 -母乳研究部-",
|
||||
"order": 33,
|
||||
"parentId": 9,
|
||||
"scrollX": 816,
|
||||
"scrollY": 624.5,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 46,
|
||||
"expanded": true,
|
||||
"name": "メイン用_学園 -オナニー大会執行部-",
|
||||
"order": 34,
|
||||
"parentId": 9,
|
||||
"scrollX": 819,
|
||||
"scrollY": 624.5,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 47,
|
||||
"expanded": true,
|
||||
"name": "メイン用_学園 -ご令嬢聖水開発部-",
|
||||
"order": 35,
|
||||
"parentId": 9,
|
||||
"scrollX": 816,
|
||||
"scrollY": 624.5,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 48,
|
||||
"expanded": true,
|
||||
"name": "メイン用_学園 -バトルファックお嬢様部-",
|
||||
"order": 36,
|
||||
"parentId": 9,
|
||||
"scrollX": 816,
|
||||
"scrollY": 624.5,
|
||||
"quick": false
|
||||
},
|
||||
{
|
||||
"id": 49,
|
||||
"expanded": true,
|
||||
"name": "放課後前_学園 -生徒会執行部-",
|
||||
"order": 9,
|
||||
"parentId": 3,
|
||||
"scrollX": 1216,
|
||||
"scrollY": 624,
|
||||
"quick": false
|
||||
}
|
||||
]
|
||||
17398
data/Skills.json
Normal file
17398
data/Skills.json
Normal file
File diff suppressed because it is too large
Load diff
1977
data/States.json
Normal file
1977
data/States.json
Normal file
File diff suppressed because it is too large
Load diff
2453
data/System.json
Normal file
2453
data/System.json
Normal file
File diff suppressed because it is too large
Load diff
287100
data/Tilesets.json
Normal file
287100
data/Tilesets.json
Normal file
File diff suppressed because it is too large
Load diff
8221
data/Troops.json
Normal file
8221
data/Troops.json
Normal file
File diff suppressed because it is too large
Load diff
3268
data/Weapons.json
Normal file
3268
data/Weapons.json
Normal file
File diff suppressed because it is too large
Load diff
19739
data/plugin/UltraHUD.json
Normal file
19739
data/plugin/UltraHUD.json
Normal file
File diff suppressed because it is too large
Load diff
BIN
icudtl.dat
Normal file
BIN
icudtl.dat
Normal file
Binary file not shown.
5
img/characters/mori/メモ.txt
Normal file
5
img/characters/mori/メモ.txt
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
|
||||
・自然物なので影が■につくと不自然になる事があるので
|
||||
影ペンで適度に消したり描いたりしてください。
|
||||
|
||||
・キャラクターの中に入っている木陰を使って影演出してください。
|
||||
75
img/tilesets/00_新規プロジェクトのタイルセット全削除後に
Normal file
75
img/tilesets/00_新規プロジェクトのタイルセット全削除後に
Normal file
|
|
@ -0,0 +1,75 @@
|
|||
|
||||
|
||||
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||
|
||||
この度は本製品をダウンロード頂き誠にありがとうございます。
|
||||
|
||||
体験版では製品版の序盤をプレイすることができます。
|
||||
プレイ環境や製品版購入の参考にしていただければ幸いです。
|
||||
|
||||
本作品はRPGツクールVXAceで制作されています。
|
||||
プレイするにはRPGツクールVXAce RTPをインストールしてください。
|
||||
|
||||
http://tkool.jp/support/download/rpgvxace/rtp
|
||||
|
||||
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||
|
||||
■使用素材クレジット■
|
||||
この場をお借りしまして、素材製作者様に御礼申し上げます
|
||||
|
||||
■素 材■
|
||||
コミュ将 :https://ux.getuploader.com/RPGsozai_souko/
|
||||
|
||||
ゆきはな :https://yukihanagame.wixsite.com/papermoon
|
||||
|
||||
チョコレート粉砕機 :http://chocomill.blog.fc2.com/
|
||||
|
||||
tokkuri :http://tokkuritomattari.blog.fc2.com/
|
||||
|
||||
ドット絵世界 :https://yms.main.jp/
|
||||
|
||||
黒幕亭劇場 :http://asunana.blog.fc2.com/
|
||||
|
||||
BOUGAINVILLEA :http://bougainvillea.egoism.jp/
|
||||
|
||||
BIT/O :https://bit-orchard.hatenablog.com/
|
||||
|
||||
FSMマップ素材集 ~森と洞窟セット~ :https://refmap.wixsite.com/fsm-material/material02
|
||||
|
||||
《お豆腐村》 :twitter/otofumura
|
||||
|
||||
《Had2Apps》 :http://had2apps.com/
|
||||
|
||||
|
||||
■サウンド■
|
||||
2014 DEGICA.com :https://plaza.komodo.jp/products/ddp-mv-modern-jp
|
||||
Musician: Scythuz
|
||||
|
||||
M-ART :https://mart.kitunebi.com/
|
||||
|
||||
MusMus :http://musmus.main.jp/
|
||||
|
||||
Presence of Music :http://www.presence-of-music.com/index.html
|
||||
|
||||
優限会社Arwo :https://www.dlsite.com/maniax/circle/profile/=/maker_id/RG12394.html
|
||||
および萌え豚協会
|
||||
|
||||
T.M.BACH :https://audiostock.jp/artists/5020
|
||||
|
||||
PANICPUMPKIN :http://panicpumpkin.omiki.com/index.html
|
||||
:http://pansound.com/
|
||||
|
||||
レマノルド :https://enikaitashiro.com/
|
||||
|
||||
甘茶の音楽工房 :http://amachamusic.chagasi.com/
|
||||
|
||||
童謡・唱歌の世界 :http://www5b.biglobe.ne.jp/~pst/douyou-syouka/
|
||||
|
||||
魔王魂様 :https://maoudamashii.jokersounds.com/
|
||||
|
||||
WEB WAVE LIB :http://www.s-t-t.com/wwl/
|
||||
|
||||
月に憑かれたピエロ :http://uyuu.jp/
|
||||
|
||||
ポケットサウンド :http://pocket-se.info/
|
||||
|
||||
75
img/tilesets/01_ここのやついれる
Normal file
75
img/tilesets/01_ここのやついれる
Normal file
|
|
@ -0,0 +1,75 @@
|
|||
|
||||
|
||||
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||
|
||||
この度は本製品をダウンロード頂き誠にありがとうございます。
|
||||
|
||||
体験版では製品版の序盤をプレイすることができます。
|
||||
プレイ環境や製品版購入の参考にしていただければ幸いです。
|
||||
|
||||
本作品はRPGツクールVXAceで制作されています。
|
||||
プレイするにはRPGツクールVXAce RTPをインストールしてください。
|
||||
|
||||
http://tkool.jp/support/download/rpgvxace/rtp
|
||||
|
||||
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||
|
||||
■使用素材クレジット■
|
||||
この場をお借りしまして、素材製作者様に御礼申し上げます
|
||||
|
||||
■素 材■
|
||||
コミュ将 :https://ux.getuploader.com/RPGsozai_souko/
|
||||
|
||||
ゆきはな :https://yukihanagame.wixsite.com/papermoon
|
||||
|
||||
チョコレート粉砕機 :http://chocomill.blog.fc2.com/
|
||||
|
||||
tokkuri :http://tokkuritomattari.blog.fc2.com/
|
||||
|
||||
ドット絵世界 :https://yms.main.jp/
|
||||
|
||||
黒幕亭劇場 :http://asunana.blog.fc2.com/
|
||||
|
||||
BOUGAINVILLEA :http://bougainvillea.egoism.jp/
|
||||
|
||||
BIT/O :https://bit-orchard.hatenablog.com/
|
||||
|
||||
FSMマップ素材集 ~森と洞窟セット~ :https://refmap.wixsite.com/fsm-material/material02
|
||||
|
||||
《お豆腐村》 :twitter/otofumura
|
||||
|
||||
《Had2Apps》 :http://had2apps.com/
|
||||
|
||||
|
||||
■サウンド■
|
||||
2014 DEGICA.com :https://plaza.komodo.jp/products/ddp-mv-modern-jp
|
||||
Musician: Scythuz
|
||||
|
||||
M-ART :https://mart.kitunebi.com/
|
||||
|
||||
MusMus :http://musmus.main.jp/
|
||||
|
||||
Presence of Music :http://www.presence-of-music.com/index.html
|
||||
|
||||
優限会社Arwo :https://www.dlsite.com/maniax/circle/profile/=/maker_id/RG12394.html
|
||||
および萌え豚協会
|
||||
|
||||
T.M.BACH :https://audiostock.jp/artists/5020
|
||||
|
||||
PANICPUMPKIN :http://panicpumpkin.omiki.com/index.html
|
||||
:http://pansound.com/
|
||||
|
||||
レマノルド :https://enikaitashiro.com/
|
||||
|
||||
甘茶の音楽工房 :http://amachamusic.chagasi.com/
|
||||
|
||||
童謡・唱歌の世界 :http://www5b.biglobe.ne.jp/~pst/douyou-syouka/
|
||||
|
||||
魔王魂様 :https://maoudamashii.jokersounds.com/
|
||||
|
||||
WEB WAVE LIB :http://www.s-t-t.com/wwl/
|
||||
|
||||
月に憑かれたピエロ :http://uyuu.jp/
|
||||
|
||||
ポケットサウンド :http://pocket-se.info/
|
||||
|
||||
75
img/tilesets/02_read meを忘れずに
Normal file
75
img/tilesets/02_read meを忘れずに
Normal file
|
|
@ -0,0 +1,75 @@
|
|||
|
||||
|
||||
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||
|
||||
この度は本製品をダウンロード頂き誠にありがとうございます。
|
||||
|
||||
体験版では製品版の序盤をプレイすることができます。
|
||||
プレイ環境や製品版購入の参考にしていただければ幸いです。
|
||||
|
||||
本作品はRPGツクールVXAceで制作されています。
|
||||
プレイするにはRPGツクールVXAce RTPをインストールしてください。
|
||||
|
||||
http://tkool.jp/support/download/rpgvxace/rtp
|
||||
|
||||
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||
|
||||
■使用素材クレジット■
|
||||
この場をお借りしまして、素材製作者様に御礼申し上げます
|
||||
|
||||
■素 材■
|
||||
コミュ将 :https://ux.getuploader.com/RPGsozai_souko/
|
||||
|
||||
ゆきはな :https://yukihanagame.wixsite.com/papermoon
|
||||
|
||||
チョコレート粉砕機 :http://chocomill.blog.fc2.com/
|
||||
|
||||
tokkuri :http://tokkuritomattari.blog.fc2.com/
|
||||
|
||||
ドット絵世界 :https://yms.main.jp/
|
||||
|
||||
黒幕亭劇場 :http://asunana.blog.fc2.com/
|
||||
|
||||
BOUGAINVILLEA :http://bougainvillea.egoism.jp/
|
||||
|
||||
BIT/O :https://bit-orchard.hatenablog.com/
|
||||
|
||||
FSMマップ素材集 ~森と洞窟セット~ :https://refmap.wixsite.com/fsm-material/material02
|
||||
|
||||
《お豆腐村》 :twitter/otofumura
|
||||
|
||||
《Had2Apps》 :http://had2apps.com/
|
||||
|
||||
|
||||
■サウンド■
|
||||
2014 DEGICA.com :https://plaza.komodo.jp/products/ddp-mv-modern-jp
|
||||
Musician: Scythuz
|
||||
|
||||
M-ART :https://mart.kitunebi.com/
|
||||
|
||||
MusMus :http://musmus.main.jp/
|
||||
|
||||
Presence of Music :http://www.presence-of-music.com/index.html
|
||||
|
||||
優限会社Arwo :https://www.dlsite.com/maniax/circle/profile/=/maker_id/RG12394.html
|
||||
および萌え豚協会
|
||||
|
||||
T.M.BACH :https://audiostock.jp/artists/5020
|
||||
|
||||
PANICPUMPKIN :http://panicpumpkin.omiki.com/index.html
|
||||
:http://pansound.com/
|
||||
|
||||
レマノルド :https://enikaitashiro.com/
|
||||
|
||||
甘茶の音楽工房 :http://amachamusic.chagasi.com/
|
||||
|
||||
童謡・唱歌の世界 :http://www5b.biglobe.ne.jp/~pst/douyou-syouka/
|
||||
|
||||
魔王魂様 :https://maoudamashii.jokersounds.com/
|
||||
|
||||
WEB WAVE LIB :http://www.s-t-t.com/wwl/
|
||||
|
||||
月に憑かれたピエロ :http://uyuu.jp/
|
||||
|
||||
ポケットサウンド :http://pocket-se.info/
|
||||
|
||||
16
img/tilesets/Dungeon_A1.txt
Normal file
16
img/tilesets/Dungeon_A1.txt
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
Water A|水場A
|
||||
Deep Water|深い水場
|
||||
Swamp Grass|水草
|
||||
Lotus Pads (Flowers)|蓮の葉(花)
|
||||
Lava|溶岩
|
||||
Waterfall A (Lava Cave)|滝A(溶岩洞窟)
|
||||
Water B (Grass Maze)|水場B(草迷宮)
|
||||
Waterfall B (Grass Maze)|滝B(草迷宮)
|
||||
Water C (Dirt Cave)|水場C(土洞窟)
|
||||
Waterfall C (Dirt Cave)|滝C(土洞窟)
|
||||
Water D (Rock Cave)|水場D(岩洞窟)
|
||||
Waterfall D (Rock Cave)|滝D(岩洞窟)
|
||||
Water E (Crystal)|水場E(水晶)
|
||||
Waterfall E (Crystal)|滝E(水晶)
|
||||
Canal|水路
|
||||
Waterfall (Stone Wall)|滝F(石壁)
|
||||
32
img/tilesets/Dungeon_A2.txt
Normal file
32
img/tilesets/Dungeon_A2.txt
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
Ground A (Dirt Cave)|床A(土洞窟)
|
||||
Ground B (Grass Maze)|床B(草迷宮)
|
||||
Dark Ground A (Dirt Cave)|濃い床A(土洞窟)
|
||||
Dark Ground B (Grass Maze)|濃い床B(草迷宮)
|
||||
Hole A (Dirt Cave)|穴A(土洞窟)
|
||||
Hole B (Grass Maze)|穴B(草迷宮)
|
||||
Hole I (Stone Floor)|穴I(石の床)
|
||||
Ground Cracks|床のひび割れ
|
||||
Ground C (Rock Cave)|床C(岩洞窟)
|
||||
Ground D (Crystal)|床D(水晶)
|
||||
Dark Ground C (Rock Cave)|濃い床C(岩洞窟)
|
||||
Dark Ground D (Crystal)|濃い床D(水晶)
|
||||
Hole C (Rock Cave)|穴C(岩洞窟)
|
||||
Hole D (Crystal)|穴D(水晶)
|
||||
Hole J|穴J
|
||||
Soil on Ground|床の汚れ
|
||||
Ground E (Lava Cave)|床E(溶岩洞窟)
|
||||
Ground F (In Body)|床F(体内)
|
||||
Dark Ground E (Lava Cave)|濃い床E(溶岩洞窟)
|
||||
Rug A|じゅうたんA
|
||||
Hole E (Lava Cave)|穴E(溶岩洞窟)
|
||||
Hole F (In Body)|穴F(体内)
|
||||
Fencepost|柵
|
||||
Moss on Ground|床の苔
|
||||
Ground G (Ice Cave)|床G(氷洞窟)
|
||||
Ground H (Demonic World)|床H(魔界)
|
||||
Dark Ground G (Ice Cave)|濃い床G(氷洞窟)
|
||||
Rug B|じゅうたんB
|
||||
Hole G (Ice Cave)|穴G(氷洞窟)
|
||||
Hole H (Demonic World)|穴H(魔界)
|
||||
Raised Stone|石段
|
||||
Poison Swamp|毒の沼
|
||||
48
img/tilesets/Dungeon_A4.txt
Normal file
48
img/tilesets/Dungeon_A4.txt
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
Wall A (Dirt Cave)|壁A(土洞窟)
|
||||
Wall B (Rock Cave)|壁B(岩洞窟)
|
||||
Wall C (Lava Cave)|壁C(溶岩洞窟)
|
||||
Wall D (Ice Cave)|壁D(氷洞窟)
|
||||
Wall E (Grass Maze)|壁E(草迷宮)
|
||||
Wall F (Crystal)|壁F(水晶)
|
||||
Wall G (In Body)|壁G(体内)
|
||||
Wall H (Demonic World)|壁H(魔界)
|
||||
Wall A (Dirt Cave)|壁A(土洞窟)
|
||||
Wall B (Rock Cave)|壁B(岩洞窟)
|
||||
Wall C (Lava Cave)|壁C(溶岩洞窟)
|
||||
Wall D (Ice Cave)|壁D(氷洞窟)
|
||||
Wall E (Grass Maze)|壁E(草迷宮)
|
||||
Wall F (Crystal)|壁F(水晶)
|
||||
Wall G (In Body)|壁G(体内)
|
||||
Wall H (Demonic World)|壁H(魔界)
|
||||
Wall I (Stone)|壁I(石)
|
||||
Wall J (Brick)|壁J(レンガ)
|
||||
Wall K (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
img/tilesets/Dungeon_A5.txt
Normal file
128
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
img/tilesets/Dungeon_B.txt
Normal file
256
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
img/tilesets/Dungeon_C.txt
Normal file
256
img/tilesets/Dungeon_C.txt
Normal file
|
|
@ -0,0 +1,256 @@
|
|||
Decorative Pillar A (Stone)|装飾柱A(石)
|
||||
Decorative Pillar B (Stone)|装飾柱B(石)
|
||||
Decorative Pillar C (Temple)|装飾柱C(遺跡)
|
||||
Decorative Pillar D (Rock Cave)|装飾柱D(岩洞窟)
|
||||
Decorative Pillar E (Demon Castle)|装飾柱E(魔王城)
|
||||
Decorative Pillar F (Fort)|装飾柱F(砦)
|
||||
Decorative Pillar G (Dirt Cave)|装飾柱G(土洞窟)
|
||||
Decorative Pillar H (Factory)|装飾柱H(工場)
|
||||
Decorative Pillar A (Stone)|装飾柱A(石)
|
||||
Decorative Pillar B (Stone)|装飾柱B(石)
|
||||
Decorative Pillar C (Temple)|装飾柱C(遺跡)
|
||||
Decorative Pillar D (Rock Cave)|装飾柱D(岩洞窟)
|
||||
Decorative Pillar E (Demon Castle)|装飾柱E(魔王城)
|
||||
Decorative Pillar F (Fort)|装飾柱F(砦)
|
||||
Decorative Pillar G (Dirt Cave)|装飾柱G(土洞窟)
|
||||
Decorative Pillar H (Factory)|装飾柱H(工場)
|
||||
Decorative Pillar A (Stone)|装飾柱A(石)
|
||||
Decorative Pillar B (Stone)|装飾柱B(石)
|
||||
Decorative Pillar C (Temple)|装飾柱C(遺跡)
|
||||
Decorative Pillar D (Rock Cave)|装飾柱D(岩洞窟)
|
||||
Decorative Pillar E (Demon Castle)|装飾柱E(魔王城)
|
||||
Decorative Pillar F (Fort)|装飾柱F(砦)
|
||||
Decorative Pillar G (Dirt Cave)|装飾柱G(土洞窟)
|
||||
Decorative Pillar H (Factory)|装飾柱H(工場)
|
||||
Decorative Pillar A (Stone, Ruins)|装飾柱A(石・廃墟)
|
||||
Decorative Pillar B (Stone, Ruins)|装飾柱B(石・廃墟)
|
||||
Decorative Pillar C (Temple, Ruins)|装飾柱C(遺跡・廃墟)
|
||||
Decorative Pillar D (Rock Cave, Ruins)|装飾柱D(岩洞窟・廃墟)
|
||||
Decorative Pillar E (Demon Castle, Ruins)|装飾柱E(魔王城・廃墟)
|
||||
Decorative Pillar F (Fort, Ruins)|装飾柱F(砦・廃墟)
|
||||
Decorative Pillar G (Dirt Cave, Ruins)|装飾柱G(土洞窟・廃墟)
|
||||
Decorative Pillar A (Stone, Front, Ruins)|装飾柱A(石・手前・廃墟)
|
||||
Decorative Pillar A (Stone, Ruins)|装飾柱A(石・廃墟)
|
||||
Decorative Pillar B (Stone, Ruins)|装飾柱B(石・廃墟)
|
||||
Decorative Pillar C (Temple, Ruins)|装飾柱C(遺跡・廃墟)
|
||||
Decorative Pillar D (Rock Cave, Ruins)|装飾柱D(岩洞窟・廃墟)
|
||||
Decorative Pillar E (Demon Castle, Ruins)|装飾柱E(魔王城・廃墟)
|
||||
Decorative Pillar F (Fort, Ruins)|装飾柱F(砦・廃墟)
|
||||
Decorative Pillar G (Dirt Cave, Ruins)|装飾柱G(土洞窟・廃墟)
|
||||
Decorative Pillar D (Rock Cave, Front, Ruins)|装飾柱F(岩洞窟・手前・廃墟)
|
||||
Decorative Pillar A (Stone, Ruins)|装飾柱A(石・廃墟)
|
||||
Decorative Pillar B (Stone, Ruins)|装飾柱B(石・廃墟)
|
||||
Decorative Pillar C (Temple, Ruins)|装飾柱C(遺跡・廃墟)
|
||||
Decorative Pillar D (Rock Cave, Ruins)|装飾柱D(岩洞窟・廃墟)
|
||||
Decorative Pillar E (Demon Castle, Ruins)|装飾柱E(魔王城・廃墟)
|
||||
Decorative Pillar F (Fort, Ruins)|装飾柱F(砦・廃墟)
|
||||
Decorative Pillar G (Dirt Cave, Ruins)|装飾柱G(土洞窟・廃墟)
|
||||
Decorative Pillar F (Fort, Front, Ruins)|装飾柱F(砦・手前・廃墟)
|
||||
Decorative Pillar A (Stone, Front)|装飾柱A(石・手前)
|
||||
Decorative Pillar B (Stone, Front)|装飾柱B(石・手前)
|
||||
Decorative Pillar C (Temple, Front)|装飾柱C(神殿・手前)
|
||||
Decorative Pillar D (Rock Cave, Front)|装飾柱D(岩洞窟・手前)
|
||||
Decorative Pillar E (Demon Castle, Front)|装飾柱E(魔王城・手前)
|
||||
Decorative Pillar F (Fort, Front)|装飾柱F(砦・手前)
|
||||
Decorative Pillar G (Dirt Cave, Front)|装飾柱G(土洞窟・手前)
|
||||
Decorative Pillar H (Factory, Front)|装飾柱H(工場・手前)
|
||||
Gate A|門A
|
||||
Gate A|門A
|
||||
Gate A|門A
|
||||
Gate B|門B
|
||||
Gate B|門B
|
||||
Gate B|門B
|
||||
Decorative Pillar I (Demonic)|装飾柱I(悪魔)
|
||||
Decorative Pillar I (Demonic, Ruins)|装飾柱I(悪魔・廃墟)
|
||||
Gate A|門A
|
||||
Gate A|門A
|
||||
Gate A|門A
|
||||
Gate B|門B
|
||||
Gate B|門B
|
||||
Gate B|門B
|
||||
Decorative Pillar I (Demonic)|装飾柱I(悪魔)
|
||||
Decorative Pillar I (Demonic, Ruins)|装飾柱I(悪魔・廃墟)
|
||||
Gate A|門A
|
||||
Gate A|門A
|
||||
Gate A|門A
|
||||
Gate B|門B
|
||||
Gate B|門B
|
||||
Gate B|門B
|
||||
Coffin A (Right)|棺A(右)
|
||||
Coffin A (Right)|棺A(右)
|
||||
Hexagram|魔法陣
|
||||
Hexagram|魔法陣
|
||||
Hexagram|魔法陣
|
||||
Hexagram (Lit)|魔法陣(光)
|
||||
Hexagram (Lit)|魔法陣(光)
|
||||
Hexagram (Lit)|魔法陣(光)
|
||||
Coffin B (Top)|棺B(上)
|
||||
Coffin C (Bottom)|棺C(下)
|
||||
Hexagram|魔法陣
|
||||
Hexagram|魔法陣
|
||||
Hexagram|魔法陣
|
||||
Hexagram (Lit)|魔法陣(光)
|
||||
Hexagram (Lit)|魔法陣(光)
|
||||
Hexagram (Lit)|魔法陣(光)
|
||||
Coffin B (Top)|棺B(上)
|
||||
Coffin C (Bottom)|棺C(下)
|
||||
Hexagram|魔法陣
|
||||
Hexagram|魔法陣
|
||||
Hexagram|魔法陣
|
||||
Hexagram (Lit)|魔法陣(光)
|
||||
Hexagram (Lit)|魔法陣(光)
|
||||
Hexagram (Lit)|魔法陣(光)
|
||||
Coffin D (Left)|棺D(左)
|
||||
Coffin D (Left)|棺D(左)
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Rails (Ruins)|線路(廃墟)
|
||||
Rails (Ruins)|線路(廃墟)
|
||||
Rails (Ruins)|線路(廃墟)
|
||||
Rails (Ruins)|線路(廃墟)
|
||||
Rails|線路
|
||||
Railroad Ties A|枕木A
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Railroad Ties B|枕木B
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Mural A|壁画A
|
||||
Hieroglyph|ヒエログリフ
|
||||
Hieroglyph|ヒエログリフ
|
||||
Large Mural A|大きな壁画A
|
||||
Large Mural A|大きな壁画A
|
||||
Large Mural A|大きな壁画A
|
||||
Bed|ベッド
|
||||
Bed (Ruins)|ベッド(廃墟)
|
||||
Mural B|壁画B
|
||||
Hieroglyph|ヒエログリフ
|
||||
Hieroglyph|ヒエログリフ
|
||||
Large Mural B|大きな壁画B
|
||||
Large Mural B|大きな壁画B
|
||||
Large Mural B|大きな壁画B
|
||||
Bed|ベッド
|
||||
Bed (Ruins)|ベッド(廃墟)
|
||||
Middle Window A|中型窓A
|
||||
Middle Window B|中型窓B
|
||||
Middle Window C|中型窓C
|
||||
Middle Window D (Ruins)|中型窓窓D(廃墟)
|
||||
Window (Demon Castle)|窓(魔王城)
|
||||
Table|テーブル
|
||||
Cheap Bed|粗末なベッド
|
||||
Straw Bed|むしろの寝床
|
||||
Middle Window A|中型窓A
|
||||
Middle Window B|中型窓B
|
||||
Middle Window C|中型窓C
|
||||
Middle Window D (Ruins)|中型窓窓D(廃墟)
|
||||
Window (Demon Castle)|窓(魔王城)
|
||||
Stool|椅子
|
||||
Cheap Bed|粗末なベッド
|
||||
Straw Bed|むしろの寝床
|
||||
Large Window A|大型窓A
|
||||
Large Window B|大型窓B
|
||||
Large Window C|大型窓C
|
||||
Stained Glass Window|ステンドグラス
|
||||
Large Window D|大型窓D
|
||||
Window A|窓A
|
||||
Window B|窓B
|
||||
Window C|窓C
|
||||
Large Window A|大型窓A
|
||||
Large Window B|大型窓B
|
||||
Large Window C|大型窓C
|
||||
Stained Glass Window|ステンドグラス
|
||||
Large Window D|大型窓D
|
||||
Window A|窓A
|
||||
Window B|窓B
|
||||
Window C|窓C
|
||||
Chest A|チェストA
|
||||
Cabinet|キャビネット
|
||||
Closet|クローゼット
|
||||
Chest of Drawers|タンス
|
||||
Dish Cabinet|食器棚
|
||||
Wine Rack|ワインセラー
|
||||
Bottle Shelf A|ボトル棚A
|
||||
Bottle Shelf B|ボトル棚B
|
||||
Chest B|チェストB
|
||||
Chest C|チェストC
|
||||
Closet|クローゼット
|
||||
Chest of Drawers|タンス
|
||||
Dish Cabinet|食器棚
|
||||
Wine Rack|ワインセラー
|
||||
Bottle Shelf A|ボトル棚A
|
||||
Bottle Shelf B|ボトル棚B
|
||||
Tipped Shelf|倒れた棚
|
||||
Sundries Shelf A|雑貨棚A
|
||||
Sundries Shelf A|雑貨棚A
|
||||
Sundries Shelf B|雑貨棚B
|
||||
Medicine Shelf|薬品棚
|
||||
Bookshelf A|本棚A
|
||||
Bookshelf B|本棚B
|
||||
Bookshelf B|本棚B
|
||||
Tipped Shelf|倒れた棚
|
||||
Sundries Shelf A|雑貨棚A
|
||||
Sundries Shelf A|雑貨棚A
|
||||
Sundries Shelf B|雑貨棚B
|
||||
Medicine Shelf|薬品棚
|
||||
Bookshelf A|本棚A
|
||||
Bookshelf B|本棚B
|
||||
Bookshelf B|本棚B
|
||||
Curtains A|カーテンA
|
||||
Curtains B|カーテンB
|
||||
Curtains C|カーテンC
|
||||
Curtains D|カーテンD
|
||||
Curtains A (Ruins)|カーテンA(廃墟)
|
||||
Curtains B (Ruins)|カーテンB(廃墟)
|
||||
Curtains C (Ruins)|カーテンC(廃墟)
|
||||
Curtains D (Ruins)|カーテンD(廃墟)
|
||||
Curtains A|カーテンA
|
||||
Curtains B|カーテンB
|
||||
Curtains C|カーテンC
|
||||
Curtains D|カーテンD
|
||||
Curtains A (Ruins)|カーテンA(廃墟)
|
||||
Curtains B (Ruins)|カーテンB(廃墟)
|
||||
Curtains C (Ruins)|カーテンC(廃墟)
|
||||
Curtains D (Ruins)|カーテンD(廃墟)
|
||||
Clock|時計
|
||||
Mirror|鏡
|
||||
Clock (Ruins)|時計(廃墟)
|
||||
Mirror (Ruins)|鏡(廃墟)
|
||||
Stacked Crates|積まれた木箱
|
||||
Stacked Crates|積まれた木箱
|
||||
Tapestry A|タペストリーA
|
||||
Tapestry A (Ruins)|タペストリーA(廃墟)
|
||||
Clock|時計
|
||||
Mirror|鏡
|
||||
Clock (Ruins)|時計(廃墟)
|
||||
Mirror (Ruins)|鏡(廃墟)
|
||||
Stacked Crates|積まれた木箱
|
||||
Stacked Crates|積まれた木箱
|
||||
Tapestry A|タペストリーA
|
||||
Tapestry A (Ruins)|タペストリーA(廃墟)
|
||||
Chair A (Wood)|背もたれ椅子A(木製)
|
||||
Chair B (Stone)|背もたれ椅子B(石)
|
||||
Throne A|玉座A
|
||||
Throne A|玉座A
|
||||
Throne A|玉座A
|
||||
Throne B (Demon Castle)|玉座B(魔王城)
|
||||
Throne B (Demon Castle)|玉座B(魔王城)
|
||||
Throne B (Demon Castle)|玉座B(魔王城)
|
||||
Chair A (Wood)|背もたれ椅子A(木製)
|
||||
Chair B (Stone)|背もたれ椅子B(石)
|
||||
Throne A|玉座A
|
||||
Throne A|玉座A
|
||||
Throne A|玉座A
|
||||
Throne B (Demon Castle)|玉座B(魔王城)
|
||||
Throne B (Demon Castle)|玉座B(魔王城)
|
||||
Throne B (Demon Castle)|玉座B(魔王城)
|
||||
16
img/tilesets/Inside_A1.txt
Normal file
16
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
img/tilesets/Inside_A2.txt
Normal file
32
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
img/tilesets/Inside_A4.txt
Normal file
48
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
img/tilesets/Inside_A5.txt
Normal file
129
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
img/tilesets/Inside_B.txt
Normal file
256
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
img/tilesets/Inside_C.txt
Normal file
256
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
img/tilesets/MZ_Dungeon_A1.txt
Normal file
16
img/tilesets/MZ_Dungeon_A1.txt
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
Water A|水場A
|
||||
Deep Water|深い水場
|
||||
Swamp Grass|水草
|
||||
Lotus Pads (Flowers)|蓮の葉(花)
|
||||
Lava|溶岩
|
||||
Waterfall A (Lava Cave)|滝A(溶岩洞窟)
|
||||
Water B (Grass Maze)|水場B(草迷宮)
|
||||
Waterfall B (Grass Maze)|滝B(草迷宮)
|
||||
Water C (Dirt Cave)|水場C(土洞窟)
|
||||
Waterfall C (Dirt Cave)|滝C(土洞窟)
|
||||
Water D (Rock Cave)|水場D(岩洞窟)
|
||||
Waterfall D (Rock Cave)|滝D(岩洞窟)
|
||||
Water E (Crystal)|水場E(水晶)
|
||||
Waterfall E (Crystal)|滝E(水晶)
|
||||
Canal|水路
|
||||
Waterfall (Stone Wall)|滝F(石壁)
|
||||
32
img/tilesets/MZ_Dungeon_A2.txt
Normal file
32
img/tilesets/MZ_Dungeon_A2.txt
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
Ground A (Dirt Cave)|床A(土洞窟)
|
||||
Ground B (Grass Maze)|床B(草迷宮)
|
||||
Dark Ground A (Dirt Cave)|濃い床A(土洞窟)
|
||||
Dark Ground B (Grass Maze)|濃い床B(草迷宮)
|
||||
Hole A (Dirt Cave)|穴A(土洞窟)
|
||||
Hole B (Grass Maze)|穴B(草迷宮)
|
||||
Hole I (Stone Floor)|穴I(石の床)
|
||||
Ground Cracks|床のひび割れ
|
||||
Ground C (Rock Cave)|床C(岩洞窟)
|
||||
Ground D (Crystal)|床D(水晶)
|
||||
Dark Ground C (Rock Cave)|濃い床C(岩洞窟)
|
||||
Dark Ground D (Crystal)|濃い床D(水晶)
|
||||
Hole C (Rock Cave)|穴C(岩洞窟)
|
||||
Hole D (Crystal)|穴D(水晶)
|
||||
Hole J|穴J
|
||||
Soil on Ground|床の汚れ
|
||||
Ground E (Lava Cave)|床E(溶岩洞窟)
|
||||
Ground F (In Body)|床F(体内)
|
||||
Dark Ground E (Lava Cave)|濃い床E(溶岩洞窟)
|
||||
Rug A|じゅうたんA
|
||||
Hole E (Lava Cave)|穴E(溶岩洞窟)
|
||||
Hole F (In Body)|穴F(体内)
|
||||
Fencepost|柵
|
||||
Moss on Ground|床の苔
|
||||
Ground G (Ice Cave)|床G(氷洞窟)
|
||||
Ground H (Demonic World)|床H(魔界)
|
||||
Dark Ground G (Ice Cave)|濃い床G(氷洞窟)
|
||||
Rug B|じゅうたんB
|
||||
Hole G (Ice Cave)|穴G(氷洞窟)
|
||||
Hole H (Demonic World)|穴H(魔界)
|
||||
Raised Stone|石段
|
||||
Poison Swamp|毒の沼
|
||||
48
img/tilesets/MZ_Dungeon_A4.txt
Normal file
48
img/tilesets/MZ_Dungeon_A4.txt
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
Wall A (Dirt Cave)|壁A(土洞窟)
|
||||
Wall B (Rock Cave)|壁B(岩洞窟)
|
||||
Wall C (Lava Cave)|壁C(溶岩洞窟)
|
||||
Wall D (Ice Cave)|壁D(氷洞窟)
|
||||
Wall E (Grass Maze)|壁E(草迷宮)
|
||||
Wall F (Crystal)|壁F(水晶)
|
||||
Wall G (In Body)|壁G(体内)
|
||||
Wall H (Demonic World)|壁H(魔界)
|
||||
Wall A (Dirt Cave)|壁A(土洞窟)
|
||||
Wall B (Rock Cave)|壁B(岩洞窟)
|
||||
Wall C (Lava Cave)|壁C(溶岩洞窟)
|
||||
Wall D (Ice Cave)|壁D(氷洞窟)
|
||||
Wall E (Grass Maze)|壁E(草迷宮)
|
||||
Wall F (Crystal)|壁F(水晶)
|
||||
Wall G (In Body)|壁G(体内)
|
||||
Wall H (Demonic World)|壁H(魔界)
|
||||
Wall I (Stone)|壁I(石)
|
||||
Wall J (Brick)|壁J(レンガ)
|
||||
Wall K (Stone)|壁K(石)
|
||||
Wall L (Marble)|壁L(大理石)
|
||||
Wall M (Moss)|壁M(苔)
|
||||
Wall N (Castle)|壁N(城)
|
||||
Wall O (Fort)|壁O(砦)
|
||||
Wall P (Demon Castle)|壁P(魔王城)
|
||||
Wall I (Stone)|壁I(石)
|
||||
Wall J (Brick)|壁J(レンガ)
|
||||
Wall K (Stone)|壁K(石)
|
||||
Wall L (Marble)|壁L(大理石)
|
||||
Wall M (Moss)|壁M(苔)
|
||||
Wall N (Castle)|壁N(城)
|
||||
Wall O (Fort)|壁O(砦)
|
||||
Wall P (Demon Castle)|壁P(魔王城)
|
||||
Wall Q (Mecha)|壁Q(メカ)
|
||||
Wall R (Stone)|壁R(石)
|
||||
Wall S (Frozen)|壁S(凍結)
|
||||
Wall T (Dirt Cave, Gold)|壁T(土洞窟・黄金)
|
||||
Ledge A (Dirt Cave)|段差A(土洞窟)
|
||||
Ledge B (Rock Cave)|段差B(岩洞窟)
|
||||
Ledge C (Lava Cave)|段差C(溶岩洞窟)
|
||||
Ledge D (Ice Cave)|段差D(氷洞窟)
|
||||
Wall Q (Mecha)|壁Q(メカ)
|
||||
Wall R (Stone)|壁R(石)
|
||||
Wall S (Frozen)|壁S(凍結)
|
||||
Wall T (Dirt Cave, Gold)|壁T(土洞窟・黄金)
|
||||
Ledge A (Dirt Cave)|段差A(土洞窟)
|
||||
Ledge B (Rock Cave)|段差B(岩洞窟)
|
||||
Ledge C (Lava Cave)|段差C(溶岩洞窟)
|
||||
Ledge D (Ice Cave)|段差D(氷洞窟)
|
||||
128
img/tilesets/MZ_Dungeon_A5.txt
Normal file
128
img/tilesets/MZ_Dungeon_A5.txt
Normal file
|
|
@ -0,0 +1,128 @@
|
|||
Darkness|暗闇
|
||||
Floating Floor A (Dirt)|浮かぶ床A(土)
|
||||
Floating Floor B (Rock)|浮かぶ床B(岩)
|
||||
Translucent Floor A|半透明の床A
|
||||
Translucent Floor B|半透明の床B
|
||||
Stairs A (Dirt)|階段A(土)
|
||||
Stairs B (Translucent)|階段B(半透明)
|
||||
Wire Mesh|金網
|
||||
Transparent|透明
|
||||
Floating Floor A (Dirt)|浮かぶ床A(土)
|
||||
Floating Floor B (Rock)|浮かぶ床B(岩)
|
||||
Translucent Floor A|半透明の床A
|
||||
Translucent Floor B|半透明の床B
|
||||
Stairs A (Rock)|階段A(岩)
|
||||
Stairs B (Translucent)|階段B(半透明)
|
||||
Wire Mesh|金網
|
||||
Ground A (Wood)|床A(木製)
|
||||
Ground B (Wood)|床B(木製)
|
||||
Ground (Wood, Ruins)|床A(木製・廃墟)
|
||||
Ground (Wood, Ruins)|床B(木製・廃墟)
|
||||
Cobblestones A|石畳A
|
||||
Cobblestones B|石畳B
|
||||
Cobblestones C|石畳C
|
||||
Cobblestones D|石畳D
|
||||
Cobblestones E|石畳E
|
||||
Decorative Tile A|化粧タイルA
|
||||
Decorative Tile B|化粧タイルB
|
||||
Interior Floor A|内装床A
|
||||
Interior Floor B (Light)|内装床B(明かり)
|
||||
Tile Floor A|タイル床A
|
||||
Tile Floor B|タイル床B
|
||||
Tile Floor C|タイル床C
|
||||
Cobblestones F|石畳F
|
||||
Ground C (Rock Cave, Red Crystal)|床C(岩洞窟・赤水晶)
|
||||
Ground D (Rock Cave, Blue Crystal)|床D(岩洞窟・青水晶)
|
||||
Ground E (Rock Cave, Green Crystal)|床E(岩洞窟・緑水晶)
|
||||
Ground F (Dirt)|床F(土)
|
||||
Ground G (Demon Castle)|床G(魔王城)
|
||||
Ground H (Gold)|床H(黄金)
|
||||
Ground I (Ice)|床I(氷)
|
||||
Stairs A (Dirt Cave, Left)|階段A(土洞窟・左)
|
||||
Stairs A (Dirt Cave, Center)|階段A(土洞窟・中央)
|
||||
Stairs A (Dirt Cave, Right)|階段A(土洞窟・右)
|
||||
Stairs A (Dirt Cave)|階段A(土洞窟)
|
||||
Stairs B (Rock Cave, Left)|階段B(岩洞窟・左)
|
||||
Stairs B (Rock Cave, Center)|階段B(岩洞窟・中央)
|
||||
Stairs B (Rock Cave, Right)|階段B(岩洞窟・右)
|
||||
Stairs B (Rock Cave)|階段B(岩洞窟)
|
||||
Stairs C (Lava Cave, Left)|階段C(溶岩洞窟・左)
|
||||
Stairs C (Lava Cave, Center)|階段C(溶岩洞窟・中央)
|
||||
Stairs C (Lava Cave, Right)|階段C(溶岩洞窟・右)
|
||||
Stairs C (Lava Cave)|階段C(溶岩洞窟)
|
||||
Stairs D (Ice Cave, Left)|階段D(氷洞窟・左)
|
||||
Stairs D (Ice Cave, Center)|階段D(氷洞窟・中央)
|
||||
Stairs D (Ice Cave, Right)|階段D(氷洞窟・右)
|
||||
Stairs D (Ice Cave)|階段D(氷洞窟)
|
||||
Stairs E (Grass Maze, Left)|階段E(草迷宮・左)
|
||||
Stairs E (Grass Maze, Center)|階段E(草迷宮・中央)
|
||||
Stairs E (Grass Maze, Right)|階段E(草迷宮・右)
|
||||
Stairs E (Grass Maze)|階段E(草迷宮)
|
||||
Stairs F (Crystal, Left)|階段F(水晶・左)
|
||||
Stairs F (Crystal, Center)|階段F(水晶・中央)
|
||||
Stairs F (Crystal, Right)|階段F(水晶・右)
|
||||
Stairs F (Crystal)|階段F(水晶)
|
||||
Stairs G (In Body, Left)|階段G(体内・左)
|
||||
Stairs G (In Body, Center)|階段G(体内・中央)
|
||||
Stairs G (In Body, Right)|階段G(体内・右)
|
||||
Stairs G (In Body)|階段G(体内)
|
||||
Stairs H (Demonic World, Left)|階段H(魔界・左)
|
||||
Stairs H (Demonic World, Center)|階段H(魔界・中央)
|
||||
Stairs H (Demonic World, Right)|階段H(魔界・右)
|
||||
Stairs H (Demonic World)|階段H(魔界)
|
||||
Stairs I (Stone, Left)|階段I(石・左)
|
||||
Stairs I (Stone, Center)|階段I(石・中央)
|
||||
Stairs I (Stone, Right)|階段I(石・右)
|
||||
Stairs I (Stone)|階段I(石)
|
||||
Stairs J (Ruins, Left)|階段J(廃墟・左)
|
||||
Stairs J (Ruins, Center)|階段J(廃墟・中央)
|
||||
Stairs J (Ruins, Right)|階段J(廃墟・右)
|
||||
Stairs J (Ruins)|階段J(廃墟)
|
||||
Stairs K (Stone, Left)|階段K(石・左)
|
||||
Stairs K (Stone, Center)|階段K(石・中央)
|
||||
Stairs K (Stone, Right)|階段K(石・右)
|
||||
Stairs K (Stone)|階段K(石)
|
||||
Stairs L (Ruins, Left)|階段L(廃墟・左)
|
||||
Stairs L (Ruins, Center)|階段L(廃墟・中央)
|
||||
Stairs L (Ruins, Right)|階段L(廃墟・右)
|
||||
Stairs L (Ruins)|階段L(廃墟)
|
||||
Ground (Dirt Cave, Ruins)|床A(土洞窟・廃墟)
|
||||
Ground (Rock Cave, Ruins)|床B(岩洞窟・廃墟)
|
||||
Ground (Lava Cave, Ruins)|床C(溶岩洞窟・廃墟)
|
||||
Ground (Ice Cave, Ruins)|床D(氷洞窟・廃墟)
|
||||
Ground (Grass Maze, Ruins)|床E(草迷宮・廃墟)
|
||||
Ground (Crystal, Ruins)|床F(水晶・廃墟)
|
||||
Ground (In Body, Ruins)|床G(体内・廃墟)
|
||||
Ground (Demonic World, Ruins)|床H(魔界・廃墟)
|
||||
Cobblestones A (Ruins)|石畳A(廃墟)
|
||||
Cobblestones B (Ruins)|石畳B(廃墟)
|
||||
Cobblestones C (Ruins)|石畳C(廃墟)
|
||||
Cobblestones D (Ruins)|石畳D(廃墟)
|
||||
Cobblestones E (Ruins)|石畳E(廃墟)
|
||||
Decorative Tile A (Ruins)|化粧タイルA(廃墟)
|
||||
Decorative Tile B (Ruins)|化粧タイルB(廃墟)
|
||||
Interior Floor A (Ruins)|内装床A(廃墟)
|
||||
Tile Floor A (Ruins)|タイル床A(廃墟)
|
||||
Tile Floor B (Ruins)|タイル床B(廃墟)
|
||||
Tile Floor C (Ruins)|タイル床C(廃墟)
|
||||
Cobblestones F (Ruins)|石畳F(廃墟)
|
||||
Ground F (Dirt, Ruins)|床F(土・廃墟)
|
||||
Ground G (Demon Castle, Ruins)|床G(魔王城・廃墟)
|
||||
Ground I (Ice, Ruins)|床I(氷・廃墟)
|
||||
Relief Floor Tile (Silver)|レリーフ床(銀)
|
||||
Large Relief Floor Tile|大きなレリーフ床
|
||||
Large Relief Floor Tile|大きなレリーフ床
|
||||
Large Relief Floor Tile (Ruins)|大きなレリーフ床(廃墟)
|
||||
Large Relief Floor Tile (Ruins)|大きなレリーフ床(廃墟)
|
||||
Directional Floor Tile A (Down)|方向床A(下)
|
||||
Directional Floor Tile B (Up)|方向床B(上)
|
||||
Relief Floor Tile A (Gold)|レリーフ床A(金)
|
||||
Relief Floor Tile B (Gold)|レリーフ床B(金)
|
||||
Large Relief Floor Tile|大きなレリーフ床
|
||||
Large Relief Floor Tile|大きなレリーフ床
|
||||
Large Relief Floor Tile (Ruins)|大きなレリーフ床(廃墟)
|
||||
Large Relief Floor Tile (Ruins)|大きなレリーフ床(廃墟)
|
||||
Directional Floor Tile C (Left)|方向床C(左)
|
||||
Directional Floor Tile D (Right)|方向床D(右)
|
||||
Relief Floor Tile C (Gold)|レリーフ床C(金)
|
||||
Relief Floor Tile D (Gold, Ruins)|レリーフ床D(金・廃墟)
|
||||
256
img/tilesets/MZ_Dungeon_B.txt
Normal file
256
img/tilesets/MZ_Dungeon_B.txt
Normal file
|
|
@ -0,0 +1,256 @@
|
|||
Transparent|透明
|
||||
Wall Moss|壁の苔
|
||||
Stairs A (Up)|階段A(上り)
|
||||
Stairs B (Up)|階段B(上り)
|
||||
Metal Ladder|鉄ばしご
|
||||
Wood Ladder|木製はしご
|
||||
Rope|ロープ
|
||||
Vines A|ツタA
|
||||
Fissures A|亀裂A
|
||||
Wall Fern|壁のシダ
|
||||
Stairs A (Down)|階段A(下り)
|
||||
Stairs B (Down)|階段B(下り)
|
||||
Metal Ladder|鉄ばしご
|
||||
Wood Ladder|木製はしご
|
||||
Rope|ロープ
|
||||
Vines A|ツタA
|
||||
Crumbling Wall|崩れた壁
|
||||
Dug-Up Ground|掘られた床
|
||||
Stairs C (Up)|階段C(上り)
|
||||
Stairs D (Up)|階段D(上り)
|
||||
Metal Ladder|鉄ばしご
|
||||
Wood Ladder|木製はしご
|
||||
Rope|ロープ
|
||||
Vines B (Down)|ツタB(下り)
|
||||
Crumbling Wall|崩れた壁
|
||||
Dug-Up Ground|掘られた床
|
||||
Stairs C (Down)|階段C(下り)
|
||||
Stairs D (Down)|階段D(下り)
|
||||
Hole A (Metal Ladder)|穴A(鉄ばしご)
|
||||
Hole B (Wood Ladder)|穴B(木製はしご)
|
||||
Hole C (Rope)|穴C(ロープ)
|
||||
Hole D|穴D
|
||||
Gravel A (Dirt Cave)|砂利A(土洞窟)
|
||||
Gravel B (Rock Cave)|砂利B(岩洞窟)
|
||||
Gravel C (Lava Cave)|砂利C(溶岩洞窟)
|
||||
Ice Pieces |氷の欠片
|
||||
Small Sprouts A (Grass Maze)|小さな芽A(草迷宮)
|
||||
Small Crystals|小さな水晶
|
||||
Detritus (In Body)|床装飾(体内)
|
||||
Small Sprouts B (Demonic World)|小さな芽B(魔界)
|
||||
Boulder A (Dirt Cave)|岩A(土洞窟)
|
||||
Boulder B (Rock Cave)|岩B(岩洞窟)
|
||||
Boulder C (Lava Cave)|岩C(溶岩洞窟)
|
||||
Lump of Ice|氷塊
|
||||
Boulder D (Grass Maze)|岩D(草迷宮)
|
||||
Crystal|水晶
|
||||
Spherical Lump|球状突起物
|
||||
Boulder E (Demonic World)|岩E(魔界)
|
||||
Tall Rock A (Dirt Cave)|大きな岩A(土洞窟)
|
||||
Tall Rock B (Rock Cave)|大きな岩B(岩洞窟)
|
||||
Tall Rock C (Lava Cave)|大きな岩C(溶岩洞窟)
|
||||
Tall Lump of Ice|大きな氷塊
|
||||
Tall Rock D (Grass Maze)|大きな岩D(草迷宮)
|
||||
Large Crystal|大きな水晶
|
||||
Large Growth|大型突起物
|
||||
Tall Rock E (Demonic World)|大きな岩E(魔界)
|
||||
Tall Rock A (Dirt Cave)|大きな岩A(土洞窟)
|
||||
Tall Rock B (Rock Cave)|大きな岩B(岩洞窟)
|
||||
Tall Rock C (Lava Cave)|大きな岩C(溶岩洞窟)
|
||||
Tall Lump of Ice|大きな氷塊
|
||||
Tall Rock D (Grass Maze)|大きな岩D(草迷宮)
|
||||
Large Crystal|大きな水晶
|
||||
Large Growth|大型突起物
|
||||
Tall Rock E (Demonic World)|大きな岩E(魔界)
|
||||
Monument A|石碑A
|
||||
Monument B|石碑B
|
||||
Large Monument|大きな石碑
|
||||
Large Monument|大きな石碑
|
||||
Large Monument|大きな石碑
|
||||
Large Monument (Light)|大きな石碑(光)
|
||||
Large Monument (Light)|大きな石碑(光)
|
||||
Large Monument (Light)|大きな石碑(光)
|
||||
Monument A|石碑A
|
||||
Monument C|石碑C
|
||||
Large Monument|大きな石碑
|
||||
Large Monument|大きな石碑
|
||||
Large Monument|大きな石碑
|
||||
Large Monument (Light)|大きな石碑(光)
|
||||
Large Monument (Light)|大きな石碑(光)
|
||||
Large Monument (Light)|大きな石碑(光)
|
||||
Statue|石像
|
||||
Angel Statue|天使像
|
||||
Goddess Statue|女神像
|
||||
Dais|台座
|
||||
God Statue|神像
|
||||
Demon Statue|悪魔像
|
||||
Dragon Statue|竜像
|
||||
Dragon Statue|竜像
|
||||
Statue|石像
|
||||
Angel Statue|天使像
|
||||
Goddess Statue|女神像
|
||||
Broken Statue|壊れた像
|
||||
God Statue|神像
|
||||
Demon Statue|悪魔像
|
||||
Dragon Statue|竜像
|
||||
Dragon Statue|竜像
|
||||
Obelisk|オベリスク
|
||||
Stone Pillar A|石の柱A
|
||||
Stone Pillar B|石の柱B
|
||||
Stone Pillar B (Moss)|石の柱B(苔)
|
||||
Stone Pillar B (Ice)|石の柱B(氷)
|
||||
Stone Pillar C|石の柱C
|
||||
Stone Pillar D|石の柱D
|
||||
Orb Pillar|オーブの柱
|
||||
Obelisk|オベリスク
|
||||
Stone Pillar A|石の柱A
|
||||
Stone Pillar B|石の柱B
|
||||
Stone Pillar B (Moss)|石の柱B(苔)
|
||||
Stone Pillar B (Ice)|石の柱B(氷)
|
||||
Stone Pillar C|石の柱C
|
||||
Stone Pillar D|石の柱D
|
||||
Orb Pillar|オーブの柱
|
||||
Obelisk|オベリスク
|
||||
Broken Stone Pillar A|折れた石の柱A
|
||||
Broken Stone Pillar B|折れた石の柱B
|
||||
Broken Stone Pillar B (Moss)|折れた石の柱B(苔)
|
||||
Broken Stone Pillar B (Ice)|折れた石の柱B(氷)
|
||||
Stone Pillar C|石の柱C
|
||||
Broken Stone Pillar D|折れた石の柱D
|
||||
Broken Orb Pillar|折れたオーブの柱
|
||||
Rubble|瓦礫A
|
||||
Rubble (Moss)|瓦礫B(苔)
|
||||
Rubble (Ice)|瓦礫C(氷)
|
||||
Broken Stone Pillar C|折れた石の柱C
|
||||
Rubble (Dirt)|瓦礫D(土)
|
||||
Scrap Wood|端材
|
||||
Barricade A (H)|バリケードA(横)
|
||||
Barricade B (V)|バリケードB(縦)
|
||||
Wall Bracing|壁の補強材
|
||||
Wall Bracing|壁の補強材
|
||||
Wall Bracing|壁の補強材
|
||||
Wall Bracing|壁の補強材
|
||||
Wall Bracing|壁の補強材
|
||||
Wall Bracing (Abandoned Mine)|壁の補強材(廃坑)
|
||||
Wall Bracing (Abandoned Mine)|壁の補強材(廃坑)
|
||||
Wall Bracing (Abandoned Mine)|壁の補強材(廃坑)
|
||||
Wall Bracing|壁の補強材
|
||||
Wall Bracing|壁の補強材
|
||||
Wall Bracing|壁の補強材
|
||||
Wall Bracing|壁の補強材
|
||||
Wall Bracing|壁の補強材
|
||||
Wall Bracing (Abandoned Mine)|壁の補強材(廃坑)
|
||||
Wall Bracing (Abandoned Mine)|壁の補強材(廃坑)
|
||||
Wall Bracing (Abandoned Mine)|壁の補強材(廃坑)
|
||||
Log Bridge (V)|丸太の橋(縦)
|
||||
Log Bridge (H)|丸太の橋(横)
|
||||
Wood Bridge (V)|木の橋(縦)
|
||||
Wood Bridge (H)|木の橋(横)
|
||||
Stone Bridge (V)|石の橋(縦)
|
||||
Stone Bridge (H)|石の橋(横)
|
||||
Wood Bridge (V)|木の橋(縦)
|
||||
Wood Bridge (H)|木の橋(横)
|
||||
Bridge Spar (Wood, Center A)|橋げた(木・中央A)
|
||||
Bridge Spar (Wood, Left)|橋げた(木・左)
|
||||
Bridge Spar (Wood, Center B)|橋げた(木・中央B)
|
||||
Bridge Spar (Wood, Right)|橋げた(木・右)
|
||||
Bridge Spar (Stone, Center A)|橋げた(石・中央A)
|
||||
Bridge Spar (Stone, Left)|橋げた(石・左)
|
||||
Bridge Spar (Stone, Center B)||橋げた(石・中央B)
|
||||
Bridge Spar (Stone, Right)|橋げた(石・右)
|
||||
Exit A|外への出口A
|
||||
Entrance A|入口A
|
||||
Exit B|外への出口B
|
||||
Entrance B|入口B
|
||||
Exit C|外への出口C
|
||||
Entrance C|入口C
|
||||
Window A|窓A
|
||||
Window B|窓B
|
||||
Exit D|外への出口D
|
||||
Entrance D|入口D
|
||||
Exit E|外への出口E
|
||||
Entrance E|入口E
|
||||
Light From Exit A (Top)|出口からの光A(上)
|
||||
Light From Exit B (Bottom)|出口からの光B(下)
|
||||
Window A|窓A
|
||||
Window B|窓B
|
||||
Spider Web|蜘蛛の巣
|
||||
Stone Tablet|石版
|
||||
Stone Tablet (Ruins)|石版(廃墟)
|
||||
Entrance A|入口A
|
||||
Entrance A (Extend)|入口A(延長部分)
|
||||
Entrance A (Top Half A)|入口A(上半分A)
|
||||
Entrance B|入口B
|
||||
Entrance A (Top Half B)|入口A(上半分B)
|
||||
Wall Vines A|壁のツタA
|
||||
Wall Vines B|壁のツタB
|
||||
Wall Vines C|壁のツタC
|
||||
Fissures B|亀裂B
|
||||
Fissures C|亀裂C
|
||||
Fissures D|亀裂D
|
||||
Fissures E|亀裂E
|
||||
Beanstalk A|豆の木A
|
||||
Wall Vines A|壁のツタA
|
||||
Wall Vines B|壁のツタB
|
||||
Wall Vines C|壁のツタC
|
||||
Fissures B|亀裂B
|
||||
Fissures C|亀裂C
|
||||
Fissures D|亀裂D
|
||||
Beanstalk B (Snow)|豆の木B(雪)
|
||||
Beanstalk C (Dead)|豆の木C(枯れ)
|
||||
Large Gravel Mound A (Dirt)|大きな土砂A(土)
|
||||
Large Gravel Mound A (Dirt)|大きな土砂A(土)
|
||||
Large Gravel Mound B (Stone)|大きな土砂B(石)
|
||||
Large Gravel Mound B (Stone)|大きな土砂B(石)
|
||||
Large Gold Mound|大きな金の山
|
||||
Large Gold Mound|大きな金の山
|
||||
Large Silver Mound|大きな銀の山
|
||||
Large Silver Mound|大きな銀の山
|
||||
Large Gravel Mound A (Dirt)|大きな土砂A(土)
|
||||
Large Gravel Mound A (Dirt)|大きな土砂A(土)
|
||||
Large Gravel Mound B (Stone)|大きな土砂B(石)
|
||||
Large Gravel Mound B (Stone)|大きな土砂B(石)
|
||||
Large Gold Mound|大きな金の山
|
||||
Large Gold Mound|大きな金の山
|
||||
Large Silver Mound|大きな銀の山
|
||||
Large Silver Mound|大きな銀の山
|
||||
Gravel Mound (Dirt)|土砂A(土)
|
||||
Gravel Mound (Stone)|土砂B(石)
|
||||
Gold Bricks A|金の延べ棒A
|
||||
Gold Bricks B|金の延べ棒B
|
||||
Crate A (Dirt)|木箱A(土)
|
||||
Crate B (Stone)|木箱B(石)
|
||||
Crate C (Ruins)|木箱C(廃墟)
|
||||
Pot A (Ruins)|壺A(廃墟)
|
||||
Gold Mound|金の山
|
||||
Silver Mound|銀の山
|
||||
Silver Bricks A|銀の延べ棒A
|
||||
Silver Bricks B|銀の延べ棒B
|
||||
Crate D (Gold Dust)|木箱D(金)
|
||||
Crate E (Silver Dust)|木箱E(銀)
|
||||
Pot A|壺A
|
||||
Pot B|壺B
|
||||
Shovel|スコップ
|
||||
Pickax|つるはし
|
||||
Rope|ロープ
|
||||
Mound of Gold Coins|金貨の山
|
||||
Crate F|木箱F
|
||||
Crate G|木箱G
|
||||
Barrel A|樽A
|
||||
Barrel B (Ruins)|樽B(廃墟)
|
||||
Large Bones|大きな骸骨
|
||||
Large Bones|大きな骸骨
|
||||
Bones A|骸骨A
|
||||
Table (Ruins)|テーブル(廃墟)
|
||||
Jail Bars|鉄格子
|
||||
Jail Bars|鉄格子
|
||||
Jail Bars|鉄格子
|
||||
Jail Bars|鉄格子
|
||||
Large Bones|大きな骸骨
|
||||
Large Bones|大きな骸骨
|
||||
Bones B|骸骨B
|
||||
Stool (Ruins)|椅子(廃墟)
|
||||
Jail Bars|鉄格子
|
||||
Jail Bars|鉄格子
|
||||
Jail Bars|鉄格子
|
||||
Jail Bars|鉄格子
|
||||
256
img/tilesets/MZ_Dungeon_C.txt
Normal file
256
img/tilesets/MZ_Dungeon_C.txt
Normal file
|
|
@ -0,0 +1,256 @@
|
|||
Decorative Pillar A (Stone)|装飾柱A(石)
|
||||
Decorative Pillar B (Stone)|装飾柱B(石)
|
||||
Decorative Pillar C (Temple)|装飾柱C(遺跡)
|
||||
Decorative Pillar D (Rock Cave)|装飾柱D(岩洞窟)
|
||||
Decorative Pillar E (Demon Castle)|装飾柱E(魔王城)
|
||||
Decorative Pillar F (Fort)|装飾柱F(砦)
|
||||
Decorative Pillar G (Dirt Cave)|装飾柱G(土洞窟)
|
||||
Decorative Pillar H (Factory)|装飾柱H(工場)
|
||||
Decorative Pillar A (Stone)|装飾柱A(石)
|
||||
Decorative Pillar B (Stone)|装飾柱B(石)
|
||||
Decorative Pillar C (Temple)|装飾柱C(遺跡)
|
||||
Decorative Pillar D (Rock Cave)|装飾柱D(岩洞窟)
|
||||
Decorative Pillar E (Demon Castle)|装飾柱E(魔王城)
|
||||
Decorative Pillar F (Fort)|装飾柱F(砦)
|
||||
Decorative Pillar G (Dirt Cave)|装飾柱G(土洞窟)
|
||||
Decorative Pillar H (Factory)|装飾柱H(工場)
|
||||
Decorative Pillar A (Stone)|装飾柱A(石)
|
||||
Decorative Pillar B (Stone)|装飾柱B(石)
|
||||
Decorative Pillar C (Temple)|装飾柱C(遺跡)
|
||||
Decorative Pillar D (Rock Cave)|装飾柱D(岩洞窟)
|
||||
Decorative Pillar E (Demon Castle)|装飾柱E(魔王城)
|
||||
Decorative Pillar F (Fort)|装飾柱F(砦)
|
||||
Decorative Pillar G (Dirt Cave)|装飾柱G(土洞窟)
|
||||
Decorative Pillar H (Factory)|装飾柱H(工場)
|
||||
Decorative Pillar A (Stone, Ruins)|装飾柱A(石・廃墟)
|
||||
Decorative Pillar B (Stone, Ruins)|装飾柱B(石・廃墟)
|
||||
Decorative Pillar C (Temple, Ruins)|装飾柱C(遺跡・廃墟)
|
||||
Decorative Pillar D (Rock Cave, Ruins)|装飾柱D(岩洞窟・廃墟)
|
||||
Decorative Pillar E (Demon Castle, Ruins)|装飾柱E(魔王城・廃墟)
|
||||
Decorative Pillar F (Fort, Ruins)|装飾柱F(砦・廃墟)
|
||||
Decorative Pillar G (Dirt Cave, Ruins)|装飾柱G(土洞窟・廃墟)
|
||||
Decorative Pillar A (Stone, Front, Ruins)|装飾柱A(石・手前・廃墟)
|
||||
Decorative Pillar A (Stone, Ruins)|装飾柱A(石・廃墟)
|
||||
Decorative Pillar B (Stone, Ruins)|装飾柱B(石・廃墟)
|
||||
Decorative Pillar C (Temple, Ruins)|装飾柱C(遺跡・廃墟)
|
||||
Decorative Pillar D (Rock Cave, Ruins)|装飾柱D(岩洞窟・廃墟)
|
||||
Decorative Pillar E (Demon Castle, Ruins)|装飾柱E(魔王城・廃墟)
|
||||
Decorative Pillar F (Fort, Ruins)|装飾柱F(砦・廃墟)
|
||||
Decorative Pillar G (Dirt Cave, Ruins)|装飾柱G(土洞窟・廃墟)
|
||||
Decorative Pillar D (Rock Cave, Front, Ruins)|装飾柱F(岩洞窟・手前・廃墟)
|
||||
Decorative Pillar A (Stone, Ruins)|装飾柱A(石・廃墟)
|
||||
Decorative Pillar B (Stone, Ruins)|装飾柱B(石・廃墟)
|
||||
Decorative Pillar C (Temple, Ruins)|装飾柱C(遺跡・廃墟)
|
||||
Decorative Pillar D (Rock Cave, Ruins)|装飾柱D(岩洞窟・廃墟)
|
||||
Decorative Pillar E (Demon Castle, Ruins)|装飾柱E(魔王城・廃墟)
|
||||
Decorative Pillar F (Fort, Ruins)|装飾柱F(砦・廃墟)
|
||||
Decorative Pillar G (Dirt Cave, Ruins)|装飾柱G(土洞窟・廃墟)
|
||||
Decorative Pillar F (Fort, Front, Ruins)|装飾柱F(砦・手前・廃墟)
|
||||
Decorative Pillar A (Stone, Front)|装飾柱A(石・手前)
|
||||
Decorative Pillar B (Stone, Front)|装飾柱B(石・手前)
|
||||
Decorative Pillar C (Temple, Front)|装飾柱C(神殿・手前)
|
||||
Decorative Pillar D (Rock Cave, Front)|装飾柱D(岩洞窟・手前)
|
||||
Decorative Pillar E (Demon Castle, Front)|装飾柱E(魔王城・手前)
|
||||
Decorative Pillar F (Fort, Front)|装飾柱F(砦・手前)
|
||||
Decorative Pillar G (Dirt Cave, Front)|装飾柱G(土洞窟・手前)
|
||||
Decorative Pillar H (Factory, Front)|装飾柱H(工場・手前)
|
||||
Gate A|門A
|
||||
Gate A|門A
|
||||
Gate A|門A
|
||||
Gate B|門B
|
||||
Gate B|門B
|
||||
Gate B|門B
|
||||
Decorative Pillar I (Demonic)|装飾柱I(悪魔)
|
||||
Decorative Pillar I (Demonic, Ruins)|装飾柱I(悪魔・廃墟)
|
||||
Gate A|門A
|
||||
Gate A|門A
|
||||
Gate A|門A
|
||||
Gate B|門B
|
||||
Gate B|門B
|
||||
Gate B|門B
|
||||
Decorative Pillar I (Demonic)|装飾柱I(悪魔)
|
||||
Decorative Pillar I (Demonic, Ruins)|装飾柱I(悪魔・廃墟)
|
||||
Gate A|門A
|
||||
Gate A|門A
|
||||
Gate A|門A
|
||||
Gate B|門B
|
||||
Gate B|門B
|
||||
Gate B|門B
|
||||
Coffin A (Right)|棺A(右)
|
||||
Coffin A (Right)|棺A(右)
|
||||
Hexagram|魔法陣
|
||||
Hexagram|魔法陣
|
||||
Hexagram|魔法陣
|
||||
Hexagram (Lit)|魔法陣(光)
|
||||
Hexagram (Lit)|魔法陣(光)
|
||||
Hexagram (Lit)|魔法陣(光)
|
||||
Coffin B (Top)|棺B(上)
|
||||
Coffin C (Bottom)|棺C(下)
|
||||
Hexagram|魔法陣
|
||||
Hexagram|魔法陣
|
||||
Hexagram|魔法陣
|
||||
Hexagram (Lit)|魔法陣(光)
|
||||
Hexagram (Lit)|魔法陣(光)
|
||||
Hexagram (Lit)|魔法陣(光)
|
||||
Coffin B (Top)|棺B(上)
|
||||
Coffin C (Bottom)|棺C(下)
|
||||
Hexagram|魔法陣
|
||||
Hexagram|魔法陣
|
||||
Hexagram|魔法陣
|
||||
Hexagram (Lit)|魔法陣(光)
|
||||
Hexagram (Lit)|魔法陣(光)
|
||||
Hexagram (Lit)|魔法陣(光)
|
||||
Coffin D (Left)|棺D(左)
|
||||
Coffin D (Left)|棺D(左)
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Rails (Ruins)|線路(廃墟)
|
||||
Rails (Ruins)|線路(廃墟)
|
||||
Rails (Ruins)|線路(廃墟)
|
||||
Rails (Ruins)|線路(廃墟)
|
||||
Rails|線路
|
||||
Railroad Ties A|枕木A
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Railroad Ties B|枕木B
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Rails|線路
|
||||
Mural A|壁画A
|
||||
Hieroglyph|ヒエログリフ
|
||||
Hieroglyph|ヒエログリフ
|
||||
Large Mural A|大きな壁画A
|
||||
Large Mural A|大きな壁画A
|
||||
Large Mural A|大きな壁画A
|
||||
Bed|ベッド
|
||||
Bed (Ruins)|ベッド(廃墟)
|
||||
Mural B|壁画B
|
||||
Hieroglyph|ヒエログリフ
|
||||
Hieroglyph|ヒエログリフ
|
||||
Large Mural B|大きな壁画B
|
||||
Large Mural B|大きな壁画B
|
||||
Large Mural B|大きな壁画B
|
||||
Bed|ベッド
|
||||
Bed (Ruins)|ベッド(廃墟)
|
||||
Middle Window A|中型窓A
|
||||
Middle Window B|中型窓B
|
||||
Middle Window C|中型窓C
|
||||
Middle Window D (Ruins)|中型窓窓D(廃墟)
|
||||
Window (Demon Castle)|窓(魔王城)
|
||||
Table|テーブル
|
||||
Cheap Bed|粗末なベッド
|
||||
Straw Bed|むしろの寝床
|
||||
Middle Window A|中型窓A
|
||||
Middle Window B|中型窓B
|
||||
Middle Window C|中型窓C
|
||||
Middle Window D (Ruins)|中型窓窓D(廃墟)
|
||||
Window (Demon Castle)|窓(魔王城)
|
||||
Stool|椅子
|
||||
Cheap Bed|粗末なベッド
|
||||
Straw Bed|むしろの寝床
|
||||
Large Window A|大型窓A
|
||||
Large Window B|大型窓B
|
||||
Large Window C|大型窓C
|
||||
Stained Glass Window|ステンドグラス
|
||||
Large Window D|大型窓D
|
||||
Window A|窓A
|
||||
Window B|窓B
|
||||
Window C|窓C
|
||||
Large Window A|大型窓A
|
||||
Large Window B|大型窓B
|
||||
Large Window C|大型窓C
|
||||
Stained Glass Window|ステンドグラス
|
||||
Large Window D|大型窓D
|
||||
Window A|窓A
|
||||
Window B|窓B
|
||||
Window C|窓C
|
||||
Chest A|チェストA
|
||||
Cabinet|キャビネット
|
||||
Closet|クローゼット
|
||||
Chest of Drawers|タンス
|
||||
Dish Cabinet|食器棚
|
||||
Wine Rack|ワインセラー
|
||||
Bottle Shelf A|ボトル棚A
|
||||
Bottle Shelf B|ボトル棚B
|
||||
Chest B|チェストB
|
||||
Chest C|チェストC
|
||||
Closet|クローゼット
|
||||
Chest of Drawers|タンス
|
||||
Dish Cabinet|食器棚
|
||||
Wine Rack|ワインセラー
|
||||
Bottle Shelf A|ボトル棚A
|
||||
Bottle Shelf B|ボトル棚B
|
||||
Tipped Shelf|倒れた棚
|
||||
Sundries Shelf A|雑貨棚A
|
||||
Sundries Shelf A|雑貨棚A
|
||||
Sundries Shelf B|雑貨棚B
|
||||
Medicine Shelf|薬品棚
|
||||
Bookshelf A|本棚A
|
||||
Bookshelf B|本棚B
|
||||
Bookshelf B|本棚B
|
||||
Tipped Shelf|倒れた棚
|
||||
Sundries Shelf A|雑貨棚A
|
||||
Sundries Shelf A|雑貨棚A
|
||||
Sundries Shelf B|雑貨棚B
|
||||
Medicine Shelf|薬品棚
|
||||
Bookshelf A|本棚A
|
||||
Bookshelf B|本棚B
|
||||
Bookshelf B|本棚B
|
||||
Curtains A|カーテンA
|
||||
Curtains B|カーテンB
|
||||
Curtains C|カーテンC
|
||||
Curtains D|カーテンD
|
||||
Curtains A (Ruins)|カーテンA(廃墟)
|
||||
Curtains B (Ruins)|カーテンB(廃墟)
|
||||
Curtains C (Ruins)|カーテンC(廃墟)
|
||||
Curtains D (Ruins)|カーテンD(廃墟)
|
||||
Curtains A|カーテンA
|
||||
Curtains B|カーテンB
|
||||
Curtains C|カーテンC
|
||||
Curtains D|カーテンD
|
||||
Curtains A (Ruins)|カーテンA(廃墟)
|
||||
Curtains B (Ruins)|カーテンB(廃墟)
|
||||
Curtains C (Ruins)|カーテンC(廃墟)
|
||||
Curtains D (Ruins)|カーテンD(廃墟)
|
||||
Clock|時計
|
||||
Mirror|鏡
|
||||
Clock (Ruins)|時計(廃墟)
|
||||
Mirror (Ruins)|鏡(廃墟)
|
||||
Stacked Crates|積まれた木箱
|
||||
Stacked Crates|積まれた木箱
|
||||
Tapestry A|タペストリーA
|
||||
Tapestry A (Ruins)|タペストリーA(廃墟)
|
||||
Clock|時計
|
||||
Mirror|鏡
|
||||
Clock (Ruins)|時計(廃墟)
|
||||
Mirror (Ruins)|鏡(廃墟)
|
||||
Stacked Crates|積まれた木箱
|
||||
Stacked Crates|積まれた木箱
|
||||
Tapestry A|タペストリーA
|
||||
Tapestry A (Ruins)|タペストリーA(廃墟)
|
||||
Chair A (Wood)|背もたれ椅子A(木製)
|
||||
Chair B (Stone)|背もたれ椅子B(石)
|
||||
Throne A|玉座A
|
||||
Throne A|玉座A
|
||||
Throne A|玉座A
|
||||
Throne B (Demon Castle)|玉座B(魔王城)
|
||||
Throne B (Demon Castle)|玉座B(魔王城)
|
||||
Throne B (Demon Castle)|玉座B(魔王城)
|
||||
Chair A (Wood)|背もたれ椅子A(木製)
|
||||
Chair B (Stone)|背もたれ椅子B(石)
|
||||
Throne A|玉座A
|
||||
Throne A|玉座A
|
||||
Throne A|玉座A
|
||||
Throne B (Demon Castle)|玉座B(魔王城)
|
||||
Throne B (Demon Castle)|玉座B(魔王城)
|
||||
Throne B (Demon Castle)|玉座B(魔王城)
|
||||
16
img/tilesets/MZ_Inside_A1.txt
Normal file
16
img/tilesets/MZ_Inside_A1.txt
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
Water A|水場A
|
||||
Deep Water|深い水場
|
||||
Lotus Pads (Flowers)|蓮の葉(花)
|
||||
Purple Water|紫の水
|
||||
Water B (Surround Stonewall)|水場B(囲み石壁)
|
||||
Waterfall A (Shine Fall)|滝A(光る滝)
|
||||
Pond A (Rock Pond)|池A(岩池)
|
||||
Waterfall B (Grid Fall)|滝B(マス目滝)
|
||||
Water C (Tile)|水場C(タイル)
|
||||
Water D (Small Hole)|水場D(小穴)
|
||||
Water E (Water Surface)|水場E(水面)
|
||||
Water F (Water Footing)|水場F(足場)
|
||||
Water G (Surround Waterwall)|水場G(囲み水壁)
|
||||
Water H (Big Hole)|水場H(大穴)
|
||||
Pond B (Purple Rock Pond)|池B(紫岩池)
|
||||
Waterfall C (Purple Fall)|滝C(紫滝)
|
||||
32
img/tilesets/MZ_Inside_A2.txt
Normal file
32
img/tilesets/MZ_Inside_A2.txt
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
Ground A (Wood Floor Stripe)|床A(木目縦床)
|
||||
Ground B (Stone Floor Tile)|床B(石タイル床)
|
||||
Ground C (Dirt Floor)|床C(土床)
|
||||
Tatami|畳
|
||||
Hole A (Orange Cave)|穴A(オレンジ)
|
||||
Raised Stone A (Blue)|石段(青)
|
||||
Ground D (Black Floor)|床D(黒床)
|
||||
Table A (Wood)|テーブルA(木製)
|
||||
Ground E (Wood Floor Border)|床E(木目横床)
|
||||
Ground F (Stone Floor Brick)|床F(石レンガ床)
|
||||
Rug A (Red Flower)|じゅうたんA(赤花じゅうたん)
|
||||
Rug B (Oriental Green)|じゅうたんB(オリエント緑じゅうたん)
|
||||
Hole B (Brown Cave)|穴B(茶色)
|
||||
Raised Stone B (Purple)|石段(紫)
|
||||
Ground G (Dark Enclave Floor)|床G(暗い飛び地)
|
||||
Table B (Dark Wood)|テーブルB(濃い木製)
|
||||
Ground H (Wood Floor Lattice)|床H(木格子)
|
||||
Ground I (Stone Floor Color Tile)|床I(石カラータイル床)
|
||||
Rug C (Oriental Blue)|じゅうたんC(オリエント青じゅうたん)
|
||||
Rug D (Oriental Redpink)|じゅうたんD(オリエント赤ピンクじゅうたん)
|
||||
Hole C (Black Cave)|穴C(黒色)
|
||||
Raised Stone B (Yellow)|石段(黄)
|
||||
Ground J (Enclave Floor)|床J(飛び地)
|
||||
Table C (White Wood)|テーブルC(白木製)
|
||||
Ground K (Oriental Floor)|床K(オリエント床)
|
||||
Ground L (Stone Floor X Tile)|床L(石X字タイル床)
|
||||
Rug E (Oriental Red)|じゅうたんE(オリエント赤じゅうたん)
|
||||
Rug F (Oriental Purple)|じゅうたんF(オリエント紫じゅうたん)
|
||||
Hole D (Square Black Cave)|穴D(四角黒色)
|
||||
Raised Stone C (Gray)|石段(灰色)
|
||||
Ground M (Stone Enclave Floor)|床M(石飛び地)
|
||||
Table D (White Cloth)|テーブルD(白布)
|
||||
48
img/tilesets/MZ_Inside_A4.txt
Normal file
48
img/tilesets/MZ_Inside_A4.txt
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
Wall A (Stone)|壁A(石)
|
||||
Wall B (Castle)|壁B(城)
|
||||
Wall C (Fort)|壁C(砦)
|
||||
Wall D (Stone)|壁D(石)
|
||||
Wall E (Stone)|壁E(石)
|
||||
Wall F (Brick)|壁F(レンガ)
|
||||
Wall G (Stone)|壁G(石)
|
||||
Interior Wall A (Stone)|内装壁A(石)
|
||||
Wall A (Stone)|壁A(石)
|
||||
Wall B (Castle)|壁B(城)
|
||||
Wall C (Fort)|壁C(砦)
|
||||
Wall D (Stone)|壁D(石)
|
||||
Wall E (Stone)|壁E(石)
|
||||
Wall F (Brick)|壁F(レンガ)
|
||||
Wall G (Stone)|壁G(石)
|
||||
Interior Wall A (Stone)|内装壁A(石)
|
||||
Wall H (Wood)|壁H(木造)
|
||||
Wall I (Log)|壁I(丸太)
|
||||
Wall J (Wood)|壁J(木造)
|
||||
Interior Wall B (Plaster)|内装壁B(石膏壁)
|
||||
Interior Wall C (Plaster)|内装壁C(石膏壁)
|
||||
Wall K (Stone)|壁K(石)
|
||||
Wall L (Marble)|壁L(大理石)
|
||||
Wall M (Marble)|壁M(大理石)
|
||||
Wall H (Wood)|壁H(木造)
|
||||
Wall I (Log)|壁I(丸太)
|
||||
Wall J (Wood)|壁J(木造)
|
||||
Interior Wall B (Plaster)|内装壁B(石膏壁)
|
||||
Interior Wall C (Plaster)|内装壁C(石膏壁)
|
||||
Wall K (Stone)|壁K(石)
|
||||
Wall L (Marble)|壁L(大理石)
|
||||
Wall M (Marble)|壁M(大理石)
|
||||
Interior Wall D (Desert)|内装壁D(砂漠風)
|
||||
Interior Wall E (Desert)|内装壁E(砂漠風)
|
||||
Interior Wall F (Mansion)|内装壁F(豪邸)
|
||||
Interior Wall G (Mansion)|内装壁G(豪邸)
|
||||
Wall N (Tent)|壁N(テント)
|
||||
Wall O (Demon Castle)|壁O(魔王城)
|
||||
Wall P (Gold)|壁P(黄金)
|
||||
Wall Q (Ice)|壁Q(氷)
|
||||
Interior Wall D (Desert)|内装壁D(砂漠風)
|
||||
Interior Wall E (Desert)|内装壁E(砂漠風)
|
||||
Interior Wall F (Mansion)|内装壁F(豪邸)
|
||||
Interior Wall G (Mansion)|内装壁G(豪邸)
|
||||
Wall N (Tent)|壁N(テント)
|
||||
Wall O (Demon Castle)|壁O(魔王城)
|
||||
Wall P (Gold)|壁P(黄金)
|
||||
Wall Q (Ice)|壁Q(氷)
|
||||
128
img/tilesets/MZ_Inside_A5.txt
Normal file
128
img/tilesets/MZ_Inside_A5.txt
Normal file
|
|
@ -0,0 +1,128 @@
|
|||
Darkness|暗闇
|
||||
Dirt Floor|土の床
|
||||
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|透明
|
||||
Dirt Ledge|土の段差
|
||||
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 (Wood)|段差C(木製)
|
||||
Ledge D (Wood)|段差D(木製)
|
||||
Ledge E (Stone)|段差E(石)
|
||||
Ledge F (Stone)|段差F(石)
|
||||
Ledge G (Stone)|段差G(石)
|
||||
Ledge H (Stone)|段差H(石)
|
||||
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|石畳E
|
||||
Interior Floor A (Tile)|内装床A(タイル)
|
||||
Interior Floor B (Tile)|内装床B(タイル)
|
||||
Interior Floor C (Tile)|内装床C(タイル)
|
||||
Interior Floor D (Stone)|内装床D(石)
|
||||
Interior Floor E (Tile)|内装床E(タイル)
|
||||
Interior Floor F (Tile)|内装床F(タイル)
|
||||
Interior Floor G (Tile)|内装床G(タイル)
|
||||
Ledge I (Stone)|段差I(石)
|
||||
Ledge J (Stone)|段差J(石)
|
||||
Ledge K (Stone)|段差K(石)
|
||||
Ledge L (Stone)|段差L(石)
|
||||
Ledge M (Stone)|段差M(石)
|
||||
Ledge N (Stone)|段差N(石)
|
||||
Ledge O (Stone)|段差O(石)
|
||||
Ledge P (Stone)|段差P(石)
|
||||
Cobblestones E (Ruins)|石畳E(廃墟)
|
||||
Interior Floor A (Tile, Ruins)|内装床A(タイル・廃墟)
|
||||
Interior Floor B (Tile, Ruins)|内装床B(タイル・廃墟)
|
||||
Interior Floor C (Tile, Ruins)|内装床C(タイル・廃墟)
|
||||
Interior Floor D (Stone, Ruins)|内装床D(石・廃墟)
|
||||
Interior Floor E (Tile, Ruins)|内装床E(タイル・廃墟)
|
||||
Interior Floor F (Tile, Ruins)|内装床F(タイル・廃墟)
|
||||
Interior Floor G (Tile, Ruins)|内装床G(タイル・廃墟)
|
||||
Cobblestones F|石畳F
|
||||
Interior Floor H (Dirt)|内装床H(土)
|
||||
Interior Floor I (Marble)|内装床I(大理石)
|
||||
Interior Floor J (Carpet)|内装床J(じゅうたん)
|
||||
Interior Floor K (Demon Castle)|内装床K(魔王城)
|
||||
Interior Floor L (Demon Castle)|内装床L(魔王城)
|
||||
Gold Floor|黄金の床
|
||||
Ice Floor|氷の床
|
||||
Ledge Q (Stone)|段差Q(石)
|
||||
Ledge R (Dirt)|段差R(土)
|
||||
Ledge S (Marble)|段差S(大理石)
|
||||
Ledge T (Carpet)|段差T(じゅうたん)
|
||||
Ledge U (Demon Castle)|段差U(魔界城)
|
||||
Ledge V (Demon Castle)|段差V(魔界城)
|
||||
Ledge W (Gold)|段差W(黄金)
|
||||
Ledge X (Ice)|段差X(氷)
|
||||
Cobblestones F (Ruins)|石畳F(廃墟)
|
||||
Interior Floor H (Dirt, Ruins)|内装床H(土・廃墟)
|
||||
Interior Floor I (Marble, Ruins)|内装床I(大理石・廃墟)
|
||||
Interior Floor J (Carpet, Ruins)|内装床J(じゅうたん・廃墟)
|
||||
Interior Floor K (Demon Castle, Ruins)|内装床K(魔王城・廃墟)
|
||||
Interior Floor L (Demon Castle, Ruins)|内装床L(魔王城・廃墟)
|
||||
Gold Floor (Ruins)|黄金の床(廃墟)
|
||||
Ice Floor (Ruins)|氷の床(廃墟)
|
||||
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(じゅうたん)
|
||||
Large Relief Floor Tile|大きなレリーフ床
|
||||
Large Relief Floor Tile|大きなレリーフ床
|
||||
Large Relief Floor Tile (Ruins)|大きなレリーフ床(廃墟)
|
||||
Large Relief Floor Tile (Ruins)|大きなレリーフ床(廃墟)
|
||||
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|大きなレリーフ床
|
||||
Large Relief Floor Tile|大きなレリーフ床
|
||||
Large Relief Floor Tile (Ruins)|大きなレリーフ床(廃墟)
|
||||
Large Relief Floor Tile (Ruins)|大きなレリーフ床(廃墟)
|
||||
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
img/tilesets/MZ_Inside_B.txt
Normal file
256
img/tilesets/MZ_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|鉄ばしご
|
||||
Wood Ladder|木製はしご
|
||||
Rope|ロープ
|
||||
Hole|穴
|
||||
Stairs A (Down)|階段A(下り)
|
||||
Stairs B (Down)|階段B(下り)
|
||||
Stairs C (Down)|階段C(下り)
|
||||
Stairs D (Down)|階段D(下り)
|
||||
Metal Ladder|鉄ばしご
|
||||
Wood Ladder|木製はしご
|
||||
Rope|ロープ
|
||||
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)
|
||||
Metal Ladder|鉄ばしご
|
||||
Wood Ladder|木製はしご
|
||||
Rope|ロープ
|
||||
Stone Pillar A|石の柱A
|
||||
Stone Pillar B|石の柱B
|
||||
Fort Pillar|砦の柱
|
||||
Rubble|瓦礫
|
||||
Rubble|瓦礫
|
||||
Hole A (Metal Ladder)|穴A(鉄ばしご)
|
||||
Hole B (Wood Ladder)|穴B(木製はしご)
|
||||
Hole C (Rope)|穴C(ロープ)
|
||||
Stone Pillar A|石の柱A
|
||||
Stone Pillar B|石の柱B
|
||||
Fort Pillar|砦の柱
|
||||
Stone Tablet|石版
|
||||
Fissures A|亀裂A
|
||||
Fissures B|亀裂B
|
||||
Fissures C|亀裂C
|
||||
Fissures D|亀裂D
|
||||
Broken Stone Pillar A|折れた石の柱A
|
||||
Broken Stone Pillar B|折れた石の柱B
|
||||
Broken Fort Pillar|折れた砦の柱
|
||||
Stone Tablet (Ruins)|石版(廃墟)
|
||||
Fissures A|亀裂A
|
||||
Fissures B|亀裂B
|
||||
Fissures C|亀裂C
|
||||
Fissures E|亀裂E
|
||||
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(廃墟)
|
||||
Middle Window A|中型窓A
|
||||
Middle Window A|中型窓A
|
||||
Middle Window B|中型窓B
|
||||
Middle Window B|中型窓B
|
||||
Large Window A|大型窓A
|
||||
Large Window B|大型窓B
|
||||
Large Window C|大型窓C
|
||||
Stained Glass Window|ステンドグラス
|
||||
Middle Window A|中型窓A
|
||||
Middle Window A|中型窓A
|
||||
Middle Window B|中型窓B
|
||||
Middle Window B|中型窓B
|
||||
Large Window A|大型窓A
|
||||
Large Window B|大型窓B
|
||||
Large Window C|大型窓C
|
||||
Stained Glass Window|ステンドグラス
|
||||
Tapestry A|タペストリーA
|
||||
Tapestry A (Ruins)|タペストリーA(廃墟)
|
||||
Swords A|剣A
|
||||
Swords B|剣B
|
||||
Large Window D|大型窓D
|
||||
Window A|窓A
|
||||
Window B|窓B
|
||||
Window C|窓C
|
||||
Tapestry A|タペストリーA
|
||||
Tapestry A (Ruins)|タペストリーA(廃墟)
|
||||
Shield|盾
|
||||
Posted Notice|貼り紙
|
||||
Large Window D|大型窓D
|
||||
Window A|窓A
|
||||
Window B|窓B
|
||||
Window C|窓C
|
||||
Sofa (Castle)|ソファ(城)
|
||||
Sofa (Castle)|ソファ(城)
|
||||
Sofa (Castle)|ソファ(城)
|
||||
Sofa (Castle)|ソファ(城)
|
||||
Sofa (Castle)|ソファ(城)
|
||||
Chair A (Wood)|背もたれ椅子A(木製)
|
||||
Chair B (Stone)|背もたれ椅子B(石)
|
||||
Throne (Demon Castle)|玉座(魔王城)
|
||||
Sofa (Castle)|ソファ(城)
|
||||
Sofa (Castle)|ソファ(城)
|
||||
Sofa (Castle)|ソファ(城)
|
||||
Sofa (Castle)|ソファ(城)
|
||||
Sofa (Castle)|ソファ(城)
|
||||
Chair A (Wood)|背もたれ椅子A(木製)
|
||||
Chair B (Stone)|背もたれ椅子B(石)
|
||||
Throne (Demon Castle)|玉座(魔王城)
|
||||
Table A|テーブルA
|
||||
Table A|テーブルA
|
||||
Table B|テーブルB
|
||||
Table C|テーブルC
|
||||
Table D|テーブルD
|
||||
Clock|時計
|
||||
Mirror|鏡
|
||||
Window (Demon Castle)|窓(魔王城)
|
||||
Stool A|椅子A
|
||||
Stool B|椅子B
|
||||
Stool C|椅子C
|
||||
Table E|テーブルE
|
||||
Table F|テーブルF
|
||||
Clock|時計
|
||||
Mirror|鏡
|
||||
Window (Demon Castle)|窓(魔王城)
|
||||
World Map|世界地図
|
||||
World Map|世界地図
|
||||
Painting|絵画
|
||||
Painting|絵画
|
||||
Portrait A|肖像画A
|
||||
Portrait B|肖像画B
|
||||
Painting A|絵画A
|
||||
Painting B|絵画B
|
||||
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|倒れた棚
|
||||
Simple Shelf A (Jars)|簡易棚A(瓶)
|
||||
Simple Shelf B (Books)|簡易棚B(本)
|
||||
Fireplace A (Stone)|暖炉A(石)
|
||||
Fireplace B (Brick)|暖炉B(レンガ)
|
||||
Fireplace C (Iron)|暖炉C(鉄)
|
||||
Large Fireplace|大きな暖炉
|
||||
Large Fireplace|大きな暖炉
|
||||
Large Fireplace|大きな暖炉
|
||||
Simple Shelf C (Sacks)|簡易棚C(袋)
|
||||
Simple Shelf D (Bottles)|簡易棚D(ボトル)
|
||||
Fireplace A (Stone)|暖炉A(石)
|
||||
Fireplace B (Brick)|暖炉B(レンガ)
|
||||
Fireplace C (Iron)|暖炉C(鉄)
|
||||
Large Fireplace|大きな暖炉
|
||||
Large Fireplace|大きな暖炉
|
||||
Large Fireplace|大きな暖炉
|
||||
Oven|かまど
|
||||
Sink|流し
|
||||
Kitchen Counter A|調理台A
|
||||
Kitchen Counter B|調理台B
|
||||
Dresser|ドレッサー
|
||||
Piano|ピアノ
|
||||
Piano|ピアノ
|
||||
Piano|ピアノ
|
||||
Simple Shelf E|簡易棚E
|
||||
Pot A|壺A
|
||||
Pot B|壺B
|
||||
Basin|桶
|
||||
Barrel|樽
|
||||
Piano|ピアノ
|
||||
Piano|ピアノ
|
||||
Piano|ピアノ
|
||||
Posted Notice (Ruins)|貼り紙(廃墟)
|
||||
Basin|桶
|
||||
Tub A|たらいA
|
||||
Tub B|たらいB
|
||||
Scrap Wood|端材
|
||||
Pipe Organ|パイプオルガン
|
||||
Pipe Organ|パイプオルガン
|
||||
Pipe Organ|パイプオルガン
|
||||
Crate A|木箱A
|
||||
Crate B|木箱B
|
||||
Stacked Crates|積まれた木箱
|
||||
Stacked Crates|積まれた木箱
|
||||
Crate C (Ruins)|木箱C(廃墟)
|
||||
Pipe Organ|パイプオルガン
|
||||
Pipe Organ|パイプオルガン
|
||||
Pipe Organ|パイプオルガン
|
||||
Crate D|木箱D
|
||||
Crate E|木箱E
|
||||
Stacked Crates|積まれた木箱
|
||||
Stacked Crates|積まれた木箱
|
||||
Pot C (Ruins)|壺C(廃墟)
|
||||
Barrel (Ruins)|樽(廃墟)
|
||||
Table A (Ruins)|テーブルA(廃墟)
|
||||
Stool (Ruins)|椅子(廃墟)
|
||||
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
img/tilesets/MZ_Inside_C.txt
Normal file
256
img/tilesets/MZ_Inside_C.txt
Normal file
|
|
@ -0,0 +1,256 @@
|
|||
Teapot A|ティーポットA
|
||||
Teapot B|ティーポットB
|
||||
Cup (Lower Left)|カップ(左下)
|
||||
Cup (Upper Right)|カップ(右上)
|
||||
Pot A|ポットA
|
||||
Pot B|ポットB
|
||||
Glass A (Lower Left)|グラスA(左下)
|
||||
Glass A (Upper Right)|グラスA(右上)
|
||||
Bottle A|ボトルA
|
||||
Bottle B|ボトルB
|
||||
Glass B (Lower Left)|グラスB(左下)
|
||||
Glass B (Upper Right)|グラスB(右上)
|
||||
Glass C (Lower Left)|グラスC(左下)
|
||||
Glass C (Upper Right)|グラスC(右上)
|
||||
Glass D (Lower Left)|グラスD(左下)
|
||||
Glass D (Upper Right)|グラスD(右上)
|
||||
Pot C|ポットC
|
||||
Pot D|ポットD
|
||||
Pint Mug A (Lower Left)|ジョッキA(左下)
|
||||
Pint Mug A (Upper Right)|ジョッキA(右上)
|
||||
Pint Mug B (Lower Left)|ジョッキB(左下)
|
||||
Pint Mug B (Upper Right)|ジョッキB(右上)
|
||||
Glass E (Lower Left)|グラスE(左下)
|
||||
Glass E (Upper Right)|グラスE(右上)
|
||||
Bottle C|ボトルC
|
||||
Broken Bottle|割れたボトル
|
||||
Bottle D|ボトルD
|
||||
Bottle E|ボトルE
|
||||
Bottle F|ボトルF
|
||||
Pint Mug C|ジョッキC
|
||||
Pint Mug D|ジョッキD
|
||||
Glass F|グラスF
|
||||
Side Dishes|副菜
|
||||
Meal (Meat)|肉料理
|
||||
Assorted Vegetables|野菜盛り合わせ
|
||||
Assorted Fruitsl|フルーツ盛り合わせ
|
||||
Roast Chicken|丸焼き
|
||||
Meal (Fish)|魚料理
|
||||
Pasta|パスタ
|
||||
Assorted Cakes|ケーキ盛り合わせ
|
||||
Dinner Set A (Bottom)|夕食セットA(下)
|
||||
Dinner Set B (Top)|夕食セットB(上)
|
||||
Dinner Set C (Left)|夕食セットC(左)
|
||||
Dinner Set D (Right)|夕食セットD(右)
|
||||
Gratin|グラタン
|
||||
Fried Rice|チャーハン
|
||||
Beef Stew|ビーフシチュー
|
||||
Paella|パエリア
|
||||
Breakfast Set A (Bottom)|朝食セットA(下)
|
||||
Breakfast Set B (Top)|朝食セットB(上)
|
||||
Breakfast Set C (Left)|朝食セットC(左)
|
||||
Breakfast Set D (Right)|朝食セットD(右)
|
||||
Assorted Cheeses|チーズ盛り合わせ
|
||||
Stew|シチュー
|
||||
Mushroom Dishes|きのこ料理
|
||||
Tart|タルト
|
||||
Beer Barrel A|ビール樽A
|
||||
Beer Barrel B|ビール樽B
|
||||
Plate A|皿A
|
||||
Plates B|皿B
|
||||
Plates C|皿C
|
||||
Chopping Board|まな板
|
||||
Soup Bowl|スープボウル
|
||||
Paella Pan|パエリア鍋
|
||||
Closed Book A (V)|閉じた本A(縦)
|
||||
Closed Book A (H)|閉じた本A(横)
|
||||
Closed Book B (V)|閉じた本B(縦)
|
||||
Closed Book B (H)|閉じた本B(横)
|
||||
Open Book A (V)|開いた本A(縦)
|
||||
Open Book A (H)|開いた本A(横)
|
||||
Closed Books C|閉じた本C
|
||||
Closed Book D|閉じた本D
|
||||
Note A (V)|メモA(縦)
|
||||
Note A (H)|メモA(横)
|
||||
Notes B (V)|メモB(縦)
|
||||
Pen A|ペン
|
||||
Map A (V)|地図A(縦)
|
||||
Map B (H)|地図B(横)
|
||||
Note C (V)|メモC(縦)
|
||||
Note C (H)|メモC(横)
|
||||
Notes D|メモD
|
||||
Envelope|封筒
|
||||
Scrolls A|巻物A
|
||||
Scrolls B|巻物B
|
||||
Planter A|プランターA
|
||||
Planter B|プランターB
|
||||
Potted Plant A|植木鉢A
|
||||
Potted Plant B|植木鉢B
|
||||
Case A|ケースA
|
||||
Case B|ケースB
|
||||
Case C|ケースC
|
||||
Hourglass|砂時計
|
||||
Small Box A|小箱A
|
||||
Small Box B|小箱B
|
||||
Small Box C|小箱C
|
||||
Small Box D|小箱D
|
||||
Sack A|袋A
|
||||
Sacks B|袋B
|
||||
Medicine Bottle A|薬瓶A
|
||||
Medicine Bottles B|薬瓶B
|
||||
Potion A|液体入り瓶A
|
||||
Potion B|液体入り瓶B
|
||||
Potion C|液体入り瓶C
|
||||
Potion D|液体入り瓶D
|
||||
Basket A|バスケットA
|
||||
Basket B|バスケットB
|
||||
Basket C|バスケットC
|
||||
Basket D|バスケットD
|
||||
Rugs A|じゅうたんA
|
||||
Rugs B|じゅうたんB
|
||||
Rugs C|じゅうたんC
|
||||
Balance|天秤
|
||||
Stuffed Doll A|ぬいぐるみA
|
||||
Stuffed Doll B|ぬいぐるみB
|
||||
Stuffed Doll C|ぬいぐるみC
|
||||
Doll A|人形A
|
||||
Doll B|人形B
|
||||
Doll C|人形C
|
||||
Gifts A|プレゼントA
|
||||
Gifts B|プレゼントB
|
||||
Globe|地球儀
|
||||
Bell|ベル
|
||||
Cloth (Magic Circle)|布(魔法陣)
|
||||
Crystal Ball|水晶玉
|
||||
Jewelry Case A|宝石ケースA
|
||||
Necklace|ネックレス
|
||||
Crown|王冠
|
||||
Jewelry Case B|宝石ケースB
|
||||
Sword A|剣A
|
||||
Swords B|剣B
|
||||
Swords C|剣C
|
||||
Axes|斧
|
||||
Spears A|槍A
|
||||
Spears B|槍B
|
||||
Whip|鞭
|
||||
Knives|短剣
|
||||
Cooking Utensils|調理器具
|
||||
Hanging Meat|吊るし肉
|
||||
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 A (Stand)|女物の服A(スタンド)
|
||||
Women's Clothing B (Stand)|女物の服B(スタンド)
|
||||
Armor A (Stand)|鎧A(スタンド)
|
||||
Armor B (Stand)|鎧B(スタンド)
|
||||
Armor C (Stand)|鎧C(スタンド)
|
||||
Armor D (Stand)|鎧D(スタンド)
|
||||
Women's Clothing C (Stand)|女物の服C(スタンド)
|
||||
Men's Clothing A (Stand)|男物の服A(スタンド)
|
||||
Men's Clothing B (Stand)|男物の服B(スタンド)
|
||||
Women's Clothing D (Stand)|女物の服D(スタンド)
|
||||
Church Symbol|教会のシンボル
|
||||
Goddess Statue|女神像
|
||||
God Statue|神像
|
||||
Statue A|石像A
|
||||
Statue B|石像B
|
||||
Dais|台座
|
||||
Repository of Swords|剣立て
|
||||
Repository of Spears|槍立て
|
||||
Church Symbol|教会のシンボル
|
||||
Goddess Statue|女神像
|
||||
God Statue|神像
|
||||
Statue A|石像A
|
||||
Statue B|石像B
|
||||
Broken Statue|壊れた像
|
||||
Repository of Swords|剣立て
|
||||
Repository of Spears|槍立て
|
||||
Church Table|教会机
|
||||
Church Table|教会机
|
||||
Church Table|教会机
|
||||
Decorative Pillar A|装飾柱A
|
||||
Decorative Pillar A|装飾柱A
|
||||
Decorative Pillar B|装飾柱B
|
||||
Decorative Pillar A (Ruins)|装飾柱A(廃墟)
|
||||
Decorative Pillar B (Ruins)|装飾柱B(廃墟)
|
||||
Church Table|教会机
|
||||
Church Table|教会机
|
||||
Church Table|教会机
|
||||
Decorative Pillar A (Ruins)|装飾柱A(廃墟)
|
||||
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
img/tilesets/MZ_Outside_A1.txt
Normal file
16
img/tilesets/MZ_Outside_A1.txt
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
Water A (Meadow)|水場A(草地)
|
||||
Pond|池
|
||||
Swamp Grass A|水草A
|
||||
Swamp Grass B|水草B
|
||||
Water B (Snow)|水場B(雪)
|
||||
Waterfall A|滝A
|
||||
Canal|水路
|
||||
Waterfall B (Stone Wall)|滝B(石壁)
|
||||
Water C (Dirt)|水場C(土)
|
||||
Waterfall C (Cliff)|滝C(崖)
|
||||
Water D (Sand)|水場 D(砂)
|
||||
Waterfall D (Boulder)|滝D(玉石)
|
||||
Water E (Port)|水場E(港)
|
||||
Water Bubbles|泡
|
||||
Poison Swamp|毒の沼
|
||||
Dead Tree|枯れ木
|
||||
32
img/tilesets/MZ_Outside_A2.txt
Normal file
32
img/tilesets/MZ_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 (Dirt)|石畳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(木製・雪)
|
||||
Ledge|段差
|
||||
32
img/tilesets/MZ_Outside_A3.txt
Normal file
32
img/tilesets/MZ_Outside_A3.txt
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
Roof A (Dressed Tile)|屋根A(化粧瓦)
|
||||
Roof B (Pink Tile)|屋根B(ピンク瓦)
|
||||
Roof C (Orange Tile)|屋根C(橙瓦)
|
||||
Roof D (Yellow Tile)|屋根D(黄瓦)
|
||||
Roof E (Wood)|屋根E(木造)
|
||||
Roof F (Wood, Ruins)|屋根F(木造・廃墟)
|
||||
Roof G (Log)|屋根G(丸太)
|
||||
Roof H (Dark Blue Tile)|屋根H(紺瓦)
|
||||
Outer Wall A (Rock Wall)|外壁A(石壁)
|
||||
Outer Wall B (Plaster)|外壁B(石膏壁)
|
||||
Outer Wall C (Brick)|外壁C(レンガ)
|
||||
Outer Wall D (Plaster)|外壁D(石膏壁)
|
||||
Outer Wall E (Wood)|外壁E(木造)
|
||||
Outer Wall F (Wood)|外壁F(木造)
|
||||
Outer Wall G (Log)|外壁G(丸太)
|
||||
Outer Wall H (Demon Castle)外壁H(魔王城)
|
||||
Roof I (Green Tile)|屋根I(緑瓦)
|
||||
Roof J (Temple)|屋根J(神殿)
|
||||
Roof K (Stone)|屋根K(石)
|
||||
Roof L (Thatched)|屋根L(茅葺)
|
||||
Roof M (Tent)|屋根M(テント)
|
||||
Snow Roof A|雪の屋根A
|
||||
Snow Roof B|雪の屋根B
|
||||
Ice Roof|氷の屋根
|
||||
Outer Wall I (Rock Wall)|外壁I(石壁)
|
||||
Outer Wall J (Temple)|外壁J(神殿)
|
||||
Outer Wall K (Rock Wall)|外壁K(石壁)
|
||||
Outer Wall L (Moss)|外壁L(苔)
|
||||
Outer Wall M (Tent)|外壁M(テント)
|
||||
Snow Outer Wall (Brick)|雪の外壁(レンガ)
|
||||
Snow Outer Wall (Wood)|雪の外壁(木造)
|
||||
Ice Outer Wall|氷の外壁
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue