Initial Commit

This commit is contained in:
dazedanon 2025-04-20 09:14:48 -05:00
commit e3ee815912
304 changed files with 1571305 additions and 0 deletions

46
.gitignore vendored Normal file
View file

@ -0,0 +1,46 @@
# Ignore all files
*.*
# File Types
!*.mps
!*.dat
!*.json
!*.txt
!*.project
!*.js
!*.zip
!*.7z
!*.csv
!*.ain
!*.fnl
!*.ks
!*.tjs
!*.yaml
!*.rb
!*.rvdata2
# Other Needed Files
!.gitignore
!README.md
!patch-config.txt
!GameUpdate*
!patch*
!Game.dat
# Ignore
previous_patch_sha.txt
kabe3_save.dat
kabe3_system.dat
psbpack.dat
Save*
# Images
!ero_ste.rpgmvp
!help_01.rpgmvp
!help_02.rpgmvp
!help_03.rpgmvp
!help_04.rpgmvp
!help_05.rpgmvp
!help_06.rpgmvp
!help_07.rpgmvp
!help_08.rpgmvp

1
00chara.json Normal file
View file

@ -0,0 +1 @@
{"identity":"CharacterGeneratorSettings","version":"2.0.0","gender":"female","patterns":{"body":"p01","face":"p01","fronthair":"p06","rearhair":"p17","beard":"","ears":"p01","eyes":"p01","eyebrows":"p01","nose":"p01","mouth":"p01","facialmark":"","beastears":"","tail":"","wing":"","clothing":"p33","cloak":"","acca":"","accb":"","glasses":""},"colors":{"#F9C19D":0,"#2C80CB":0,"#FCCB0A":23,"#B892C5":0,"#009296":0,"#D3CEC7":23,"#AE8682":17,"#FE9D1E":17,"#1C76D0":9,"#D9A404":15,"#D8AC00":17,"#A30708":0,"#D3CEC2":0,"#DA346E":0,"#A4C911":0,"#C78407":15,"#C0D3D2":0,"#4155B6":0,"#BA3B45":0,"#999999":0,"#CCBAD2":0,"#607E4B":0,"#E6D6BD":0,"#A7D6D6":0},"offsets":{"face":{"x":0,"y":0},"fronthair":{"x":0,"y":0},"rearhair":{"x":0,"y":0},"beard":{"x":0,"y":0},"ears":{"x":0,"y":0},"eyes":{"x":0,"y":0},"eyebrows":{"x":0,"y":0},"nose":{"x":0,"y":0},"mouth":{"x":0,"y":0},"facialmark":{"x":0,"y":0},"beastears":{"x":0,"y":0},"tail":{"x":0,"y":0},"wing":{"x":0,"y":0},"clothing":{"x":0,"y":0},"cloak":{"x":0,"y":0},"acca":{"x":0,"y":0},"accb":{"x":0,"y":0},"glasses":{"x":0,"y":0}}}

14
GameUpdate.bat Normal file
View file

@ -0,0 +1,14 @@
@echo off
setlocal
REM Copy GAMEUPDATE.bat to a new file
copy patch.bat patch2.bat
REM Run the new file
call patch2.bat
REM Delete the new file
del patch2.bat
endlocal
@echo on

13
GameUpdate_linux.sh Normal file
View file

@ -0,0 +1,13 @@
#!/bin/bash
# Enable error handling
set -e
# Copy patch.bat to a new file
cp patch.sh patch2.sh
# Run the new file
bash patch2.sh
# Delete the new file
rm patch2.sh

102
README.md Normal file
View 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.

103
data/Actors.json Normal file
View file

@ -0,0 +1,103 @@
[
null,
{
"id": 1,
"battlerName": "",
"characterIndex": 2,
"characterName": "00chara",
"classId": 1,
"equips": [
0,
14,
0,
0,
0
],
"faceIndex": 0,
"faceName": "Actor1",
"traits": [],
"initialLevel": 1,
"maxLevel": 99,
"name": "愛里沙",
"nickname": "OL",
"note": "<コマンド:攻撃, , ,>\n<コマンド:スキル, , ,>\n<コマンド:防御, , ,>\n<コマンド:アイテム, , ,>\n<コマンド:逃げる, , ,>\n<コマンド:オート, , ,>\n<CC演出:121>",
"profile": "",
"params": [],
"damage": {
"critical": "",
"elementId": "",
"formula": "",
"type": "",
"variance": ""
}
},
{
"id": 2,
"battlerName": "",
"characterIndex": 2,
"characterName": "Monster",
"classId": 5,
"equips": [
0,
0,
0,
0,
0
],
"faceIndex": 0,
"faceName": "",
"traits": [],
"initialLevel": 1,
"maxLevel": 99,
"name": "ゴブリン",
"nickname": "",
"note": "",
"profile": ""
},
{
"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": ""
}
]

11180
data/Animations.json Normal file

File diff suppressed because it is too large Load diff

5838
data/Armors.json Normal file

File diff suppressed because it is too large Load diff

4444
data/Classes.json Normal file

File diff suppressed because it is too large Load diff

176286
data/CommonEvents.json Normal file

File diff suppressed because it is too large Load diff

7340
data/Enemies.json Normal file

File diff suppressed because it is too large Load diff

1472
data/Items.json Normal file

File diff suppressed because it is too large Load diff

6666
data/Map001.json Normal file

File diff suppressed because it is too large Load diff

3758
data/Map002.json Normal file

File diff suppressed because it is too large Load diff

3604
data/Map003.json Normal file

File diff suppressed because it is too large Load diff

4131
data/Map004.json Normal file

File diff suppressed because it is too large Load diff

3094
data/Map005.json Normal file

File diff suppressed because it is too large Load diff

2691
data/Map006.json Normal file

File diff suppressed because it is too large Load diff

2183
data/Map007.json Normal file

File diff suppressed because it is too large Load diff

3843
data/Map008.json Normal file

File diff suppressed because it is too large Load diff

20215
data/Map009.json Normal file

File diff suppressed because it is too large Load diff

10195
data/Map010.json Normal file

File diff suppressed because it is too large Load diff

3887
data/Map011.json Normal file

File diff suppressed because it is too large Load diff

3170
data/Map012.json Normal file

File diff suppressed because it is too large Load diff

2140
data/Map013.json Normal file

File diff suppressed because it is too large Load diff

18174
data/Map014.json Normal file

File diff suppressed because it is too large Load diff

6533
data/Map015.json Normal file

File diff suppressed because it is too large Load diff

4810
data/Map016.json Normal file

File diff suppressed because it is too large Load diff

19642
data/Map017.json Normal file

File diff suppressed because it is too large Load diff

13097
data/Map018.json Normal file

File diff suppressed because it is too large Load diff

3151
data/Map019.json Normal file

File diff suppressed because it is too large Load diff

13124
data/Map020.json Normal file

File diff suppressed because it is too large Load diff

13362
data/Map021.json Normal file

File diff suppressed because it is too large Load diff

13106
data/Map022.json Normal file

File diff suppressed because it is too large Load diff

2345
data/Map023.json Normal file

File diff suppressed because it is too large Load diff

6089
data/Map024.json Normal file

File diff suppressed because it is too large Load diff

13226
data/Map025.json Normal file

File diff suppressed because it is too large Load diff

13226
data/Map026.json Normal file

File diff suppressed because it is too large Load diff

13368
data/Map027.json Normal file

File diff suppressed because it is too large Load diff

1363
data/Map028.json Normal file

File diff suppressed because it is too large Load diff

11869
data/Map029.json Normal file

File diff suppressed because it is too large Load diff

5212
data/Map030.json Normal file

File diff suppressed because it is too large Load diff

39942
data/Map031.json Normal file

File diff suppressed because it is too large Load diff

6522
data/Map032.json Normal file

File diff suppressed because it is too large Load diff

5456
data/Map033.json Normal file

File diff suppressed because it is too large Load diff

2693
data/Map034.json Normal file

File diff suppressed because it is too large Load diff

6615
data/Map035.json Normal file

File diff suppressed because it is too large Load diff

7449
data/Map036.json Normal file

File diff suppressed because it is too large Load diff

8931
data/Map037.json Normal file

File diff suppressed because it is too large Load diff

3044
data/Map038.json Normal file

File diff suppressed because it is too large Load diff

4130
data/Map039.json Normal file

File diff suppressed because it is too large Load diff

2092
data/Map040.json Normal file

File diff suppressed because it is too large Load diff

4019
data/Map041.json Normal file

File diff suppressed because it is too large Load diff

2308
data/Map042.json Normal file

File diff suppressed because it is too large Load diff

4604
data/Map043.json Normal file

File diff suppressed because it is too large Load diff

4144
data/Map044.json Normal file

File diff suppressed because it is too large Load diff

4627
data/Map045.json Normal file

File diff suppressed because it is too large Load diff

5394
data/Map046.json Normal file

File diff suppressed because it is too large Load diff

5650
data/Map047.json Normal file

File diff suppressed because it is too large Load diff

3852
data/Map048.json Normal file

File diff suppressed because it is too large Load diff

5130
data/Map049.json Normal file

File diff suppressed because it is too large Load diff

5518
data/Map050.json Normal file

File diff suppressed because it is too large Load diff

8181
data/Map051.json Normal file

File diff suppressed because it is too large Load diff

3156
data/Map052.json Normal file

File diff suppressed because it is too large Load diff

8203
data/Map053.json Normal file

File diff suppressed because it is too large Load diff

5257
data/Map054.json Normal file

File diff suppressed because it is too large Load diff

3975
data/Map055.json Normal file

File diff suppressed because it is too large Load diff

8183
data/Map056.json Normal file

File diff suppressed because it is too large Load diff

3156
data/Map057.json Normal file

File diff suppressed because it is too large Load diff

2918
data/Map058.json Normal file

File diff suppressed because it is too large Load diff

10370
data/Map059.json Normal file

File diff suppressed because it is too large Load diff

1812
data/Map060.json Normal file

File diff suppressed because it is too large Load diff

1363
data/Map061.json Normal file

File diff suppressed because it is too large Load diff

7370
data/Map062.json Normal file

File diff suppressed because it is too large Load diff

3061
data/Map063.json Normal file

File diff suppressed because it is too large Load diff

2290
data/Map064.json Normal file

File diff suppressed because it is too large Load diff

3483
data/Map065.json Normal file

File diff suppressed because it is too large Load diff

1582
data/Map072.json Normal file

File diff suppressed because it is too large Load diff

8103
data/Map073.json Normal file

File diff suppressed because it is too large Load diff

903
data/MapInfos.json Normal file
View file

@ -0,0 +1,903 @@
[
null,
{
"id": 1,
"expanded": false,
"name": "自室",
"order": 30,
"parentId": 31,
"scrollX": 1704,
"scrollY": 685.6363636363636,
"quick": false
},
{
"id": 2,
"expanded": false,
"name": "本屋",
"order": 65,
"parentId": 61,
"scrollX": 1713.818181818182,
"scrollY": 686.7272727272727,
"quick": false
},
{
"id": 3,
"expanded": true,
"name": "エレベーター",
"order": 66,
"parentId": 61,
"scrollX": 571,
"scrollY": 391,
"quick": false
},
{
"id": 4,
"expanded": false,
"name": "テント",
"order": 67,
"parentId": 61,
"scrollX": 1713.818181818182,
"scrollY": 695.4545454545455,
"quick": false
},
{
"id": 5,
"expanded": false,
"name": "独身貴族の部屋",
"order": 43,
"parentId": 59,
"scrollX": 677,
"scrollY": 481,
"quick": false
},
{
"id": 6,
"expanded": false,
"name": "バックヤード",
"order": 38,
"parentId": 52,
"scrollX": 0,
"scrollY": 0,
"quick": false
},
{
"id": 7,
"expanded": false,
"name": "タイトル",
"order": 1,
"parentId": 0,
"scrollX": 1713.818181818182,
"scrollY": 695.4545454545455,
"quick": false
},
{
"id": 8,
"expanded": false,
"name": "トイレ",
"order": 41,
"parentId": 55,
"scrollX": 1713.818181818182,
"scrollY": 686.7272727272727,
"quick": false
},
{
"id": 9,
"expanded": false,
"name": "回想部屋",
"order": 3,
"parentId": 0,
"scrollX": 1713.818181818182,
"scrollY": 686.7272727272727,
"quick": false
},
{
"id": 10,
"expanded": false,
"name": "会社",
"order": 29,
"parentId": 34,
"scrollX": 1704,
"scrollY": 676.909090909091,
"quick": false
},
{
"id": 11,
"expanded": false,
"name": "マッサージ店",
"order": 35,
"parentId": 31,
"scrollX": 1704,
"scrollY": 676.909090909091,
"quick": false
},
{
"id": 12,
"expanded": false,
"name": "ファンの部屋",
"order": 34,
"parentId": 31,
"scrollX": 1713.818181818182,
"scrollY": 695.4545454545455,
"quick": false
},
{
"id": 13,
"expanded": false,
"name": "個室",
"order": 36,
"parentId": 11,
"scrollX": 1571,
"scrollY": 637.5,
"quick": false
},
{
"id": 14,
"expanded": false,
"name": "銭湯",
"order": 33,
"parentId": 31,
"scrollX": 1712.7272727272727,
"scrollY": 969.2727272727274,
"quick": false
},
{
"id": 15,
"expanded": false,
"name": "クラブ",
"order": 49,
"parentId": 59,
"scrollX": 0,
"scrollY": 0,
"quick": false
},
{
"id": 16,
"expanded": false,
"name": "空き教室",
"order": 58,
"parentId": 37,
"scrollX": 973.2,
"scrollY": 603.6,
"params": [],
"damage": {
"critical": "",
"elementId": "",
"formula": "",
"type": "",
"variance": ""
},
"note": ""
},
{
"id": 17,
"expanded": true,
"name": "17テンプレマップ",
"order": 4,
"parentId": 0,
"scrollX": 1713.818181818182,
"scrollY": 695.4545454545455,
"quick": false
},
{
"id": 18,
"expanded": true,
"name": "【ダンジョン1】",
"order": 7,
"parentId": 17,
"scrollX": 1704,
"scrollY": 686.7272727272727
},
{
"id": 19,
"expanded": true,
"name": "【ダンジョン0入口】",
"order": 6,
"parentId": 17,
"scrollX": 1713.818181818182,
"scrollY": 686.7272727272727,
"quick": false
},
{
"id": 20,
"expanded": true,
"name": "【ダンジョン2】",
"order": 9,
"parentId": 17,
"scrollX": 571,
"scrollY": 383
},
{
"id": 21,
"expanded": true,
"name": "【ダンジョン3】",
"order": 11,
"parentId": 17,
"scrollX": 1713.818181818182,
"scrollY": 695.4545454545455
},
{
"id": 22,
"expanded": false,
"name": "【ダンジョン4】",
"order": 14,
"parentId": 17,
"scrollX": 1722.5454545454545,
"scrollY": 696.5454545454546
},
{
"id": 23,
"expanded": false,
"name": "ラブホテル",
"order": 47,
"parentId": 59,
"scrollX": 982.8,
"scrollY": 548.4,
"params": [],
"damage": {
"critical": "",
"elementId": "",
"formula": "",
"type": "",
"variance": ""
},
"note": ""
},
{
"id": 24,
"expanded": false,
"name": "風俗店",
"order": 44,
"parentId": 59,
"scrollX": 982.8,
"scrollY": 548.4,
"params": [],
"damage": {
"critical": "",
"elementId": "",
"formula": "",
"type": "",
"variance": ""
},
"note": ""
},
{
"id": 25,
"expanded": true,
"name": "【ダンジョン5】",
"order": 16,
"parentId": 17,
"scrollX": 1722.5454545454545,
"scrollY": 696.5454545454546
},
{
"id": 26,
"expanded": true,
"name": "【ダンジョン6】",
"order": 19,
"parentId": 17,
"scrollX": 1713.818181818182,
"scrollY": 695.4545454545455
},
{
"id": 27,
"expanded": true,
"name": "【ダンジョン7】",
"order": 22,
"parentId": 17,
"scrollX": 816,
"scrollY": 624
},
{
"id": 28,
"expanded": false,
"name": "ダンジョン階層挟み",
"order": 5,
"parentId": 17,
"scrollX": 1713.818181818182,
"scrollY": 695.4545454545455,
"quick": false
},
{
"id": 29,
"expanded": true,
"name": "【ダンジョン最深層】ラスボス部屋",
"order": 25,
"parentId": 17,
"scrollX": 1712.7272727272727,
"scrollY": 685.6363636363636
},
{
"id": 30,
"expanded": false,
"name": "搾乳部屋",
"order": 10,
"parentId": 20,
"scrollX": 0,
"scrollY": 0,
"quick": false
},
{
"id": 31,
"expanded": true,
"name": "市街地",
"order": 27,
"parentId": 0,
"scrollX": 1713.818181818182,
"scrollY": 1472.1818181818182,
"params": [],
"damage": {
"critical": "",
"elementId": "",
"formula": "",
"type": "",
"variance": ""
},
"note": ""
},
{
"id": 32,
"expanded": false,
"name": "牢屋",
"order": 8,
"parentId": 18,
"scrollX": 0,
"scrollY": 0,
"quick": false
},
{
"id": 33,
"expanded": false,
"name": "媚薬カプセル室",
"order": 15,
"parentId": 22,
"scrollX": 0,
"scrollY": 0,
"quick": false
},
{
"id": 34,
"expanded": true,
"name": "電車",
"order": 28,
"parentId": 31,
"scrollX": 1713.818181818182,
"scrollY": 686.7272727272727,
"params": [],
"damage": {
"critical": "",
"elementId": "",
"formula": "",
"type": "",
"variance": ""
},
"note": ""
},
{
"id": 35,
"expanded": false,
"name": "学校1F",
"order": 51,
"parentId": 61,
"scrollX": 1713.818181818182,
"scrollY": 686.7272727272727,
"params": [],
"damage": {
"critical": "",
"elementId": "",
"formula": "",
"type": "",
"variance": ""
},
"note": ""
},
{
"id": 36,
"expanded": true,
"name": "学校2F",
"order": 52,
"parentId": 35,
"scrollX": 982.8,
"scrollY": 548.4,
"params": [],
"damage": {
"critical": "",
"elementId": "",
"formula": "",
"type": "",
"variance": ""
},
"note": ""
},
{
"id": 37,
"expanded": false,
"name": "学校3F",
"order": 57,
"parentId": 35,
"scrollX": 982.8,
"scrollY": 548.4,
"params": [],
"damage": {
"critical": "",
"elementId": "",
"formula": "",
"type": "",
"variance": ""
},
"note": ""
},
{
"id": 38,
"expanded": false,
"name": "学校屋上",
"order": 59,
"parentId": 35,
"scrollX": 982.8,
"scrollY": 548.4,
"params": [],
"damage": {
"critical": "",
"elementId": "",
"formula": "",
"type": "",
"variance": ""
},
"note": ""
},
{
"id": 39,
"expanded": true,
"name": "体育館",
"order": 60,
"parentId": 35,
"scrollX": 982.8,
"scrollY": 548.4,
"params": [],
"damage": {
"critical": "",
"elementId": "",
"formula": "",
"type": "",
"variance": ""
},
"note": ""
},
{
"id": 40,
"expanded": false,
"name": "体育倉庫",
"order": 61,
"parentId": 39,
"scrollX": 982.8,
"scrollY": 548.4,
"params": [],
"damage": {
"critical": "",
"elementId": "",
"formula": "",
"type": "",
"variance": ""
},
"note": ""
},
{
"id": 41,
"expanded": true,
"name": "プール",
"order": 62,
"parentId": 35,
"scrollX": 973.2,
"scrollY": 603.6,
"params": [],
"damage": {
"critical": "",
"elementId": "",
"formula": "",
"type": "",
"variance": ""
},
"note": ""
},
{
"id": 42,
"expanded": false,
"name": "更衣室",
"order": 63,
"parentId": 41,
"scrollX": 982.8,
"scrollY": 548.4,
"params": [],
"damage": {
"critical": "",
"elementId": "",
"formula": "",
"type": "",
"variance": ""
},
"note": ""
},
{
"id": 43,
"expanded": false,
"name": "図書室",
"order": 53,
"parentId": 36,
"scrollX": 982.8,
"scrollY": 548.4,
"params": [],
"damage": {
"critical": "",
"elementId": "",
"formula": "",
"type": "",
"variance": ""
},
"note": ""
},
{
"id": 44,
"expanded": false,
"name": "職員室",
"order": 54,
"parentId": 36,
"scrollX": 982.8,
"scrollY": 548.4,
"params": [],
"damage": {
"critical": "",
"elementId": "",
"formula": "",
"type": "",
"variance": ""
},
"note": ""
},
{
"id": 45,
"expanded": true,
"name": "2-A",
"order": 55,
"parentId": 36,
"scrollX": 973.2,
"scrollY": 603.6,
"params": [],
"damage": {
"critical": "",
"elementId": "",
"formula": "",
"type": "",
"variance": ""
},
"note": ""
},
{
"id": 46,
"expanded": false,
"name": "改造手術室",
"order": 17,
"parentId": 25,
"scrollX": 1704,
"scrollY": 685.6363636363636,
"quick": false
},
{
"id": 47,
"expanded": false,
"name": "オナホ部屋",
"order": 12,
"parentId": 21,
"scrollX": 1704,
"scrollY": 685.6363636363636,
"quick": false
},
{
"id": 48,
"expanded": false,
"name": "服屋",
"order": 32,
"parentId": 31,
"scrollX": 1713.818181818182,
"scrollY": 695.4545454545455,
"params": [],
"damage": {
"critical": "",
"elementId": "",
"formula": "",
"type": "",
"variance": ""
},
"note": ""
},
{
"id": 49,
"expanded": false,
"name": "VR洗脳ルーム",
"order": 20,
"parentId": 26,
"scrollX": 1713.818181818182,
"scrollY": 686.7272727272727,
"quick": false
},
{
"id": 50,
"expanded": false,
"name": "実験室",
"order": 23,
"parentId": 27,
"scrollX": 832,
"scrollY": 624,
"quick": false
},
{
"id": 51,
"expanded": false,
"name": "歓楽街5(憑依)",
"order": 18,
"parentId": 25,
"scrollX": 992,
"scrollY": 640,
"params": [],
"damage": {
"critical": "",
"elementId": "",
"formula": "",
"type": "",
"variance": ""
},
"note": ""
},
{
"id": 52,
"expanded": true,
"name": "コンビニ",
"order": 37,
"parentId": 31,
"scrollX": 1713.818181818182,
"scrollY": 686.7272727272727,
"params": [],
"damage": {
"critical": "",
"elementId": "",
"formula": "",
"type": "",
"variance": ""
},
"note": ""
},
{
"id": 53,
"expanded": false,
"name": "歓楽街2(公衆便所)",
"order": 13,
"parentId": 21,
"scrollX": 992,
"scrollY": 640,
"params": [],
"damage": {
"critical": "",
"elementId": "",
"formula": "",
"type": "",
"variance": ""
},
"note": ""
},
{
"id": 54,
"expanded": false,
"name": "休憩所",
"order": 21,
"parentId": 26,
"scrollX": 0,
"scrollY": 0,
"quick": false
},
{
"id": 55,
"expanded": true,
"name": "公園",
"order": 40,
"parentId": 31,
"scrollX": 1713.818181818182,
"scrollY": 686.7272727272727,
"params": [],
"damage": {
"critical": "",
"elementId": "",
"formula": "",
"type": "",
"variance": ""
},
"note": ""
},
{
"id": 56,
"expanded": false,
"name": "歓楽街7",
"order": 26,
"parentId": 29,
"scrollX": 1704,
"scrollY": 676.909090909091,
"params": [],
"damage": {
"critical": "",
"elementId": "",
"formula": "",
"type": "",
"variance": ""
},
"note": ""
},
{
"id": 57,
"expanded": true,
"name": "コンビニ2",
"order": 39,
"parentId": 31,
"scrollX": 1713.818181818182,
"scrollY": 686.7272727272727,
"params": [],
"damage": {
"critical": "",
"elementId": "",
"formula": "",
"type": "",
"variance": ""
},
"note": ""
},
{
"id": 58,
"expanded": false,
"name": "アパートの一室",
"order": 64,
"parentId": 61,
"scrollX": 1571,
"scrollY": 629.5,
"params": [],
"damage": {
"critical": "",
"elementId": "",
"formula": "",
"type": "",
"variance": ""
},
"note": ""
},
{
"id": 59,
"expanded": true,
"name": "歓楽街",
"order": 42,
"parentId": 0,
"scrollX": 1713.818181818182,
"scrollY": 686.7272727272727,
"params": [],
"damage": {
"critical": "",
"elementId": "",
"formula": "",
"type": "",
"variance": ""
},
"note": ""
},
{
"id": 60,
"expanded": false,
"name": "エロザウルス",
"order": 45,
"parentId": 59,
"scrollX": 1713.818181818182,
"scrollY": 695.4545454545455,
"params": [],
"damage": {
"critical": "",
"elementId": "",
"formula": "",
"type": "",
"variance": ""
},
"note": ""
},
{
"id": 61,
"expanded": true,
"name": "---------未使用----------",
"order": 50,
"parentId": 0,
"scrollX": 0,
"scrollY": 0,
"quick": false
},
{
"id": 62,
"expanded": false,
"name": "武器屋",
"order": 31,
"parentId": 31,
"scrollX": 1713.818181818182,
"scrollY": 695.4545454545455,
"quick": false
},
{
"id": 63,
"expanded": false,
"name": "プロローグ",
"order": 2,
"parentId": 0,
"scrollX": 1713.818181818182,
"scrollY": 695.4545454545455,
"quick": false
},
{
"id": 64,
"expanded": false,
"name": "AV撮影スタジオ",
"order": 46,
"parentId": 59,
"scrollX": 1713.818181818182,
"scrollY": 695.4545454545455,
"params": [],
"damage": {
"critical": "",
"elementId": "",
"formula": "",
"type": "",
"variance": ""
},
"note": ""
},
{
"id": 65,
"expanded": false,
"name": "幹部執務室",
"order": 24,
"parentId": 27,
"scrollX": 0,
"scrollY": 0,
"quick": false
},
null,
null,
null,
null,
null,
null,
{
"id": 72,
"expanded": false,
"name": "ラブホテル【レナ】",
"order": 48,
"parentId": 59,
"scrollX": 832,
"scrollY": 640,
"params": [],
"damage": {
"critical": "",
"elementId": "",
"formula": "",
"type": "",
"variance": ""
},
"note": ""
},
{
"id": 73,
"expanded": false,
"name": "2-A【イベント2-1】",
"order": 56,
"parentId": 45,
"scrollX": 973.2,
"scrollY": 603.6,
"params": [],
"damage": {
"critical": "",
"elementId": "",
"formula": "",
"type": "",
"variance": ""
},
"note": ""
}
]

5151
data/Skills.json Normal file

File diff suppressed because it is too large Load diff

2998
data/States.json Normal file

File diff suppressed because it is too large Load diff

806
data/System.json Normal file
View file

@ -0,0 +1,806 @@
{
"advanced": {
"gameId": 49602518,
"screenWidth": 1110,
"screenHeight": 624,
"uiAreaWidth": 1110,
"uiAreaHeight": 624,
"numberFontFilename": "KaiseiDecol-Regular.ttf",
"fallbackFonts": "Verdana, sans-serif",
"fontSize": 26,
"mainFontFilename": "KaiseiDecol-Regular.ttf",
"screenScale": 1,
"windowOpacity": 192,
"picturesUpperLimit": 100
},
"airship": {
"bgm": {
"name": "Ship3",
"pan": 0,
"pitch": 100,
"volume": 90
},
"characterIndex": 3,
"characterName": "Vehicle",
"startMapId": 0,
"startX": 0,
"startY": 0
},
"armorTypes": [
"",
"一般防具",
"魔法防具",
"軽装防具",
"重装防具",
"小型盾",
"大型盾"
],
"attackMotions": [
{
"type": 0,
"weaponImageId": 0
},
{
"type": 1,
"weaponImageId": 1
},
{
"type": 1,
"weaponImageId": 2
},
{
"type": 1,
"weaponImageId": 3
},
{
"type": 1,
"weaponImageId": 4
},
{
"type": 1,
"weaponImageId": 5
},
{
"type": 1,
"weaponImageId": 6
},
{
"type": 2,
"weaponImageId": 7
},
{
"type": 2,
"weaponImageId": 8
},
{
"type": 2,
"weaponImageId": 9
},
{
"type": 0,
"weaponImageId": 10
},
{
"type": 0,
"weaponImageId": 11
},
{
"type": 0,
"weaponImageId": 12
}
],
"battleBgm": {
"name": "Survival_Game",
"pan": 0,
"pitch": 100,
"volume": 50
},
"battleback1Name": "GrassMaze",
"battleback2Name": "GrassMaze",
"battlerHue": 0,
"battlerName": "Hi_monster",
"battleSystem": 2,
"boat": {
"bgm": {
"name": "Ship1",
"pan": 0,
"pitch": 100,
"volume": 90
},
"characterIndex": 0,
"characterName": "Vehicle",
"startMapId": 0,
"startX": 0,
"startY": 0
},
"currencyUnit": "円",
"defeatMe": {
"name": "Defeat1",
"pan": 0,
"pitch": 100,
"volume": 90
},
"editMapId": 17,
"elements": [
"",
"物理",
"炎",
"氷",
"雷",
"水",
"土",
"風",
"光",
"闇"
],
"equipTypes": [
"",
"武器",
"服装",
"魔法セット",
"魔法セット",
"魔法セット",
"魔法セット"
],
"gameTitle": "魔法OLマジキャリアリサver1.0.2",
"gameoverMe": {
"name": "Gameover1",
"pan": 0,
"pitch": 100,
"volume": 90
},
"itemCategories": [
true,
true,
true,
true
],
"locale": "ja_JP",
"magicSkills": [
1
],
"menuCommands": [
true,
true,
true,
true,
false,
true
],
"optAutosave": true,
"optDisplayTp": true,
"optDrawTitle": true,
"optExtraExp": false,
"optFloorDeath": false,
"optFollowers": true,
"optKeyItemsNumber": false,
"optSideView": false,
"optSlipDeath": false,
"optTransparent": false,
"partyMembers": [
1
],
"ship": {
"bgm": {
"name": "Ship2",
"pan": 0,
"pitch": 100,
"volume": 90
},
"characterIndex": 1,
"characterName": "Vehicle",
"startMapId": 0,
"startX": 0,
"startY": 0
},
"skillTypes": [
"",
"魔法",
"必殺技"
],
"sounds": [
{
"name": "Cursor1",
"pan": 0,
"pitch": 100,
"volume": 90
},
{
"name": "maou_se_system14",
"pan": 0,
"pitch": 100,
"volume": 90
},
{
"name": "maou_se_system44",
"pan": 0,
"pitch": 100,
"volume": 90
},
{
"name": "Buzzer1",
"pan": 0,
"pitch": 100,
"volume": 90
},
{
"name": "Equip3",
"pan": 0,
"pitch": 100,
"volume": 90
},
{
"name": "system48",
"pan": 0,
"pitch": 100,
"volume": 90
},
{
"name": "maou_se_system29",
"pan": 0,
"pitch": 100,
"volume": 90
},
{
"name": "1 Cinematic Impact Sound",
"pan": 0,
"pitch": 100,
"volume": 100
},
{
"name": "Run",
"pan": 0,
"pitch": 100,
"volume": 90
},
{
"name": "Attack3",
"pan": 0,
"pitch": 100,
"volume": 90
},
{
"name": "damage01",
"pan": 0,
"pitch": 100,
"volume": 90
},
{
"name": "Collapse1",
"pan": 0,
"pitch": 100,
"volume": 90
},
{
"name": "Collapse2",
"pan": 0,
"pitch": 100,
"volume": 90
},
{
"name": "Collapse3",
"pan": 0,
"pitch": 100,
"volume": 90
},
{
"name": "damage01",
"pan": 0,
"pitch": 100,
"volume": 90
},
{
"name": "Collapse4",
"pan": 0,
"pitch": 100,
"volume": 90
},
{
"name": "Recovery",
"pan": 0,
"pitch": 100,
"volume": 90
},
{
"name": "Miss",
"pan": 0,
"pitch": 100,
"volume": 90
},
{
"name": "Evasion1",
"pan": 0,
"pitch": 100,
"volume": 90
},
{
"name": "Evasion2",
"pan": 0,
"pitch": 100,
"volume": 90
},
{
"name": "Reflection",
"pan": 0,
"pitch": 100,
"volume": 90
},
{
"name": "Shop1",
"pan": 0,
"pitch": 100,
"volume": 90
},
{
"name": "pipon",
"pan": 0,
"pitch": 100,
"volume": 90
},
{
"name": "pipon",
"pan": 0,
"pitch": 100,
"volume": 90
}
],
"startMapId": 7,
"startX": 7,
"startY": 5,
"switches": [
"",
"体験版",
"通知メッセージ",
"ピンク枠のみ表示",
"擬音ON",
"通常時ウィンドウ",
"変身",
"悪堕ち",
"エロシーンウィンドウ",
"オートセーブ有効化",
"戦闘高速化可能",
"UI表示",
"室内?",
"裸OK",
"装備変更禁止",
"ダンジョン中?",
"立ち絵透明化並列処理",
"立ち絵透明化判定",
"回想部屋?",
"淫紋",
"脱衣",
"エロシーンウィンドウ",
"再行動中",
"",
"",
"",
"",
"",
"",
"",
"搾精なし",
"",
"",
"",
"",
"依頼A",
"依頼B",
"依頼C",
"依頼D",
"",
"配信2",
"オタクくん",
"オタクくんdayly",
"マッサージ",
"マッサージdayly",
"痴漢",
"痴漢dayly",
"配信",
"配信dayly",
"常識改変:会社",
"常識改変:会社dayly",
"常識改変:銭湯",
"常識改変:銭湯dayly",
"大家のジジイ",
"大家のジジイdayly",
"バニーバイト",
"バニーバイトdayly",
"AV",
"AVdayly",
"散歩",
"散歩dayly",
"ダンジョン1開放",
"ダンジョン2開放",
"ダンジョン3開放",
"ダンジョン4開放",
"ダンジョン5開放",
"ダンジョン6開放",
"ダンジョン7開放",
"ダンジョン8開放",
"ダンジョン9開放",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"外ボス1",
"外ボス2",
"外ボス3",
"外ボス4",
"外ボス5",
"外ボス6",
"外ボス7",
"外ボス8",
"外ボス9",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"外ボス1dayly",
"外ボス2dayly",
"外ボス3dayly",
"外ボス4dayly",
"外ボス5dayly",
"外ボス6dayly",
"外ボス7dayly",
"外ボス8dayly",
"外ボス9dayly",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
""
],
"terms": {
"basic": [
"レベル",
"Lv",
"",
"HP",
"",
"MP",
"",
"TP",
"経験値",
"EXP"
],
"commands": [
"戦う",
"逃げる",
"攻撃",
"防御",
"道具",
"魔法",
"装備",
"ステータス",
"並び替え",
"セーブ",
"ゲーム終了",
"オプション",
"武器",
"防具",
"大事なもの",
"装備",
"最強装備",
"全て外す",
"ニューゲーム",
"コンティニュー",
null,
"タイトルへ",
"やめる",
null,
"購入する",
"売却する"
],
"params": [
"最大体力",
"最大魔力",
"攻撃力",
"防御力",
"魔法攻撃",
"魔法防御",
"敏捷性",
"運",
"",
""
],
"messages": {
"alwaysDash": "常時ダッシュ",
"commandRemember": "コマンド記憶",
"touchUI": "タッチUI",
"bgmVolume": "BGM 音量",
"bgsVolume": "BGS 音量",
"meVolume": "ME 音量",
"seVolume": "SE 音量",
"possession": "持っている数",
"expTotal": "現在の%1",
"expNext": "次の%1まで",
"saveMessage": "どのファイルにセーブしますか?",
"loadMessage": "どのファイルをロードしますか?",
"file": "ファイル",
"autosave": "オートセーブ",
"partyName": "%1たち",
"emerge": "%1が出現",
"preemptive": "%1は先手を取った",
"surprise": "%1は不意をつかれた",
"escapeStart": "%1は逃げ出した",
"escapeFailure": "しかし逃げることはできなかった!",
"victory": "戦いに勝った",
"defeat": "戦いに敗れた",
"obtainExp": "%1 の%2を獲得",
"obtainGold": "%1\\G入手した",
"obtainItem": "%1を入手した",
"levelUp": "%1は%2 %3 に上がった",
"obtainSkill": "%1を使えるようになった",
"useItem": "%1は%2を使った",
"criticalToEnemy": "会心の一撃!!",
"criticalToActor": "痛恨の一撃!!",
"actorDamage": "%1は %2 のダメージを受けた!",
"actorRecovery": "%1の%2が %3 回復した!",
"actorGain": "%1の%2が %3 増えた!",
"actorLoss": "%1の%2が %3 減った!",
"actorDrain": "%1は%2を %3 奪われた!",
"actorNoDamage": "%1はダメージを受けていない",
"actorNoHit": "ミス! %1はダメージを受けていない",
"enemyDamage": "%1に %2 のダメージを与えた!",
"enemyRecovery": "%1の%2が %3 回復した!",
"enemyGain": "%1の%2が %3 増えた!",
"enemyLoss": "%1の%2が %3 減った!",
"enemyDrain": "%1の%2を %3 奪った!",
"enemyNoDamage": "%1にダメージを与えられない",
"enemyNoHit": "ミス! %1にダメージを与えられない",
"evasion": "%1は攻撃をかわした",
"magicEvasion": "%1は魔法を打ち消した",
"magicReflection": "%1は魔法を跳ね返した",
"counterAttack": "%1の反撃",
"substitute": "%1が%2をかばった",
"buffAdd": "%1の%2が上がった",
"debuffAdd": "%1の%2が下がった",
"buffRemove": "%1の%2が元に戻った",
"actionFailure": "%1には効かなかった"
}
},
"testBattlers": [
{
"actorId": 1,
"level": 1,
"equips": [
2,
1,
2,
3,
0
]
},
{
"actorId": 4,
"level": 1,
"equips": [
31,
0,
0,
5,
0
]
},
{
"actorId": 6,
"level": 1,
"equips": [
7,
0,
65,
21,
0
]
},
{
"actorId": 7,
"level": 1,
"equips": [
7,
0,
0,
20,
0
]
}
],
"testTroopId": 1,
"title1Name": "Ruins",
"title2Name": "",
"titleBgm": {
"name": "Survival_Game",
"pan": 0,
"pitch": 100,
"volume": 90
},
"titleCommandWindow": {
"offsetX": 0,
"offsetY": 0,
"background": 0
},
"variables": [
"",
"ストーリー",
"日にち",
"時間帯",
"発動者インデックスID",
"対象インデックスID",
"服耐久度",
"UIナンバー",
"汚染度のたまり方",
"",
"立ち絵番号",
"立ち絵x",
"立ち絵y",
"立ち絵size",
"立ち絵touka",
"服",
"",
"",
"",
"",
"表情番号",
"汚染度",
"絶頂回数",
"搾精量",
"分泌愛液",
"口開発度",
"胸開発度",
"膣開発度",
"クリ開発度",
"変態開発度",
"",
"",
"",
"",
"犯された回数",
"配信回数",
"産卵した回数",
"憑依された回数",
"常識改変された回数",
"催眠にかかった回数",
"",
"BGM一時保存",
"BGS一時保存",
"乱数A",
"乱数B",
"乱数C",
"乱数D",
"一時情報 服装",
"一時情報 スキル1",
"一時情報 スキル2",
"一時情報 スキル3",
"雑魚敵乱数",
"選択肢乱数",
"選択肢文字列1",
"選択肢文字列2",
"選択肢文字列3",
"ランダム防具価格設定",
"シャッフル回数",
"スルー回数",
"",
"ダンジョンマップID一時保存",
"ダンジョン1階層",
"ダンジョン2階層",
"ダンジョン3階層",
"ダンジョン4階層",
"ダンジョン5階層",
"ダンジョン6階層",
"ダンジョン7階層",
"ダンジョン8階層",
"ダンジョン9階層",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"ランダム擬音x",
"ランダム擬音y",
"プレイヤー画面x",
"プレイヤー画面y",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
""
],
"versionId": 97061868,
"victoryMe": {
"name": "2 Cinematic Reversed Cymbal",
"pan": 0,
"pitch": 100,
"volume": 100
},
"weaponTypes": [
"",
"魔法具",
"剣",
"フレイル",
"斧",
"ムチ",
"杖",
"弓",
"クロスボウ",
"銃",
"爪",
"グローブ",
"槍"
],
"windowTone": [
-17,
-68,
34,
0
],
"optSplashScreen": false,
"tileSize": 48,
"optMessageSkip": true,
"editor": {
"messageWidth1": 60,
"messageWidth2": 47,
"jsonFormatLevel": 1
},
"faceSize": 144,
"iconSize": 32,
"hasEncryptedImages": true,
"hasEncryptedAudio": true,
"encryptionKey": "d41d8cd98f00b204e9800998ecf8427e"
}

593466
data/Tilesets.json Normal file

File diff suppressed because it is too large Load diff

4344
data/Troops.json Normal file

File diff suppressed because it is too large Load diff

705
data/Weapons.json Normal file
View file

@ -0,0 +1,705 @@
[
null,
{
"id": 1,
"animationId": 0,
"description": "発掘された太古の剣と思われるもの",
"etypeId": 1,
"traits": [
{
"code": 31,
"dataId": 1,
"value": 0
},
{
"code": 22,
"dataId": 9,
"value": 1
}
],
"iconIndex": 66,
"name": "草薙の剣",
"note": "",
"params": [
5000,
5000,
500,
500,
500,
500,
500,
500
],
"price": 0,
"wtypeId": 1
},
{
"id": 2,
"animationId": 0,
"description": "通常の魔法具だが魔力補助は一切ない。",
"etypeId": 1,
"traits": [
{
"code": 31,
"dataId": 1,
"value": 0
},
{
"code": 22,
"dataId": 0,
"value": 0
}
],
"iconIndex": 109,
"name": "マジカルスティック(物理)",
"note": "",
"params": [
0,
0,
15,
0,
0,
0,
0,
0
],
"price": 10000,
"wtypeId": 1
},
{
"id": 3,
"animationId": 0,
"description": "人を選ぶ武器だが使いこなすと強い。\n攻撃が若干上がる。",
"etypeId": 1,
"traits": [
{
"code": 31,
"dataId": 1,
"value": 0
},
{
"code": 22,
"dataId": 0,
"value": 0
}
],
"iconIndex": 111,
"name": "ヌンチャク",
"note": "",
"params": [
0,
0,
25,
0,
0,
0,
0,
0
],
"price": 50000,
"wtypeId": 1
},
{
"id": 4,
"animationId": 0,
"description": "職質されると即アウト。\n攻撃が上がる。",
"etypeId": 1,
"traits": [
{
"code": 31,
"dataId": 1,
"value": 0
},
{
"code": 22,
"dataId": 0,
"value": 0
}
],
"iconIndex": 112,
"name": "アーミーナイフ",
"note": "",
"params": [
0,
0,
40,
0,
0,
0,
0,
0
],
"price": 100000,
"wtypeId": 1
},
{
"id": 5,
"animationId": 0,
"description": "裏ルートで手に入れることができる。\n攻撃が割と上がる。",
"etypeId": 1,
"traits": [
{
"code": 31,
"dataId": 1,
"value": 0
},
{
"code": 22,
"dataId": 0,
"value": 0
}
],
"iconIndex": 120,
"name": "日本刀",
"note": "",
"params": [
0,
0,
60,
0,
0,
0,
0,
0
],
"price": 250000,
"wtypeId": 1
},
{
"id": 6,
"animationId": 0,
"description": "軍事仕様を目的としたブレード。\n攻撃がかなり上がる。",
"etypeId": 1,
"traits": [
{
"code": 31,
"dataId": 1,
"value": 0
},
{
"code": 22,
"dataId": 0,
"value": 0
}
],
"iconIndex": 119,
"name": "高周波ブレード",
"note": "",
"params": [
0,
0,
80,
0,
0,
0,
0,
0
],
"price": 500000,
"wtypeId": 1
},
{
"id": 7,
"animationId": 0,
"description": "",
"etypeId": 1,
"traits": [
{
"code": 31,
"dataId": 1,
"value": 0
},
{
"code": 22,
"dataId": 0,
"value": 0
}
],
"iconIndex": 0,
"name": "",
"note": "",
"params": [
0,
0,
0,
0,
0,
0,
0,
0
],
"price": 0,
"wtypeId": 0
},
{
"id": 8,
"animationId": 0,
"description": "",
"etypeId": 1,
"traits": [
{
"code": 31,
"dataId": 1,
"value": 0
},
{
"code": 22,
"dataId": 0,
"value": 0
}
],
"iconIndex": 0,
"name": "",
"note": "",
"params": [
0,
0,
0,
0,
0,
0,
0,
0
],
"price": 0,
"wtypeId": 0
},
{
"id": 9,
"animationId": 0,
"description": "",
"etypeId": 1,
"traits": [
{
"code": 31,
"dataId": 1,
"value": 0
},
{
"code": 22,
"dataId": 0,
"value": 0
}
],
"iconIndex": 0,
"name": "",
"note": "",
"price": 0,
"wtypeId": 0,
"params": [
0,
0,
0,
0,
0,
0,
0,
0
],
"damage": {
"critical": "",
"elementId": "",
"formula": "",
"type": "",
"variance": ""
}
},
{
"id": 10,
"animationId": 0,
"description": "",
"etypeId": 1,
"traits": [
{
"code": 31,
"dataId": 1,
"value": 0
},
{
"code": 22,
"dataId": 0,
"value": 0
}
],
"iconIndex": 0,
"name": "",
"note": "",
"price": 0,
"wtypeId": 0,
"params": [
0,
0,
0,
0,
0,
0,
0,
0
],
"damage": {
"critical": "",
"elementId": "",
"formula": "",
"type": "",
"variance": ""
}
},
{
"id": 11,
"animationId": 0,
"description": "一般的な魔法少女が使う杖。\nかなり使いやすく初心者向け。",
"etypeId": 1,
"traits": [
{
"code": 31,
"dataId": 1,
"value": 0
},
{
"code": 22,
"dataId": 0,
"value": 0
}
],
"iconIndex": 109,
"name": "マジカルスティック",
"note": "",
"params": [
0,
0,
0,
0,
15,
0,
0,
0
],
"price": 10000,
"wtypeId": 1
},
{
"id": 12,
"animationId": 0,
"description": "魔法についてまとめた本。\nインテリ魔法使い向け。",
"etypeId": 1,
"traits": [
{
"code": 31,
"dataId": 1,
"value": 0
},
{
"code": 22,
"dataId": 0,
"value": 0
}
],
"iconIndex": 186,
"name": "魔法書",
"note": "",
"params": [
0,
0,
0,
0,
25,
0,
0,
0
],
"price": 50000,
"wtypeId": 1
},
{
"id": 13,
"animationId": 0,
"description": "魔法を使えるように綺麗にまとめられたマニュアル。\nベテラン魔法使いがよく使っている。",
"etypeId": 1,
"traits": [
{
"code": 31,
"dataId": 1,
"value": 0
},
{
"code": 22,
"dataId": 0,
"value": 0
}
],
"iconIndex": 229,
"name": "魔法使用ガイド",
"note": "",
"params": [
0,
0,
0,
0,
40,
0,
0,
0
],
"price": 100000,
"wtypeId": 1
},
{
"id": 14,
"animationId": 0,
"description": "現在開発中の最新型魔法使用道具。\n特別に選出された魔法少女がテスターとなっている。",
"etypeId": 1,
"traits": [
{
"code": 31,
"dataId": 1,
"value": 0
},
{
"code": 22,
"dataId": 0,
"value": 0
}
],
"iconIndex": 244,
"name": "魔法アプリ",
"note": "",
"params": [
0,
0,
0,
0,
60,
0,
0,
0
],
"price": 250000,
"wtypeId": 1
},
{
"id": 15,
"animationId": 0,
"description": "高度な魔法を使うことができるソフト。\n月額課金制でかなり高いため、個人の魔法少女が使うことはあまりない。",
"etypeId": 1,
"traits": [
{
"code": 31,
"dataId": 1,
"value": 0
},
{
"code": 22,
"dataId": 0,
"value": 0
}
],
"iconIndex": 245,
"name": "魔法使用ソフト(法人向け)",
"note": "",
"params": [
0,
0,
0,
0,
80,
0,
0,
0
],
"price": 500000,
"wtypeId": 1
},
{
"id": 16,
"animationId": 0,
"description": "",
"etypeId": 1,
"traits": [
{
"code": 31,
"dataId": 1,
"value": 0
},
{
"code": 22,
"dataId": 0,
"value": 0
}
],
"iconIndex": 0,
"name": "",
"note": "",
"price": 0,
"wtypeId": 0,
"params": [
0,
0,
0,
0,
0,
0,
0,
0
],
"damage": {
"critical": "",
"elementId": "",
"formula": "",
"type": "",
"variance": ""
}
},
{
"id": 17,
"animationId": 0,
"description": "",
"etypeId": 1,
"traits": [
{
"code": 31,
"dataId": 1,
"value": 0
},
{
"code": 22,
"dataId": 0,
"value": 0
}
],
"iconIndex": 0,
"name": "",
"note": "",
"price": 0,
"wtypeId": 0,
"params": [
0,
0,
0,
0,
0,
0,
0,
0
],
"damage": {
"critical": "",
"elementId": "",
"formula": "",
"type": "",
"variance": ""
}
},
{
"id": 18,
"animationId": 0,
"description": "",
"etypeId": 1,
"traits": [
{
"code": 31,
"dataId": 1,
"value": 0
},
{
"code": 22,
"dataId": 0,
"value": 0
}
],
"iconIndex": 0,
"name": "",
"note": "",
"price": 0,
"wtypeId": 0,
"params": [
0,
0,
0,
0,
0,
0,
0,
0
],
"damage": {
"critical": "",
"elementId": "",
"formula": "",
"type": "",
"variance": ""
}
},
{
"id": 19,
"animationId": 0,
"description": "",
"etypeId": 1,
"traits": [
{
"code": 31,
"dataId": 1,
"value": 0
},
{
"code": 22,
"dataId": 0,
"value": 0
}
],
"iconIndex": 0,
"name": "",
"note": "",
"price": 0,
"wtypeId": 0,
"params": [
0,
0,
0,
0,
0,
0,
0,
0
],
"damage": {
"critical": "",
"elementId": "",
"formula": "",
"type": "",
"variance": ""
}
},
{
"id": 20,
"animationId": 0,
"description": "卑弥呼が使用されていたと言われている魔法の杖。\n彼女は日本最古の魔法少女という諸説もあるが…",
"etypeId": 1,
"traits": [
{
"code": 31,
"dataId": 1,
"value": 0
},
{
"code": 22,
"dataId": 0,
"value": 1
}
],
"iconIndex": 148,
"name": "卑弥呼の杖",
"note": "",
"params": [
5000,
5000,
500,
500,
500,
500,
500,
500
],
"price": 25000,
"wtypeId": 1
}
]

BIN
icudtl.dat Normal file

Binary file not shown.

View file

@ -0,0 +1,16 @@
Water A|水場A
Deep Water|深い水場
Swamp Grass|水草
Lotus Pads (Flowers)|蓮の葉(花)
Lava|溶岩
Waterfall A (Lava Cave)|滝A溶岩洞窟
Water B (Grass Maze)|水場B草迷宮
Waterfall B (Grass Maze)|滝B草迷宮
Water C (Dirt Cave)|水場C土洞窟
Waterfall C (Dirt Cave)|滝C土洞窟
Water D (Rock Cave)|水場D岩洞窟
Waterfall D (Rock Cave)|滝D岩洞窟
Water E (Crystal)|水場E水晶
Waterfall E (Crystal)|滝E水晶
Canal|水路
Waterfall (Stone Wall)|滝F石壁

View file

@ -0,0 +1,32 @@
Ground A (Dirt Cave)|床A土洞窟
Ground B (Grass Maze)|床B草迷宮
Dark Ground A (Dirt Cave)|濃い床A土洞窟
Dark Ground B (Grass Maze)|濃い床B草迷宮
Hole A (Dirt Cave)|穴A土洞窟
Hole B (Grass Maze)|穴B草迷宮
Hole I (Stone Floor)|穴I石の床
Ground Cracks|床のひび割れ
Ground C (Rock Cave)|床C岩洞窟
Ground D (Crystal)|床D水晶
Dark Ground C (Rock Cave)|濃い床C岩洞窟
Dark Ground D (Crystal)|濃い床D水晶
Hole C (Rock Cave)|穴C岩洞窟
Hole D (Crystal)|穴D水晶
Hole J|穴J
Soil on Ground|床の汚れ
Ground E (Lava Cave)|床E溶岩洞窟
Ground F (In Body)|床F体内
Dark Ground E (Lava Cave)|濃い床E溶岩洞窟
Rug A|じゅうたんA
Hole E (Lava Cave)|穴E溶岩洞窟
Hole F (In Body)|穴F体内
Fencepost|柵
Moss on Ground|床の苔
Ground G (Ice Cave)|床G氷洞窟
Ground H (Demonic World)|床H魔界
Dark Ground G (Ice Cave)|濃い床G氷洞窟
Rug B|じゅうたんB
Hole G (Ice Cave)|穴G氷洞窟
Hole H (Demonic World)|穴H魔界
Raised Stone|石段
Poison Swamp|毒の沼

View file

@ -0,0 +1,48 @@
Wall A (Dirt Cave)|壁A土洞窟
Wall B (Rock Cave)|壁B岩洞窟
Wall C (Lava Cave)|壁C溶岩洞窟
Wall D (Ice Cave)|壁D氷洞窟
Wall E (Grass Maze)|壁E草迷宮
Wall F (Crystal)|壁F水晶
Wall G (In Body)|壁G体内
Wall H (Demonic World)|壁H魔界
Wall A (Dirt Cave)|壁A土洞窟
Wall B (Rock Cave)|壁B岩洞窟
Wall C (Lava Cave)|壁C溶岩洞窟
Wall D (Ice Cave)|壁D氷洞窟
Wall E (Grass Maze)|壁E草迷宮
Wall F (Crystal)|壁F水晶
Wall G (In Body)|壁G体内
Wall H (Demonic World)|壁H魔界
Wall I (Stone)|壁I
Wall J (Brick)|壁Jレンガ
Wall K (Brick)|壁Kレンガ
Wall L (Stone)|壁L
Wall M (Stone)|壁M
Wall N (Castle)|壁N
Wall O (Fort)|壁O
Wall P (Demon Castle)|壁P魔王城
Wall I (Stone)|壁I
Wall J (Brick)|壁Jレンガ
Wall K (Brick)|壁Kレンガ
Wall L (Stone)|壁L
Wall M (Stone)|壁M
Wall N (Castle)|壁N
Wall O (Fort)|壁O
Wall P (Demon Castle)|壁P魔王城
Wall Q (Temple)|壁Q神殿
Wall R (Marble)|壁R大理石
Wall S (Frozen)|壁S凍結
Wall T (Factory)|壁T工場
Ledge A (Dirt Cave)|段差A土洞窟
Ledge B (Rock Cave)|段差B岩洞窟
Ledge C (Lava Cave)|段差C溶岩洞窟
Ledge D (Ice Cave)|段差D氷洞窟
Wall Q (Temple)|壁Q神殿
Wall R (Marble)|壁R大理石
Wall S (Frozen)|壁S凍結
Wall T (Factory)|壁T工場
Ledge A (Dirt Cave)|段差A土洞窟
Ledge B (Rock Cave)|段差B岩洞窟
Ledge C (Lava Cave)|段差C溶岩洞窟
Ledge D (Ice Cave)|段差D氷洞窟

128
img/tilesets/Dungeon_A5.txt Normal file
View file

@ -0,0 +1,128 @@
Darkness|暗闇
Translucent Floor A|半透明の床A
Translucent Floor B|半透明の床B
Translucent Floor C|半透明の床C
Translucent Floor D|半透明の床D
Stairs A (Translucent)|階段A半透明
Stairs B (Translucent)|階段B半透明
Wire Mesh|金網
Transparent|透明
Translucent Floor A|半透明の床A
Translucent Floor B|半透明の床B
Translucent Floor C|半透明の床C
Translucent Floor D|半透明の床D
Stairs A (Translucent)|階段C半透明
Stairs B (Translucent)|階段D半透明
Wire Mesh|金網
Ground A (Dirt Cave)|床A土洞窟
Ground B (Rock Cave)|床B岩洞窟
Ground C (Lava Cave)|床C溶岩洞窟
Ground D (Ice Cave)|床D氷洞窟
Ground E (Grass Maze)|床E草迷宮
Ground F (Crystal)|床F水晶
Ground G (In Body)|床G体内
Ground H (Demonic World)|床H魔界
Stairs A (Dirt Cave, Left)|階段A土洞窟・左
Stairs A (Dirt Cave, Center)|階段A土洞窟・中央
Stairs A (Dirt Cave, Right)|階段A土洞窟・右
Stairs A (Dirt Cave)|階段A土洞窟
Stairs B (Rock Cave, Left)|階段B岩洞窟・左
Stairs B (Rock Cave, Center)|階段B岩洞窟・中央
Stairs B (Rock Cave, Right)|階段B岩洞窟・右
Stairs B (Rock Cave)|階段B岩洞窟
Cobblestones A|石畳A
Cobblestones B|石畳B
Cobblestones C|石畳C
Cobblestones D|石畳D
Cobblestones E|石畳E
Cobblestones F|石畳F
Cobblestones G|石畳G
Interior Floor A (Demon Castle)|内装床A魔王城
Stairs C (Lava Cave, Left)|階段C溶岩洞窟・左
Stairs C (Lava Cave, Center)|階段C溶岩洞窟・中央
Stairs C (Lava Cave, Right)|階段C溶岩洞窟・右
Stairs C (Lava Cave)|階段C溶岩洞窟
Stairs D (Ice Cave, Left)|階段D氷洞窟・左
Stairs D (Ice Cave, Center)|階段D氷洞窟・中央
Stairs D (Ice Cave, Right)|階段D氷洞窟・右
Stairs D (Ice Cave)|階段D氷洞窟
Cobblestones H|石畳H
Interior Floor B (Concrete)|内装床Bコンクリート
Icy Ground A|氷の床A
Interior Floor C (Factory)|内装床C工場
Decorative Tile|舗装床
Cobblestones I|石畳I
Cobblestones J|石畳J
Decorative Tile|化粧タイル
Stairs E (Grass Maze, Left)|階段E草迷宮・左
Stairs E (Grass Maze, Center)|階段E草迷宮・中央
Stairs E (Grass Maze, Right)|階段E草迷宮・右
Stairs E (Grass Maze)|階段E草迷宮
Stairs F (Crystal, Left)|階段F水晶・左
Stairs F (Crystal, Center)|階段F水晶・中央
Stairs F (Crystal, Right)|階段F水晶・右
Stairs F (Crystal)|階段F水晶
Stairs G (In Body, Left)|階段G体内・左
Stairs G (In Body, Center)|階段G体内・中央
Stairs G (In Body, Right)|階段G体内・右
Stairs G (In Body)|階段G体内
Stairs H (Demonic World, Left)|階段H魔界・左
Stairs H (Demonic World, Center)|階段H魔界・中央
Stairs H (Demonic World, Right)|階段H魔界・右
Stairs H (Demonic World)|階段H魔界
Stairs I (Stone, Left)|階段I石・左
Stairs I (Stone, Center)|階段I石・中央
Stairs I (Stone, Right)|階段I石・右
Stairs I (Stone)|階段I
Stairs J (Ruins, Left)|階段J廃墟・左
Stairs J (Ruins, Center)|階段J廃墟・中央
Stairs J (Ruins, Right)|階段J廃墟・右
Stairs J (Ruins)|階段J廃墟
Stairs K (Stone, Left)|階段K石・左
Stairs K (Stone, Center)|階段K石・中央
Stairs K (Stone, Right)|階段K石・右
Stairs K (Stone)|階段K
Stairs L (Ruins, Left)|階段L廃墟・左
Stairs L (Ruins, Center)|階段L廃墟・中央
Stairs L (Ruins, Right)|階段L廃墟・右
Stairs L (Ruins)|階段L廃墟
Ground (Dirt Cave, Ruins)|床A土洞窟・廃墟
Ground (Rock Cave, Ruins)|床B岩洞窟・廃墟
Ground (Lava Cave, Ruins)|床C溶岩洞窟・廃墟
Ground (Ice Cave, Ruins)|床D氷洞窟・廃墟
Ground (Grass Maze, Ruins)|床E草迷宮・廃墟
Ground (Crystal, Ruins)|床F水晶・廃墟
Ground (In Body, Ruins)|床G体内・廃墟
Ground (Demonic World, Ruins)|床H魔界・廃墟
Cobblestones A (Ruins)|石畳A廃墟
Cobblestones B (Ruins)|石畳B廃墟
Cobblestones C (Ruins)|石畳C廃墟
Cobblestones D (Ruins)|石畳D廃墟
Cobblestones E (Ruins)|石畳E廃墟
Cobblestones F (Ruins)|石畳F廃墟
Cobblestones G (Ruins)|石畳G廃墟
Interior Floor A (Demon Castle, Ruins)|内装床A魔王城・廃墟
Cobblestones H (Ruins)|石畳H廃墟
Interior Floor B (Concrete, Ruins)|内装床Bコンクリート・廃墟
Icy Ground B|氷の床B
Interior Floor D (Factory)|内装床D工場
Decorative Tile (Ruins)|舗装床(廃墟)
Cobblestones I (Ruins)|石畳I廃墟
Cobblestones J (Ruins)|石畳J廃墟
Decorative Tile (Ruins)|化粧タイル(廃墟)
Large Relief Floor Tile A|大きなレリーフ床A
Large Relief Floor Tile A|大きなレリーフ床A
Large Relief Floor Tile B|大きなレリーフ床B
Large Relief Floor Tile B|大きなレリーフ床B
Directional Floor Tile A (Down)|方向床A
Directional Floor Tile B (Up)|方向床B
Relief Floor Tile A (Gold)|レリーフ床A
Relief Floor Tile B (Gold)|レリーフ床B
Large Relief Floor Tile A|大きなレリーフ床A
Large Relief Floor Tile A|大きなレリーフ床A
Large Relief Floor Tile B|大きなレリーフ床B
Large Relief Floor Tile B|大きなレリーフ床B
Directional Floor Tile C (Left)|方向床C
Directional Floor Tile D (Right)|方向床D
Relief Floor Tile C (Gold)|レリーフ床C
Relief Floor Tile D (Gold, Ruins)|レリーフ床D金・廃墟

256
img/tilesets/Dungeon_B.txt Normal file
View file

@ -0,0 +1,256 @@
Transparent|透明
Beanstalk A|豆の木A
Stairs A (Up)|階段A上り
Stairs B (Up)|階段B上り
Metal Ladder|鉄ばしご
Rope Ladder|縄ばしご
Rope|ロープ
Vines A|ツタA
Beanstalk B (Snow)|豆の木B
Beanstalk C (Dead)|豆の木C枯れ
Stairs A (Down)|階段A下り
Stairs B (Down)|階段B下り
Metal Ladder|鉄ばしご
Rope Ladder|縄ばしご
Rope|ロープ
Vines A|ツタA
Crumbling Wall|崩れた壁
Dug-Up Ground|掘られた床
Stairs C (Up)|階段C上り
Stairs D (Up)|階段D上り
Metal Ladder|鉄ばしご
Rope Ladder|縄ばしご
Rope|ロープ
Vines B (Down)|ツタB下り
Crumbling Wall|崩れた壁
Dug-Up Ground|掘られた床
Stairs C (Down)|階段C下り
Stairs D (Down)|階段D下り
Hole A (Metal Ladder)|穴A鉄ばしご
Hole B (Rope Ladder)|穴B縄ばしご
Hole C (Rope)|穴Cロープ
Hole D|穴D
Log Bridge (V)|丸太の橋(縦)
Log Bridge (H)|丸太の橋(横)
Wood Bridge (V)|木の橋(縦)
Wood Bridge (H)|木の橋(横)
Stone Bridge (V)|石の橋(縦)
Stone Bridge (H)|石の橋(横)
Wood Bridge (V)|木の橋(縦)
Wood Bridge (H)|木の橋(横)
Bridge Spar (Wood, Center A)|橋げた木・中央A
Bridge Spar (Wood, Left)|橋げた(木・左)
Bridge Spar (Wood, Center B)|橋げた木・中央B
Bridge Spar (Wood, Right)|橋げた(木・右)
Bridge Spar (Stone, Center A)|橋げた石・中央A
Bridge Spar (Stone, Left)|橋げた(石・左)
Bridge Spar (Stone, Center B)||橋げた石・中央B
Bridge Spar (Stone, Right)|橋げた(石・右)
Gravel A (Dirt Cave)|砂利A土洞窟
Gravel B (Rock Cave)|砂利B岩洞窟
Gravel C (Lava Cave)|砂利C溶岩洞窟
Ice Pieces |氷の欠片
Small Sprouts A (Grass Maze)|小さな芽A草迷宮
Small Crystals|小さな水晶
Detritus (In Body)|床装飾(体内)
Small Sprouts B (Demonic World)|小さな芽B魔界
Boulder A (Dirt Cave)|岩A土洞窟
Boulder B (Rock Cave)|岩B岩洞窟
Boulder C (Lava Cave)|岩C溶岩洞窟
Lump of Ice|氷塊
Boulder D (Grass Maze)|岩D草迷宮
Crystal|水晶
Spherical Lump|球状突起物
Boulder E (Demonic World)|岩E魔界
Tall Rock A (Dirt Cave)|大きな岩A土洞窟
Tall Rock B (Rock Cave)|大きな岩B岩洞窟
Tall Rock C (Lava Cave)|大きな岩C溶岩洞窟
Tall Lump of Ice|大きな氷塊
Tall Rock D (Grass Maze)|大きな岩D草迷宮
Large Crystal|大きな水晶
Large Growth|大型突起物
Tall Rock E (Demonic World)|大きな岩E魔界
Tall Rock A (Dirt Cave)|大きな岩A土洞窟
Tall Rock B (Rock Cave)|大きな岩B岩洞窟
Tall Rock C (Lava Cave)|大きな岩C溶岩洞窟
Tall Lump of Ice|大きな氷塊
Tall Rock D (Grass Maze)|大きな岩D草迷宮
Large Crystal|大きな水晶
Large Growth|大型突起物
Tall Rock E (Demonic World)|大きな岩E魔界
Stone Pillar A|石の柱A
Stone Pillar B|石の柱B
Stone Pillar C|石の柱C
Stone Pillar C (Moss)|石の柱C
Stone Pillar C (Ice)|石の柱C
Wood Pillar|木の柱
Stone Pillar D|石の柱D
Orb Pillar|オーブの柱
Stone Pillar A|石の柱A
Stone Pillar B|石の柱B
Stone Pillar C|石の柱C
Stone Pillar C (Moss)|石の柱C
Stone Pillar C (Ice)|石の柱C
Wood Pillar|木の柱
Stone Pillar D|石の柱D
Orb Pillar|オーブの柱
Broken Stone Pillar A|折れた石の柱A
Broken Stone Pillar B|折れた石の柱B
Broken Stone Pillar C|折れた石の柱C
Broken Stone Pillar C (Moss)|折れた石の柱C
Broken Stone Pillar C (Ice)|折れた石の柱C
Broken Wood Pillar A|折れた木の柱A
Broken Stone Pillar D|折れた石の柱D
Broken Orb Pillar|折れたオーブの柱
Rubble|瓦礫A
Rubble (Moss)|瓦礫B
Rubble (Ice)|瓦礫C
Broken Wood Pillar B|折れた木の柱B
Rubble (Dirt)|瓦礫D
Scrap Wood|端材
Barricade A (H)|バリケードA
Barricade B (V)|バリケードB
Wall Bracing|壁の補強材
Wall Bracing|壁の補強材
Wall Bracing|壁の補強材
Wall Bracing|壁の補強材
Wall Bracing|壁の補強材
Wall Bracing (Abandoned Mine)|壁の補強材(廃坑)
Wall Bracing (Abandoned Mine)|壁の補強材(廃坑)
Wall Bracing (Abandoned Mine)|壁の補強材(廃坑)
Wall Bracing|壁の補強材
Wall Bracing|壁の補強材
Wall Bracing|壁の補強材
Wall Bracing|壁の補強材
Wall Bracing|壁の補強材
Wall Bracing (Abandoned Mine)|壁の補強材(廃坑)
Wall Bracing (Abandoned Mine)|壁の補強材(廃坑)
Wall Bracing (Abandoned Mine)|壁の補強材(廃坑)
Exit A|外への出口A
Entrance A|入口A
Exit B|外への出口B
Entrance B|入口B
Exit C|外への出口C
Entrance C|入口C
Window A|窓A
Window B|窓B
Exit D|外への出口D
Entrance D|入口D
Exit E|外への出口E
Entrance E|入口E
Light From Exit A (Top)|出口からの光A
Light From Exit B (Bottom)|出口からの光B
Window A|窓A
Window B|窓B
Spider Web|蜘蛛の巣
Stone Tablet|石版
Stone Tablet (Ruins)|石版(廃墟)
Entrance A|入口A
Entrance A (Extend)|入口A延長部分
Entrance A (Top Half A)|入口A上半分A
Entrance B|入口B
Entrance A (Top Half B)|入口A上半分B
Wall Vines A|壁のツタA
Wall Vines B|壁のツタB
Wall Vines C|壁のツタC
Wall Fern|壁のシダ
Fissures A|亀裂A
Fissures B|亀裂B
Fissures C|亀裂C
Fissures D|亀裂D
Wall Vines A|壁のツタA
Wall Vines B|壁のツタB
Wall Vines C|壁のツタC
Wall Moss|壁の苔
Fissures A|亀裂A
Fissures B|亀裂B
Fissures C|亀裂C
Fissures D|亀裂D
Monument A|石碑A
Monument B|石碑B
Large Monument|大きな石碑
Large Monument|大きな石碑
Large Monument|大きな石碑
Large Monument (Lit)|大きな石碑(光)
Large Monument (Lit)|大きな石碑(光)
Large Monument (Lit)|大きな石碑(光)
Monument A|石碑A
Monument C|石碑C
Large Monument|大きな石碑
Large Monument|大きな石碑
Large Monument|大きな石碑
Large Monument (Lit)|大きな石碑(光)
Large Monument (Lit)|大きな石碑(光)
Large Monument (Lit)|大きな石碑(光)
Statue A|石像A
Angel Statue A|天使像A
Angel Statue B|天使像B
Dais|台座
Statue B|石像B
Demon Statue|悪魔像
Dragon Statue|竜像
Dragon Statue|竜像
Statue A|石像A
Angel Statue A|天使像A
Angel Statue B|天使像B
Dais|台座
Statue B|石像B
Demon Statue|悪魔像
Dragon Statue|竜像
Dragon Statue|竜像
Large Gravel Mound A (Dirt)|大きな土砂A
Large Gravel Mound A (Dirt)|大きな土砂A
Large Gravel Mound B (Stone)|大きな土砂B
Large Gravel Mound B (Stone)|大きな土砂B
Large Gold Mound|大きな金の山
Large Gold Mound|大きな金の山
Large Silver Mound|大きな銀の山
Large Silver Mound|大きな銀の山
Large Gravel Mound A (Dirt)|大きな土砂A
Large Gravel Mound A (Dirt)|大きな土砂A
Large Gravel Mound B (Stone)|大きな土砂B
Large Gravel Mound B (Stone)|大きな土砂B
Large Gold Mound|大きな金の山
Large Gold Mound|大きな金の山
Large Silver Mound|大きな銀の山
Large Silver Mound|大きな銀の山
Gravel Mound (Dirt)|土砂A
Gravel Mound (Stone)|土砂B
Gold Bricks A|金の延べ棒A
Gold Bricks B|金の延べ棒B
Crate A (Dirt)|木箱A
Crate B (Stone)|木箱B
Crate C (Ruins)|木箱C廃墟
Pot A (Ruins)|壺A廃墟
Gold Mound|金の山
Silver Mound|銀の山
Silver Bricks A|銀の延べ棒A
Silver Bricks B|銀の延べ棒B
Crate D (Gold Dust)|木箱D
Crate E (Silver Dust)|木箱E
Pot A|壺A
Pot B|壺B
Shovel|スコップ
Pickax|つるはし
Rope|ロープ
Mound of Gold Coins|金貨の山
Crate F|木箱F
Crate G|木箱G
Barrel A|樽A
Barrel B (Ruins)|樽B廃墟
Large Bones|大きな骸骨
Large Bones|大きな骸骨
Bones A|骸骨A
Table (Ruins)|テーブル(廃墟)
Jail Bars|鉄格子
Jail Bars|鉄格子
Jail Bars|鉄格子
Jail Bars|鉄格子
Large Bones|大きな骸骨
Large Bones|大きな骸骨
Bones B|骸骨B
Stool (Ruins)|椅子(廃墟)
Jail Bars|鉄格子
Jail Bars|鉄格子
Jail Bars|鉄格子
Jail Bars|鉄格子

256
img/tilesets/Dungeon_C.txt Normal file
View file

@ -0,0 +1,256 @@
Decorative Pillar A (Stone)|装飾柱A
Decorative Pillar B (Stone)|装飾柱B
Decorative Pillar C (Temple)|装飾柱C遺跡
Decorative Pillar D (Rock Cave)|装飾柱D岩洞窟
Decorative Pillar E (Demon Castle)|装飾柱E魔王城
Decorative Pillar F (Fort)|装飾柱F
Decorative Pillar G (Dirt Cave)|装飾柱G土洞窟
Decorative Pillar H (Factory)|装飾柱H工場
Decorative Pillar A (Stone)|装飾柱A
Decorative Pillar B (Stone)|装飾柱B
Decorative Pillar C (Temple)|装飾柱C遺跡
Decorative Pillar D (Rock Cave)|装飾柱D岩洞窟
Decorative Pillar E (Demon Castle)|装飾柱E魔王城
Decorative Pillar F (Fort)|装飾柱F
Decorative Pillar G (Dirt Cave)|装飾柱G土洞窟
Decorative Pillar H (Factory)|装飾柱H工場
Decorative Pillar A (Stone)|装飾柱A
Decorative Pillar B (Stone)|装飾柱B
Decorative Pillar C (Temple)|装飾柱C遺跡
Decorative Pillar D (Rock Cave)|装飾柱D岩洞窟
Decorative Pillar E (Demon Castle)|装飾柱E魔王城
Decorative Pillar F (Fort)|装飾柱F
Decorative Pillar G (Dirt Cave)|装飾柱G土洞窟
Decorative Pillar H (Factory)|装飾柱H工場
Decorative Pillar A (Stone, Ruins)|装飾柱A石・廃墟
Decorative Pillar B (Stone, Ruins)|装飾柱B石・廃墟
Decorative Pillar C (Temple, Ruins)|装飾柱C遺跡・廃墟
Decorative Pillar D (Rock Cave, Ruins)|装飾柱D岩洞窟・廃墟
Decorative Pillar E (Demon Castle, Ruins)|装飾柱E魔王城・廃墟
Decorative Pillar F (Fort, Ruins)|装飾柱F砦・廃墟
Decorative Pillar G (Dirt Cave, Ruins)|装飾柱G土洞窟・廃墟
Decorative Pillar A (Stone, Front, Ruins)|装飾柱A石・手前・廃墟
Decorative Pillar A (Stone, Ruins)|装飾柱A石・廃墟
Decorative Pillar B (Stone, Ruins)|装飾柱B石・廃墟
Decorative Pillar C (Temple, Ruins)|装飾柱C遺跡・廃墟
Decorative Pillar D (Rock Cave, Ruins)|装飾柱D岩洞窟・廃墟
Decorative Pillar E (Demon Castle, Ruins)|装飾柱E魔王城・廃墟
Decorative Pillar F (Fort, Ruins)|装飾柱F砦・廃墟
Decorative Pillar G (Dirt Cave, Ruins)|装飾柱G土洞窟・廃墟
Decorative Pillar D (Rock Cave, Front, Ruins)|装飾柱F岩洞窟・手前・廃墟
Decorative Pillar A (Stone, Ruins)|装飾柱A石・廃墟
Decorative Pillar B (Stone, Ruins)|装飾柱B石・廃墟
Decorative Pillar C (Temple, Ruins)|装飾柱C遺跡・廃墟
Decorative Pillar D (Rock Cave, Ruins)|装飾柱D岩洞窟・廃墟
Decorative Pillar E (Demon Castle, Ruins)|装飾柱E魔王城・廃墟
Decorative Pillar F (Fort, Ruins)|装飾柱F砦・廃墟
Decorative Pillar G (Dirt Cave, Ruins)|装飾柱G土洞窟・廃墟
Decorative Pillar F (Fort, Front, Ruins)|装飾柱F砦・手前・廃墟
Decorative Pillar A (Stone, Front)|装飾柱A石・手前
Decorative Pillar B (Stone, Front)|装飾柱B石・手前
Decorative Pillar C (Temple, Front)|装飾柱C神殿・手前
Decorative Pillar D (Rock Cave, Front)|装飾柱D岩洞窟・手前
Decorative Pillar E (Demon Castle, Front)|装飾柱E魔王城・手前
Decorative Pillar F (Fort, Front)|装飾柱F砦・手前
Decorative Pillar G (Dirt Cave, Front)|装飾柱G土洞窟・手前
Decorative Pillar H (Factory, Front)|装飾柱H工場・手前
Gate A|門A
Gate A|門A
Gate A|門A
Gate B|門B
Gate B|門B
Gate B|門B
Decorative Pillar I (Demonic)|装飾柱I悪魔
Decorative Pillar I (Demonic, Ruins)|装飾柱I悪魔・廃墟
Gate A|門A
Gate A|門A
Gate A|門A
Gate B|門B
Gate B|門B
Gate B|門B
Decorative Pillar I (Demonic)|装飾柱I悪魔
Decorative Pillar I (Demonic, Ruins)|装飾柱I悪魔・廃墟
Gate A|門A
Gate A|門A
Gate A|門A
Gate B|門B
Gate B|門B
Gate B|門B
Coffin A (Right)|棺A
Coffin A (Right)|棺A
Hexagram|魔法陣
Hexagram|魔法陣
Hexagram|魔法陣
Hexagram (Lit)|魔法陣(光)
Hexagram (Lit)|魔法陣(光)
Hexagram (Lit)|魔法陣(光)
Coffin B (Top)|棺B
Coffin C (Bottom)|棺C
Hexagram|魔法陣
Hexagram|魔法陣
Hexagram|魔法陣
Hexagram (Lit)|魔法陣(光)
Hexagram (Lit)|魔法陣(光)
Hexagram (Lit)|魔法陣(光)
Coffin B (Top)|棺B
Coffin C (Bottom)|棺C
Hexagram|魔法陣
Hexagram|魔法陣
Hexagram|魔法陣
Hexagram (Lit)|魔法陣(光)
Hexagram (Lit)|魔法陣(光)
Hexagram (Lit)|魔法陣(光)
Coffin D (Left)|棺D
Coffin D (Left)|棺D
Rails|線路
Rails|線路
Rails|線路
Rails|線路
Rails (Ruins)|線路(廃墟)
Rails (Ruins)|線路(廃墟)
Rails (Ruins)|線路(廃墟)
Rails (Ruins)|線路(廃墟)
Rails|線路
Railroad Ties A|枕木A
Rails|線路
Rails|線路
Rails|線路
Rails|線路
Rails|線路
Rails|線路
Rails|線路
Railroad Ties B|枕木B
Rails|線路
Rails|線路
Rails|線路
Rails|線路
Rails|線路
Rails|線路
Mural A|壁画A
Hieroglyph|ヒエログリフ
Hieroglyph|ヒエログリフ
Large Mural A|大きな壁画A
Large Mural A|大きな壁画A
Large Mural A|大きな壁画A
Bed|ベッド
Bed (Ruins)|ベッド(廃墟)
Mural B|壁画B
Hieroglyph|ヒエログリフ
Hieroglyph|ヒエログリフ
Large Mural B|大きな壁画B
Large Mural B|大きな壁画B
Large Mural B|大きな壁画B
Bed|ベッド
Bed (Ruins)|ベッド(廃墟)
Middle Window A|中型窓A
Middle Window B|中型窓B
Middle Window C|中型窓C
Middle Window D (Ruins)|中型窓窓D廃墟
Window (Demon Castle)|窓(魔王城)
Table|テーブル
Cheap Bed|粗末なベッド
Straw Bed|むしろの寝床
Middle Window A|中型窓A
Middle Window B|中型窓B
Middle Window C|中型窓C
Middle Window D (Ruins)|中型窓窓D廃墟
Window (Demon Castle)|窓(魔王城)
Stool|椅子
Cheap Bed|粗末なベッド
Straw Bed|むしろの寝床
Large Window A|大型窓A
Large Window B|大型窓B
Large Window C|大型窓C
Stained Glass Window|ステンドグラス
Large Window D|大型窓D
Window A|窓A
Window B|窓B
Window C|窓C
Large Window A|大型窓A
Large Window B|大型窓B
Large Window C|大型窓C
Stained Glass Window|ステンドグラス
Large Window D|大型窓D
Window A|窓A
Window B|窓B
Window C|窓C
Chest A|チェストA
Cabinet|キャビネット
Closet|クローゼット
Chest of Drawers|タンス
Dish Cabinet|食器棚
Wine Rack|ワインセラー
Bottle Shelf A|ボトル棚A
Bottle Shelf B|ボトル棚B
Chest B|チェストB
Chest C|チェストC
Closet|クローゼット
Chest of Drawers|タンス
Dish Cabinet|食器棚
Wine Rack|ワインセラー
Bottle Shelf A|ボトル棚A
Bottle Shelf B|ボトル棚B
Tipped Shelf|倒れた棚
Sundries Shelf A|雑貨棚A
Sundries Shelf A|雑貨棚A
Sundries Shelf B|雑貨棚B
Medicine Shelf|薬品棚
Bookshelf A|本棚A
Bookshelf B|本棚B
Bookshelf B|本棚B
Tipped Shelf|倒れた棚
Sundries Shelf A|雑貨棚A
Sundries Shelf A|雑貨棚A
Sundries Shelf B|雑貨棚B
Medicine Shelf|薬品棚
Bookshelf A|本棚A
Bookshelf B|本棚B
Bookshelf B|本棚B
Curtains A|カーテンA
Curtains B|カーテンB
Curtains C|カーテンC
Curtains D|カーテンD
Curtains A (Ruins)|カーテンA廃墟
Curtains B (Ruins)|カーテンB廃墟
Curtains C (Ruins)|カーテンC廃墟
Curtains D (Ruins)|カーテンD廃墟
Curtains A|カーテンA
Curtains B|カーテンB
Curtains C|カーテンC
Curtains D|カーテンD
Curtains A (Ruins)|カーテンA廃墟
Curtains B (Ruins)|カーテンB廃墟
Curtains C (Ruins)|カーテンC廃墟
Curtains D (Ruins)|カーテンD廃墟
Clock|時計
Mirror|鏡
Clock (Ruins)|時計(廃墟)
Mirror (Ruins)|鏡(廃墟)
Stacked Crates|積まれた木箱
Stacked Crates|積まれた木箱
Tapestry A|タペストリーA
Tapestry A (Ruins)|タペストリーA廃墟
Clock|時計
Mirror|鏡
Clock (Ruins)|時計(廃墟)
Mirror (Ruins)|鏡(廃墟)
Stacked Crates|積まれた木箱
Stacked Crates|積まれた木箱
Tapestry A|タペストリーA
Tapestry A (Ruins)|タペストリーA廃墟
Chair A (Wood)|背もたれ椅子A木製
Chair B (Stone)|背もたれ椅子B
Throne A|玉座A
Throne A|玉座A
Throne A|玉座A
Throne B (Demon Castle)|玉座B魔王城
Throne B (Demon Castle)|玉座B魔王城
Throne B (Demon Castle)|玉座B魔王城
Chair A (Wood)|背もたれ椅子A木製
Chair B (Stone)|背もたれ椅子B
Throne A|玉座A
Throne A|玉座A
Throne A|玉座A
Throne B (Demon Castle)|玉座B魔王城
Throne B (Demon Castle)|玉座B魔王城
Throne B (Demon Castle)|玉座B魔王城

View file

@ -0,0 +1,16 @@
Canal A|水路A
Deep Canal|深い水路
Lotus Pads (Flowers)|蓮の葉(花)
Junk|ゴミ
Pool A (Stone Lined)|水場A石の縁
Waterfall A (Stone Wall)|滝A石壁
Pool B (Wood Lined)|水場B木の縁
Waterfall B (Stone Wall)|滝B石壁
Canal B|水路B
Waterfall C (Stone Wall)|滝C石壁
Pool C (Stone Lined)|水場C石の縁
Waterfall D (Stone Wall)|滝D石壁
Bathing Spot|水浴び場
Waterfall E (Dirt Wall)|滝E土壁
Open Bath|露天風呂
Waterfall F (Demon Castle)|滝F魔王城

View file

@ -0,0 +1,32 @@
Wood Floor A|木の床A
Cobblestones A|石畳A
Rug A|じゅうたんA
Straw Mat|ござ
Hole A (Wood Floor)|穴A木の床
Raised Stone A|石段A
Ground Cracks|床のひび割れ
Table A|テーブルA
Wood Floor B|木の床B
Cobblestones B|石畳B
Rug B|じゅうたんB
Rug C|じゅうたんC
Hole B (Wood Floor)|穴B木の床
Raised Stone B|石段B
Soil on Ground|床の汚れ
Table B|テーブルB
Cobblestones C|石畳C
Cobblestones D|石畳D
Rug D|じゅうたんD
Demon Castle Floor|魔王城の床
Hole C (Stone Floor)|穴C石の床
Raised Stone C|石段C
Moss on Ground|床の苔
Table C|テーブルC
Cobblestones E|石畳E
Cobblestones F|石畳F
Rug E|じゅうたんE
Rug F|じゅうたんF
Hole D|穴D
Raised Stone D|石段D
Wire mesh|金網
Table D|テーブルD

View file

@ -0,0 +1,48 @@
Wall A (Stone)|壁A
Wall B (Brick)|壁Bレンガ
Wall C (Brick)|壁Cレンガ
Wall D (Stone)|壁D
Wall E (Stone)|壁E
Wall F (Castle)|壁F
Wall G (Fort)|壁G
Wall H (Demon Castle)|壁H魔王城
Wall A (Stone)|壁A
Wall B (Brick)|壁Bレンガ
Wall C (Brick)|壁Cレンガ
Wall D (Stone)|壁D
Wall E (Stone)|壁E
Wall F (Castle)|壁F
Wall G (Fort)|壁G
Wall H (Demon Castle)|壁H魔王城
Wall I (Wood)|壁I木造
Wall J (Log)|壁J丸太
Wall K (Wood)|壁K木造
Interior Wall A (Wood)|内装壁A木造
Interior Wall (Stone)|内装壁B
Wall L (Stone)|壁L
Wall M (Marble)|壁M大理石
Wall N (Concrete)|壁Nコンクリート
Wall I (Wood)|壁I木造
Wall J (Log)|壁J丸太
Wall K (Wood)|壁K木造
Interior Wall A (Wood)|内装壁A木造
Interior Wall (Stone)|内装壁B
Wall L (Stone)|壁L
Wall M (Marble)|壁M大理石
Wall N (Concrete)|壁Nコンクリート
Interior Wall C (Stone)|内装壁C
Interior Wall D (Brick)|内装壁Dレンガ
Interior Wall E (Stone)|内装壁E
Interior Wall F (Desert)|内装壁F砂漠風
Interior Wall G (Mansion)|内装壁G豪邸
Interior Wall H (Temple)|内装壁H神殿
Wall O (Tent)|壁Oテント
Wall P (Stage)|壁P舞台
Interior Wall C (Stone)|内装壁C
Interior Wall D (Brick)|内装壁Dレンガ
Interior Wall E (Stone)|内装壁E
Interior Wall F (Desert)|内装壁F砂漠風
Interior Wall G (Mansion)|内装壁G豪邸
Interior Wall H (Temple)|内装壁H神殿
Wall O (Tent)|壁Oテント
Wall P (Stage)|壁P舞台

129
img/tilesets/Inside_A5.txt Normal file
View file

@ -0,0 +1,129 @@
Darkness|暗闇
Wire Mesh|金網
Stone Bridge (V, Left)|石の橋(縦・左)
Stone Bridge (V Center)|石の橋(縦・中央)
Stone Bridge (V, Riight)|石の橋(縦・右)
Stone Bridge (H, Top)|石の橋(横・上)
Stone Bridge (H Center)|石の橋(横・中央)
Broken Bridge (H, Top)|壊れた橋(横・上)
Transparent|透明
Wire Mesh|金網
Broken Bridge (V, Left)|壊れた橋(縦・左)
Broken Bridge (V Center)|壊れた橋(縦・中央)
Broken Bridge (V, Riight)|壊れた橋(縦・右)
Stone Bridge (H, Bottom)|石の橋(横・下)
Broken Bridge (H Center)|壊れた橋(横・中央)
Broken Bridge (H, Bottom)|壊れた橋(横・下)
Wood Floor A|木の床A
Wood Floor B|木の床B
Wood Floor C|木の床C
Wood Floor D|木の床D
Cobblestones A|石畳A
Cobblestones B|石畳B
Cobblestones C|石畳C
Cobblestones D|石畳D
Ledge A (Wood)|段差A木製
Ledge B (Wood)|段差B木製
Ledge C (Log)|段差C丸太
Ledge D (Log)|段差D丸太
Ledge E (Brick)|段差Eレンガ
Ledge F (Stone)|段差F
Ledge G (Stone)|段差G
Ledge H (Stone)|段差H
Cobblestones E|石畳E
Cobblestones F|石畳F
Wood Floor E|木の床E
Wood Floor F|木の床F
Cobblestones G|石畳G
Cobblestones H|石畳H
Cobblestones I|石畳I
Cobblestones J|石畳J
Ledge I (Brick)|段差Iレンガ
Ledge J (Castle)|段差J
Ledge K (Fort)|段差K
Ledge L (Wood)|段差L木製
Ledge M (Stone)|段差M
Ledge N (Stone)|段差N
Ledge O (Marble)|段差O大理石
Ledge P (Stone)|段差P
Interior Floor A (Wood)|内装床A木製
Interior Floor B (Brick)|内装床Bレンガ
Interior Floor C (Temple)|内装床C神殿
Interior Floor D (Stone)|内装床D
Interior Floor E (Demon Castle)|内装床E魔王城
Interior Floor F (Tent)|内装床Fテント
Interior Floor G (Concrete)|内装床Gコンクリート
Interior Floor H (Dirt)|内装床H
Ledge Q (Wood)|段差Q木製
Ledge R (Desert)|段差R砂漠風
Ledge S (Temple)|段差S神殿
Ledge T (Stone)|段差T
Ledge U (Demon Castle)|段差U魔界城
Ledge V (Tent)|段差Vテント
Ledge W (Concrete)|段差Wコンクリート
Ledge X (Dirt)|段差X
Stairs A (Wood, Left)|階段A木製・左
Stairs A (Wood, Center)|階段A木製・中央
Stairs A (Wood)|階段A木製・右
Stairs A (Wood)|階段A木製
Stairs B (Stone, Left)|階段B石・左
Stairs B (Stone, Center)|階段B石・中央
Stairs B (Stone, Right)|階段B石・右
Stairs B (Stone)|階段B
Stairs C (Stone, Left)|階段C石・左
Stairs C (Stone, Center)|階段C石・中央
Stairs C (Stone, Right)|階段C石・右
Stairs C (Stone)|階段C
Stairs C (Stone, Ruins, Left)|階段C石・廃墟・左
Stairs C (Stone, Ruins, Center)|階段C石・廃墟・中央
Stairs C (Stone, Ruins, Right)|階段C石・廃墟・右
Stairs C (Stone, Ruins)|階段C石・廃墟
Stairs D (Carpet, Left)|階段Dじゅうたん・左
Stairs D (Carpet, Center)|階段Dじゅうたん・中央
Stairs D (Carpet, Right)|階段Dじゅうたん・右
Stairs D (Carpet)|階段Dじゅうたん
Stairs E (Carpet, Left)|階段Eじゅうたん・左
Stairs E (Carpet, Center)|階段Eじゅうたん・中央
Stairs E (Carpet, Right)|階段Eじゅうたん・右
Stairs E (Carpet)|階段Eじゅうたん
Wood Floor A (Ruins)|木の床A廃墟
Wood Floor B (Ruins)|木の床B廃墟
Wood Floor C (Ruins)|木の床C廃墟
Wood Floor D (Ruins)|木の床D廃墟
Cobblestones A (Ruins)|石畳A廃墟
Cobblestones B (Ruins)|石畳B廃墟
Cobblestones C (Ruins)|石畳C廃墟
Cobblestones D (Ruins)|石畳D廃墟
Cobblestones E (Ruins)|石畳E廃墟
Cobblestones F (Ruins)|石畳F廃墟
Wood Floor E (Ruins)|木の床E廃墟
Wood Floor F (Ruins)|木の床F廃墟
Cobblestones G (Ruins)|石畳G廃墟
Cobblestones H (Ruins)|石畳H廃墟
Cobblestones I (Ruins)|石畳I廃墟
Cobblestones J (Ruins)|石畳J廃墟
Interior Floor A (Wood, Ruins)|内装床A木製・廃墟
Interior Floor B (Brick, Ruins)|内装床Bレンガ・廃墟
Interior Floor C (Temple, Ruins)|内装床C神殿・廃墟
Interior Floor D (Stone, Ruins)|内装床D石・廃墟
Interior Floor E (Demon Castle, Ruins)|内装床E魔王城・廃墟
Interior Floor F (Concrete, Ruins)|内装床Fコンクリート・廃墟
Interior Floor G (Tent, Ruins)|内装床Gテント・廃墟
Interior Floor H (Dirt, Ruins)|内装床H土・廃墟
Large Relief Floor Tile A|大きなレリーフ床A
Large Relief Floor Tile A|大きなレリーフ床A
Large Relief Floor Tile B|大きなレリーフ床B
Large Relief Floor Tile B|大きなレリーフ床B
Relief Floor Tile A (Silver)|レリーフ床A
Relief Floor Tile B (Silver)|レリーフ床B
Relief Floor Tile C (Gold)|レリーフ床C
Relief Floor Tile D (Gold)|レリーフ床D
Large Relief Floor Tile A|大きなレリーフ床A
Large Relief Floor Tile A|大きなレリーフ床A
Large Relief Floor Tile B|大きなレリーフ床B
Large Relief Floor Tile B|大きなレリーフ床B
Relief Floor Tile E (Silver, Ruins)|レリーフ床E銀・廃墟
Relief Floor Tile F (Silver)|レリーフ床F
Relief Floor Tile G (Gold, Ruins)|レリーフ床G金・廃墟
Relief Floor Tile H (Gold)|レリーフ床H

256
img/tilesets/Inside_B.txt Normal file
View 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上半分AS
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
View 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

View file

@ -0,0 +1,16 @@
Water A (Meadow)|水場A草地
Deep Water|深い水場
Lotus Pads|蓮の葉
Swamp Grass|水草
Water B (Snow)|水場B
Waterfall A (Stone Wall)|滝A石壁
Canal|水路
Waterfall B (Dirt Wall)|滝B土壁
Water C (Dirt)|水場C
Waterfall C (Cliff)|滝C
Water D (Sand)|水場 D
Waterfall D (Boulder)|滝D玉石
Water E (Port)|水場E
Waterfall E (Stone Wall)|滝E石壁
Poison Swamp|毒の沼
Dead Tree|枯れ木

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