Initial Commit

This commit is contained in:
dazedanon 2025-11-19 09:09:38 -06:00
commit af3b03d954
135 changed files with 666198 additions and 0 deletions

44
.gitignore vendored Normal file
View file

@ -0,0 +1,44 @@
# Ignore all files
*.*
# File Types
!*.mps
!*.json
!*.txt
!*.project
!*.js
!*.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
!package.nw
!SRPG_Unpacker.exe
!(SRPG_Unpacker Patcher).bat
# Ignore
previous_patch_sha.txt
kabe3_save.dat
kabe3_system.dat
psbpack.dat
Save*
cg.dat
scene.dat
BSXScript_*
# Images
!crazy_4th_pkg816.png

14
GameUpdate.bat Normal file
View file

@ -0,0 +1,14 @@
@echo off
setlocal
REM Copy GAMEUPDATE.bat to a new file
copy "gameupdate\patch.bat" "gameupdate\patch2.bat"
REM Run the new file
call "gameupdate\patch2.bat"
REM Delete the new file
del "gameupdate\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.sh to a new file in gameupdate
cp "gameupdate/patch.sh" "gameupdate/patch2.sh"
# Run the new file
bash "gameupdate/patch2.sh"
# Delete the new file
rm "gameupdate/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

24
data/Actors.json Normal file
View file

@ -0,0 +1,24 @@
[
null,
{
"id": 1,
"battlerName": "Actor1_2",
"characterIndex": 1,
"characterName": "Actor2-orizindotto",
"classId": 1,
"equips": [
0,
0,
2
],
"faceIndex": 5,
"faceName": "orizinaru-kaogura2",
"traits": [],
"initialLevel": 1,
"maxLevel": 10,
"name": "リーニエ",
"nickname": "",
"note": "",
"profile": "良くないことが起こった…でも思い出せない…\nただ早くこの場所から脱出しなくてはいけないのは確かだ"
}
]

887
data/Animations.json Normal file
View file

@ -0,0 +1,887 @@
[
null,
{
"id": 1,
"displayType": 0,
"effectName": "HitPhysical",
"flashTimings": [
{
"frame": 0,
"duration": 30,
"color": [
255,
0,
0,
255
]
}
],
"name": "敵ダメージ",
"offsetX": 0,
"offsetY": 0,
"rotation": {
"x": 0,
"y": 0,
"z": 0
},
"scale": 10,
"soundTimings": [
{
"frame": 0,
"se": {
"name": "Damage1",
"pan": 0,
"pitch": 100,
"volume": 90
}
}
],
"speed": 200,
"timings": []
},
{
"id": 2,
"displayType": 0,
"effectName": "HitPhysical",
"flashTimings": [
{
"frame": 0,
"duration": 30,
"color": [
255,
0,
0,
255
]
}
],
"name": "味方ダメージ",
"offsetX": 0,
"offsetY": 0,
"rotation": {
"x": 0,
"y": 0,
"z": 0
},
"scale": 10,
"soundTimings": [
{
"frame": 0,
"se": {
"name": "Damage5",
"pan": 0,
"pitch": 100,
"volume": 90
}
}
],
"speed": 200,
"timings": []
},
{
"id": 3,
"displayType": 0,
"effectName": "HitFire",
"flashTimings": [
{
"frame": 0,
"duration": 30,
"color": [
255,
102,
0,
204
]
},
{
"frame": 49,
"duration": 30,
"color": [
255,
102,
0,
204
]
}
],
"name": "敵撃破<color: 0, 0, 255, 0>",
"offsetX": 0,
"offsetY": 0,
"rotation": {
"x": 0,
"y": 0,
"z": 0
},
"scale": 20,
"soundTimings": [
{
"frame": 0,
"se": {
"name": "Damage3",
"pan": 0,
"pitch": 100,
"volume": 90
}
}
],
"speed": 300,
"timings": []
},
{
"id": 4,
"displayType": 0,
"effectName": "",
"flashTimings": [],
"name": "",
"offsetX": 0,
"offsetY": 0,
"rotation": {
"x": 0,
"y": 0,
"z": 0
},
"scale": 100,
"soundTimings": [],
"speed": 100,
"timings": []
},
{
"id": 5,
"displayType": 0,
"effectName": "HealOne1",
"flashTimings": [
{
"frame": 0,
"duration": 10,
"color": [
0,
255,
0,
102
]
},
{
"frame": 9,
"duration": 30,
"color": [
102,
255,
0,
102
]
},
{
"frame": 19,
"duration": 30,
"color": [
136,
255,
0,
102
]
},
{
"frame": 29,
"duration": 30,
"color": [
136,
255,
0,
102
]
}
],
"name": "回復/単体1",
"offsetX": 0,
"offsetY": 0,
"rotation": {
"x": 0,
"y": 0,
"z": 0
},
"scale": 50,
"soundTimings": [
{
"frame": 0,
"se": {
"name": "Item1",
"pan": 0,
"pitch": 100,
"volume": 60
}
}
],
"speed": 100
},
{
"id": 6,
"displayType": 0,
"effectName": "",
"flashTimings": [
{
"frame": 0,
"duration": 30,
"color": [
255,
255,
255,
255
]
}
],
"name": "ジャストガード",
"offsetX": 0,
"offsetY": 0,
"rotation": {
"x": 0,
"y": 0,
"z": 0
},
"scale": 10,
"soundTimings": [
{
"frame": 0,
"se": {
"name": "Hammer",
"pan": 0,
"pitch": 100,
"volume": 90
}
}
],
"speed": 200,
"timings": []
},
{
"id": 7,
"displayType": 0,
"effectName": "FireOne1",
"flashTimings": [],
"name": "炎着弾",
"offsetX": 0,
"offsetY": -48,
"rotation": {
"x": 0,
"y": 0,
"z": 0
},
"scale": 50,
"soundTimings": [
{
"frame": 0,
"se": {
"name": "Fire8",
"pan": 0,
"pitch": 120,
"volume": 80
}
}
],
"speed": 300,
"timings": []
},
{
"id": 8,
"displayType": 0,
"effectName": "NeutralOne2",
"flashTimings": [
{
"frame": 0,
"duration": 30,
"color": [
255,
102,
0,
204
]
},
{
"frame": 49,
"duration": 30,
"color": [
255,
102,
0,
204
]
}
],
"name": "爆発",
"offsetX": 0,
"offsetY": 0,
"rotation": {
"x": 0,
"y": 0,
"z": 0
},
"scale": 25,
"soundTimings": [
{
"frame": 0,
"se": {
"name": "Explosion2",
"pan": 0,
"pitch": 100,
"volume": 90
}
}
],
"speed": 300,
"timings": []
},
{
"id": 9,
"displayType": 0,
"effectName": "ThunderOne1",
"flashTimings": [
{
"frame": 9,
"duration": 50,
"color": [
255,
255,
255,
204
]
}
],
"name": "雷/単体1",
"offsetX": 0,
"offsetY": 0,
"rotation": {
"x": 0,
"y": 0,
"z": 0
},
"scale": 100,
"soundTimings": [
{
"frame": 0,
"se": {
"name": "Thunder6",
"pan": 0,
"pitch": 100,
"volume": 90
}
}
],
"speed": 100,
"timings": []
},
{
"id": 10,
"displayType": 0,
"effectName": "Powerup1",
"flashTimings": [
{
"frame": 5,
"duration": 15,
"color": [
255,
187,
0,
136
]
},
{
"frame": 19,
"duration": 30,
"color": [
255,
204,
102,
102
]
}
],
"name": "強化1",
"offsetX": 0,
"offsetY": 0,
"rotation": {
"x": 0,
"y": 0,
"z": 0
},
"scale": 25,
"soundTimings": [
{
"frame": 0,
"se": {
"name": "Up1",
"pan": 0,
"pitch": 100,
"volume": 55
}
},
{
"frame": 2,
"se": {
"name": "Magic1",
"pan": 0,
"pitch": 100,
"volume": 65
}
}
],
"speed": 100
},
{
"id": 11,
"displayType": 0,
"effectName": "EarthOne1",
"flashTimings": [
{
"frame": 0,
"duration": 30,
"color": [
255,
221,
170,
170
]
},
{
"frame": 9,
"duration": 30,
"color": [
255,
221,
170,
170
]
}
],
"name": "土/単体1",
"offsetX": 0,
"offsetY": 0,
"rotation": {
"x": 0,
"y": 0,
"z": 0
},
"scale": 20,
"soundTimings": [
{
"frame": 0,
"se": {
"name": "Earth1",
"pan": 0,
"pitch": 150,
"volume": 90
}
},
{
"frame": 5,
"se": {
"name": "Break",
"pan": 0,
"pitch": 100,
"volume": 90
}
}
],
"speed": 100,
"timings": []
},
{
"id": 12,
"displayType": 0,
"effectName": "WindOne2",
"flashTimings": [
{
"frame": 9,
"duration": 40,
"color": [
255,
255,
255,
170
]
},
{
"frame": 39,
"duration": 30,
"color": [
255,
255,
255,
204
]
},
{
"frame": 79,
"duration": 30,
"color": [
119,
255,
0,
85
]
}
],
"name": "風魔法2",
"offsetX": 0,
"offsetY": 0,
"rotation": {
"x": 0,
"y": 0,
"z": 0
},
"scale": 70,
"soundTimings": [
{
"frame": 0,
"se": {
"name": "Wind3",
"pan": 0,
"pitch": 140,
"volume": 90
}
},
{
"frame": 4,
"se": {
"name": "Wind5",
"pan": 0,
"pitch": 140,
"volume": 90
}
},
{
"frame": 14,
"se": {
"name": "Wind3",
"pan": 0,
"pitch": 140,
"volume": 90
}
},
{
"frame": 19,
"se": {
"name": "Wind5",
"pan": 0,
"pitch": 140,
"volume": 90
}
}
],
"speed": 100,
"timings": []
},
{
"id": 13,
"displayType": 0,
"effectName": "HitPhysical",
"flashTimings": [
{
"frame": 0,
"duration": 30,
"color": [
255,
0,
0,
255
]
}
],
"name": "敵ダメージ(クリティカル)",
"offsetX": 0,
"offsetY": 0,
"rotation": {
"x": 0,
"y": 0,
"z": 0
},
"scale": 10,
"soundTimings": [
{
"frame": 0,
"se": {
"name": "Bite",
"pan": 0,
"pitch": 100,
"volume": 90
}
},
{
"frame": 0,
"se": {
"name": "Damage1",
"pan": 0,
"pitch": 100,
"volume": 90
}
}
],
"speed": 200,
"timings": []
},
{
"id": 14,
"displayType": 2,
"effectName": "",
"flashTimings": [
{
"frame": 0,
"duration": 30,
"color": [
255,
255,
255,
255
]
}
],
"name": "ボス撃破フラッシュ",
"offsetX": 0,
"offsetY": 0,
"rotation": {
"x": 0,
"y": 0,
"z": 0
},
"scale": 10,
"soundTimings": [
{
"frame": 0,
"se": {
"name": "Thunder10",
"pan": 0,
"pitch": 100,
"volume": 90
}
}
],
"speed": 200,
"timings": []
},
{
"id": 15,
"displayType": 0,
"effectName": "NeutralOne2",
"flashTimings": [
{
"frame": 0,
"duration": 30,
"color": [
255,
102,
0,
204
]
},
{
"frame": 49,
"duration": 30,
"color": [
255,
102,
0,
204
]
}
],
"name": "ボス爆発1<color: 0, 0, 255, 0>",
"offsetX": 0,
"offsetY": 0,
"rotation": {
"x": 0,
"y": 0,
"z": 0
},
"scale": 20,
"soundTimings": [
{
"frame": 0,
"se": {
"name": "Explosion1",
"pan": 0,
"pitch": 100,
"volume": 90
}
}
],
"speed": 300,
"timings": []
},
{
"id": 16,
"displayType": 0,
"effectName": "NeutralOne2",
"flashTimings": [
{
"frame": 0,
"duration": 30,
"color": [
255,
102,
0,
204
]
},
{
"frame": 49,
"duration": 30,
"color": [
255,
102,
0,
204
]
}
],
"name": "ボス爆発2<color: 0, 0, 255, 0>",
"offsetX": 0,
"offsetY": 0,
"rotation": {
"x": 0,
"y": 0,
"z": 0
},
"scale": 100,
"soundTimings": [
{
"frame": 0,
"se": {
"name": "Explosion3",
"pan": 0,
"pitch": 100,
"volume": 90
}
}
],
"speed": 100,
"timings": []
},
{
"id": 17,
"displayType": 2,
"effectName": "Shout",
"flashTimings": [
{
"frame": 0,
"duration": 10,
"color": [
255,
255,
0,
153
]
},
{
"frame": 9,
"duration": 10,
"color": [
255,
255,
0,
136
]
},
{
"frame": 19,
"duration": 10,
"color": [
255,
255,
0,
136
]
},
{
"frame": 29,
"duration": 10,
"color": [
255,
255,
0,
136
]
},
{
"frame": 39,
"duration": 30,
"color": [
255,
255,
0,
136
]
}
],
"name": "咆哮",
"offsetX": 0,
"offsetY": 0,
"rotation": {
"x": 0,
"y": 0,
"z": 0
},
"scale": 55,
"soundTimings": [
{
"frame": 0,
"se": {
"name": "Monster4",
"pan": 0,
"pitch": 100,
"volume": 100
}
}
],
"speed": 55,
"timings": []
},
{
"id": 18,
"displayType": 0,
"effectName": "",
"flashTimings": [],
"name": "",
"offsetX": 0,
"offsetY": 0,
"rotation": {
"x": 0,
"y": 0,
"z": 0
},
"scale": 100,
"soundTimings": [],
"speed": 100
},
{
"id": 19,
"displayType": 0,
"effectName": "",
"flashTimings": [],
"name": "",
"offsetX": 0,
"offsetY": 0,
"rotation": {
"x": 0,
"y": 0,
"z": 0
},
"scale": 100,
"soundTimings": [],
"speed": 100
},
{
"id": 20,
"displayType": 0,
"effectName": "",
"flashTimings": [],
"name": "",
"offsetX": 0,
"offsetY": 0,
"rotation": {
"x": 0,
"y": 0,
"z": 0
},
"scale": 100,
"soundTimings": [],
"speed": 100
}
]

923
data/Armors.json Normal file
View file

@ -0,0 +1,923 @@
[
null,
{
"id": 1,
"atypeId": 1,
"description": "【一般装備】なめし皮で作られたベスト。",
"etypeId": 4,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0
}
],
"iconIndex": 385,
"name": "汚れた薄布",
"note": "",
"params": [
0,
0,
0,
3,
0,
0,
0,
0
],
"price": 0
},
{
"id": 2,
"atypeId": 1,
"description": "所々綻びて血に汚れている患者用の布\n保護性は心もとないが裸よりは幾分ましだろう",
"etypeId": 3,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0
}
],
"iconIndex": 390,
"name": "血に汚れた患者服",
"note": "",
"params": [
0,
0,
0,
5,
0,
0,
0,
0
],
"price": 50
},
{
"id": 3,
"atypeId": 1,
"description": "汚れも少ない真新しい患者用の布\n保護性は心もとないが汚れているより幾分良い",
"etypeId": 3,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0.05
}
],
"iconIndex": 392,
"name": "患者服",
"note": "",
"params": [
25,
0,
0,
8,
0,
0,
0,
0
],
"price": 100
},
{
"id": 4,
"atypeId": 1,
"description": "拘束する為だろうか 皮革と金具が所々に付けられている\n患者用の革服…見た目は良くないが丈夫である",
"etypeId": 3,
"traits": [
{
"code": 22,
"dataId": 1,
"value": -0.15
}
],
"iconIndex": 393,
"name": "皮革の患者服",
"note": "",
"params": [
55,
0,
0,
10,
0,
5,
-15,
0
],
"price": 0
},
{
"id": 5,
"atypeId": 1,
"description": "蠢く何かが裏地に縫い付けられている患者用の布服…?\n見た目は悪いが…それは持ち主に吸いつき動きを補助する",
"etypeId": 3,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0.2
}
],
"iconIndex": 394,
"name": "蠢く患者服",
"note": "",
"params": [
-35,
-25,
5,
3,
5,
3,
20,
0
],
"price": 0
},
{
"id": 6,
"atypeId": 1,
"description": "錆びた耳飾り装飾品としての価値はない だが刻まれ\nた魔除けの文字が辛うじて読める 気休めでも今はよい",
"etypeId": 2,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0
}
],
"iconIndex": 372,
"name": "錆びた耳飾り",
"note": "",
"params": [
5,
0,
0,
3,
0,
0,
5,
0
],
"price": 0
},
{
"id": 7,
"atypeId": 1,
"description": "少し綻びているが銀の装飾をあしらった耳飾り \nこんな穢れた場所には似つかわしくない…綺麗な品だ",
"etypeId": 2,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0
}
],
"iconIndex": 373,
"name": "銀の耳飾り",
"note": "",
"params": [
25,
0,
0,
5,
0,
0,
0,
0
],
"price": 0
},
{
"id": 8,
"atypeId": 1,
"description": "脈打つかのように、微かに温かい。\n…だが確かに所有者の生命を高める",
"etypeId": 2,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0
}
],
"iconIndex": 374,
"name": "朱晶の耳飾り",
"note": "",
"params": [
75,
0,
0,
0,
0,
0,
0,
0
],
"price": 0
},
{
"id": 9,
"atypeId": 1,
"description": "深い海のように、微かに冷たい。\n…だが確かに所有者の魔力を高める",
"etypeId": 2,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0
}
],
"iconIndex": 375,
"name": "蒼晶の耳飾り",
"note": "",
"params": [
25,
25,
0,
0,
0,
0,
0,
0
],
"price": 0
},
{
"id": 10,
"atypeId": 1,
"description": "古い森のような 微かにだが木の香りがする。\n僅かながら…でも確かに所有者の俊敏さを高める",
"etypeId": 2,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0.15
}
],
"iconIndex": 376,
"name": "翠晶の耳飾り",
"note": "",
"params": [
20,
10,
0,
0,
0,
0,
15,
0
],
"price": 0
},
{
"id": 11,
"atypeId": 1,
"description": "赤い小さな石がはめ込まれた質素な指輪\n僅かながら所有者の生命を高める",
"etypeId": 4,
"traits": [],
"iconIndex": 403,
"name": "赤石の指輪",
"note": "",
"params": [
30,
0,
0,
0,
0,
0,
0,
0
],
"price": 0
},
{
"id": 12,
"atypeId": 1,
"description": "青い小さな石がはめ込まれた質素な指輪\n僅かながら所有者の魔力を高める",
"etypeId": 4,
"traits": [],
"iconIndex": 404,
"name": "青石の指輪",
"note": "",
"params": [
20,
15,
0,
0,
0,
0,
0,
0
],
"price": 0
},
{
"id": 13,
"atypeId": 1,
"description": "緑の小さな石がはめ込まれた質素な指輪\n僅かながら所有者の俊敏性を高める",
"etypeId": 4,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0.1
}
],
"iconIndex": 405,
"name": "緑石の指輪",
"note": "",
"params": [
10,
0,
0,
0,
0,
0,
5,
0
],
"price": 0
},
{
"id": 14,
"atypeId": 1,
"description": "赤い大きな石がはめ込まれた少し豪華な指輪 所有者を\n護る魔法が掛けられており 特に生命を高める",
"etypeId": 4,
"traits": [],
"iconIndex": 419,
"name": "輝赤石の指輪",
"note": "",
"params": [
5000,
0,
0,
3,
0,
3,
0,
0
],
"price": 0
},
{
"id": 15,
"atypeId": 1,
"description": "青い大きな石がはめ込まれた少し豪華な指輪 所有者を\n護る魔法が掛けられており 特に魔力を高める",
"etypeId": 4,
"traits": [
{
"code": 22,
"dataId": 1,
"value": -0.05
}
],
"iconIndex": 420,
"name": "輝青石の指輪",
"note": "",
"params": [
40,
40,
0,
0,
0,
5,
0,
0
],
"price": 0
},
{
"id": 16,
"atypeId": 1,
"description": "継ぎ接ぎした粗末な装具 つけた箇所に僅かな痛みと火照り\nを感じる 活力が僅かに湧いてくる気がする",
"etypeId": 5,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0
}
],
"iconIndex": 363,
"name": "急造の装具",
"note": "",
"params": [
25,
0,
0,
0,
0,
5,
5,
0
],
"price": 0
},
{
"id": 17,
"atypeId": 1,
"description": "蠢く異形を無理やり加工した生体具 それは不快に絡み\nつき魔力を吸うが…代わりに持ち主の柔肌を保護する",
"etypeId": 5,
"traits": [
{
"code": 22,
"dataId": 1,
"value": -0.05
}
],
"iconIndex": 364,
"name": "絡みつく触具",
"note": "",
"params": [
55,
-20,
0,
5,
-5,
-15,
0,
0
],
"price": 0
},
{
"id": 18,
"atypeId": 1,
"description": "体液を啜る蟲を加工した生体具 これ以上は宿主に\n巣くうことはない だがその脈動は今も感じられる",
"etypeId": 5,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0.1
}
],
"iconIndex": 365,
"name": "繋脈蟲",
"note": "",
"params": [
105,
0,
0,
3,
0,
0,
15,
0
],
"price": 0
},
{
"id": 19,
"atypeId": 1,
"description": "触手のような…蟲のような…【何か】を加工した生体具\n持ち主の体を侵し蝕み だからこそ知れることもある…",
"etypeId": 5,
"traits": [
{
"code": 22,
"dataId": 1,
"value": -0.1
}
],
"iconIndex": 366,
"name": "白脈の管",
"note": "",
"params": [
-75,
25,
-10,
-5,
15,
5,
0,
10
],
"price": 0
},
{
"id": 20,
"atypeId": 1,
"description": "人ではない【何か】から摘出されて作られた生体具\nそれは持ち主の感覚を研ぎ澄ましそして蝕む",
"etypeId": 5,
"traits": [
{
"code": 21,
"dataId": 3,
"value": 1.2
},
{
"code": 22,
"dataId": 1,
"value": 0.25
}
],
"iconIndex": 367,
"name": "埋込異種髄",
"note": "",
"params": [
-135,
-35,
15,
5,
-10,
-15,
30,
0
],
"price": 0
},
{
"id": 21,
"atypeId": 1,
"description": "簡易的ではあるが錬造された装具 装着すると痛みと火照り\nを感じるが刻印によって活力が湧いてくる",
"etypeId": 5,
"traits": [
{
"code": 22,
"dataId": 1,
"value": -0.05
}
],
"iconIndex": 379,
"name": "錬造の装具",
"note": "",
"params": [
55,
10,
3,
2,
0,
5,
-5,
0
],
"price": 0
},
{
"id": 22,
"atypeId": 1,
"description": "緑の大きな石がはめ込まれた少し豪華な指輪 所有者を\n護る魔法が掛けられており 特に生命を高める",
"etypeId": 4,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0.15
}
],
"iconIndex": 421,
"name": "輝緑石の指輪",
"note": "",
"params": [
40,
0,
0,
0,
0,
0,
15,
0
],
"price": 0
},
{
"id": 23,
"atypeId": 1,
"description": "【何か】から摘出されて作られた骨の指輪 \n刻まれた刻印によって持ち主に秘術の知見を与えるという",
"etypeId": 4,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0
}
],
"iconIndex": 417,
"name": "重なり合う骨指輪",
"note": "",
"params": [
-50,
20,
-5,
0,
15,
-5,
0,
0
],
"price": 0
},
{
"id": 24,
"atypeId": 1,
"description": "【何か】から摘出されたものを埋め込んだ皮革の指輪\n血ではないものが赤く煌めいており 不思議と高揚させる",
"etypeId": 4,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0
}
],
"iconIndex": 418,
"name": "赤く煌めく拘束指輪",
"note": "",
"params": [
-25,
-10,
10,
5,
-5,
5,
0,
-5
],
"price": 0
},
{
"id": 25,
"atypeId": 1,
"description": "特殊な加工がされ目を模した装飾が施された指輪\n装備主が攻撃を振るった際の命中率を高める",
"etypeId": 4,
"traits": [
{
"code": 22,
"dataId": 0,
"value": 0.25
}
],
"iconIndex": 406,
"name": "戯眼の指輪",
"note": "",
"params": [
-15,
-5,
2,
0,
-5,
0,
10,
8
],
"price": 0
},
{
"id": 26,
"atypeId": 1,
"description": "赤い小さな石が細かにはめ込まれた質素な指輪\n僅かながら所有者の生命を高める",
"etypeId": 4,
"traits": [],
"iconIndex": 422,
"name": "堅赤石の指輪",
"note": "",
"params": [
65,
5,
0,
0,
0,
2,
5,
-5
],
"price": 0
},
{
"id": 27,
"atypeId": 1,
"description": "青い小さな石が細かにはめ込まれた質素な指輪\n僅かながら所有者の魔力を高める",
"etypeId": 4,
"traits": [],
"iconIndex": 423,
"name": "堅青石の指輪",
"note": "",
"params": [
30,
20,
0,
0,
0,
0,
0,
-5
],
"price": 0
},
{
"id": 28,
"atypeId": 1,
"description": "緑の小さな石が細かにはめ込まれた質素な指輪\n僅かながら所有者の俊敏性を高める",
"etypeId": 4,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0.15
}
],
"iconIndex": 424,
"name": "堅緑石の指輪",
"note": "",
"params": [
15,
5,
0,
0,
0,
0,
10,
-5
],
"price": 0
},
{
"id": 29,
"atypeId": 1,
"description": "赤く赤く脈打つかのように赤い宝石を使った首飾り\n微かに温かく 所有者の生命力を高める",
"etypeId": 2,
"traits": [
{
"code": 22,
"dataId": 1,
"value": -0.05
}
],
"iconIndex": 362,
"name": "血色の首飾り",
"note": "",
"params": [
80,
0,
0,
0,
0,
0,
0,
-3
],
"price": 0
},
{
"id": 30,
"atypeId": 1,
"description": "錬金技術によって加工され脈打つかのように微かに温かい\n見た目は少し歪だが確かに所有者の生命を高める",
"etypeId": 2,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0
}
],
"iconIndex": 377,
"name": "朱晶の耳飾り+1",
"note": "",
"params": [
105,
10,
0,
0,
0,
0,
5,
5
],
"price": 0
},
{
"id": 31,
"atypeId": 1,
"description": "錬金技術によって加工された深い森のような結晶が\n埋め込まれている 歪だが確かに所有者に加護を与える",
"etypeId": 2,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0.2
}
],
"iconIndex": 378,
"name": "翠晶の耳飾り+1",
"note": "",
"params": [
35,
25,
0,
0,
0,
0,
20,
5
],
"price": 0
},
{
"id": 32,
"atypeId": 1,
"description": "べたついた体組織を捻じり作られた指輪 見た目は悪いが\nそれは持ち主を包み保護する 但し魔力を乱す",
"etypeId": 4,
"traits": [
{
"code": 22,
"dataId": 1,
"value": -0.05
}
],
"iconIndex": 380,
"name": "粘性の指輪",
"note": "",
"params": [
65,
-15,
0,
3,
-5,
-10,
-5,
0
],
"price": 0
},
{
"id": 33,
"atypeId": 0,
"description": "",
"etypeId": 2,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0
}
],
"iconIndex": 0,
"name": "",
"note": "",
"params": [
0,
0,
0,
0,
0,
0,
0,
0
],
"price": 0
},
{
"id": 34,
"atypeId": 0,
"description": "",
"etypeId": 2,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0
}
],
"iconIndex": 0,
"name": "",
"note": "",
"params": [
0,
0,
0,
0,
0,
0,
0,
0
],
"price": 0
},
{
"id": 35,
"atypeId": 0,
"description": "",
"etypeId": 2,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0
}
],
"iconIndex": 0,
"name": "",
"note": "",
"params": [
0,
0,
0,
0,
0,
0,
0,
0
],
"price": 0
}
]

2640
data/Classes.json Normal file

File diff suppressed because it is too large Load diff

10318
data/CommonEvents.json Normal file

File diff suppressed because it is too large Load diff

1538
data/Enemies.json Normal file

File diff suppressed because it is too large Load diff

1062
data/Items.json Normal file

File diff suppressed because it is too large Load diff

27790
data/Map001.json Normal file

File diff suppressed because it is too large Load diff

5257
data/Map002.json Normal file

File diff suppressed because it is too large Load diff

3576
data/Map003.json Normal file

File diff suppressed because it is too large Load diff

17657
data/Map004.json Normal file

File diff suppressed because it is too large Load diff

16919
data/Map005.json Normal file

File diff suppressed because it is too large Load diff

3197
data/Map006.json Normal file

File diff suppressed because it is too large Load diff

26776
data/Map007.json Normal file

File diff suppressed because it is too large Load diff

17290
data/Map008.json Normal file

File diff suppressed because it is too large Load diff

1657
data/Map009.json Normal file

File diff suppressed because it is too large Load diff

9899
data/Map010.json Normal file

File diff suppressed because it is too large Load diff

5066
data/Map011.json Normal file

File diff suppressed because it is too large Load diff

2034
data/Map012.json Normal file

File diff suppressed because it is too large Load diff

10239
data/Map013.json Normal file

File diff suppressed because it is too large Load diff

43780
data/Map014.json Normal file

File diff suppressed because it is too large Load diff

1897
data/Map015.json Normal file

File diff suppressed because it is too large Load diff

5733
data/Map016.json Normal file

File diff suppressed because it is too large Load diff

4941
data/Map017.json Normal file

File diff suppressed because it is too large Load diff

4833
data/Map018.json Normal file

File diff suppressed because it is too large Load diff

5339
data/Map019.json Normal file

File diff suppressed because it is too large Load diff

9894
data/Map020.json Normal file

File diff suppressed because it is too large Load diff

9356
data/Map021.json Normal file

File diff suppressed because it is too large Load diff

14521
data/Map022.json Normal file

File diff suppressed because it is too large Load diff

24386
data/Map023.json Normal file

File diff suppressed because it is too large Load diff

8415
data/Map024.json Normal file

File diff suppressed because it is too large Load diff

7380
data/Map025.json Normal file

File diff suppressed because it is too large Load diff

5072
data/Map026.json Normal file

File diff suppressed because it is too large Load diff

8224
data/Map027.json Normal file

File diff suppressed because it is too large Load diff

10492
data/Map028.json Normal file

File diff suppressed because it is too large Load diff

7394
data/Map029.json Normal file

File diff suppressed because it is too large Load diff

8495
data/Map030.json Normal file

File diff suppressed because it is too large Load diff

5929
data/Map031.json Normal file

File diff suppressed because it is too large Load diff

14183
data/Map032.json Normal file

File diff suppressed because it is too large Load diff

21676
data/Map033.json Normal file

File diff suppressed because it is too large Load diff

13335
data/Map034.json Normal file

File diff suppressed because it is too large Load diff

4552
data/Map035.json Normal file

File diff suppressed because it is too large Load diff

6245
data/Map036.json Normal file

File diff suppressed because it is too large Load diff

6710
data/Map037.json Normal file

File diff suppressed because it is too large Load diff

5810
data/Map038.json Normal file

File diff suppressed because it is too large Load diff

17394
data/Map042.json Normal file

File diff suppressed because it is too large Load diff

15577
data/Map043.json Normal file

File diff suppressed because it is too large Load diff

17268
data/Map044.json Normal file

File diff suppressed because it is too large Load diff

7613
data/Map045.json Normal file

File diff suppressed because it is too large Load diff

424
data/MapInfos.json Normal file
View file

@ -0,0 +1,424 @@
[
null,
{
"id": 1,
"expanded": true,
"name": "【敵キャラデータ保存場所】_ID1",
"order": 1,
"parentId": 0,
"scrollX": 867.5999999999999,
"scrollY": 532.1999999999999,
"quick": true
},
{
"id": 2,
"expanded": false,
"name": "3面_教会地下_ID2",
"order": 33,
"parentId": 0,
"scrollX": 867.5999999999999,
"scrollY": 715.8,
"quick": false
},
{
"id": 3,
"expanded": true,
"name": "第二隔離室_封鎖_ID3 ",
"order": 9,
"parentId": 21,
"scrollX": 867.5999999999999,
"scrollY": 532.1999999999999,
"quick": false
},
{
"id": 4,
"expanded": true,
"name": "3面_教会地下2_ID4",
"order": 34,
"parentId": 2,
"scrollX": 963.5999999999999,
"scrollY": 880.1999999999999,
"quick": false
},
{
"id": 5,
"expanded": true,
"name": "3面_教会地下3_ID5",
"order": 36,
"parentId": 4,
"scrollX": 1330.8,
"scrollY": 1747.8,
"quick": false
},
{
"id": 6,
"expanded": true,
"name": "END_演出部屋",
"order": 41,
"parentId": 0,
"scrollX": 867.5999999999999,
"scrollY": 532.1999999999999,
"quick": false
},
{
"id": 7,
"expanded": true,
"name": "3面_教会地下4_ID7",
"order": 38,
"parentId": 5,
"scrollX": 2002.8,
"scrollY": 1161,
"quick": false
},
{
"id": 8,
"expanded": true,
"name": "蟲憑き_西5_ID8",
"order": 31,
"parentId": 33,
"scrollX": 867.2727272727273,
"scrollY": 790.3636363636364,
"quick": false
},
{
"id": 9,
"expanded": false,
"name": "OP演出部屋_ID009",
"order": 5,
"parentId": 0,
"scrollX": 867.5999999999999,
"scrollY": 522.6,
"quick": false
},
{
"id": 10,
"expanded": false,
"name": "テンプレート_スキル_ID10",
"order": 3,
"parentId": 1,
"scrollX": 867.5999999999999,
"scrollY": 522.6
},
{
"id": 11,
"expanded": true,
"name": "教会地下4_小部屋_ID11",
"order": 39,
"parentId": 7,
"scrollX": 867.5999999999999,
"scrollY": 652.1999999999999,
"quick": false
},
{
"id": 12,
"expanded": false,
"name": "GAME_OVER_演出部屋_ID012",
"order": 6,
"parentId": 9,
"scrollX": 723,
"scrollY": 443.5,
"quick": false
},
{
"id": 13,
"expanded": true,
"name": "地下廃棄場_手前_ID13",
"order": 14,
"parentId": 24,
"scrollX": 867.5999999999999,
"scrollY": 541.8,
"quick": false
},
{
"id": 14,
"expanded": false,
"name": "回想_記録部屋",
"order": 42,
"parentId": 6,
"scrollX": 1129.2,
"scrollY": 1186.2,
"quick": false
},
{
"id": 15,
"expanded": true,
"name": "テンプレート_その他",
"order": 2,
"parentId": 1,
"scrollX": 867.5999999999999,
"scrollY": 532.1999999999999
},
{
"id": 16,
"expanded": true,
"name": "教会地下3_呪具加工部屋_ID16",
"order": 37,
"parentId": 5,
"scrollX": 867.5999999999999,
"scrollY": 522.6,
"quick": false
},
{
"id": 17,
"expanded": false,
"name": "産出_蟲接合小部屋_ID17",
"order": 13,
"parentId": 25,
"scrollX": 867.5999999999999,
"scrollY": 532.1999999999999,
"quick": false
},
{
"id": 18,
"expanded": false,
"name": "蟲付き_接合小部屋_ID18",
"order": 29,
"parentId": 32,
"scrollX": 867.5999999999999,
"scrollY": 532.1999999999999,
"quick": false
},
{
"id": 19,
"expanded": true,
"name": "3面_ラスボス_部屋_ID19",
"order": 40,
"parentId": 7,
"scrollX": 867.5999999999999,
"scrollY": 532.1999999999999,
"quick": false
},
{
"id": 20,
"expanded": false,
"name": "0面_患者隔離実験室",
"order": 7,
"parentId": 0,
"scrollX": 867.5999999999999,
"scrollY": 1612.1999999999998,
"quick": false
},
{
"id": 21,
"expanded": false,
"name": "小患者室_通路",
"order": 8,
"parentId": 20,
"scrollX": 867.5999999999999,
"scrollY": 547.8,
"quick": false
},
{
"id": 22,
"expanded": true,
"name": "処置待機室_ID22",
"order": 10,
"parentId": 21,
"scrollX": 1138.8,
"scrollY": 1291.8,
"quick": false
},
{
"id": 23,
"expanded": true,
"name": "祈りの間",
"order": 4,
"parentId": 0,
"scrollX": 867.5999999999999,
"scrollY": 532.1999999999999,
"quick": true
},
{
"id": 24,
"expanded": false,
"name": "1面_産出室_ID24",
"order": 11,
"parentId": 0,
"scrollX": 867.5999999999999,
"scrollY": 532.1999999999999,
"quick": false
},
{
"id": 25,
"expanded": false,
"name": "産出室_小部屋_ID25",
"order": 12,
"parentId": 24,
"scrollX": 867.5999999999999,
"scrollY": 589.8,
"quick": false
},
{
"id": 26,
"expanded": false,
"name": "2面_蟲憑き",
"order": 22,
"parentId": 0,
"scrollX": 867.5999999999999,
"scrollY": 657,
"quick": false
},
{
"id": 27,
"expanded": false,
"name": "2面_蟲憑き_東 ID27",
"order": 24,
"parentId": 28,
"scrollX": 867.5999999999999,
"scrollY": 643.1999999999999,
"quick": false
},
{
"id": 28,
"expanded": false,
"name": "2面_蟲憑き_東ID28",
"order": 23,
"parentId": 26,
"scrollX": 867.5999999999999,
"scrollY": 1331.3999999999999,
"quick": false
},
{
"id": 29,
"expanded": false,
"name": "2面_蟲憑き_東納品門 ID29",
"order": 25,
"parentId": 27,
"scrollX": 1052.3999999999999,
"scrollY": 595.1999999999999,
"quick": false
},
{
"id": 30,
"expanded": false,
"name": "蟲付き_西_ID30",
"order": 26,
"parentId": 26,
"scrollX": 867.5999999999999,
"scrollY": 532.1999999999999,
"quick": false
},
{
"id": 31,
"expanded": false,
"name": "蟲付き_西2_ID31_中ボス",
"order": 27,
"parentId": 30,
"scrollX": 867.5999999999999,
"scrollY": 532.1999999999999,
"quick": false
},
{
"id": 32,
"expanded": false,
"name": "蟲憑き_西3_ID32",
"order": 28,
"parentId": 30,
"scrollX": 877.0909090909091,
"scrollY": 1257.2727272727273,
"quick": false
},
{
"id": 33,
"expanded": false,
"name": "蟲憑き_西4_ID33",
"order": 30,
"parentId": 32,
"scrollX": 901.0909090909091,
"scrollY": 1675.0909090909092,
"quick": false
},
{
"id": 34,
"expanded": true,
"name": "蟲憑き_西5_BOSS_ID34",
"order": 32,
"parentId": 33,
"scrollX": 867.2727272727273,
"scrollY": 1093.6363636363637,
"quick": false
},
{
"id": 35,
"expanded": false,
"name": "産出室_小部屋_ID25",
"order": 17,
"parentId": 43,
"scrollX": 867.5999999999999,
"scrollY": 532.1999999999999,
"quick": false
},
{
"id": 36,
"expanded": true,
"name": "廃棄洞窟小部屋3_ID44",
"order": 19,
"parentId": 44,
"scrollX": 867.5999999999999,
"scrollY": 532.1999999999999,
"quick": false
},
{
"id": 37,
"expanded": true,
"name": "3面_小部屋_ID37",
"order": 35,
"parentId": 4,
"scrollX": 867.5999999999999,
"scrollY": 665.4,
"quick": false
},
{
"id": 38,
"expanded": true,
"name": "廃棄洞窟小部屋4_ID38",
"order": 20,
"parentId": 44,
"scrollX": 867.5999999999999,
"scrollY": 532.1999999999999,
"quick": false
},
null,
null,
null,
{
"id": 42,
"expanded": true,
"name": "地下下水廃棄_ID42",
"order": 15,
"parentId": 13,
"scrollX": 877.1999999999999,
"scrollY": 1833,
"quick": false
},
{
"id": 43,
"expanded": true,
"name": "地下下水廃棄2_ID43",
"order": 16,
"parentId": 42,
"scrollX": 928.8,
"scrollY": 906.5999999999999,
"quick": false
},
{
"id": 44,
"expanded": false,
"name": "地下下水廃棄3_ID44",
"order": 18,
"parentId": 43,
"scrollX": 867.5999999999999,
"scrollY": 532.1999999999999,
"quick": false
},
{
"id": 45,
"expanded": true,
"name": "地下廃棄場_ボス部屋_ID45",
"order": 21,
"parentId": 44,
"scrollX": 877.1999999999999,
"scrollY": 541.8,
"quick": false
}
]

975
data/Skills.json Normal file
View file

@ -0,0 +1,975 @@
[
null,
{
"id": 1,
"animationId": -1,
"damage": {
"critical": true,
"elementId": -1,
"formula": "a.atk * 2 - b.def * 1",
"type": 1,
"variance": 25
},
"description": "",
"effects": [
{
"code": 21,
"dataId": 0,
"value1": 1,
"value2": 0
}
],
"hitType": 1,
"iconIndex": 76,
"message1": "%1の攻撃",
"message2": "",
"mpCost": 0,
"name": "攻撃",
"note": "スキル1番は攻撃コマンドに対応します。\n<action: 通常攻撃>\n<noAttackFrame: 15>",
"occasion": 1,
"repeats": 1,
"requiredWtypeId1": 0,
"requiredWtypeId2": 0,
"scope": 1,
"speed": 0,
"stypeId": 0,
"successRate": 100,
"tpCost": 0,
"tpGain": 5,
"messageType": 1
},
{
"id": 2,
"animationId": -1,
"damage": {
"critical": true,
"elementId": 1,
"formula": "a.atk * 1 - b.def * 1 + 10",
"type": 1,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 1,
"iconIndex": 76,
"message1": "%1の攻撃",
"message2": "",
"mpCost": 0,
"name": "敵衝突",
"note": "<noDamageFrame: 60>",
"occasion": 1,
"repeats": 1,
"requiredWtypeId1": 0,
"requiredWtypeId2": 0,
"scope": 1,
"speed": 0,
"stypeId": 0,
"successRate": 100,
"tpCost": 0,
"tpGain": 0,
"messageType": 1
},
{
"id": 3,
"animationId": 0,
"damage": {
"critical": false,
"elementId": 2,
"formula": "a.mat * 4 - b.mdf * 2",
"type": 1,
"variance": 20
},
"description": "前方に炎の球を発射する。",
"effects": [],
"hitType": 0,
"iconIndex": 64,
"message1": "%2",
"message2": "",
"mpCost": 5,
"name": "ファイア",
"note": "<action: ファイア>\n<noAttackFrame: 60>\n",
"occasion": 3,
"repeats": 1,
"requiredWtypeId1": 0,
"requiredWtypeId2": 0,
"scope": 1,
"speed": 0,
"stypeId": 1,
"successRate": 100,
"tpCost": 0,
"tpGain": 5,
"messageType": 1
},
{
"id": 4,
"animationId": -1,
"damage": {
"critical": true,
"elementId": 1,
"formula": "a.atk * 2 - b.def * 1",
"type": 1,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 1,
"iconIndex": 77,
"message1": "%2",
"message2": "",
"mpCost": 0,
"name": "体当たり",
"note": "<action: 体当たり>\n<noDamageFrame: 60>",
"occasion": 1,
"repeats": 1,
"requiredWtypeId1": 0,
"requiredWtypeId2": 0,
"scope": 1,
"speed": 0,
"stypeId": 0,
"successRate": 100,
"tpCost": 0,
"tpGain": 5,
"messageType": 1
},
{
"id": 5,
"animationId": 0,
"damage": {
"critical": false,
"elementId": 0,
"formula": "a.mat * 4 - b.mdf * 2",
"type": 0,
"variance": 20
},
"description": "",
"effects": [
{
"code": 21,
"dataId": 2,
"value1": 1,
"value2": 0
}
],
"hitType": 0,
"iconIndex": 76,
"message1": "%2",
"message2": "",
"mpCost": 0,
"name": "攻撃力2倍",
"note": "<action: 回復アイテム>",
"occasion": 2,
"repeats": 1,
"requiredWtypeId1": 0,
"requiredWtypeId2": 0,
"scope": 11,
"speed": 0,
"stypeId": 1,
"successRate": 100,
"tpCost": 0,
"tpGain": 5,
"messageType": 1
},
{
"id": 6,
"animationId": 0,
"damage": {
"critical": false,
"elementId": 2,
"formula": "a.atk * 4 - b.def * 2",
"type": 1,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 64,
"message1": "%2",
"message2": "",
"mpCost": 0,
"name": "炎3way",
"note": "<action: 炎3way>\n<noAttackFrame: 30>",
"occasion": 3,
"repeats": 1,
"requiredWtypeId1": 0,
"requiredWtypeId2": 0,
"scope": 1,
"speed": 0,
"stypeId": 1,
"successRate": 100,
"tpCost": 0,
"tpGain": 5,
"messageType": 1
},
{
"id": 7,
"animationId": 0,
"damage": {
"critical": false,
"elementId": 2,
"formula": "a.atk * 6",
"type": 1,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 64,
"message1": "%2",
"message2": "",
"mpCost": 0,
"name": "ファイアブレス",
"note": "<action: ファイアブレス>\n\n<noAttackFrame: 30>\n<noDamageFrame: 60>",
"occasion": 3,
"repeats": 1,
"requiredWtypeId1": 0,
"requiredWtypeId2": 0,
"scope": 1,
"speed": 0,
"stypeId": 1,
"successRate": 100,
"tpCost": 0,
"tpGain": 5,
"messageType": 1
},
{
"id": 8,
"animationId": 0,
"damage": {
"critical": false,
"elementId": 0,
"formula": "a.mat * 8 - b.mdf * 4",
"type": 1,
"variance": 20
},
"description": "選択した敵の頭上に落雷を落とす。",
"effects": [],
"hitType": 0,
"iconIndex": 66,
"message1": "%2",
"message2": "",
"mpCost": 2,
"name": "サンダー",
"note": "<action: サンダー>\n<noAttackFrame: 30>\n<showSkillName>",
"occasion": 3,
"repeats": 1,
"requiredWtypeId1": 0,
"requiredWtypeId2": 0,
"scope": 1,
"speed": 0,
"stypeId": 1,
"successRate": 100,
"tpCost": 0,
"tpGain": 5,
"messageType": 1
},
{
"id": 9,
"animationId": 0,
"damage": {
"critical": false,
"elementId": 0,
"formula": "a.atk * 2 - b.def * 1",
"type": 1,
"variance": 20
},
"description": "自分の近くにいる敵に岩を投げつける。",
"effects": [],
"hitType": 0,
"iconIndex": 68,
"message1": "%2",
"message2": "",
"mpCost": 0,
"name": "岩投げ",
"note": "<action: 岩投げ>\n<noAttackFrame: 60>",
"occasion": 3,
"repeats": 1,
"requiredWtypeId1": 0,
"requiredWtypeId2": 0,
"scope": 1,
"speed": 0,
"stypeId": 1,
"successRate": 100,
"tpCost": 0,
"tpGain": 5,
"messageType": 1
},
{
"id": 10,
"animationId": 0,
"damage": {
"critical": false,
"elementId": 2,
"formula": "a.mat * 2 - b.mdf * 1",
"type": 1,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 314,
"message1": "%2",
"message2": "",
"mpCost": 0,
"name": "火の玉",
"note": "<action: 火の玉>\n<noAttackFrame: 30>",
"occasion": 3,
"repeats": 1,
"requiredWtypeId1": 0,
"requiredWtypeId2": 0,
"scope": 1,
"speed": 0,
"stypeId": 1,
"successRate": 100,
"tpCost": 0,
"tpGain": 5,
"messageType": 1
},
{
"id": 11,
"animationId": 0,
"damage": {
"critical": false,
"elementId": 0,
"formula": "a.mat * 2 - b.mdf",
"type": 1,
"variance": 20
},
"description": "前方に巨大な竜巻を巻き起こす。",
"effects": [],
"hitType": 0,
"iconIndex": 69,
"message1": "%2",
"message2": "",
"mpCost": 8,
"name": "トルネード",
"note": "<action: トルネード>\n<noAttackFrame: 60>\n<noDamageFrame: 10>\n<showSkillName>",
"occasion": 3,
"repeats": 1,
"requiredWtypeId1": 0,
"requiredWtypeId2": 0,
"scope": 1,
"speed": 0,
"stypeId": 1,
"successRate": 100,
"tpCost": 0,
"tpGain": 5,
"messageType": 1
},
{
"id": 12,
"animationId": 0,
"damage": {
"critical": false,
"elementId": 2,
"formula": "a.atk * 2",
"type": 1,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 18,
"message1": "%2",
"message2": "",
"mpCost": 0,
"name": "粘液3way",
"note": "<action: 粘液3way>\n<noAttackFrame: 120>",
"occasion": 3,
"repeats": 1,
"requiredWtypeId1": 0,
"requiredWtypeId2": 0,
"scope": 1,
"speed": 0,
"stypeId": 1,
"successRate": 100,
"tpCost": 0,
"tpGain": 5,
"messageType": 1
},
{
"id": 13,
"animationId": 0,
"damage": {
"critical": false,
"elementId": 2,
"formula": "50",
"type": 1,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 314,
"message1": "%2",
"message2": "",
"mpCost": 0,
"name": "卵飛ばし",
"note": "<action: 卵飛ばし>\n<noAttackFrame: 120>\n\nアクション表記忘れないように",
"occasion": 3,
"repeats": 1,
"requiredWtypeId1": 0,
"requiredWtypeId2": 0,
"scope": 1,
"speed": 0,
"stypeId": 1,
"successRate": 100,
"tpCost": 0,
"tpGain": 5,
"messageType": 1
},
{
"id": 14,
"animationId": 0,
"damage": {
"critical": false,
"elementId": 2,
"formula": "a.atk * 2.5",
"type": 1,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 64,
"message1": "%2",
"message2": "",
"mpCost": 0,
"name": "蟲体液飛ばし",
"note": "<action: 蟲体液飛ばし>\n\n<noAttackFrame: 30>\n<noDamageFrame: 60>",
"occasion": 3,
"repeats": 1,
"requiredWtypeId1": 0,
"requiredWtypeId2": 0,
"scope": 1,
"speed": 0,
"stypeId": 1,
"successRate": 100,
"tpCost": 0,
"tpGain": 5,
"messageType": 1
},
{
"id": 15,
"animationId": -1,
"damage": {
"critical": true,
"elementId": 1,
"formula": "a.atk * 2 - b.def * 1",
"type": 1,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 1,
"iconIndex": 77,
"message1": "%2",
"message2": "",
"mpCost": 0,
"name": "飛び掛かり",
"note": "<action: 飛び掛かり>\n<noDamageFrame: 30>",
"occasion": 1,
"repeats": 1,
"requiredWtypeId1": 0,
"requiredWtypeId2": 0,
"scope": 1,
"speed": 0,
"stypeId": 0,
"successRate": 100,
"tpCost": 0,
"tpGain": 5,
"messageType": 1
},
{
"id": 16,
"animationId": 0,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 0,
"message1": "",
"message2": "",
"mpCost": 0,
"name": "",
"note": "",
"occasion": 0,
"repeats": 1,
"requiredWtypeId1": 0,
"requiredWtypeId2": 0,
"scope": 1,
"speed": 0,
"stypeId": 1,
"successRate": 100,
"tpCost": 0,
"tpGain": 0,
"messageType": 1
},
{
"id": 17,
"animationId": 0,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 0,
"message1": "",
"message2": "",
"mpCost": 0,
"name": "",
"note": "",
"occasion": 0,
"repeats": 1,
"requiredWtypeId1": 0,
"requiredWtypeId2": 0,
"scope": 1,
"speed": 0,
"stypeId": 1,
"successRate": 100,
"tpCost": 0,
"tpGain": 0,
"messageType": 1
},
{
"id": 18,
"animationId": 0,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 0,
"message1": "",
"message2": "",
"mpCost": 0,
"name": "",
"note": "",
"occasion": 0,
"repeats": 1,
"requiredWtypeId1": 0,
"requiredWtypeId2": 0,
"scope": 1,
"speed": 0,
"stypeId": 1,
"successRate": 100,
"tpCost": 0,
"tpGain": 0,
"messageType": 1
},
{
"id": 19,
"animationId": 0,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 0,
"message1": "",
"message2": "",
"mpCost": 0,
"name": "",
"note": "",
"occasion": 0,
"repeats": 1,
"requiredWtypeId1": 0,
"requiredWtypeId2": 0,
"scope": 1,
"speed": 0,
"stypeId": 1,
"successRate": 100,
"tpCost": 0,
"tpGain": 0,
"messageType": 1
},
{
"id": 20,
"animationId": 0,
"damage": {
"critical": false,
"elementId": 2,
"formula": "a.mat * 3 - b.mdf * 1",
"type": 1,
"variance": 20
},
"description": "魔力を消費し生み出したそれを 礫として前方に発射する   \nその源は使用者に潜む力を触媒としており 歪んでいる",
"effects": [],
"hitType": 0,
"iconIndex": 290,
"message1": "%2",
"message2": "",
"mpCost": 7,
"name": "歪んだ礫",
"note": "<action: 歪んだ礫>\n<noAttackFrame: 40>\n",
"occasion": 3,
"repeats": 1,
"requiredWtypeId1": 0,
"requiredWtypeId2": 0,
"scope": 1,
"speed": 0,
"stypeId": 1,
"successRate": 100,
"tpCost": 0,
"tpGain": 5,
"messageType": 1
},
{
"id": 21,
"animationId": 0,
"damage": {
"critical": false,
"elementId": 0,
"formula": "a.mat * 4 - b.mdf * 2",
"type": 0,
"variance": 20
},
"description": "魔力を消費し生み出した防護膜を周囲に展開する\nその源は使用者に潜む力を触媒としており 歪んでいる",
"effects": [
{
"code": 21,
"dataId": 6,
"value1": 1,
"value2": 0
}
],
"hitType": 0,
"iconIndex": 289,
"message1": "%2",
"message2": "",
"mpCost": 15,
"name": "防護の秘儀",
"note": "<action: 強化アイテム>\n<noAttackFrame: 60>",
"occasion": 2,
"repeats": 1,
"requiredWtypeId1": 0,
"requiredWtypeId2": 0,
"scope": 11,
"speed": 0,
"stypeId": 1,
"successRate": 100,
"tpCost": 0,
"tpGain": 5,
"messageType": 1
},
{
"id": 22,
"animationId": 0,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "魔力を消費し生み出した力で体を活性化させる\nその源は使用者に潜む力を触媒としており 歪んでいる",
"effects": [
{
"code": 21,
"dataId": 7,
"value1": 1,
"value2": 0
}
],
"hitType": 0,
"iconIndex": 291,
"message1": "",
"message2": "",
"mpCost": 25,
"name": "高揚の秘術",
"note": "<action: 強化アイテム>\n<noAttackFrame: 60>",
"occasion": 0,
"repeats": 1,
"requiredWtypeId1": 0,
"requiredWtypeId2": 0,
"scope": 1,
"speed": 0,
"stypeId": 1,
"successRate": 100,
"tpCost": 0,
"tpGain": 0,
"messageType": 1
},
{
"id": 23,
"animationId": 0,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "魔力を消費し生み出した力で肉体を回復させる\nその源は歪んでおり望んでいる 再生と繫栄を",
"effects": [
{
"code": 11,
"dataId": 0,
"value1": 0,
"value2": 100
}
],
"hitType": 0,
"iconIndex": 292,
"message1": "",
"message2": "",
"mpCost": 15,
"name": "癒しの秘術",
"note": "<action: 回復アイテム>\n<noAttackFrame: 90>",
"occasion": 0,
"repeats": 1,
"requiredWtypeId1": 0,
"requiredWtypeId2": 0,
"scope": 1,
"speed": 0,
"stypeId": 1,
"successRate": 100,
"tpCost": 0,
"tpGain": 0,
"messageType": 1
},
{
"id": 24,
"animationId": 0,
"damage": {
"critical": false,
"elementId": 0,
"formula": "5",
"type": 1,
"variance": 20
},
"description": "魔力を消費し生み出した光で周囲を照らす\nその源は歪んでおり望んでいる 理解と発見を",
"effects": [],
"hitType": 0,
"iconIndex": 293,
"message1": "",
"message2": "",
"mpCost": 3,
"name": "灯の秘術",
"note": "<action: 灯の秘術>\n<noAttackFrame: 20>\n",
"occasion": 0,
"repeats": 1,
"requiredWtypeId1": 0,
"requiredWtypeId2": 0,
"scope": 1,
"speed": 0,
"stypeId": 1,
"successRate": 100,
"tpCost": 0,
"tpGain": 0,
"messageType": 1
},
{
"id": 25,
"animationId": 0,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 0,
"message1": "",
"message2": "",
"mpCost": 0,
"name": "",
"note": "",
"occasion": 0,
"repeats": 1,
"requiredWtypeId1": 0,
"requiredWtypeId2": 0,
"scope": 1,
"speed": 0,
"stypeId": 1,
"successRate": 100,
"tpCost": 0,
"tpGain": 0,
"messageType": 1
},
{
"id": 26,
"animationId": -1,
"damage": {
"critical": true,
"elementId": -1,
"formula": "a.atk * 3 - b.def * 1",
"type": 1,
"variance": 35
},
"description": "",
"effects": [
{
"code": 21,
"dataId": 0,
"value1": 1,
"value2": 0
}
],
"hitType": 1,
"iconIndex": 76,
"message1": "%1の攻撃",
"message2": "",
"mpCost": 0,
"name": "触手攻撃",
"note": "スキル1番は攻撃コマンドに対応します。\n<action: 触手攻撃>\n<noAttackFrame: 30>",
"occasion": 1,
"repeats": 1,
"requiredWtypeId1": 0,
"requiredWtypeId2": 0,
"scope": 1,
"speed": 0,
"stypeId": 0,
"successRate": 100,
"tpCost": 0,
"tpGain": 5,
"messageType": 1
},
{
"id": 27,
"animationId": 0,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 0,
"message1": "",
"message2": "",
"mpCost": 0,
"name": "",
"note": "",
"occasion": 0,
"repeats": 1,
"requiredWtypeId1": 0,
"requiredWtypeId2": 0,
"scope": 1,
"speed": 0,
"stypeId": 1,
"successRate": 100,
"tpCost": 0,
"tpGain": 0,
"messageType": 1
},
{
"id": 28,
"animationId": 0,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 0,
"message1": "",
"message2": "",
"mpCost": 0,
"name": "",
"note": "",
"occasion": 0,
"repeats": 1,
"requiredWtypeId1": 0,
"requiredWtypeId2": 0,
"scope": 1,
"speed": 0,
"stypeId": 1,
"successRate": 100,
"tpCost": 0,
"tpGain": 0,
"messageType": 1
},
{
"id": 29,
"animationId": 0,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 0,
"message1": "",
"message2": "",
"mpCost": 0,
"name": "",
"note": "",
"occasion": 0,
"repeats": 1,
"requiredWtypeId1": 0,
"requiredWtypeId2": 0,
"scope": 1,
"speed": 0,
"stypeId": 1,
"successRate": 100,
"tpCost": 0,
"tpGain": 0,
"messageType": 1
},
{
"id": 30,
"animationId": 0,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 0,
"message1": "",
"message2": "",
"mpCost": 0,
"name": "",
"note": "",
"occasion": 0,
"repeats": 1,
"requiredWtypeId1": 0,
"requiredWtypeId2": 0,
"scope": 1,
"speed": 0,
"stypeId": 1,
"successRate": 100,
"tpCost": 0,
"tpGain": 0,
"messageType": 1
}
]

293
data/States.json Normal file
View file

@ -0,0 +1,293 @@
[
null,
{
"id": 1,
"autoRemovalTiming": 0,
"chanceByDamage": 100,
"iconIndex": 288,
"maxTurns": 1,
"message1": "%1は倒れた",
"message2": "%1を倒した",
"message3": "",
"message4": "%1は立ち上がった",
"minTurns": 1,
"motion": 3,
"name": "戦闘不能",
"note": "ステート1番はHP0のときに付加されます。",
"overlay": 0,
"priority": 100,
"releaseByDamage": false,
"removeAtBattleEnd": false,
"removeByDamage": false,
"removeByRestriction": false,
"removeByWalking": false,
"restriction": 4,
"stepsToRemove": 100,
"traits": [
{
"code": 23,
"dataId": 9,
"value": 0
}
],
"messageType": 1
},
{
"id": 2,
"autoRemovalTiming": 0,
"chanceByDamage": 100,
"traits": [
{
"code": 21,
"dataId": 2,
"value": 2
}
],
"iconIndex": 76,
"maxTurns": 1,
"message1": "",
"message2": "",
"message3": "",
"message4": "",
"minTurns": 1,
"motion": 0,
"name": "攻撃力2倍",
"note": "<duration: 600>\n<overWriteDuration>",
"overlay": 0,
"priority": 50,
"removeAtBattleEnd": false,
"removeByDamage": false,
"removeByRestriction": false,
"removeByWalking": false,
"restriction": 0,
"stepsToRemove": 100,
"messageType": 1
},
{
"id": 3,
"autoRemovalTiming": 0,
"chanceByDamage": 100,
"traits": [],
"iconIndex": 128,
"maxTurns": 1,
"message1": "",
"message2": "",
"message3": "",
"message4": "",
"minTurns": 1,
"motion": 0,
"name": "",
"note": "",
"overlay": 0,
"priority": 50,
"removeAtBattleEnd": false,
"removeByDamage": false,
"removeByRestriction": false,
"removeByWalking": false,
"restriction": 0,
"stepsToRemove": 100,
"messageType": 1
},
{
"id": 4,
"autoRemovalTiming": 0,
"chanceByDamage": 100,
"traits": [],
"iconIndex": 0,
"maxTurns": 1,
"message1": "",
"message2": "",
"message3": "",
"message4": "",
"minTurns": 1,
"motion": 0,
"name": "",
"note": "",
"overlay": 0,
"priority": 50,
"removeAtBattleEnd": false,
"removeByDamage": false,
"removeByRestriction": false,
"removeByWalking": false,
"restriction": 0,
"stepsToRemove": 100,
"messageType": 1
},
{
"id": 5,
"autoRemovalTiming": 0,
"chanceByDamage": 100,
"traits": [],
"iconIndex": 0,
"maxTurns": 1,
"message1": "",
"message2": "",
"message3": "",
"message4": "",
"minTurns": 1,
"motion": 0,
"name": "",
"note": "",
"overlay": 0,
"priority": 50,
"removeAtBattleEnd": false,
"removeByDamage": false,
"removeByRestriction": false,
"removeByWalking": false,
"restriction": 0,
"stepsToRemove": 100,
"messageType": 1
},
{
"id": 6,
"autoRemovalTiming": 0,
"chanceByDamage": 100,
"traits": [
{
"code": 21,
"dataId": 3,
"value": 1.25
},
{
"code": 21,
"dataId": 0,
"value": 1.1
}
],
"iconIndex": 289,
"maxTurns": 1,
"message1": "",
"message2": "",
"message3": "",
"message4": "",
"minTurns": 1,
"motion": 0,
"name": "防護",
"note": "<duration: 900>\n<overWriteDuration>",
"overlay": 0,
"priority": 50,
"removeAtBattleEnd": false,
"removeByDamage": false,
"removeByRestriction": false,
"removeByWalking": false,
"restriction": 0,
"stepsToRemove": 100,
"messageType": 1
},
{
"id": 7,
"autoRemovalTiming": 0,
"chanceByDamage": 100,
"traits": [
{
"code": 21,
"dataId": 2,
"value": 1.15
},
{
"code": 12,
"dataId": 6,
"value": 1.25
},
{
"code": 21,
"dataId": 3,
"value": 0.8
}
],
"iconIndex": 291,
"maxTurns": 1,
"message1": "",
"message2": "",
"message3": "",
"message4": "",
"minTurns": 1,
"motion": 0,
"name": "高揚",
"note": "<duration: 900>\n<overWriteDuration>",
"overlay": 0,
"priority": 50,
"removeAtBattleEnd": false,
"removeByDamage": false,
"removeByRestriction": false,
"removeByWalking": false,
"restriction": 0,
"stepsToRemove": 100,
"messageType": 1
},
{
"id": 8,
"autoRemovalTiming": 0,
"chanceByDamage": 100,
"traits": [],
"iconIndex": 0,
"maxTurns": 1,
"message1": "",
"message2": "",
"message3": "",
"message4": "",
"minTurns": 1,
"motion": 0,
"name": "",
"note": "",
"overlay": 0,
"priority": 50,
"removeAtBattleEnd": false,
"removeByDamage": false,
"removeByRestriction": false,
"removeByWalking": false,
"restriction": 0,
"stepsToRemove": 100,
"messageType": 1
},
{
"id": 9,
"autoRemovalTiming": 0,
"chanceByDamage": 100,
"traits": [],
"iconIndex": 0,
"maxTurns": 1,
"message1": "",
"message2": "",
"message3": "",
"message4": "",
"minTurns": 1,
"motion": 0,
"name": "",
"note": "",
"overlay": 0,
"priority": 50,
"removeAtBattleEnd": false,
"removeByDamage": false,
"removeByRestriction": false,
"removeByWalking": false,
"restriction": 0,
"stepsToRemove": 100,
"messageType": 1
},
{
"id": 10,
"autoRemovalTiming": 0,
"chanceByDamage": 100,
"traits": [],
"iconIndex": 0,
"maxTurns": 1,
"message1": "",
"message2": "",
"message3": "",
"message4": "",
"minTurns": 1,
"motion": 0,
"name": "",
"note": "",
"overlay": 0,
"priority": 50,
"removeAtBattleEnd": false,
"removeByDamage": false,
"removeByRestriction": false,
"removeByWalking": false,
"restriction": 0,
"stepsToRemove": 100,
"messageType": 1
}
]

680
data/System.json Normal file
View file

@ -0,0 +1,680 @@
{
"advanced": {
"gameId": 48339513,
"screenWidth": 816,
"screenHeight": 624,
"uiAreaWidth": 816,
"uiAreaHeight": 624,
"numberFontFilename": "mplus-2p-bold-sub.woff",
"fallbackFonts": "Verdana, sans-serif",
"fontSize": 26,
"mainFontFilename": "mplus-1m-regular.woff",
"windowOpacity": 192,
"screenScale": 1
},
"airship": {
"bgm": {
"name": "Ship3",
"pan": 0,
"pitch": 100,
"volume": 90
},
"characterIndex": 3,
"characterName": "",
"startMapId": 0,
"startX": 0,
"startY": 0
},
"armorTypes": [
"",
"一般防具",
"",
""
],
"attackMotions": [
{
"type": 0,
"weaponImageId": 0
},
{
"type": 1,
"weaponImageId": 1
},
{
"type": 1,
"weaponImageId": 2
},
{
"type": 1,
"weaponImageId": 3
},
{
"type": 1,
"weaponImageId": 4
},
{
"type": 1,
"weaponImageId": 5
},
{
"type": 1,
"weaponImageId": 6
},
{
"type": 2,
"weaponImageId": 7
},
{
"type": 2,
"weaponImageId": 8
},
{
"type": 2,
"weaponImageId": 9
},
{
"type": 0,
"weaponImageId": 10
},
{
"type": 0,
"weaponImageId": 11
},
{
"type": 0,
"weaponImageId": 12
}
],
"battleBgm": {
"name": "Battle1",
"pan": 0,
"pitch": 100,
"volume": 90
},
"battleback1Name": "GrassMaze",
"battleback2Name": "GrassMaze",
"battlerHue": 0,
"battlerName": "Hi_monster",
"battleSystem": 0,
"boat": {
"bgm": {
"name": "Ship1",
"pan": 0,
"pitch": 100,
"volume": 90
},
"characterIndex": 0,
"characterName": "",
"startMapId": 0,
"startX": 0,
"startY": 0
},
"currencyUnit": "穢れ",
"defeatMe": {
"name": "Defeat1",
"pan": 0,
"pitch": 100,
"volume": 90
},
"editMapId": 14,
"elements": [
"",
"物理",
"魔法",
""
],
"equipTypes": [
"",
"武器",
"頭",
"身体",
"装飾",
"生体具",
"",
"",
""
],
"gameTitle": "",
"gameoverMe": {
"name": "Gameover1",
"pan": 0,
"pitch": 100,
"volume": 20
},
"itemCategories": [
true,
true,
true,
true
],
"locale": "ja_JP",
"magicSkills": [
1
],
"menuCommands": [
true,
true,
true,
true,
false,
false
],
"optAutosave": true,
"optDisplayTp": false,
"optDrawTitle": true,
"optExtraExp": false,
"optFloorDeath": true,
"optFollowers": true,
"optKeyItemsNumber": true,
"optSideView": false,
"optSlipDeath": true,
"optTransparent": false,
"partyMembers": [
1
],
"ship": {
"bgm": {
"name": "Ship2",
"pan": 0,
"pitch": 100,
"volume": 90
},
"characterIndex": 1,
"characterName": "",
"startMapId": 0,
"startX": 0,
"startY": 0
},
"skillTypes": [
"",
"秘儀",
""
],
"sounds": [
{
"name": "A_1_Bookー",
"pan": 0,
"pitch": 100,
"volume": 30
},
{
"name": "Sword1",
"pan": 0,
"pitch": 100,
"volume": 30
},
{
"name": "Book2",
"pan": 0,
"pitch": 100,
"volume": 30
},
{
"name": "Cancel1",
"pan": 0,
"pitch": 100,
"volume": 20
},
{
"name": "Equip2",
"pan": 0,
"pitch": 100,
"volume": 35
},
{
"name": "Save1",
"pan": 0,
"pitch": 100,
"volume": 25
},
{
"name": "Magic1",
"pan": 0,
"pitch": 100,
"volume": 30
},
{
"name": "Battle1",
"pan": 0,
"pitch": 100,
"volume": 90
},
{
"name": "Run",
"pan": 0,
"pitch": 100,
"volume": 90
},
{
"name": "Attack3",
"pan": 0,
"pitch": 100,
"volume": 55
},
{
"name": "Damage4",
"pan": 0,
"pitch": 100,
"volume": 35
},
{
"name": "Collapse1",
"pan": 0,
"pitch": 100,
"volume": 90
},
{
"name": "Collapse2",
"pan": 0,
"pitch": 100,
"volume": 90
},
{
"name": "Collapse3",
"pan": 0,
"pitch": 100,
"volume": 90
},
{
"name": "Damage5",
"pan": 0,
"pitch": 100,
"volume": 55
},
{
"name": "Collapse4",
"pan": 0,
"pitch": 100,
"volume": 90
},
{
"name": "Recovery",
"pan": 0,
"pitch": 100,
"volume": 50
},
{
"name": "Miss",
"pan": 0,
"pitch": 100,
"volume": 50
},
{
"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": "Equip3",
"pan": 0,
"pitch": 100,
"volume": 25
},
{
"name": "Item1",
"pan": 0,
"pitch": 100,
"volume": 35
},
{
"name": "Item3",
"pan": 0,
"pitch": 90,
"volume": 45
}
],
"startMapId": 9,
"startX": 8,
"startY": 6,
"switches": [
"",
"ダミースイッチ",
"ARPGモード",
"アクターHPゲージ有効化",
"ヒットエリア可視化切り替え",
"$SO衝突検出フラグ",
"操作アクター変更許可",
"",
"",
"",
"武器取得",
"",
"叡智呪い",
"白液ゲージ表示スイッチ",
"",
"宝箱1色褪せた鍵入手",
"蟲監獄_ボス前",
"Hイベント2跳ぶ",
"聖堂_小部屋スイッチ",
"聖堂_呪具部屋スイッチ",
"下水ボス前_ショトカ",
"$初期化完了",
"$リセット要求",
"$敵撃破",
"$エネミーダメージ",
"$スーパーアーマー",
"$画面内フラグ",
"$移動有無",
"$ヒット検出",
"%スキル効果適用テスト結果",
"%ダメージアニメーション表示",
"%ノックバックあり",
"%近隣バトラー検索結果",
"ターゲット選択結果",
"%透明オブジェクト発射結果",
"",
"",
"",
"",
"",
"",
"スライムボス撃破",
"蟲蟷螂ボス撃破",
"蟲芋虫ボス撃破",
"最終ラスボス撃破",
"",
"",
"",
"",
"",
"聖堂ボス前_ショトカ",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"蟲芋虫ボス前_ショトカ",
"ボス撃破",
"ボス戦闘開始",
"ボス撃破後ワープ可能",
"SM宝箱1",
"SM宝箱2",
"SM宝箱3",
"SM宝箱4",
"",
"祈りの間到達",
"",
"",
"",
"",
"中ボス_蟲_撃破",
"ボス戦開始_蟲Boss",
"大ボス_蟲_撃破",
"大ボス蟲湧き",
"",
""
],
"terms": {
"basic": [
"レベル",
"Lv",
"生命力",
"生命",
"魔力",
"魔力",
"",
"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": "%1の勝利",
"defeat": "%1は力尽きた…",
"obtainExp": "%1 の%2を獲得",
"obtainGold": "お金を %1\\G 手に入れた!",
"obtainItem": "%1を手に入れた",
"levelUp": "%1は%2 %3 に上がった!",
"obtainSkill": "%1を覚えた",
"useItem": "%1は%2を使った",
"criticalToEnemy": "会心の一撃!!",
"criticalToActor": "痛恨の一撃!!",
"actorDamage": "%1は %2 のダメージを受けた!",
"actorRecovery": "%1の%2が %3 回復した!",
"actorGain": "%1の%2が %3 増えた!",
"actorLoss": "%1の%2が %3 減った!",
"actorDrain": "%1は%2を %3 奪われた!",
"actorNoDamage": "%1はダメージを受けていない",
"actorNoHit": "ミス! %1はダメージを受けていない",
"enemyDamage": "%1に %2 のダメージを与えた!",
"enemyRecovery": "%1の%2が %3 回復した!",
"enemyGain": "%1の%2が %3 増えた!",
"enemyLoss": "%1の%2が %3 減った!",
"enemyDrain": "%1の%2を %3 奪った!",
"enemyNoDamage": "%1にダメージを与えられない",
"enemyNoHit": "ミス! %1にダメージを与えられない",
"evasion": "%1は攻撃をかわした",
"magicEvasion": "%1は魔法を打ち消した",
"magicReflection": "%1は魔法を跳ね返した",
"counterAttack": "%1の反撃",
"substitute": "%1が%2をかばった",
"buffAdd": "%1の%2が上がった",
"debuffAdd": "%1の%2が下がった",
"buffRemove": "%1の%2が元に戻った",
"actionFailure": "%1には効かなかった"
}
},
"testBattlers": [
{
"actorId": 1,
"level": 1,
"equips": [
2,
1,
2,
3,
0
]
},
{
"actorId": 4,
"level": 1,
"equips": [
31,
0,
0,
5,
0
]
},
{
"actorId": 6,
"level": 1,
"equips": [
7,
0,
65,
21,
0
]
},
{
"actorId": 7,
"level": 1,
"equips": [
7,
0,
0,
20,
0
]
}
],
"testTroopId": 1,
"title1Name": "胎動の檻_聖母体にされた少女達",
"title2Name": "",
"titleBgm": {
"name": "A1_クトゥルフルルイエDungeon-Rlyeh_",
"pan": 0,
"pitch": 100,
"volume": 15
},
"titleCommandWindow": {
"offsetX": 0,
"offsetY": 0,
"background": 0
},
"variables": [
"",
"%生成動的イベントID",
"%スキルユーザー種別",
"%スキルユーザーイベントID",
"%ダメージ種別",
"%ダメージタイプ",
"%ダメージ値",
"%#ダメージ角度",
"$SOユーザー種別",
"$SOユーザーイベントID",
"$敵撃破角度",
"",
"",
"",
"",
"叡智呪い",
"資料収集回数",
"混沌階層Y",
"地形タグ確認用",
"ボス討伐進捗度",
"主人公_浸食度",
"$SO移動角度",
"$#撃破角度",
"選択ターゲットイベントID",
"%#汎用X座標",
"%#汎用Y座標",
"%汎用方向",
"%#汎用角度",
"%汎用距離",
"%汎用ループカウンタ",
"$SO攻撃方向",
"%検索_種別",
"%検索_イベントID",
"$SO汎用X座標",
"$SO汎用Y座標",
"%汎用現在HP",
"%汎用乱数",
"%#角度_加算値",
"%#基準角度",
"%#基準X座標",
"%#基準Y座標",
"TR3_ウルフ撃破数",
"TR4_ウルフ撃破数",
"BOSS_行動パターン",
"",
"アイテムドロップ用",
"ラスボス行動乱数",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
""
],
"versionId": 21361462,
"victoryMe": {
"name": "Victory1",
"pan": 0,
"pitch": 100,
"volume": 90
},
"weaponTypes": [
"",
"短剣",
"",
""
],
"windowTone": [
0,
0,
0,
0
],
"tileSize": 48,
"hasEncryptedImages": true,
"hasEncryptedAudio": true,
"encryptionKey": "cf908f207369cead32c7a54014d0013e"
}

65731
data/Tilesets.json Normal file

File diff suppressed because it is too large Load diff

34
data/Troops.json Normal file
View file

@ -0,0 +1,34 @@
[
null,
{
"id": 1,
"members": [],
"name": "",
"pages": [
{
"conditions": {
"actorHp": 50,
"actorId": 1,
"actorValid": false,
"enemyHp": 50,
"enemyIndex": 0,
"enemyValid": false,
"switchId": 1,
"switchValid": false,
"turnA": 0,
"turnB": 0,
"turnEnding": false,
"turnValid": false
},
"list": [
{
"code": 0,
"indent": 0,
"parameters": []
}
],
"span": 0
}
]
}
]

389
data/Weapons.json Normal file
View file

@ -0,0 +1,389 @@
[
null,
{
"id": 1,
"animationId": 6,
"description": "所々錆びて汚れている短剣\nとはいえ素手よりは頼りになる…",
"etypeId": 1,
"traits": [
{
"code": 31,
"dataId": 1,
"value": 0
}
],
"iconIndex": 338,
"name": "錆汚れた短剣",
"note": "",
"params": [
0,
0,
5,
0,
0,
0,
0,
0
],
"price": 50,
"wtypeId": 2
},
{
"id": 2,
"animationId": 0,
"description": "何かを切った為か少々汚れている短剣\nとはいえ錆びているよりは頼りになる…",
"etypeId": 1,
"traits": [
{
"code": 31,
"dataId": 1,
"value": 0
}
],
"iconIndex": 322,
"name": "汚れた短剣",
"note": "",
"params": [
0,
0,
10,
0,
0,
0,
0,
0
],
"price": 100,
"wtypeId": 1
},
{
"id": 3,
"animationId": 0,
"description": "何の変哲もない短い鉄の剣 だが錆びや汚れは\nついておらず 使用には問題なさそうだ…",
"etypeId": 1,
"traits": [
{
"code": 31,
"dataId": 1,
"value": 0
},
{
"code": 22,
"dataId": 0,
"value": 0.15
}
],
"iconIndex": 307,
"name": "鉄の短剣",
"note": "",
"params": [
0,
0,
15,
0,
0,
0,
0,
0
],
"price": 150,
"wtypeId": 1
},
{
"id": 4,
"animationId": 0,
"description": "簡易的にではあるが魔力が込められた短剣 こういった\n武具は儀式の道具として用いられることもあるという",
"etypeId": 1,
"traits": [
{
"code": 31,
"dataId": 1,
"value": 0
},
{
"code": 22,
"dataId": 0,
"value": 0.1
}
],
"iconIndex": 306,
"name": "魔力込めの短剣",
"note": "",
"params": [
-50,
0,
5,
0,
5,
5,
0,
0
],
"price": 200,
"wtypeId": 1
},
{
"id": 5,
"animationId": 0,
"description": "大きく歪み捻じれた短剣 儀式用のなのか武器としては\n期待できない ただそこに込められた力は神秘を高める",
"etypeId": 1,
"traits": [
{
"code": 31,
"dataId": 1,
"value": 0
},
{
"code": 22,
"dataId": 0,
"value": 0.1
}
],
"iconIndex": 308,
"name": "歪み捻じれた短剣",
"note": "",
"params": [
-50,
0,
-10,
0,
20,
5,
0,
0
],
"price": 250,
"wtypeId": 1
},
{
"id": 6,
"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": 7,
"animationId": 0,
"description": "簡易的にではあるが魔力が込められた短剣 こういった\n武具は儀式の道具として用いられることもあるという",
"etypeId": 1,
"traits": [
{
"code": 31,
"dataId": 1,
"value": 0
},
{
"code": 22,
"dataId": 0,
"value": 0.15
}
],
"iconIndex": 305,
"name": "錬造の魔力込め短剣",
"note": "",
"params": [
-25,
15,
10,
0,
7,
5,
0,
2
],
"price": 200,
"wtypeId": 1
},
{
"id": 8,
"animationId": 0,
"description": "大きく歪み捻じれた短剣 儀式用のなのか武器としては\n期待できない ただそこに込められた力は神秘を高める",
"etypeId": 1,
"traits": [
{
"code": 31,
"dataId": 1,
"value": 0
},
{
"code": 22,
"dataId": 0,
"value": 0.05
}
],
"iconIndex": 309,
"name": "大きく歪み捻じれた短剣",
"note": "",
"params": [
-75,
35,
-15,
0,
25,
10,
0,
0
],
"price": 250,
"wtypeId": 1
},
{
"id": 9,
"animationId": 0,
"description": "儀式的に呪いが込められた変質した短剣 赤く蠢く\n武具は儀式の祭具として用いられるためにつくられた",
"etypeId": 1,
"traits": [
{
"code": 31,
"dataId": 1,
"value": 0
},
{
"code": 22,
"dataId": 0,
"value": 0.15
}
],
"iconIndex": 304,
"name": "呪い込めの短剣",
"note": "",
"params": [
-99,
-33,
33,
-11,
22,
-22,
0,
0
],
"price": 0,
"wtypeId": 1
},
{
"id": 10,
"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": 11,
"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": 12,
"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
}
]

View file

@ -0,0 +1,3 @@
username=dazed-translations
repo=tattoo-of-betrayal
branch=main

248
gameupdate/patch.bat Normal file
View file

@ -0,0 +1,248 @@
@echo off
setlocal EnableExtensions EnableDelayedExpansion
REM Check if being run from gameupdate folder (incorrect usage)
for %%I in ("%CD%") do set "CURRENT_FOLDER=%%~nxI"
if /I "%CURRENT_FOLDER%"=="gameupdate" (
echo.
echo ========================================
echo ERROR: Do not run patch.bat directly!
echo ========================================
echo.
echo You are running this from the gameupdate folder.
echo This will not work correctly!
echo.
echo Please go back to the game's root folder and
echo run GameUpdate.bat instead.
echo ========================================
echo.
pause
exit /b 1
)
REM Determine important paths
set "SCRIPT_DIR=%~dp0"
set "ROOT_DIR=%CD%"
set "CONFIG_FILE=%SCRIPT_DIR%patch-config.txt"
echo Using root directory: "%ROOT_DIR%"
echo Using config: "%CONFIG_FILE%"
echo Checking for pwsh...
set _my_shell=pwsh
REM Check if pwsh.exe exists
where /q !_my_shell!
if !errorlevel! neq 0 (
echo pwsh not found. Falling back to powershell...
REM If pwsh is not found, set to powershell
set _my_shell=powershell
REM Check if powershell.exe exists
echo Checking for powershell...
where /q !_my_shell!
if !errorlevel! neq 0 (
echo.Error: Powershell not found!
pause
exit /B 1
) else (
echo powershell found.
)
) else (
echo pwsh found.
)
echo Using !_my_shell! for script execution.
REM Check if patch-config.txt exists in gameupdate folder
if not exist "%CONFIG_FILE%" (
echo "Config file (gameupdate\patch-config.txt) not found! Assuming no patching needed."
pause
exit /b
)
REM Read configuration from file
for /f "usebackq tokens=1,2 delims==" %%a in ("%CONFIG_FILE%") do (
if "%%a"=="username" set "username=%%b"
if "%%a"=="repo" set "repo=%%b"
if "%%a"=="branch" set "branch=%%b"
)
REM --------------------------------------------------------
REM PRE-SETUP: Ensure SRPG data and patch structure exists
REM Run Steps 1 and 2 BEFORE pulling repo patch to avoid overwriting updates
REM 1) Unpack once if data folder doesn't exist (and data.dts does)
REM 2) Create Patch once if patch folder doesn't exist
REM --------------------------------------------------------
set "UNPACKER=%ROOT_DIR%\SRPG_Unpacker.exe"
if exist "%ROOT_DIR%\data.dts" (
if exist "%UNPACKER%" (
echo [Pre-Setup] Running SRPG_Unpacker preparation steps...
REM Step 1: Unpack (once)
if not exist "%ROOT_DIR%\data\" (
set "SHOULD_UNPACK=1"
) else if not exist "%ROOT_DIR%\data\project.dat" (
set "SHOULD_UNPACK=1"
) else (
set "SHOULD_UNPACK=0"
)
if "!SHOULD_UNPACK!"=="1" (
if exist "%ROOT_DIR%\data.dts" (
echo [Pre-Setup] Step 1: Unpacking data.dts to data
pushd "%ROOT_DIR%"
"%UNPACKER%" -o "data" "data.dts"
if !errorlevel! neq 0 (
echo [Pre-Setup] ERROR: Unpack failed. Continuing.
)
popd
) else (
echo [Pre-Setup] Step 1: Skipping unpack - no data folder and no data.dts found.
)
) else (
echo [Pre-Setup] Step 1: data folder exists; skipping unpack.
)
REM Step 2: Create Patch (once)
if not exist "%ROOT_DIR%\patch\" (
if exist "%ROOT_DIR%\data\project.dat" (
echo [Pre-Setup] Step 2: Creating patch from data\project.dat
pushd "%ROOT_DIR%"
"%UNPACKER%" ".\data\project.dat" -c
if !errorlevel! neq 0 (
echo [Pre-Setup] ERROR: Create Patch failed. Continuing.
)
popd
) else (
echo [Pre-Setup] Step 2: Skipping create patch - data\project.dat not found.
)
) else (
echo [Pre-Setup] Step 2: patch folder exists; skipping create.
)
) else (
echo [Pre-Setup] SRPG_Unpacker.exe not found in root; skipping pre-setup steps.
)
) else (
echo [Pre-Setup] data.dts not found; skipping pre-setup SRPG steps.
)
REM Get the latest hash
echo "Getting latest commit SHA hash"
!_my_shell! -Command "(Invoke-RestMethod -Uri 'https://gitgud.io/api/v4/projects/%username%%%2F%repo%/repository/branches/%branch%').commit.id" > "%ROOT_DIR%\latest_patch_sha.txt"
REM Read the latest SHA from the file
set /p latest_patch_sha=<"%ROOT_DIR%\latest_patch_sha.txt"
REM Check if previous_patch_sha.txt exists in gameupdate
if not exist "%SCRIPT_DIR%previous_patch_sha.txt" (
echo "Previous SHA hash not found!"
echo "Assuming first time patching..."
goto download_extract
)
REM Read the stored SHA from previous check
set /p previous_patch_sha=<"%SCRIPT_DIR%previous_patch_sha.txt"
REM Trim whitespace from SHA strings
set "previous_patch_sha=%previous_patch_sha: =%"
set "latest_patch_sha=%latest_patch_sha: =%"
REM Compare trimmed SHAs
if "%latest_patch_sha%" neq "%previous_patch_sha%" (
echo "Update found! Patching..."
goto download_extract
) else (
echo "Patch is up to date."
)
REM Delete latest_patch_sha.txt
del "%ROOT_DIR%\latest_patch_sha.txt"
endlocal
pause
exit /b
:download_extract
REM Escape single quotes in paths
set "escaped_root=%ROOT_DIR:'=''%"
REM Download zip file to root
echo "Downloading latest patch..."
!_my_shell! -Command "Set-Location -LiteralPath '%escaped_root%'; $ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest -Uri 'https://gitgud.io/%username%/%repo%/-/archive/%branch%/%repo%-%branch%.zip' -OutFile 'repo.zip'"
if !errorlevel! neq 0 (
pause
exit /b
)
REM Extract contents, overwriting conflicts into root
echo "Extracting..."
!_my_shell! -Command "Set-Location -LiteralPath '%escaped_root%'; $ProgressPreference = 'SilentlyContinue'; Expand-Archive -Path '.\repo.zip' -DestinationPath '.' -Force"
if !errorlevel! neq 0 (
echo Extraction failed!
del "%ROOT_DIR%\repo.zip"
rmdir /s /q "%ROOT_DIR%\%repo%-%branch%"
pause
exit /b
)
echo "Applying patch..."
xcopy /s /e /y "%ROOT_DIR%\%repo%-%branch%\*" "%ROOT_DIR%\"
if !errorlevel! neq 0 (
echo Patch application failed!
del "%ROOT_DIR%\repo.zip"
rmdir /s /q "%ROOT_DIR%\%repo%-%branch%"
pause
exit /b
)
REM --------------------------------------------------------
REM POST-APPLY: Run Steps 3 and 4 after patch files are merged
REM 3) Apply Patch to data\project.dat
REM 4) Pack data back into data.dts
REM --------------------------------------------------------
set "UNPACKER=%ROOT_DIR%\SRPG_Unpacker.exe"
if exist "%ROOT_DIR%\data.dts" (
if exist "%UNPACKER%" (
echo Running SRPG_Unpacker apply/pack steps...
REM Step 3: Apply Patch
if exist "%ROOT_DIR%\data\project.dat" (
echo Step 3: Applying patch to data\project.dat
pushd "%ROOT_DIR%"
"%UNPACKER%" ".\data\project.dat" -a
if !errorlevel! neq 0 (
echo ERROR: Apply Patch failed.
)
popd
) else (
echo ERROR: data\project.dat not found; cannot apply patch.
)
REM Step 4: Pack
if exist "%ROOT_DIR%\data\" (
echo Step 4: Packing data to data.dts
pushd "%ROOT_DIR%"
"%UNPACKER%" -o "data.dts" "data"
if !errorlevel! neq 0 (
echo WARNING: Pack failed.
)
popd
) else (
echo Step 4: Skipping pack - data folder not found.
)
) else (
echo SRPG_Unpacker.exe not found in root; skipping SRPG patch steps.
)
) else (
echo data.dts not found; skipping SRPG patch steps.
)
REM Clean up
echo "Cleaning up..."
del "%ROOT_DIR%\repo.zip"
rmdir /s /q "%ROOT_DIR%\%repo%-%branch%"
del "%ROOT_DIR%\latest_patch_sha.txt"
REM Store latest SHA for next check in gameupdate
echo %latest_patch_sha% > "%SCRIPT_DIR%previous_patch_sha.txt"
endlocal
pause
exit /b

169
gameupdate/patch.sh Normal file
View file

@ -0,0 +1,169 @@
#!/bin/bash
set -e
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
ROOT_DIR="$(pwd)"
CONFIG_FILE="$SCRIPT_DIR/patch-config.txt"
check_dependency() {
if ! command -v "$1" > /dev/null 2>&1; then
echo "Error: '$1' is not installed. Please install it using 'pkg install $1'."
exit 1
fi
}
# Check for jq, unzip, and curl
check_dependency jq
check_dependency unzip
check_dependency curl
# Check if CONFIG_FILE exists
if [ ! -f "$CONFIG_FILE" ]; then
echo "Config file '$CONFIG_FILE' not found! Assuming no patching needed."
exit 0
fi
# Convert line endings to Unix format
sed -i 's/\r$//' "$CONFIG_FILE"
# Debug information
echo "Root directory: $ROOT_DIR"
echo "Config file path: $CONFIG_FILE"
# Read configuration from file
. "$CONFIG_FILE"
# Get the latest hash
echo "Getting latest commit SHA hash"
latest_patch_sha=$(curl -s "https://gitgud.io/api/v4/projects/$username%2F$repo/repository/branches/$branch" | jq -r '.commit.id')
# --------------------------------------------------------
# PRE-SETUP: Ensure SRPG data and patch structure exists
# Run Steps 1 and 2 BEFORE pulling repo patch to avoid overwriting updates
# 1) Unpack once if data folder doesn't exist (and data.dts does)
# 2) Create Patch once if patch folder doesn't exist
# --------------------------------------------------------
UNPACKER="$ROOT_DIR/SRPG_Unpacker.exe"
if [ -f "$ROOT_DIR/data.dts" ]; then
if [ -f "$UNPACKER" ]; then
echo "[Pre-Setup] Running SRPG_Unpacker preparation steps..."
# Step 1: Unpack (once)
if [ ! -d "$ROOT_DIR/data" ]; then
if [ -f "$ROOT_DIR/data.dts" ]; then
echo "[Pre-Setup] Step 1: Unpacking data.dts -> data"
( cd "$ROOT_DIR" && "$UNPACKER" -o data data.dts ) || echo "[Pre-Setup] ERROR: Unpack failed."
else
echo "[Pre-Setup] Step 1: Skipping unpack (no data folder and no data.dts found)."
fi
else
echo "[Pre-Setup] Step 1: data folder exists; skipping unpack."
fi
# Step 2: Create Patch (once)
if [ ! -d "$ROOT_DIR/patch" ]; then
if [ -f "$ROOT_DIR/data/project.dat" ]; then
echo "[Pre-Setup] Step 2: Creating patch from data/project.dat"
( cd "$ROOT_DIR" && "$UNPACKER" ./data/project.dat -c ) || echo "[Pre-Setup] ERROR: Create Patch failed."
else
echo "[Pre-Setup] Step 2: Skipping create patch (data/project.dat not found)."
fi
else
echo "[Pre-Setup] Step 2: patch folder exists; skipping create."
fi
else
echo "[Pre-Setup] SRPG_Unpacker.exe not found in root; skipping pre-setup steps."
fi
else
echo "[Pre-Setup] data.dts not found; skipping pre-setup SRPG steps."
fi
download_extract() {
# Download zip file into root
echo "Downloading latest patch..."
curl -sL "https://gitgud.io/$username/$repo/-/archive/$branch/$repo-$branch.zip" -o "$ROOT_DIR/repo.zip"
if [ $? -ne 0 ]; then
echo "Download failed!"
rm -f "$ROOT_DIR/repo.zip"
rm -rf "$ROOT_DIR/$repo-$branch"
return 1
fi
# Extract contents, overwriting conflicts into root
echo "Extracting..."
unzip -qo "$ROOT_DIR/repo.zip" -d "$ROOT_DIR"
if [ $? -ne 0 ]; then
echo "Extraction failed!"
rm -f "$ROOT_DIR/repo.zip"
rm -rf "$ROOT_DIR/$repo-$branch"
return 1
fi
echo "Applying patch..."
cp -r "$ROOT_DIR/$repo-$branch/"* "$ROOT_DIR/"
if [ $? -ne 0 ]; then
echo "Patch application failed!"
rm -f "$ROOT_DIR/repo.zip"
rm -rf "$ROOT_DIR/$repo-$branch"
return 1
fi
echo "Cleaning up..."
rm -f "$ROOT_DIR/repo.zip"
rm -rf "$ROOT_DIR/$repo-$branch"
rm -f "$ROOT_DIR/latest_patch_sha.txt"
# Store latest SHA for next check in gameupdate
echo "$latest_patch_sha" > "$SCRIPT_DIR/previous_patch_sha.txt"
# --------------------------------------------------------
# POST-APPLY: Run Steps 3 and 4 after patch files are merged
# 3) Apply Patch to data/project.dat
# 4) Pack data back into data.dts
# --------------------------------------------------------
UNPACKER="$ROOT_DIR/SRPG_Unpacker.exe"
if [ -f "$ROOT_DIR/data.dts" ]; then
if [ -f "$UNPACKER" ]; then
echo "Running SRPG_Unpacker apply/pack steps..."
# Step 3: Apply Patch
if [ -f "$ROOT_DIR/data/project.dat" ]; then
echo "Step 3: Applying patch to data/project.dat"
( cd "$ROOT_DIR" && "$UNPACKER" ./data/project.dat -a ) || echo "ERROR: Apply Patch failed."
else
echo "ERROR: data/project.dat not found; cannot apply patch."
fi
# Step 4: Pack
if [ -d "$ROOT_DIR/data" ]; then
echo "Step 4: Packing data -> data.dts"
( cd "$ROOT_DIR" && "$UNPACKER" -o data.dts data ) || echo "WARNING: Pack failed."
else
echo "Step 4: Skipping pack (data folder not found)."
fi
else
echo "SRPG_Unpacker.exe not found in root; skipping SRPG patch steps."
fi
else
echo "data.dts not found; skipping SRPG patch steps."
fi
}
# Check if previous_patch_sha.txt exists in gameupdate
if [ ! -f "$SCRIPT_DIR/previous_patch_sha.txt" ]; then
echo "Previous SHA hash not found!"
echo "Assuming first time patching..."
download_extract
else
# Read the stored SHA from previous check
previous_patch_sha=$(cat "$SCRIPT_DIR/previous_patch_sha.txt")
# Compare trimmed SHAs
if [ "$latest_patch_sha" != "$previous_patch_sha" ]; then
echo "Update found! Patching..."
download_extract
else
echo "Patch is up to date."
fi
fi

1455
gameupdate/vocab.txt Normal file

File diff suppressed because it is too large Load diff

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 (Stone)|壁K
Wall L (Marble)|壁L大理石
Wall M (Moss)|壁M
Wall N (Castle)|壁N
Wall O (Fort)|壁O
Wall P (Demon Castle)|壁P魔王城
Wall I (Stone)|壁I
Wall J (Brick)|壁Jレンガ
Wall K (Stone)|壁K
Wall L (Marble)|壁L大理石
Wall M (Moss)|壁M
Wall N (Castle)|壁N
Wall O (Fort)|壁O
Wall P (Demon Castle)|壁P魔王城
Wall Q (Mecha)|壁Qメカ
Wall R (Stone)|壁R
Wall S (Frozen)|壁S凍結
Wall T (Dirt Cave, Gold)|壁T土洞窟・黄金
Ledge A (Dirt Cave)|段差A土洞窟
Ledge B (Rock Cave)|段差B岩洞窟
Ledge C (Lava Cave)|段差C溶岩洞窟
Ledge D (Ice Cave)|段差D氷洞窟
Wall Q (Mecha)|壁Qメカ
Wall R (Stone)|壁R
Wall S (Frozen)|壁S凍結
Wall T (Dirt Cave, Gold)|壁T土洞窟・黄金
Ledge A (Dirt Cave)|段差A土洞窟
Ledge B (Rock Cave)|段差B岩洞窟
Ledge C (Lava Cave)|段差C溶岩洞窟
Ledge D (Ice Cave)|段差D氷洞窟

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

@ -0,0 +1,128 @@
Darkness|暗闇
Floating Floor A (Dirt)|浮かぶ床A
Floating Floor B (Rock)|浮かぶ床B
Translucent Floor A|半透明の床A
Translucent Floor B|半透明の床B
Stairs A (Dirt)|階段A
Stairs B (Translucent)|階段B半透明
Wire Mesh|金網
Transparent|透明
Floating Floor A (Dirt)|浮かぶ床A
Floating Floor B (Rock)|浮かぶ床B
Translucent Floor A|半透明の床A
Translucent Floor B|半透明の床B
Stairs A (Rock)|階段A
Stairs B (Translucent)|階段B半透明
Wire Mesh|金網
Ground A (Wood)|床A木製
Ground B (Wood)|床B木製
Ground (Wood, Ruins)|床A木製・廃墟
Ground (Wood, Ruins)|床B木製・廃墟
Cobblestones A|石畳A
Cobblestones B|石畳B
Cobblestones C|石畳C
Cobblestones D|石畳D
Cobblestones E|石畳E
Decorative Tile A|化粧タイルA
Decorative Tile B|化粧タイルB
Interior Floor A|内装床A
Interior Floor B (Light)|内装床B明かり
Tile Floor A|タイル床A
Tile Floor B|タイル床B
Tile Floor C|タイル床C
Cobblestones F|石畳F
Ground C (Rock Cave, Red Crystal)|床C岩洞窟・赤水晶
Ground D (Rock Cave, Blue Crystal)|床D岩洞窟・青水晶
Ground E (Rock Cave, Green Crystal)|床E岩洞窟・緑水晶
Ground F (Dirt)|床F
Ground G (Demon Castle)|床G魔王城
Ground H (Gold)|床H黄金
Ground I (Ice)|床I
Stairs A (Dirt Cave, Left)|階段A土洞窟・左
Stairs A (Dirt Cave, Center)|階段A土洞窟・中央
Stairs A (Dirt Cave, Right)|階段A土洞窟・右
Stairs A (Dirt Cave)|階段A土洞窟
Stairs B (Rock Cave, Left)|階段B岩洞窟・左
Stairs B (Rock Cave, Center)|階段B岩洞窟・中央
Stairs B (Rock Cave, Right)|階段B岩洞窟・右
Stairs B (Rock Cave)|階段B岩洞窟
Stairs C (Lava Cave, Left)|階段C溶岩洞窟・左
Stairs C (Lava Cave, Center)|階段C溶岩洞窟・中央
Stairs C (Lava Cave, Right)|階段C溶岩洞窟・右
Stairs C (Lava Cave)|階段C溶岩洞窟
Stairs D (Ice Cave, Left)|階段D氷洞窟・左
Stairs D (Ice Cave, Center)|階段D氷洞窟・中央
Stairs D (Ice Cave, Right)|階段D氷洞窟・右
Stairs D (Ice Cave)|階段D氷洞窟
Stairs E (Grass Maze, Left)|階段E草迷宮・左
Stairs E (Grass Maze, Center)|階段E草迷宮・中央
Stairs E (Grass Maze, Right)|階段E草迷宮・右
Stairs E (Grass Maze)|階段E草迷宮
Stairs F (Crystal, Left)|階段F水晶・左
Stairs F (Crystal, Center)|階段F水晶・中央
Stairs F (Crystal, Right)|階段F水晶・右
Stairs F (Crystal)|階段F水晶
Stairs G (In Body, Left)|階段G体内・左
Stairs G (In Body, Center)|階段G体内・中央
Stairs G (In Body, Right)|階段G体内・右
Stairs G (In Body)|階段G体内
Stairs H (Demonic World, Left)|階段H魔界・左
Stairs H (Demonic World, Center)|階段H魔界・中央
Stairs H (Demonic World, Right)|階段H魔界・右
Stairs H (Demonic World)|階段H魔界
Stairs I (Stone, Left)|階段I石・左
Stairs I (Stone, Center)|階段I石・中央
Stairs I (Stone, Right)|階段I石・右
Stairs I (Stone)|階段I
Stairs J (Ruins, Left)|階段J廃墟・左
Stairs J (Ruins, Center)|階段J廃墟・中央
Stairs J (Ruins, Right)|階段J廃墟・右
Stairs J (Ruins)|階段J廃墟
Stairs K (Stone, Left)|階段K石・左
Stairs K (Stone, Center)|階段K石・中央
Stairs K (Stone, Right)|階段K石・右
Stairs K (Stone)|階段K
Stairs L (Ruins, Left)|階段L廃墟・左
Stairs L (Ruins, Center)|階段L廃墟・中央
Stairs L (Ruins, Right)|階段L廃墟・右
Stairs L (Ruins)|階段L廃墟
Ground (Dirt Cave, Ruins)|床A土洞窟・廃墟
Ground (Rock Cave, Ruins)|床B岩洞窟・廃墟
Ground (Lava Cave, Ruins)|床C溶岩洞窟・廃墟
Ground (Ice Cave, Ruins)|床D氷洞窟・廃墟
Ground (Grass Maze, Ruins)|床E草迷宮・廃墟
Ground (Crystal, Ruins)|床F水晶・廃墟
Ground (In Body, Ruins)|床G体内・廃墟
Ground (Demonic World, Ruins)|床H魔界・廃墟
Cobblestones A (Ruins)|石畳A廃墟
Cobblestones B (Ruins)|石畳B廃墟
Cobblestones C (Ruins)|石畳C廃墟
Cobblestones D (Ruins)|石畳D廃墟
Cobblestones E (Ruins)|石畳E廃墟
Decorative Tile A (Ruins)|化粧タイルA廃墟
Decorative Tile B (Ruins)|化粧タイルB廃墟
Interior Floor A (Ruins)|内装床A廃墟
Tile Floor A (Ruins)|タイル床A廃墟
Tile Floor B (Ruins)|タイル床B廃墟
Tile Floor C (Ruins)|タイル床C廃墟
Cobblestones F (Ruins)|石畳F廃墟
Ground F (Dirt, Ruins)|床F土・廃墟
Ground G (Demon Castle, Ruins)|床G魔王城・廃墟
Ground I (Ice, Ruins)|床I氷・廃墟
Relief Floor Tile (Silver)|レリーフ床(銀)
Large Relief Floor Tile|大きなレリーフ床
Large Relief Floor Tile|大きなレリーフ床
Large Relief Floor Tile (Ruins)|大きなレリーフ床(廃墟)
Large Relief Floor Tile (Ruins)|大きなレリーフ床(廃墟)
Directional Floor Tile A (Down)|方向床A
Directional Floor Tile B (Up)|方向床B
Relief Floor Tile A (Gold)|レリーフ床A
Relief Floor Tile B (Gold)|レリーフ床B
Large Relief Floor Tile|大きなレリーフ床
Large Relief Floor Tile|大きなレリーフ床
Large Relief Floor Tile (Ruins)|大きなレリーフ床(廃墟)
Large Relief Floor Tile (Ruins)|大きなレリーフ床(廃墟)
Directional Floor Tile C (Left)|方向床C
Directional Floor Tile D (Right)|方向床D
Relief Floor Tile C (Gold)|レリーフ床C
Relief Floor Tile D (Gold, Ruins)|レリーフ床D金・廃墟

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

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

256
img/tilesets/Dungeon_C.txt Normal file
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 @@
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紫滝

View 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白布

View 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/Inside_A5.txt Normal file
View 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/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|鉄ばしご
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上半分AS
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/Inside_C.txt Normal file
View 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

View 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|枯れ木

View 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|段差

View 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|氷の外壁

View file

@ -0,0 +1,48 @@
Wall A (Stone)|壁A
Wall B (Stone)|壁B
Wall C (Stone)|壁C
Building A (Castle)|建物A
Building B (Castle, Snow)|建物B城・雪
Building C (Fort)|建物C
Building D (Fort, Snow)|建物D砦・雪
Demon Castle|魔王城
Wall A (Stone)|壁A
Wall B (Stone)|壁B
Wall C (Stone)|壁C
Building A (Castle)|建物A
Building B (Castle, Snow)|建物B城・雪
Building C (Fort)|建物C
Building D (Fort, Snow)|建物D砦・雪
Demon Castle|魔王城
Wall C (Brick)|壁Cレンガ
Wall D (Stone)|壁D
Wall E (Marble)|壁E大理石
Wall F (Marble)|壁F大理石
Building E (Dirt Wall)|建物E土壁
Building F (Desert)|建物F砂漠風
Wall G (Gold)|壁G黄金
Building G (Mecha)|建物Gメカ
Wall C (Brick)|壁Cレンガ
Wall D (Stone)|壁D
Wall E (Marble)|壁E大理石
Wall F (Marble)|壁F大理石
Building E (Dirt Wall)|建物E土壁
Building F (Desert)|建物F砂漠風
Wall G (Gold)|壁G黄金
Building G (Mecha)|建物Gメカ
Wall H (Moss)|壁H
Wall I (Hedge)|壁I生け垣
Forest A|森A
Forest B (Snow)|森B
Ledge A (Meadow)|段差A草地
Ledge B (Dirt)|段差B
Ledge C (Desert)|段差C砂地
Ledge D (Snow)|段差D
Wall H (Moss)|壁H
Wall I (Hedge)|壁I生け垣
Forest A|森A
Forest B (Snow)|森B
Ledge A (Meadow)|段差A草地
Ledge B (Dirt)|段差B
Ledge C (Desert)|段差C砂地
Ledge D (Snow)|段差D

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

@ -0,0 +1,128 @@
Darkness|暗闇
Night Sky A|夜空A
Large Bridge (H, Top)|大きな橋(横・上)
Large Bridge (H, Center)|大きな橋(横・中央)
Large Bridge (Snow, H, Top)|大きな橋(雪・横・上)
Large Bridge (V, Left)|大きな橋(縦・左)
Large Bridge (V, Center)|大きな橋(縦・中央)
Large Bridge (V, Right)|大きな橋(縦・右)
Transparent|透明
Night Sky B|夜空B
Large Bridge (H, Bottom)|大きな橋(横・下)
Large Bridge (Snow, H, Center)|大きな橋(雪・横・中央)
Large Bridge (Snow, H, Bottom)|大きな橋(雪・横・下)
Large Bridge (Snow, V, Left)|大きな橋(雪・縦・左)
Large Bridge (Snow, V, Center)|大きな橋(雪・縦・中央)
Large Bridge (Snow, V, Right)|大きな橋(雪・縦・右)
Meadow A|草地A
Dirt A|土A
Desert A|砂地A
Snow A|雪A
Meadow|草地B
Dirt B|土B
Desert B|砂地B
Snow B|雪B
Cobblestones A|石畳A
Cobblestones B|石畳B
Cobblestones C|石畳C
Cobblestones D|石畳D
Cobblestones A (Ruins)|石畳A廃墟
Cobblestones B (Ruins)|石畳B廃墟
Cobblestones C (Ruins)|石畳C廃墟
Cobblestones D (Ruins)|石畳D廃墟
Cobblestones E|石畳E
Cobblestones F|石畳F
Cobblestones G|石畳G
Demon Castle Floor|魔王城の床
Cobblestones E (Ruins)|石畳E廃墟
Cobblestones F (Ruins)|石畳F廃墟
Cobblestones G (Ruins)|石畳G廃墟
Demon Castle Floor (Ruins)|魔王城の床(廃墟)
Ledge (Port, Left)|段差(港・左)
Ledge (Port, Center)|段差(港・中央)
Ledge (Port, Right)|段差(港・右)
Ledge (Port)|段差(港)
Tile Floor A|タイル床A
Tile Floor B|タイル床B
Tile Floor C (Gold)|タイル床C
Tile Floor D (Ice)|タイル床D
Stairs (Meadow, Left)|階段(草地・左)
Stairs (Meadow, Center)|階段(草地・中央)
Stairs (Meadow, Right)|階段(草地・右)
Stairs (Meadow)|階段
Stairs (Dirt, Left)|階段(土・左)
Stairs (Dirt, Center)|階段(土・中央)
Stairs (Dirt, Right)|階段(土・右)
Stairs (Dirt)|階段(土)
Stairs (Desert, Left)|階段(砂地・左)
Stairs (Desert, Center)|階段(砂地・中央)
Stairs (Desert, Right)|階段(砂地・右)
Stairs (Desert)|階段(砂地)
Stairs (Snow, Left)|階段(雪・左)
Stairs (Snow, Center)|階段(雪・中央)
Stairs (Snow, Right)|階段(雪・右)
Stairs (Snow)|階段(雪)
Stairs (Paved, Left)|階段(舗装・左)
Stairs (Paved, Center)|階段(舗装・中央)
Stairs (Paved, Right)|階段(舗装・右)
Stairs (Paved)|階段(舗装)
Stairs (Ruins, Left)|階段(廃墟・左)
Stairs (Ruins, Center)|階段(廃墟・中央)
Stairs (Ruins, Right)|階段(廃墟・右)
Stairs (Ruins)|階段(廃墟)
Large Relief Floor Tile|大きなレリーフ床
Large Relief Floor Tile|大きなレリーフ床
Large Relief Floor Tile (Ruins)|大きなレリーフ床(廃墟)
Large Relief Floor Tile (Ruins)|大きなレリーフ床(廃墟)
Farm Field A (Top)|畑A
Farm Field A (Center)|畑A中央
Farm Field B (Snow, Top)|畑B雪・上
Farm Field B (Snow, Center)|畑B雪・中央
Large Relief Floor Tile|大きなレリーフ床
Large Relief Floor Tile|大きなレリーフ床
Large Relief Floor Tile (Ruins)|大きなレリーフ床(廃墟)
Large Relief Floor Tile (Ruins)|大きなレリーフ床(廃墟)
Farm Field A (Top)|畑A
Farm Field A (Center)|畑A中央
Farm Field B (Snow, Top)|畑B雪・上
Farm Field B (Snow, Center)|畑B雪・中央
Ledge (Meadow)|段差(草地)
Ledge (Meadow)|段差(草地)
Ledge (Meadow)|段差(草地)
Garden A|花壇A
Garden B (Snow)|花壇B
Ledge (Dirt)|段差(土)
Ledge (Dirt)|段差(土)
Ledge (Dirt)|段差(土)
Ledge (Meadow)|段差(草地)
Ledge (Meadow)|段差(草地)
Ledge (Meadow)|段差(草地)
Ledge (Meadow)|段差(草地)
Ledge (Meadow)|段差(草地)
Ledge (Dirt)|段差(土)
Ledge (Dirt)|段差(土)
Ledge (Dirt)|段差(土)
Ledge (Meadow)|段差(草地)
Ledge (Meadow)|段差(草地)
Ledge (Meadow)|段差(草地)
Ledge (Meadow)|段差(草地)
Ledge (Meadow)|段差(草地)
Ledge (Dirt)|段差(土)
Ledge (Dirt)|段差(土)
Ledge (Dirt)|段差(土)
Cliff|崖
Cliff|崖
Cliff|崖
Ledge (Dirt)|段差(土)
Ledge (Dirt)|段差(土)
Cliff|崖
Cliff|崖
Cliff|崖
Cliff (Meadow)|崖(草地)
Cliff (Meadow)|崖(草地)
Cliff (Meadow)|崖(草地)
Ledge (Dirt)|段差(土)
Ledge (Dirt)|段差(土)
Cliff (Dirt)|崖(土)
Cliff (Dirt)|崖(土)
Cliff (Dirt)|崖(土)

256
img/tilesets/Outside_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上り
Tent A|テントA
Tent A|テントA
Tent A|テントA
Streetlight A|街灯A
Stairs A (Down)|階段A下り
Stairs B (Down)|階段B下り
Stairs C (Down)|階段C下り
Stairs D (Down)|階段D下り
Tent A|テントA
Tent A|テントA
Tent A|テントA
Streetlight A|街灯A
Metal Ladder|鉄ばしご
Wood Ladder|木製はしご
Rope|ロープ
Vines A|ツタ
Tent A|テントA
Tent A (Entrance)|テントA入口
Tent A|テントA
Streetlight A|街灯A
Metal Ladder|鉄ばしご
Wood Ladder|木製はしご
Rope|ロープ
Vines A|ツタA
Tent B|テントB
Tent B|テントB
Tent B|テントB
Streetlight B (Snow)|街灯B
Metal Ladder|鉄ばしご
Wood Ladder|木製はしご
Rope|ロープ
Vines B (Down)|ツタB下り
Tent B|テントB
Tent B|テントB
Tent B|テントB
Streetlight B (Snow)|街灯B
Hole A (Metal Ladder)|穴A鉄ばしご
Hole B (Wood Ladder)|穴B木製はしご
Hole C (Rope)|穴Cロープ
Hole D|穴D
Tent B|テントB
Tent B (Entrance, Snow)|テント(入口・雪)
Tent B|テントB
Streetlight B (Snow)|街灯B
Wall Vines A|壁のツタA
Wall Vines B|壁のツタB
Wall Vines C|壁のツタC
Fissures A|亀裂A
Fissures B|亀裂B
Fissures C|亀裂C
Fissures D|亀裂D
Wall Moss|壁の苔
Wall Vines A|壁のツタA
Wall Vines B|壁のツタB
Wall Vines C|壁のツタC
Fissures A|亀裂A
Fissures B|亀裂B
Fissures C|亀裂C
Fissures E|亀裂E
Wall Fern|壁のシダ
Shop Sign (Sword)|看板(剣)
Shop Sign (Sword & Shield)|看板(剣と盾)
Shop Sign (Armor)|看板(鎧)
Shop Sign (Sack)|看板(袋)
Shop Sign (Teapot)|看板(ポット)
Shop Sign (Inn)|看板(宿)
Shop Sign (Pub)|看板(酒場)
Shop Sign (Eatery)|看板(食堂)
Shop Sign (Hexagram)|看板(魔法陣)
Shop Sign (Staves)|看板(杖)
Shop Sign (Coin)|看板(コイン)
Shop Sign (Necklace)|看板(ネックレス)
Shop Sign (Hammer)|看板(ハンマー)
Shop Sign (Crest)|看板(紋章)
Shop Sign (Blank)|看板(無地)
Log Bridge (V)|丸太の橋(縦)
Log Bridge (H)|丸太の橋(横)
Wood Bridge (V)|木の橋(縦)
Wood Bridge (H)|木の橋(横)
Stone Bridge (V)|石の橋(縦)
Stone Bridge (H)|石の橋(横)
Wood Bridge (V)|木の橋(縦)
Wood Bridge (H)|木の橋(横)
Bridge Spar (Wood, Center A)|橋げた木・中央A
Bridge Spar (Wood, Left)|橋げた(木・左)
Bridge Spar (Wood, Center B)|橋げた木・中央B
Bridge Spar (Wood, Right)|橋げた(木・右)
Bridge Spar (Stone, Center A)|橋げた石・中央A
Bridge Spar (Stone, Left)|橋げた(石・左)
Bridge Spar (Stone, Center B)||橋げた石・中央B
Bridge Spar (Stone, Right)|橋げた(石・右)
Window A|窓A
Window B|窓B
Window C|窓C
Window D|窓D
Middle Window A|中型窓A
Middle Window B|中型窓B
Middle Window C|中型窓C
Middle Window D|中型窓D
Window E|窓E
Window F|窓F
Window G|窓G
Window H|窓H
Middle Window A|中型窓A
Middle Window E|中型窓E
Middle Window C|中型窓C
Middle Window D|中型窓D
Large Window A|大型窓A
Large Window B|大型窓B
Large Window C|大型窓C
Stained Glass Window|ステンドグラス
Large Window D|大型窓D
Middle Window F|中型窓F
Middle Window G|中型窓G
Middle Window H|中型窓H
Large Window A|大型窓A
Large Window E|大型窓E
Large Window C|大型窓C
Stained Glass Window B|ステンドグラスB
Large Window D|大型窓D
Middle Window F|中型窓F
Middle Window G|中型窓G
Middle Window H|中型窓H
Chimney|煙突
Mooring Bollard A|ビットA
Mooring Bollard B (Rope)|ビット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
Chimney|煙突
Sign A|立て札A
Sign B|立て札B
Well|井戸
Stepping Stones|踏み石
Barrel|樽
Grave A|墓A
Grave B|墓B
Pot|壺
Basin A|桶A
Basin B|桶B
Rock Fire Pit A|石のかまどA
Rock Fire Pit B|石のかまどB
Barricade (H)|バリケード(横)
Barricade (V)|バリケード(縦)
Beanstalk|豆の木
Grass A|草A
Grass B|草B
Grass C|草C
Grass D|草D
Stump|切り株
Tree|木
Tree|木
Boulder A|岩A
Flowers A|花A
Flowers B|花B
Flowers C|花C
Flowers D|花D
Fallen Log|倒木
Tree|木
Bush|植え込み
Boulder B|岩B
Scarecrow|かかし
Hole|穴
Firewood|薪
Rocks|小石
Crops A|農作物A
Crops B|農作物B
Crops C|農作物C
Crops D|農作物D
Large Tree|大木
Large Tree|大木
Large Tree|大木
Large Tree|大木
Large Crate|大きな木箱
Crate A|木箱A
Crate B|木箱B
Crate C|木箱C
Large Tree|大木
Large Tree|大木
Large Tree|大木
Large Tree|大木
Large Crate|大きな木箱
Crate D|木箱D
Crate E|木箱E
Crate F|木箱F
Conifer Tree (Snow)|針葉樹(雪)
Conifer Tree (Snow)|針葉樹(雪)
Conifer Tree (Snow)|針葉樹(雪)
Conifer Tree (Snow)|針葉樹(雪)
Scarecrow (Snow)|かかし(雪)
Pot (Snow)|壺(雪)
Bucket (Snow)|桶(雪)
Crate (Snow)|木箱(雪)
Large Conifer Tree (Snow)|大針葉樹(雪)
Large Conifer Tree (Snow)|大針葉樹(雪)
Large Conifer Tree (Snow)|大針葉樹(雪)
Large Conifer Tree (Snow)|大針葉樹(雪)
Mooring Bollard (Snow)|ビット(雪)
Barricade (H, Snow)|バリケード(横・雪)
Barricade (H, Snow)|バリケード(縦・雪)
Beanstalk (Snow)|豆の木(雪)
Stump (Snow)|切り株(雪)
Sign A (Snow)|立て札A
Sign B (Snow)|立て札B
Well (Snow)|井戸(雪)
Stepping Stones (Snow)|踏み石(雪)
Barrel (Snow)|樽(雪)
Grave A (Snow)|墓A
Grave B (Snow)|墓B
Snowman|雪だるま
Grass A (Snow)|草A
Grass B (Snow)|草B
Grass C (Snow)|草C
Grass D (Snow)|草D
Conifer Tree (Snow)|針葉樹(雪)
Conifer Tree (Snow)|針葉樹(雪)
Boulder A (Snow)|岩A
Dead Beanstalk|枯れた豆の木
Hole (Snow)|穴(雪)
Firewood (Snow)|薪(雪)
Rocks (Snow)|小石(雪)
Fallen Log (Snow)|倒木(雪)
Conifer Tree (Snow)|針葉樹(雪)
Bush (Snow)|植え込み(雪)
Boulder B (Snow)|岩B
Dead Tree|枯れ木
Dead Tree|枯れ木
Mushrooms A|キコA
Mushrooms B|キコB
Palm Tree|ヤシの木
Palm Tree|ヤシの木
Cactus|サボテン
Dead Grass A|枯れ草A
Dead Tree|枯れ木
Dead Tree (Shrub)|枯れ木(低木)
Rafflesia|ラフレシア
Stump (Moss)|切り株(苔)
Palm Tree|ヤシの木
Bush (Flowers)|植え込み(花)
Fern|シダ
Dead Grass B|枯れ草B
Hay|干し草
Hay (Snow)|干し草(雪)
Floral Patch|花畑
Susuki Grass|ススキ
Fallen Leaves|落ち葉
Lotus Pads A|蓮の葉A
Lotus Pads B (Flowers)|蓮の葉B
Lotus Pads C|蓮の葉C

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

@ -0,0 +1,256 @@
Obelisk|オベリスク
Stone Pillar A|石の柱A
Stone Pillar B|石の柱B
Stone Pillar B (Moss)|石の柱B
Stone Pillar B (Snow)|石の柱B
Stone Pillar C|石の柱C
Stone Pillar D|石の柱D
Demon Castle Pillar|魔王城の柱
Obelisk|オベリスク
Stone Pillar A|石の柱A
Stone Pillar B|石の柱B
Stone Pillar B (Moss)|石の柱B
Stone Pillar B (Snow)|石の柱B
Stone Pillar C|石の柱C
Stone Pillar D|石の柱D
Demon Castle Pillar|魔王城の柱
Obelisk|オベリスク
Broken Stone Pillar A|折れた石の柱A
Broken Stone Pillar B|折れた石の柱B
Broken Stone Pillar B (Moss)|折れた石の柱B
Broken Stone Pillar B (Snow)|折れた石の柱B
Broken Stone Pillar C|折れた石の柱C
Broken Stone Pillar D|折れた石の柱D
Broken Demon Castle Pillar|折れた魔王城の柱
Bones A|骸骨A
Bones B|骸骨B
Rubble|瓦礫A
Rubble B (Moss)|瓦礫B
Rubble C (Snow)|瓦礫C
Rubble D|瓦礫D
Rubble E|瓦礫E
Rubble F (Demon Castle)|瓦礫F魔王城
Monument A|石碑A
Monument B|石碑B
Large Monument|大きな石碑
Large Monument|大きな石碑
Large Monument|大きな石碑
Large Monument|大きな石碑
Large Monument|大きな石碑
Large Monument|大きな石碑
Monument A|石碑A
Monument C|石碑C
Large Monument|大きな石碑
Large Monument|大きな石碑
Large Monument|大きな石碑
Large Monument|大きな石碑
Large Monument|大きな石碑
Large Monument|大きな石碑
Monument A (Snow)|石碑A
Monument B (Snow)|石碑B
Large Monument (Snow)|大きな石碑(雪)
Large Monument (Snow)|大きな石碑(雪)
Large Monument (Snow)|大きな石碑(雪)
Large Monument (Snow)|大きな石碑(雪)
Large Monument (Snow)|大きな石碑(雪)
Large Monument (Snow)|大きな石碑(雪)
Monument A (Snow)|石碑A
Monument C (Snow)|石碑C
Large Monument (Snow)|大きな石碑(雪)
Large Monument (Snow)|大きな石碑(雪)
Large Monument (Snow)|大きな石碑(雪)
Large Monument (Snow)|大きな石碑(雪)
Large Monument (Snow)|大きな石碑(雪)
Large Monument (Snow)|大きな石碑(雪)
Statue A|石像A
Statue B|石像B
Angel Statue|天使像
Demon Statue|悪魔像
Dais|台座
Dragon Statue|竜像
Dragon Statue|竜像
God Statue|神像
Statue A|石像A
Statue B|石像B
Angel Statue|天使像
Demon Statue|悪魔像
Broken Dais|壊れた台座
Dragon Statue|竜像
Dragon Statue|竜像
God Statue|神像
Statue A (Snow)|石像A
Statue B (Snow)|石像B
Angel Statue (Snow)|天使像(雪)
Demon Statue (Snow)|悪魔像(雪)
Dais (Snow)|台座(雪)
Dragon Statue (Snow)|竜像(雪)
Dragon Statue (Snow)|竜像(雪)
Ice Statue|氷像
Statue A (Snow)|石像A
Statue B (Snow)|石像B
Angel Statue (Snow)|天使像(雪)
Demon Statue (Snow)|悪魔像(雪)
Broken Dais (Snow)|壊れた台座(雪)
Dragon Statue (Snow)|竜像(雪)
Dragon Statue (Snow)|竜像(雪)
Ice Statue|氷像
Tapestry A|タペストリーA
Tapestry A (Ruins)|タペストリーA廃墟
Tapestry B|タペストリーB
Tapestry B (Ruins)|タペストリーB廃墟
Tapestry C|タペストリーC
Tapestry C (Ruins)|タペストリーC廃墟
Tapestry D|タペストリーD
Tapestry D (Ruins)|タペストリーD廃墟
Tapestry A|タペストリーA
Tapestry A (Ruins)|タペストリーA廃墟
Tapestry B|タペストリーB
Tapestry B (Ruins)|タペストリーB廃墟
Tapestry C|タペストリーC
Tapestry C (Ruins)|タペストリーC廃墟
Tapestry D|タペストリーD
Tapestry D (Ruins)|タペストリーD廃墟
Window A (Demon Castle)|窓A魔王城
Window B (Demon Castle)|窓B魔王城
Window C (Demon Castle)|窓C魔王城
Antenna|アンテナ
Chimney|煙突
Chimney|煙突
Cave Entrance|洞窟入口
Mine Entrance|坑道入口
Window A (Demon Castle)|窓A魔王城
Window B (Demon Castle)|窓B魔王城
Window D (Demon Castle)|窓D魔王城
Antenna|アンテナ
Chimney|煙突
Chimney|煙突
Cave Entrance|洞窟入口
Mine Entrance|坑道入口
Roof A (Green Tile)|屋根A緑瓦
Roof A (Green Tile)|屋根A緑瓦
Roof A (Green Tile)|屋根A緑瓦
Roof A (Green Tile)|屋根A緑瓦
Roof A (Green Tile)|屋根A緑瓦
Roof B (Snow)|屋根B
Roof B (Snow)|屋根B
Roof B (Snow)|屋根B
Roof A (Green Tile)|屋根A緑瓦
Roof A (Green Tile)|屋根A緑瓦
Roof A (Green Tile)|屋根A緑瓦
Roof A (Green Tile)|屋根A緑瓦
Roof A (Green Tile)|屋根A緑瓦
Roof B (Snow)|屋根B
Roof B (Snow)|屋根B
Roof B (Snow)|屋根B
Roof A (Green Tile)|屋根A緑瓦
Roof A (Green Tile)|屋根A緑瓦
Roof A (Green Tile)|屋根A緑瓦
Roof B (Snow)|屋根B
Roof B (Snow)|屋根B
Roof B (Snow)|屋根B
Roof B (Snow)|屋根B
Roof B (Snow)|屋根B
Roof C (Yellow Tile)|屋根C黄瓦
Roof C (Yellow Tile)|屋根C黄瓦
Roof C (Yellow Tile)|屋根C黄瓦
Roof B (Snow)|屋根B
Roof B (Snow)|屋根B
Roof D (Wood)|屋根D木造
Roof D (Wood)|屋根D木造
Roof D (Wood)|屋根D木造
Roof C (Yellow Tile)|屋根C黄瓦
Roof C (Yellow Tile)|屋根C黄瓦
Roof C (Yellow Tile)|屋根C黄瓦
Roof C (Yellow Tile)|屋根C黄瓦
Roof C (Yellow Tile)|屋根C黄瓦
Roof D (Wood)|屋根D木造
Roof D (Wood)|屋根D木造
Roof D (Wood)|屋根D木造
Roof C (Yellow Tile)|屋根C黄瓦
Roof C (Yellow Tile)|屋根C黄瓦
Roof C (Yellow Tile)|屋根C黄瓦
Roof C (Yellow Tile)|屋根C黄瓦
Roof C (Yellow Tile)|屋根C黄瓦
Roof D (Wood)|屋根D木造
Roof D (Wood)|屋根D木造
Roof D (Wood)|屋根D木造
Round Tower A (Castle)|円塔A
Round Tower A (Castle)|円塔A
Round Tower B (Fort)|円塔B
Round Tower B (Fort)|円塔B
Roof Detail A (Green Tile)|屋根飾りA緑瓦
Roof Detail B (Snow)|屋根飾りB
Roof D (Wood)|屋根D木造
Roof D (Wood)|屋根D木造
Round Tower A (Castle)|円塔A
Round Tower A (Castle)|円塔A
Round Tower B (Fort)|円塔B
Round Tower B (Fort)|円塔B
Roof Detail C (Yellow Tile)|屋根飾りC黄瓦
Roof Detail D (Wood)|屋根飾りD木造
Roof D (Wood)|屋根D木造
Roof D (Wood)|屋根D木造
Round Tower A (Castle)|円塔A
Round Tower A (Castle)|円塔A
Round Tower B (Fort)|円塔B
Round Tower B (Fort)|円塔B
Round Tower A (Castle's Spire)|円塔A城の尖塔
Round Tower A (Castle's Spire)|円塔A城の尖塔
Round Tower B (Fort)|円塔B
Round Tower B (Fort)|円塔B
Round Tower A (Castle)|円塔A
Round Tower A (Castle)|円塔A
Round Tower B (Fort)|円塔B
Round Tower B (Fort)|円塔B
Round Tower A (Castle's Spire)|円塔A城の尖塔
Round Tower A (Castle's Spire)|円塔A城の尖塔
Round Tower B (Fort, Snow)|円塔B砦・雪
Round Tower B (Fort, Snow)|円塔B砦・雪
Round Tower A (Castle)|円塔A
Round Tower A (Castle)|円塔A
Round Tower B (Fort)|円塔B
Round Tower B (Fort)|円塔B
Round Tower A (Castle's Spire)|円塔A城の尖塔
Round Tower A (Castle's Spire)|円塔A城の尖塔
Round Tower C (Demon Castle)|円塔C魔王城
Round Tower C (Demon Castle)|円塔C魔王城
Round Tower A (Castle, Snow)|円塔A城・雪
Round Tower A (Castle, Snow)|円塔A城・雪
Round Tower B (Fort, Snow)|円塔B砦・雪
Round Tower B (Fort, Snow)|円塔B砦・雪
Round Tower A (Castle)|円塔A
Round Tower A (Castle)|円塔A
Round Tower C (Demon Castle)|円塔C魔王城
Round Tower C (Demon Castle)|円塔C魔王城
Round Tower A (Castle, Snow)|円塔A城・雪
Round Tower A (Castle, Snow)|円塔A城・雪
Round Tower B (Fort, Snow)|円塔B砦・雪
Round Tower B (Fort, Snow)|円塔B砦・雪
Round Tower A (Castle's Spire, Snow)|円塔A城の尖塔・雪
Round Tower A (Castle's Spire, Snow)|円塔A城の尖塔・雪
Round Tower C (Demon Castle)|円塔C魔王城
Round Tower C (Demon Castle)|円塔C魔王城
Round Tower A (Castle, Snow)|円塔A城・雪
Round Tower A (Castle, Snow)|円塔A城・雪
Round Tower B (Fort, Snow)|円塔B砦・雪
Round Tower B (Fort, Snow)|円塔B砦・雪
Round Tower A (Castle's Spire, Snow)|円塔A城の尖塔・雪
Round Tower A (Castle's Spire, Snow)|円塔A城の尖塔・雪
Round Tower C (Demon Castle)|円塔C魔王城
Round Tower C (Demon Castle)|円塔C魔王城
Round Tower A (Castle, Snow)|円塔A城・雪
Round Tower A (Castle, Snow)|円塔A城・雪
Round Tower B (Fort, Snow)|円塔B砦・雪
Round Tower B (Fort, Snow)|円塔B砦・雪
Round Tower A (Castle's Spire, Snow)|円塔A城の尖塔・雪
Round Tower A (Castle's Spire, Snow)|円塔A城の尖塔・雪
Round Tower C (Demon Castle)|円塔C魔王城
Round Tower C (Demon Castle)|円塔C魔王城
Round Tower A (Castle, Snow)|円塔A城・雪
Round Tower A (Castle, Snow)|円塔A城・雪
Round Tower B (Fort, Snow)|円塔B砦・雪
Round Tower B (Fort, Snow)|円塔B砦・雪
Round Tower A (Castle, Snow)|円塔A城・雪
Round Tower A (Castle, Snow)|円塔A城・雪
Round Tower C (Demon Castle)|円塔C魔王城
Round Tower C (Demon Castle)|円塔C魔王城

View file

@ -0,0 +1,48 @@
Wall A (Concrete)|壁Aコンクリート
Wall B (Concrete)|壁Bコンクリート
Wall C (House)|壁C現代住宅
Wall D (Metal)|壁D金属
Wall E (Metal, Red Rust)|壁E金属・赤錆
Wall F (Metal, Patina)|壁F金属・緑青錆
Wall G (Barracks)|壁Gバラック
Wall H (Chinese)|壁H中華風
Wall A (Concrete)|壁Aコンクリート
Wall B (Concrete)|壁Bコンクリート
Wall C (House)|壁C現代住宅
Wall D (Metal)|壁D金属
Wall E (Metal, Red Rust)|壁E金属・赤錆
Wall F (Tent, Camouflage)|壁Fテント・迷彩
Wall G (Barracks)|壁Gバラック
Wall H (Chinese)|壁H中華風
Wall I (Factory)|壁I工場
Wall J (Factory)|壁J工場
Interior Wall A (Pattern)|内装壁A模様
Interior Wall B (Pattern)|内装壁B模様
Interior Wall C (Pattern)|内装壁C模様
Interior Wall D (Pattern)|内装壁D模様
Interior Wall E (Pattern)|内装壁E模様
Wall K (Brick)|壁Kレンガ)
Wall I (Factory)|壁I工場
Wall J (Factory)|壁J工場
Interior Wall A (Pattern)|内装壁A模様
Interior Wall B (Pattern)|内装壁B模様
Interior Wall C (Pattern)|内装壁C模様
Interior Wall D (Pattern)|内装壁D模様
Interior Wall E (Pattern)|内装壁E模様
Wall K (Brick)|壁Kレンガ)
Wall L (Wood)|壁L木造
Wall M (House)|壁M現代住宅
Wall N (Building)|壁Nビル
Wall O (Other Dimension)|壁O異空間
Wall P (Neon)|壁Pネオン)
Wall Q (Wire Mesh)|壁Q金網
Wall R (Wire Mesh, Red Rust)|壁R金網・赤錆
Wall S (Wire Mesh, Patina)|壁S金網・緑青錆
Wall L (Wood)|壁L木造
Wall M (House)|壁M現代住宅
Wall N (Building)|壁Nビル
Wall O (Other Dimension)|壁O異空間
Wall P (Neon)|壁Pネオン)
Wall Q (Wire Mesh)|壁Q金網
Wall R (Wire Mesh, Red Rust)|壁R金網・赤錆
Wall S (Wire Mesh, Patina)|壁S金網・緑青錆

View file

@ -0,0 +1,256 @@
Transparent|透明
Stairs A (Up)|階段A上り
Stairs B (Up)|階段B上り
Stairs C (Up)|階段C上り
Stairs D (Up)|階段D上り
Wood Ladder|木製はしご
Metal Stairs|金属階段
Crane Rope|クレーンロープ
Hole|穴
Stairs A (Down)|階段A下り
Stairs B (Down)|階段B下り
Stairs C (Down)|階段C下り
Stairs D (Down)|階段D下り
Wood Ladder|木製はしご
Metal Stairs|金属階段
Crane Rope|クレーンロープ
Midsize Window A|中型窓A
Midsize Window B|中型窓B
Large Window A|大型窓A
Midsize Window C|中型窓C
Large Window B|大型窓B
Wood Ladder|木製はしご
Metal Stairs|金属階段
Crane Rope|クレーンロープ
Midsize Window A|中型窓A
Midsize Window B|中型窓B
Large Window A|大型窓A
Midsize Window C|中型窓C
Large Window B|大型窓B
Hole A (Wood Ladder)|穴A木製はしご
Hole B (Metal Stairs)|穴B金属階段
Hole C (Crane Rope)|穴Cクレーンロープ
Asphalt Bridge (V)|アスファルトの橋(縦)
Asphalt Bridge (H)|アスファルトの橋(横)
Stone Bridge (V)|石の橋(縦)
Stone Bridge (H)|石の橋(横)
Metal Bridge A (V)|金属の橋A
Metal Bridge A (H)|金属の橋A
Metal Bridge B (V)|金属の橋B
Metal Bridge B (H)|金属の橋B
Bridge Spar A (Asphalt, Center A)|橋げたAアスファルト・中央A
Bridge Spar A (Asphalt, Left)|橋げたAアスファルト・左
Bridge Spar A (Asphalt, Center B)|橋げたAアスファルト・中央B
Bridge Spar A (Asphalt, Right)|橋げたAアスファルト・右
Bridge Spar B (Metal, Center A)|橋げたB金属・中央A
Bridge Spar B (Metal, Left)|橋げたB金属・左
Bridge Spar B (Metal, Center B)|橋げたB金属・中央B
Bridge Spar B (Metal, Right)|橋げたB金属・右
Metal Fence|金属フェンス
Metal Fence|金属フェンス
Metal Fence|金属フェンス
Warning Plate A|警告プレートA
Connecting Bridge (Metal)|連絡橋(金属)
Connecting Bridge (Metal)|連絡橋(金属)
Connecting Bridge (Metal)|連絡橋(金属)
Connecting Bridge (Metal, Stairs)|連絡橋(金属・階段)
Metal Fence|金属フェンス
Warning Plate B|警告プレートB
Metal Fence|金属フェンス
Warning Plate C|警告プレートC
Connecting Bridge (Metal)|連絡橋(金属)
Connecting Bridge (Metal)|連絡橋(金属)
Connecting Bridge (Metal)|連絡橋(金属)
Connecting Bridge (Metal, Stairs)|連絡橋(金属・階段)
Metal Fence|金属フェンス
Metal Fence|金属フェンス
Metal Fence|金属フェンス
Warning Plate (Biohazard Mark)|警告プレート(バイオハザードマーク)
Connecting Bridge (Metal)|連絡橋(金属)
Connecting Bridge (Metal)|連絡橋(金属)
Connecting Bridge (Metal)|連絡橋(金属)
Podium (H)|教壇机(横)
Pillar A (Asphalt)|柱Aアスファルト
Pillar B (Metal)|柱B金属
Pillar C (Display)|柱Cディスプレイ
Pillar D (Decoration)|柱D装飾
Pillar E (Metal)|柱E金属
Pillar F (Brick)|柱Fレンガ
Large Window C|大型窓C
Podium (H)|教壇机(横)
Pillar A (Asphalt)|柱Aアスファルト
Pillar B (Metal)|柱B金属
Pillar C (Display)|柱Cディスプレイ
Pillar D (Decoration)|柱D装飾
Pillar E (Metal)|柱E金属
Pillar F (Brick)|柱Fレンガ
Large Window C|大型窓C
Podium (V)|教壇机(縦)
Broken Pillar A (Asphalt)|折れた柱Aアスファルト
Broken Pillar B (Metal)|折れた柱B金属
Broken Pillar C (Display)|折れた柱Cディスプレイ
Broken Pillar D (Decoration)|折れた柱D装飾
Broken Pillar E (Metal)|折れた柱E金属
Broken Pillar F (Brick)|折れた柱Fレンガ
Barricade (No Entry)|バリケード(通行禁止)
Podium (V)|教壇机(縦)
Girder A (Asphalt, Left)|梁Aアスファルト・左
Girder A (Asphalt, Center)|梁Aアスファルト・中央
Girder A (Asphalt, Right)|梁Aアスファルト・右
Girder C (Decoration, Left)|梁C装飾・左
Girder C (Decoration, Center)|梁C装飾・中央
Girder C (Decoration, Right)|梁C装飾・右
Bar (No Entry)|バー(通行禁止)
Bar (No Entry)|バー(通行禁止)
Girder B (Metal, Left)|梁B金属・左
Girder B (Metal, Center)|梁B金属・中央
Girder B (Metal, Right)|梁B金属・右
Rubble A (Asphalt)|瓦礫Aアスファルト
Rubble B (Metal)|瓦礫B金属
Fissures A|亀裂A
Fissures B|亀裂B
Fissures C|亀裂C
Jail Bars|鉄格子
Laser Barrier|レーザーバリア
Wheelchair (Left)|車いす(左)
Wheelchair (Right)|車いす(右)
Pipe Frame Bed (Ruins)|パイプベッド(廃墟)
Fissures A|亀裂A
Fissures B|亀裂B
Fissures C|亀裂C
Jail Bars|鉄格子
Laser Barrier|レーザーバリア
Wheelchair (Bottom)|車いす(下)
Wheelchair (Fallen)|車いす(倒れ)
Pipe Frame Bed (Ruins)|パイプベッド(廃墟)
Lab Equipment|実験器具
School Desk (V)|学校机(縦)
School Desk (H)|学校机(横)
TV|テレビ
Computer|PC
Laptop|ートPC
Printer|プリンター
Telephone|電話
Intercom (Hanging)|インターホン(壁掛け)
Tablet Device|タブレット端末
Table Clock|置時計
Gas Stove|ガスコンロ
Kitchen Counter|調理台
Sink|流し
Exhaust Fan|換気扇
Air Conditioner|エアコン
Wastebasket|ゴミ箱
Book Stand|本立て
Document|書類
School Chair (Bottom)|学校イス(下)
School Chair (Top)|学校イス(上)
School Chair (Right)|学校イス(右)
School Chair (Left)|学校イス(左)
Sofa (Right)|ソファ(右)
Sofa (Left)|ソファ(左)
Sofa (Down)|ソファ(下)
Sofa (Up)|ソファ(下)
Office Chair (Bottom)|オフィスチェア(下)
Office Chair (Top)|オフィスチェア(上)
Office Chair (Right)|オフィスチェア(右)
Office Chair (Left)|オフィスチェア(左)
Sofa (Right)|ソファ(右)
Sofa (Left)|ソファ(左)
Sofa (Top)|ソファ(上)
Sofa (Top)|ソファ(上)
Washing Machine|洗濯機
Western Style Toilet|洋式便器
Urinal|男性用便器
Bathroom Sink|洗面台
Bathtub (V)|バスタブ(縦)
Bathtub (H)|バスタブ(横)
Bathtub (H)|バスタブ(横)
Glass Table (V)|ガラステーブル(縦)
Washing Machine|洗濯機
Western Style Toilet|洋式便器
Urinal|男性用便器
Wash Basin|洗面台
Bathtub (V)|バスタブ(縦)
Glass Table (H)|ガラステーブル(横)
Glass Table (H)|ガラステーブル(横)
Glass Table (V)|ガラステーブル(縦)
Refrigerator|冷蔵庫
Bookshelf A|本棚A
Chest of Drawers A|タンスA
Miscellaneous Item Shelf|雑貨棚
Locker A|ロッカーA
Document Shelf|資料棚
Medicine Shelf|薬品棚
Locker B (School)|ロッカーB学校
Refrigerator|冷蔵庫
Bookshelf A|本棚A
Chest of Drawers A|タンスA
Miscellaneous Item Shelf|雑貨棚
Locker A|ロッカーA
Document Shelf|資料棚
Medicine Shelf|薬品棚
Locker B (School)|ロッカーB学校
Display Shelf A|商品陳列棚A
Display Shelf B|商品陳列棚B
Convenience Store Shelf A|コンビニ棚A
Convenience Store Shelf B|コンビニ棚B
Document Shelf (Ruins)|資料棚(廃墟)
Chest of Drawers B (Decoration)|タンスB装飾
Shelf A (Decoration)|棚A装飾
Bookshelf B (Decoration)|本棚B装飾
Display Shelf A|商品陳列棚A
Display Shelf B|商品陳列棚B
Convenience Store Shelf A|コンビニ棚A
Convenience Store Shelf B|コンビニ棚B
Document Shelf (Ruins)|資料棚(廃墟)
Chest of Drawers B (Decoration)|タンスB装飾
Shelf A (Decoration)|棚A装飾
Bookshelf B (Decoration)|本棚B装飾
Stacked Crates|積まれた木箱
Shipping Container|コンテナ
Stacked Cardboard Boxes|積まれたダンボール
Vending Machine|自動販売機
ATM|ATM
Steel Shelf|鉄骨棚
Operating Table|手術台
Hospital Bed|病院ベッド
Stacked Crates|積まれた木箱
Shipping Container|コンテナ
Stacked Cardboard Boxes|積まれたダンボール
Vending Machine|自動販売機
ATM|ATM
Steel Shelf|鉄骨棚
Operating Table|手術台
Hospital Bed|病院ベッド
Bed|ベッド
Mattress|敷布団
Large Bed|ダブルベッド
Large Bed|ダブルベッド
Pipe Frame Bed|パイプベッド
Slot Machine|スロット
Poker Table|ポーカー台
Poker Table|ポーカー台
Bed|ベッド
Mattress|敷布団
Large Bed|ダブルベッド
Large Bed|ダブルベッド
Pipe Frame Bed|パイプベッド
Slot Machine|スロット
Poker Table|ポーカー台
Poker Table|ポーカー台
Chest A (Wood)|チェストA木製
Chest B (Metal)|チェストB金属
Chest C (Decoration)|チェストC装飾
Large Desk A|大きいデスクA
Large Desk A|大きいデスクA
Roulette Table|ルーレット台
Roulette Table|ルーレット台
Roulette Table|ルーレット台
Side Desk A (Wood)|サイドデスクA木製
Side Desk B (Metal)|サイドデスクB金属
Desk|デスク
Large Desk B|大きいデスクB
Large Desk B|大きいデスクB
Roulette Table|ルーレット台
Roulette Table|ルーレット台
Roulette Table|ルーレット台

View file

@ -0,0 +1,256 @@
Black Board|黒板
Black Board|黒板
Black Board|黒板
White Board|ホワイトボード
White Board|ホワイトボード
White Board|ホワイトボード
Partition A|衝立A
Partition B|衝立B
Black Board|黒板
Black Board|黒板
Black Board|黒板
White Board|ホワイトボード
White Board|ホワイトボード
White Board|ホワイトボード
Partition A|衝立A
Partition B|衝立B
Stool|腰掛けイス
Skeleton Model|骨格模型
Biological Specimen|生物標本
Potted Plant|植木鉢
Armchair|肘掛け椅子
Insect Specimen|昆虫標本
Restroom Mark (Men)|トイレマーク(男性)
Restroom Mark (Women)|トイレマーク(女性)
Wall Speaker|壁掛けスピーカー
Skeleton Model |骨格模型
Biological Specimen|生物標本
Fire Extinguisher|消火器
Armchair|肘掛け椅子
Room Plate|室名札
EXIT Sign|EXIT
Vent|通気口
Painting A|絵画A
Painting B|絵画B
Vision Test Chart|視力検査表
Plaster Bust|石膏胸像
Calendar|カレンダー
Plant A|植物A
Plant B|植物B
Plant C|植物C
Painting C|絵画C
Painting D|絵画D
Anatomical Chart|人体図
Canvas|キャンバス
Bulletin Board|掲示板
Plant A|植物A
Plant B|植物B
Plant C|植物C
Plumbing|配管
Plumbing|配管
Valve|バルブ
Machine A|機械A
Machine B|機械B
Machine C|機械C
Air Vent A|通風口A
Air Vent B|通風口B
Plumbing|配管
Plumbing|配管
Plumbing|配管
Neon Tube|ネオン管
Neon Tube|ネオン管
Neon Tube|ネオン管
Fan|ファン
Fluorescent Light|蛍光灯
Plumbing|配管
Plumbing|配管
Plumbing|配管
Neon Tube|ネオン管
Neon Tube|ネオン管
Neon Tube|ネオン管
Outdoor Air Intake Unit|室外機
Shutter|シャッター
Plumbing|配管
Plumbing|配管
Plumbing|配管
Control Panel A|操作パネルA
Control Panel B|操作パネルB
Control Panel C|操作パネルC
Pipe (H)|パイプ(横)
Pipe (V)|パイプ(縦)
Line A|ラインA
Line B|ラインB
Road Closed|通行止め
Waste|廃棄物
Scrap Metal|スクラップ
Mysterious Liquid|謎の液体
Scattered Papers|散らばった紙
Pipe (V)|パイプ(縦)
Belt Conveyor (V)|ベルトコンベアー(縦)
Belt Conveyor (H)|ベルトコンベアー(横)
Belt Conveyor (H)|ベルトコンベアー(横)
Belt Conveyor (H)|ベルトコンベアー(横)
Duct|ダクト
Mechanical Device|機械装置
Pile of Rubble|瓦礫の山
Pile of Rubble|瓦礫の山
Belt Conveyor (V)|ベルトコンベアー(縦)
Robot Arm|ロボットアーム
Server Machine|サーバマシン
Meters|計器類
Duct|ダクト
Mechanical Device|機械装置
Pile of Rubble|瓦礫の山
Pile of Rubble|瓦礫の山
Belt Conveyor (V)|ベルトコンベアー(縦)
Robot Arm|ロボットアーム
Server Machine|サーバマシン
Meters|計器類
Duct|ダクト
Drain|排水口
Graffiti|落書き
Graffiti|落書き
Monitor A|モニターA
Monitor B|モニターB
Large Monitor|大型モニター
Large Monitor|大型モニター
IV Stand|点滴スタンド
ECG Monitor|心電図モニタ
Sewing Mannequin|トルソー
Rubble|瓦礫
Operation Board A|操作盤A
Operation Board B|操作盤B
Operation Board C|操作盤C
Operation Board D|操作盤D
IV Stand|点滴スタンド
ECG Monitor|心電図モニタ
Sewing Mannequin|トルソー
Broken Machine|壊れた機械
Stairs|階段
Stairs|階段
Stairs|階段
Cage|檻
Cage|檻
Handrail|欄干
Handrail|欄干
Handrail|欄干
Stairs|階段
Stairs|階段
Stairs|階段
Curtains A|カーテンA
Curtains B|カーテンB
Curtains C|カーテンC
Curtains D|カーテンD
Handrail|欄干
Stairs|階段
Stairs|階段
Stairs|階段
Curtains A|カーテンA
Curtains B|カーテンB
Curtains C|カーテンC
Curtains D|カーテンD
Emergency Alarm|非常ベル
Spider Web|蜘蛛の巣
Mirror|鏡
Vase|花瓶
Piano|ピアノ
Piano|ピアノ
Piano|ピアノ
Stained Glass|ステンドグラス
Decorative Pillar|装飾柱
Dripping|液垂れ
Mirror|鏡
Lamp|電気スタンド
Piano|ピアノ
Piano|ピアノ
Piano|ピアノ
Stained Glass|ステンドグラス
Decorative Pillar|装飾柱
Picture Frame|写真立て
Side Table|サイドテーブル
Altar|祭壇
Fireplace|暖炉
Fireplace|暖炉
Fireplace|暖炉
Stuffed Doll A|ぬいぐるみA
Decorative Pillar|装飾柱
Book A|本A
Book B|本B
Glass Pieces|ガラス片
Fireplace|暖炉
Fireplace|暖炉
Fireplace|暖炉
Doll|人形
Stuffed Doll B|ぬいぐるみB
Beer Mug|ビールジョッキ
Wine & Glass|ワインとグラス
Noodle Dish|麺料理
Bread|パン
Banister A (V)|手すりA
Banister A (V)|手すりA
Banister B (V)|手すりB
Banister B (V)|手すりB
Meat Dish|肉料理
Roast Chicken|ローストチキン
Cake|ケーキ
Fruit Bowl|果物盛り合わせ
Banister A (V)|手すりA
Banister A (V)|手すりA
Banister B (V)|手すりB
Banister B (V)|手すりB
Plate A|皿A
Teapot & Cup|ティーポットとカップ
Ration|レーション
Plate B|皿B
Banister A (V)|手すりA
Banister A (V)|手すりA
Banister B (V)|手すりB
Banister B (V)|手すりB
Demon Statue|悪魔像
Goddess Statue|女神像
Soldier Statue|兵士像
Wall Clock|柱時計
Banister A (H)|手すりA
Banister A (H)|手すりA
Banister A (H)|手すりA
Banister A (H)|手すりA
Demon Statue|悪魔像
Goddess Statue|女神像
Soldier Statue|兵士像
Wall Clock|柱時計
Banister B (H)|手すりB
Banister B (H)|手すりB
Banister B (H)|手すりB
Banister B (H)|手すりB
Monument A|モニュメントA
Monument B|モニュメントB
Huge Stele|巨大な石版
Huge Stele|巨大な石版
Huge Stele|巨大な石版
Huge Display|巨大ディスプレイ
Huge Display|巨大ディスプレイ
Huge Display|巨大ディスプレイ
Monument A|モニュメントA
Monument B|モニュメントB
Huge Stele|巨大な石版
Huge Stele|巨大な石版
Huge Stele|巨大な石版
Huge Display|巨大ディスプレイ
Huge Display|巨大ディスプレイ
Huge Display|巨大ディスプレイ
Monument C|モニュメントC
Monument D|モニュメントD
Sphere Machinery|球体機械
Sphere Machinery|球体機械
Sphere Machinery|球体機械
Large Machine|大型機械
Large Machine|大型機械
Large Machine|大型機械
Monument C|モニュメントC
Control Panel|コントロールパネル
Sphere Machinery|球体機械
Sphere Machinery|球体機械
Sphere Machinery|球体機械
Large Machine|大型機械
Large Machine|大型機械
Large Machine|大型機械

View file

@ -0,0 +1,32 @@
Roof A (Brick)|屋根Aレンガ
Roof B (Factory)|屋根B工場
Roof C (Metal, Red Rust)|屋根C金属・赤錆
Roof D (Barracks)|屋根Dバラック
Roof E (Barracks)|屋根Eバラック
Roof F (Barracks)|屋根Fバラック
Roor G (Ivy)|屋根Gツタ
Roof H (House)|屋根H現代住宅
Outer Wall A (Stone)|外壁A
Outer Wall B (Factory)|外壁B工場
Outer Wall C (Metal, Red Rust)|外壁C金属・赤錆
Outer Wall D (Barracks)|外壁Dバラック
Outer Wall E (Barracks)|外壁Eバラック
Outer Wall F (Factory)|外壁F工場
Outer Wall G (Ivy)|外壁Gツタ
Outer Wall H (House)|外壁H現代住宅
Roof I (Barracks)|屋根Iバラック
Roof J (Brick)|屋根Jレンガ
Roof K (Metal, Patina)|屋根K金属・緑青錆
Roof L (Chinese)|屋根L中華風
Roof M (Blue Sheet)|屋根Mブルーシート
Roof N (Wood)|屋根N木造
Roof O (Brick)|屋根Oレンガ
Roof P (Wood)|屋根P木造
Outer Wall I (Tile)|外壁Iタイル
Outer Wall J (Brick)|外壁Jレンガ
Outer Wall K (Mortar)|外壁Kモルタル
Outer Wall L (Chinese)|外壁L中華風
Outer Wall M (Blue Sheet)|外壁Mブルーシート
Outer Wall N (Wood)|外壁N木造
Outer Wall O (Brick)|外壁Oレンガ
Outer Wall P (Wood)|外壁P木造

View file

@ -0,0 +1,48 @@
Wall A (Concrete)|壁Aコンクリート
Wall B (Concrete, Dirty)|壁Bコンクリート・汚れ
Wall C (Block)|壁Cブロック
Wall D (Apartment)|壁Dマンション
Wall E (Apartment)|壁Eマンション
Wall F (Metal)|壁F金属
Wall G (Metal, Red Rust)|壁G金属・赤錆
Wall H (Metal, Patina)|壁H金属・緑青錆
Wall A (Concrete)|壁Aコンクリート
Wall B (Concrete, Dirty)|壁Bコンクリート・汚れ
Wall C (Block)|壁Cブロック
Wall D (Apartment)|壁Dマンション
Wall E (Apartment)|壁Eマンション
Wall F (Metal)|壁F金属
Wall G (Metal, Red Rust)|壁G金属・赤錆
Wall H (Metal, Patina)|壁H金属・緑青錆
Wall I (Barracks)|壁Iバラック
Wall J (Barracks)|壁Jバラック
Wall K (Factory)|壁K工場
Cliff A (Demonic Ground)|崖A魔界の地面)
Wall L (Factory)|壁L工場
Wall M (Factory)|壁M工場
Wall N (Building)|壁Nビル
Wall O (Brick)|壁Oレンガ)
Wall I (Barracks)|壁Iバラック
Wall J (Barracks)|壁Jバラック
Wall K (Factory)|壁K工場
Cliff A (Demonic Ground)|崖A魔界の地面)
Wall L (Factory)|壁L工場
Wall M (Factory)|壁M工場
Wall N (Building)|壁Nビル
Wall O (Brick)|壁Oレンガ)
Wall P (Chinese)|壁P中華風
Wall Q (Wire Mesh)|壁Q金網
Wall R (Wire Mesh, Red Rust)|壁R金網・赤錆
Wall S (Wire Mesh, Patina)|壁S金網・緑青錆
Wall T (Wood)|壁T木造
Wall U (Wood, Dirty)|壁U木造・汚れ
Wall V (Building)|壁Vビル
Wall W (Building)|壁Wビル
Wall P (Chinese)|壁P中華風
Wall Q (Wire Mesh)|壁Q金網
Wall R (Wire Mesh, Red Rust)|壁R金網・赤錆
Wall S (Wire Mesh, Patina)|壁S金網・緑青錆
Wall T (Wood)|壁T木造
Wall U (Wood, Dirty)|壁U木造・汚れ
Wall V (Building)|壁Vビル
Wall W (Building)|壁Wビル

View file

@ -0,0 +1,128 @@
Darkness|暗闇
Grid floor|格子床
Metal Bridge (V, Left)|金属橋(縦・左)
Metal Bridge (V, Center)|金属橋(縦・中央)
Metal Bridge (V, Right)|金属橋(縦・右)
Asphalt Bridge (H, Top)|アスファルト橋(横・上)
Metal Bridge (H, Center)|金属橋(横・中央)
Metal Bridge (H, Top)|金属橋(横・上)
Transparent|透明
Grid floor|格子床
Asphalt Bridge (V, Left)|アスファルト橋(縦・左)
Asphalt Bridge (V, Center)|アスファルト橋(縦・中央)
Asphalt Bridge (V, Right)|アスファルト橋(縦・右)
Asphalt Bridge (H, Bottom)|アスファルト橋(横・下)
Asphalt Bridge (H, Center)|アスファルト橋(横・中央)
Metal Bridge (H, Bottom)|金属橋(横・下)
Waste Land|荒地
Metal Floor A (Factory)|金属床A工場
Concrete Floor|コンクリート床
Concrete Floor (Ruins)|コンクリート床(廃墟)
Hole|穴
Grid floor (Ruins)|格子床(廃墟)
Asphalt Floor (Ruins)|アスファルト床(廃墟)
Metal Floor A (Factory, Ruins)|金属床A工場・廃墟
Waste Land|荒地
Metal Floor A (Factory)|金属床A工場
Concrete Floor|コンクリート床
Mecha Floor|機械床
Stairs A (Asphalt, Left)|階段Aアスファルト・左
Stairs A (Asphalt, Center)|階段Aアスファルト・中央
Stairs A (Asphalt, Right)|階段Aアスファルト・右
Stairs A (Asphalt)|階段Aアスファルト
Dirty Floor|汚れた床
Dirty Floor (Ruins)|汚れた床(廃墟)
Mecha Floor (Ruins) A|機械床廃墟A
Mecha Floor (Ruins) B|機械床廃墟B
Asphalt Floor (Dirty)|アスファルト床(汚れ)
Asphalt Floor (Dirty, Ruins)|アスファルト床(汚れ・廃墟)
Wood Floor A|木の床A
Wood Floor A (Ruins)|木の床A廃墟
Bumpy Tile A|点字ブロックA
Bumpy Tile B|点字ブロックB
Bumpy Tile C|点字ブロックC
Bumpy Tile C (Ruins)|点字ブロックC廃墟
Stairs B (Metal, Left)|階段B金属・左
Stairs B (Metal, Center)|階段B金属・中央
Stairs B (Metal, Right)|階段B金属・右
Stairs B (Metal)|階段B金属
Interior Floor A (Green Resin)|内装床A緑樹脂
Interior Floor B (Tile)|内装床Bタイル
Interior Floor B (Tile, Ruins)|内装床Bタイル・廃墟
Interior Floor C (Decoration)|内装床C装飾
Interior Floor D (Decoration)|内装床D装飾
Interior Floor E (Decoration)|内装床E装飾
Wood Floor B|木の床B
Wood Floor B (Ruins)|木の床B廃墟
Stairs C (Meadow, Left)|階段C草地・左
Stairs C (Meadow, Center)|階段C草地・中央
Stairs C (Meadow, Right)|階段C草地・右
Stairs C (Meadow)|階段C草地
Stairs D (Wood, Left)|階段D木製・左
Stairs D (Wood, Center)|階段D木製・中央
Stairs D (Wood, Right)|階段D木製・右
Stairs D (Wood)|階段D木製
Cobblestones A|石畳A
Cobblestones B|石畳B
Cobblestones C|石畳C
Cobblestones D|石畳D
Metal Floor B|金属床B
Metal Floor B (Rust, Ruins)|金属床Bサビ・廃墟
Metal Floor C|金属床C
Metal Floor C (Rust, Ruins)|金属床Cサビ・廃墟
Stairs E (Carpet, Left)|階段Eじゅうたん・左
Stairs E (Carpet, Center)|階段Eじゅうたん・中央
Stairs E (Carpet, Right)|階段Eじゅうたん・右
Stairs E (Carpet)|階段Eじゅうたん
Stairs F (Desert, Left)|階段F砂地・左
Stairs F (Desert, Center)|階段F砂地・中央
Stairs F (Desert, Right)|階段F砂地・右
Stairs F (Desert)|階段F砂地
Mark Floor A|マーク床A
Mark Floor B|マーク床B
Mark Floor C|マーク床C
Mark Floor D|マーク床D
Mark Floor E|マーク床E
Mark Floor E (Ruins)|マーク床E廃墟
Mark Floor F (Off)|マーク床F
Mark Floor F|マーク床F
Neon Floor|ネオン床
Interior Floor F (Tile Carpet)|内装床Fタイルカーペット
Interior Floor F (Tile Carpet, Ruins)|内装床Fタイルカーペット・廃墟
Ledge (Demonic Ground)|段差(魔界の地面)
Ledge (Demonic Ground)|段差(魔界の地面)
Ledge (Demonic Ground)|段差(魔界の地面)
Ledge (Demonic Ground)|段差(魔界の地面)
Ledge (Demonic Ground)|段差(魔界の地面)
Marble Floor|大理石床
Interior Floor G (Linoleum)|内装床Gリウム
Interior Floor G (Linoleum, Ruins)|内装床Gリウム・廃墟
Ledge (Demonic Ground)|段差(魔界の地面)
Ledge (Demonic Ground)|段差(魔界の地面)
Ledge (Demonic Ground)|段差(魔界の地面)
Ledge (Demonic Ground)|段差(魔界の地面)
Ledge (Demonic Ground)|段差(魔界の地面)
Stairs G (Tile Carpet, Left)|階段Gタイルカーペット・左
Stairs G (Tile Carpet, Center)|階段Gタイルカーペット・中央
Stairs G (Tile Carpet, Right)|階段Gタイルカーペット・右
Stairs G (Tile Carpet)|階段Gタイルカーペット
Cobblestones E|石畳E
Ledge (Demonic Ground)|段差(魔界の地面)
Ledge (Demonic Ground)|段差(魔界の地面)
Ledge (Demonic Ground)|段差(魔界の地面)
Stairs H (Linoleum, Left)|階段Hリウム・左
Stairs H (Linoleum, Center)|階段Hリウム・中央
Stairs H (Linoleum, Right)|階段Hリウム・右
Stairs H (Linoleum)|階段Hリウム
Cobblestones F|石畳F
Cliff (Demonic Ground)|崖(魔界の地面)
Cliff (Demonic Ground)|崖(魔界の地面)
Cliff (Demonic Ground)|崖(魔界の地面)
Marble Floor (Ruins)|大理石床(廃墟)
Wood Floor C|木の床C
Wood Floor C (Ruins)|木の床C廃墟
Metal Floor D (Machine)|金属床D機械
Metal Floor D (Machine, Ruins)|金属床D機械・廃墟
Cliff (Demonic Ground)|崖(魔界の地面)
Cliff (Demonic Ground)|崖(魔界の地面)
Cliff (Demonic Ground)|崖(魔界の地面)

View file

@ -0,0 +1,256 @@
Transparent|透明
Neon Shop Sign (Weapon)|ネオン看板(武器屋)
Neon Shop Sign (Armor)|ネオン看板(防具屋)
Neon Shop Sign (Item)|ネオン看板(アイテム屋)
Neon Shop Sign (Pharmacy)|ネオン看板(薬屋)
Neon Shop Sign (Cafe)|ネオン看板(酒場)
Neon Shop Sign (Inn)|ネオン看板(宿屋)
Neon Shop Sign (Market)|ネオン看板(マーケット)
Metal Shop Sign (Weapon)|金属看板(武器屋)
Metal Shop Sign (Armor)|金属看板(防具屋)
Metal Shop Sign (Item)|金属看板(アイテム屋)
Metal Shop Sign (Pharmacy)|金属看板(薬屋)
Metal Shop Sign (Cafe)|金属看板(酒場)
Metal Shop Sign (Inn)|金属看板(宿屋)
Metal Shop Sign (Firearm)|金属看板(銃器屋)
Metal Shop Sign (Blank)|金属看板(無地)
Asphalt Bridge (V)|アスファルトの橋(縦)
Asphalt Bridge (H)|アスファルトの橋(横)
Stone Bridge (V)|石の橋(縦)
Stone Bridge (H)|石の橋(横)
Metal Bridge A (V)|金属の橋A
Metal Bridge A (H)|金属の橋A
Metal Bridge B (V)|金属の橋B
Metal Bridge B (H)|金属の橋B
Bridge Spar A (Asphalt, Center A)|橋げたAアスファルト・中央A
Bridge Spar A (Asphalt, Left)|橋げたAアスファルト・左
Bridge Spar A (Asphalt, Center B)|橋げたAアスファルト・中央B
Bridge Spar A (Asphalt, Right)|橋げたAアスファルト・右
Bridge Spar B (Metal, Center A)|橋げたB金属・中央A
Bridge Spar B (Metal, Left)|橋げたB金属・左
Bridge Spar B (Metal, Center B)|橋げたB金属・中央B
Bridge Spar B (Metal, Right)|橋げたB金属・右
White Line|白線
White Line|白線
White Line|白線
White Line|白線
White Line|白線
Red & Black Line|赤黒線
Red & Black Line|赤黒線
Red & Black Line|赤黒線
White Line|白線
Traffic Lights (Car)|信号機(車)
Traffic Lights (Pedestrian)|信号機(歩行者)
Entrance A|入口A
White Line (Crosswalk)|白線(横断歩道)
Red & Black Line|赤黒線
Traffic Cone|通行止めコーン
Red & Black Line|赤黒線
White Line|白線
Traffic Lights (Car)|信号機(車)
Traffic Lights (Pedestrian)|信号機(歩行者)
Entrance B|入口B
White Line|白線
Red & Black Line|赤黒線
Red & Black Line|赤黒線
Red & Black Line|赤黒線
Window A|窓A
Window B|窓B
Window C|窓C
Window D|窓D
Window E|窓E
Window F|窓F
Window G|窓G
Window H|窓H
Midsize Window A|中型窓A
Midsize Window B|中型窓B
Midsize Window C|中型窓C
Midsize Window D|中型窓D
Midsize Window E|中型窓E
Midsize Window F|中型窓F
Midsize Window G|中型窓G
Midsize Window H|中型窓H
Midsize Window A|中型窓A
Midsize Window B|中型窓B
Midsize Window C|中型窓C
Midsize Window D|中型窓D
Midsize Window E|中型窓E
Midsize Window F|中型窓F
Midsize Window G|中型窓G
Midsize Window H|中型窓H
Neon Shop Sign (V)|ネオン看板(縦)
Neon Shop Sign (V)|ネオン看板(縦)
Neon Shop Sign (V)|ネオン看板(縦)
Neon Shop Sign (H)|ネオン看板(横)
Neon Shop Sign (H)|ネオン看板(横)
Street Light A|街灯A
Street Light B|街灯B
Stained Glass Window|ステンドグラス
Neon Shop Sign (V)|ネオン看板(縦)
Neon Shop Sign (V)|ネオン看板(縦)
Neon Shop Sign (V)|ネオン看板(縦)
Neon Shop Sign (H)|ネオン看板(横)
Neon Shop Sign (H)|ネオン看板(横)
Street Light A|街灯A
Street Light B|街灯B
Stained Glass Window|ステンドグラス
Neon Shop Sign (V)|ネオン看板(縦)
Neon Shop Sign (V)|ネオン看板(縦)
Neon Shop Sign (V)|ネオン看板(縦)
Neon Shop Sign (H)|ネオン看板(横)
Neon Shop Sign (H)|ネオン看板(横)
Stacked Crates|積まれた木箱
Shipping Container|コンテナ
Stacked Cardboard|積まれたダンボール
Chimney A|煙突A
Chimney B|煙突B
Chimney C|煙突C
Exhaust Port Wall|壁面用排気口
Roof Window|屋根用出窓
Stacked Crates|積まれた木箱
Shipping Container|コンテナ
Stacked Cardboard|積まれたダンボール
Wall Poster|張り紙
Signboard A|看板A
Signboard B|看板B
Digital Signage A|電子看板A
Digital Signage C|電子看板C
Neon Shop Sign (CASINO)|ネオン看板(カジノ)
Neon Shop Sign (CASINO)|ネオン看板(カジノ)
Small Crane|小型クレーン
Poster|ポスター
Signboard C|看板C
Digital Signage B|電子看板B
Digital Signage B|電子看板B
Digital Signage C|電子看板C
Iron Materials|鉄資材
Helmet|ヘルメット
Small Crane|小型クレーン
Crate|木箱
Shipping Container|コンテナ
Cardboard Box|ダンボール
Barrel|樽
Oil Drum|ドラム缶
Garbage Can|ゴミ箱
Sorted Waste Bins|分別ゴミ箱
Sorted Waste Bins|分別ゴミ箱
Plant A|植物A
Plant B|植物B
Plant C|植物C
Vending Machine|自動販売機
ATM|ATM
Tree|木
Roadside Tree|街路樹
Utility Pole|電柱
Plant A|植物A
Plant B|植物B
Plant C|植物C
Vending Machine|自動販売機
ATM|ATM
Tree|木
Avenue Tree|街路樹
Utility Pole|電柱
Public Phone|公衆電話
Machine Device|機械端末
Planter (Plant)|プランター(植物)
Planter (Potted Plant)|プランター(盆栽)
Potted Plant|植木鉢
Tree (Loop)|木(ループ)
Tombstone (Cross)|墓石(十字架)
Tombstone (Plaque)|墓石(プレート)
Neon Tube|ネオン管
Neon Tube|ネオン管
Machine A|機械A
Machine B|機械B
Machine C|機械C
Barricade (No Entry)|バリケード(通行禁止)
Bar (No Entry)|バー(通行禁止)
Bar (No Entry)|バー(通行禁止)
Neon Tube|ネオン管
Neon Tube|ネオン管
Outdoor Air Intake Unit|室外機
Waste|廃棄物
Scrap Metal|スクラップ
Fissures A|亀裂A
Fissures B|亀裂B
Fissures C|亀裂C
Neon Tube|ネオン管
Neon Tube|ネオン管
Air Vent A|通風口A
Air Vent B|通風口B
Shutter|シャッター
Fissures A|亀裂A
Fissures B|亀裂B
Fissures C|亀裂C
Drain|排水口
Guardrail|ガードレール
Timetable|時刻表
Piled Up Tires|積まれたタイヤ
Small Fuel Tank|小型燃料タンク
Car (Red)|車(赤)
Car (Red)|車(赤)
Manhole|マンホール
Bus|バス
Bus|バス
Truck|トラック
Truck|トラック
Wrecked Car|壊れた車
Car (Black)|車(黒)
Car (Black)|車(黒)
Vent|通気口
Bus|バス
Bus|バス
Truck|トラック
Truck|トラック
Wrecked Car|壊れた車
Car (Blue)|車(青)
Car (Blue)|車(青)
Oil Drum (Leak)|ドラム缶(液漏れ)
Food Stalls|露店(食べ物)
Food Stalls|露店(食べ物)
Food Stalls|露店(食べ物)
Stall Goods A|露店商品A
Stairs A (Up)|階段A上り
Stairs B (Up)|階段B上り
Stairs C (Down)|階段C下り
Stairs D (Down)|階段D下り
Food Stalls|露店(食べ物)
Food Stalls|露店(食べ物)
Food Stalls|露店(食べ物)
Stall Goods B|露店商品B
Stairs C (Up)|階段C上り
Stairs D (Up)|階段D上り
Stairs A (Down)|階段A下り
Stairs B (Down)|階段B下り
Food Stalls|露店(食べ物)
Food Stalls|露店(食べ物)
Food Stalls|露店(食べ物)
Stall Goods C|露店商品C
Metal Ladder|鉄ばしご
Metal Stairs|金属階段
Rope|ロープ
Net|ネット
Junk Stalls|露店(ジャンク)
Junk Stalls|露店(ジャンク)
Junk Stalls|露店(ジャンク)
Stall Goods D|露店商品D
Metal Ladder|鉄ばしご
Metal Stairs|金属階段
Rope|ロープ
Net|ネット
Junk Stalls|露店(ジャンク)
Junk Stalls|露店(ジャンク)
Junk Stalls|露店(ジャンク)
Stall Goods E|露店商品E
Metal Ladder|鉄ばしご
Metal Stairs|金属階段
Rope|ロープ
Net|ネット
Junk Stalls|露店(ジャンク)
Junk Stalls|露店(ジャンク)
Junk Stalls|露店(ジャンク)
Stall Goods F|露店商品F
Hole A (Metal Ladder)|穴A鉄ばしご
Hole B (Metal Stairs)|穴B金属階段
Hole C (Rope)|穴Cロープ
Hole|穴

View file

@ -0,0 +1,256 @@
Fountain A|噴水A
Fountain A|噴水A
Fountain B|噴水B
Fountain B|噴水B
Slide|滑り台
Slide|滑り台
Exercise Bar|鉄棒
Drinking Fountain|水飲み場
Fountain A|噴水A
Fountain A|噴水A
Fountain B|噴水B
Fountain B|噴水B
Slide|滑り台
Slide|滑り台
Water Well Pump|ポンプ井戸
Garbage Dumpster|ごみ収集箱
Fountain C|噴水C
Fountain C|噴水C
Fountain C|噴水C
Bench A|ベンチA
Bench A|ベンチA
Swing|ブランコ
Shop Canopy|店用天蓋
Barbed Wire|有刺鉄線
Fountain C|噴水C
Fountain C|噴水C
Fountain C|噴水C
Bench B|ベンチB
Bench B|ベンチB
Swing|ブランコ
Shop Canopy|店用天蓋
Barbed Wire|有刺鉄線
Grass A|草A
Grass B|草B
Hole|穴
Small Stones|小石
Flower Bed|花壇
Flower Bed|花壇
Flower Bed|花壇
Barbed Wire|有刺鉄線
Flower|花
Cage|檻
Cage|檻
Graffiti|落書き
Graffiti|落書き
Barbed Wire|有刺鉄線
Barbed Wire|有刺鉄線
Barbed Wire|有刺鉄線
Demon Statue|悪魔像
Goddess Statue|女神像
Metal Fence|金属フェンス
Metal Fence|金属フェンス
Metal Fence|金属フェンス
Gutter|側溝
Gutter|側溝
Gutter|側溝
Demon Statue|悪魔像
Goddess Statue|女神像
Metal Fence|金属フェンス
Warning Plate|警告プレート
Metal Fence|金属フェンス
Gutter|側溝
Postal Box|ポスト
Gutter|側溝
Soldier Statue|兵士像
Warning Plate (Biohazard Mark)|警告プレート(バイオハザードマーク)
Metal Fence|金属フェンス
Metal Fence|金属フェンス
Metal Fence|金属フェンス
Gutter|側溝
Gutter|側溝
Gutter|側溝
Soldier Statue|兵士像
Pillar A (Asphalt)|柱Aアスファルト
Pillar B (Metal)|柱B金属
Pillar C (Machine)|柱C機械
Pillar D (Decoration)|柱D装飾
Pillar E (Metal)|柱E金属
Pillar F (Brick)|柱Fレンガ
Food Waste|生ゴミ
Warning Plate|警告プレート
Pillar A (Asphalt)|柱Aアスファルト
Pillar B (Metal)|柱B金属
Pillar C (Machine)|柱C機械
Pillar D (Decoration)|柱D装飾
Pillar E (Metal)|柱E金属
Pillar F (Brick)|柱Fレンガ
Mysterious Liquid|謎の液体
Warning Plate|警告プレート
Broken Pillar A (Asphalt)|折れた柱Aアスファルト
Broken Pillar B (Metal)|折れた柱B金属
Broken Pillar C (Machine)|折れた柱C機械
Broken Pillar D (Decoration)|折れた柱D装飾
Broken Pillar E (Metal)|折れた柱E金属
Broken Pillar F (Brick)|折れた柱Fレンガ
Fire Hydrant|消火栓
Monument A|モニュメントA
Monument B|モニュメントB
Huge Stele|巨大な石版
Huge Stele|巨大な石版
Huge Stele|巨大な石版
Huge Iron Monument|巨大プレート
Huge Iron Monument|巨大プレート
Huge Iron Monument|巨大プレート
Monument A|モニュメントA
Monument B|モニュメントB
Huge Stele|巨大な石版
Huge Stele|巨大な石版
Huge Stele|巨大な石版
Huge Iron Monument|巨大プレート
Huge Iron Monument|巨大プレート
Huge Iron Monument|巨大プレート
Monument C|モニュメントC
Monument D|モニュメントD
Sphere Machinery|球体機械
Sphere Machinery|球体機械
Sphere Machinery|球体機械
Large Machine|大型機械
Large Machine|大型機械
Large Machine|大型機械
Monument C|モニュメントC
Control Panel|コントロールパネル
Sphere Machinery|球体機械
Sphere Machinery|球体機械
Sphere Machinery|球体機械
Large Machine|大型機械
Large Machine|大型機械
Large Machine|大型機械
Wall A|壁A
Wall A|壁A
Wall A|壁A
Decorative Pillar A|装飾柱A
Arch A|門A
Arch A|門A
Arch A|門A
Decorative Pillar B|装飾柱B
Wall A|壁A
Wall A|壁A
Wall A|壁A
Decorative Pillar A|装飾柱A
Arch A|門A
Arch A|門A
Arch A|門A
Decorative Pillar B|装飾柱B
Wall A|壁A
Wall A|壁A
Wall A|壁A
Decorative Pillar A|装飾柱A
Arch A|門A
Arch A|門A
Arch A|門A
Decorative Pillar B|装飾柱B
Wall B (Topside)|壁B上面
Wall B (Topside)|壁B上面
Wall B (Topside)|壁B上面
Spire|尖塔
Clock Tower|時計塔
Clock Tower|時計塔
Clock Tower|時計塔
Wall A Ceiling|壁A天井
Wall B (Topside)|壁B上面
Wall B (Topside)|壁B上面
Wall B (Topside)|壁B上面
Spire|尖塔
Clock Tower|時計塔
Clock Tower|時計塔
Clock Tower|時計塔
Decorative Pillar A (Front)|装飾柱A(手前)
Wall B (Topside)|壁B上面
Wall B (Topside)|壁B上面
Wall B (Topside)|壁B上面
Spire|尖塔
Clock Tower|時計塔
Clock Tower|時計塔
Clock Tower|時計塔
Decorative Pillar B (Front)|装飾柱B(手前)
Wall B|壁B
Wall B|壁B
Wall B|壁B
Spire|尖塔
Arch B|門B
Arch B|門B
Arch B|門B
Iron Fence B|鉄柵B
Wall B|壁B
Wall B|壁B
Wall B|壁B
Spire|尖塔
Arch B|門B
Arch B|門B
Arch B|門B
Gate|門扉
Wall B|壁B
Wall B|壁B
Wall B|壁B
Spire|尖塔
Arch B|門B
Arch B|門B
Arch B|門B
Gate|門扉
Rooftop Railing|屋上用手すり
Rooftop Railing|屋上用手すり
Rooftop Railing|屋上用手すり
Iron Fence A|鉄柵A
Tank|戦車
Tank|戦車
Helicopter|ヘリコプター
Helicopter|ヘリコプター
Rooftop Railing|屋上用手すり
Round Clock|丸時計
Rooftop Railing|屋上用手すり
Iron Fence A|鉄柵A
Tank|戦車
Tank|戦車
Helicopter|ヘリコプター
Helicopter|ヘリコプター
Rooftop Railing|屋上用手すり
Rooftop Railing|屋上用手すり
Rooftop Railing|屋上用手すり
Iron Fence A|鉄柵A
Rooftop Billboard B|屋上看板B
Rooftop Billboard B|屋上看板B
Food Cart|屋台
Food Cart|屋台
Convenience Store|コンビニエンスストア
Convenience Store|コンビニエンスストア
Convenience Store|コンビニエンスストア
Steel Tower|鉄塔
Rooftop Billboard A|屋上看板A
Roof|屋根
Roof|屋根
Roof|屋根
Convenience Store|コンビニエンスストア
Convenience Store|コンビニエンスストア
Convenience Store|コンビニエンスストア
Steel Tower|鉄塔
Water Storage Tank|貯水タンク
Roof|屋根
Roof|屋根
Roof|屋根
Bus Waiting Area|待合所
Bus Waiting Area|待合所
Station Kiosk|駅の売店
Steel Tower|鉄塔
Water Storage Tank|貯水タンク
Roof|屋根
Roof|屋根
Roof|屋根
Bus Waiting Area|待合所
Bus Waiting Area|待合所
Station Kiosk|駅の売店
Roof Detail|屋根飾り
Roof|屋根
Roof|屋根
Roof|屋根
Roof|屋根

16
img/tilesets/World_A1.txt Normal file
View file

@ -0,0 +1,16 @@
Sea|海
Deep Sea|深い海
Rock Shoal|岩礁
Icebergs|氷山
Poison Swamp|毒の沼
Dead Trees|枯れ木
Lava|溶岩
Lava Bubbles|溶岩の泡
Pond|池
Boulder|岩
Frozen Sea|凍った海
Whirlpool|渦
Land's End|大地の境界
Endless Waterfall|下界に落ちる滝
Cloud (Land's End)|雲(大地の境界)
Cloud|雲

32
img/tilesets/World_A2.txt Normal file
View file

@ -0,0 +1,32 @@
Grassland A|草原A
Grassland A (Dark)|草原A
Grassland B|草原B
Grassland B (Dark)|草原B
Forest|森
Forest (Conifer)|森(針葉樹)
Mountain (Grass)|山(草)
Mountain (Dirt)|山(土)
Wasteland A|荒れ地A
Wasteland B|荒れ地B
Dirt Field A|土肌A
Dirt Field B|土肌B
Forest (Dead Trees)|森(枯れ木)
Road (Dirt)|道(土)
Hill (Dirt)|丘(土)
Mountain (Sandstone)|山(砂岩)
Desert A|砂漠A
Desert B|砂漠B
Rocky Land A|岩地A
Rocky Land B (Lava)|岩地B溶岩
Forest (Palm Trees)|森(ヤシの木)
Road (Paved)|道(舗装)
Mountain (Rock)|山(岩)
Mountain (Lava)|山(溶岩)
Snowfield|雪原
Mountain (Snow)|山(雪)
Clouds|雲
Large Clouds|大きな雲
Forest (Snow)|森(雪)
Pit|穴
Hill (Sandstone)|丘(砂岩)
Hill (Snow)|丘(雪)

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

@ -0,0 +1,256 @@
Transparent|透明
Sign|立て札
Pier (H)|桟橋(横)
Pier (V)|桟橋(縦)
Pond|池
Oasis|オアシス
Pond (Ice)|池(氷)
Rainbow|虹
Tent|テント
Igloo|氷の家
Pyramid|ピラミッド
Giant Tree|大樹
Giant Tree (Snow)|大樹(雪)
Dirt|土砂
Avalanche|雪崩
Rainbow|虹
Cave A|洞窟A
Cave B|洞窟B
Cave (Collapsed)|洞窟(土砂崩れ)
Mine|坑道
Tunnel|トンネル
Tunnel (Blocked)|トンネル(通行止め)
Shrine|ほこら
Shrine (Snow)|ほこら(雪)
Bridge (H)|橋(横)
Bridge (V)|橋(縦)
Collapsed Bridge (H)|崩れた橋(横)
Collapsed Bridge (V)|崩れた橋(縦)
Snow Bridge (H)|雪の橋(横)
Snow Bridge (V)|雪の橋(縦)
Collapsed Snow Bridge (H)|崩れた雪の橋(横)
Collapsed Snow Bridge (V)|崩れた雪の橋(縦)
Castle A|城A
Castle A|城A
Castle B|城B
Castle B|城B
Fort A|砦A
Fort A|砦A
Fort B|砦B
Fort B|砦B
Castle A|城A
Castle A|城A
Castle B|城B
Castle B|城B
Fort A|砦A
Fort A|砦A
Fort B|砦B
Fort B|砦B
Castle C|城C
Castle C|城C
Castle D|城D
Castle D|城D
Castle (Ruins)|城(廃墟)
Castle (Ruins)|城(廃墟)
Fort (Ruins)|砦(廃墟)
Fort (Ruins)|砦(廃墟)
Castle C|城C
Castle C|城C
Castle D|城D
Castle D|城D
Castle (Ruins)|城(廃墟)
Castle (Ruins)|城(廃墟)
Fort (Ruins)|砦(廃墟)
Fort (Ruins)|砦(廃墟)
Castle A, B (Snow)|城A・B
Castle A, B (Snow)|城A・B
Castle C, D (Snow)|城C・D
Castle C, D (Snow)|城C・D
Fort (Snow)|砦(雪)
Fort (Snow)|砦(雪)
Castle (Ruins, Snow)|城(廃墟・雪)
Castle (Ruins, Snow)|城(廃墟・雪)
Castle A, B (Snow)|城A・B
Castle A, B (Snow)|城A・B
Castle C, D (Snow)|城C・D
Castle C, D (Snow)|城C・D
Fort (Snow)|砦(雪)
Fort (Snow)|砦(雪)
Castle (Ruins, Snow)|城(廃墟・雪)
Castle (Ruins, Snow)|城(廃墟・雪)
Tower A|塔A
Tower A (Ruins)|塔A廃墟
Tower B|塔B
Tower C|塔C
Tower A (Snow)|塔A
Tower D|塔D
Temple A|神殿A
Temple A (Snow)|神殿A
Tower A|塔A
Tower A (Ruins)|塔A廃墟
Tower B|塔B
Tower C|塔C
Tower A (Snow)|塔A
Tower D (Ruins)|塔D廃墟
Temple B|神殿B
Temple C|神殿C
Fortress City |城塞都市
Fortress City |城塞都市
Fortress City (Snow)|城塞都市(雪)
Fortress City (Snow)|城塞都市(雪)
Large Mansion|大きな屋敷
Large Mansion|大きな屋敷
School of Magic|魔法学校
School of Magic|魔法学校
Fortress City |城塞都市
Fortress City |城塞都市
Fortress City (Snow)|城塞都市(雪)
Fortress City (Snow)|城塞都市(雪)
Large Mansion|大きな屋敷
Large Mansion|大きな屋敷
School of Magic|魔法学校
School of Magic|魔法学校
Town A|町A
Town A|町A
Town B|町B
Town B|町B
Village A|村A
Village A|村A
Village B|村B
Village B|村B
Town C|町C
House (Town)|家(町)
Village C|村C
House (Village)|家(村)
Town C (Snow)|町C
House (Town, Snow)|家(町・雪)
Village C (Snow)|村C
House (Village, Snow)|家(村・雪)
Town A (Snow)|町A
Town A (Snow)|町A
Town B (Snow)|町B
Town B (Snow)|町B
Village A (Snow)|村A
Village A (Snow)|村A
Village B (Snow)|村B
Village B (Snow)|村B
Town D (Desert)|町D砂漠
Town D (Desert)|町D砂漠
Town E (Desert)|町E砂漠
Town E (Desert)|町E砂漠
Town F (Desert)|町F砂漠
Large Tent|大きなテント
House (Desert)|家(砂漠)
Pit House|竪穴式住居
Castle (Walled)|城(城壁)
Castle (Walled)|城(城壁)
Castle (Walled)|城(城壁)
Demon Castle|魔王城
Demon Castle|魔王城
Cursed Castle|呪われた城
Cursed Castle|呪われた城
Town C (Ruins)|町C廃墟
Castle (Walled)|城(城壁)
Castle (Walled)|城(城壁)
Castle (Walled)|城(城壁)
Demon Castle|魔王城
Demon Castle|魔王城
Cursed Castle|呪われた城
Cursed Castle|呪われた城
Town F (Ruins)|町F廃墟
Castle (Walled)|城(城壁)
Castle (Walled)|城(城壁)
Castle (Walled)|城(城壁)
Town A (Ruins)|町A廃墟
Town A (Ruins)|町A廃墟
Village A (Ruins)|村A廃墟
Village A (Ruins)|村A廃墟
House (Ruins)|家(廃墟)
Castle Wall (Ruins A)|城壁廃墟A
Castle Wall (Ruins B)|城壁廃墟B
Castle Wall (Ruins C)|城壁廃墟C
Castle Wall|城壁
Castle Wall|城壁
Castle Wall|城壁
Castle Wall|城壁
Castle Wall|城壁
Castle Wall|城壁
Castle Wall (Gate)|城壁(城門)
Castle Wall|城壁
Castle Wall|城壁
Castle Wall|城壁
Castle Wall|城壁
Castle Wall|城壁
Castle Wall|城壁
Castle Wall|城壁
Castle Wall|城壁
Castle Wall|城壁
Castle Wall|城壁
Castle Wall|城壁
Castle Wall|城壁
Castle Wall|城壁
Castle Wall|城壁
Castle Wall|城壁
Castle Wall|城壁
Castle Wall|城壁
Castle Wall|城壁
Castle Wall|城壁
Castle Wall|城壁
Castle Wall|城壁
Lookout Post|やぐら
Crater|クレーター
Trail|山道
Rock Mountain|岩山
Rock Mountain|岩山
Rock Mountain (Sandstone)|岩山(砂岩)
Rock Mountain (Sandstone)|岩山(砂岩)
Rock Mountain (Snow)|岩山(雪)
Rock Mountain (Snow)|岩山(雪)
Volcano Crater (Lava)|火口(溶岩)
Volcano Crater (Lava)|火口(溶岩)
Rock Mountain|岩山
Rock Mountain|岩山
Rock Mountain (Sandstone)|岩山(砂岩)
Rock Mountain (Sandstone)|岩山(砂岩)
Rock Mountain (Snow)|岩山(雪)
Rock Mountain (Snow)|岩山(雪)
Volcano Crater|火口
Volcano Crater|火口
Rock Mountain|岩山
Rock Mountain|岩山
Rock Mountain (Sandstone)|岩山(砂岩)
Rock Mountain (Sandstone)|岩山(砂岩)
Rock Mountain (Snow)|岩山(雪)
Rock Mountain (Snow)|岩山(雪)
Volcano|火山
Volcano|火山
Rock Mountain|岩山
Rock Mountain|岩山
Rock Mountain (Sandstone)|岩山(砂岩)
Rock Mountain (Sandstone)|岩山(砂岩)
Rock Mountain (Snow)|岩山(雪)
Rock Mountain (Snow)|岩山(雪)
Floating Continent (Giant Tree)|浮遊大陸(大樹)
Floating Continent (Giant Tree)|浮遊大陸(大樹)
Floating Continent|浮遊大陸
Floating Continent|浮遊大陸
Floating Continent (Cloud)|浮遊大陸(雲)
Floating Continent (Cloud)|浮遊大陸(雲)
Cloud Land|雲の大地
Cloud Land|雲の大地
Floating Continent (Castle)|浮遊大陸(城)
Floating Continent (Castle)|浮遊大陸(城)
Floating Continent|浮遊大陸
Floating Continent|浮遊大陸
Floating Continent (Cloud)|浮遊大陸(雲)
Floating Continent (Cloud)|浮遊大陸(雲)
Cloud Land|雲の大地
Cloud Land|雲の大地
Floating Continent (Temple)|浮遊大陸(神殿)
Floating Continent (Temple)|浮遊大陸(神殿)
Floating Continent (Shadow)|浮遊大陸(影)
Floating Continent (Shadow)|浮遊大陸(影)
Cloud Land (Temple)|雲の大地(神殿)
Cloud Land (Temple)|雲の大地(神殿)
Cloud Land (Castle)|雲の大地(城)
Cloud Land (Castle)|雲の大地(城)

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

@ -0,0 +1,256 @@
Hole|穴
Signboard A|看板A
Signboard B|看板B
Signboard C|看板C
Iron Bridge (H)|鉄橋(横)
Iron Bridge (V)|鉄橋(縦)
Reservoir A|貯水池A
Reservoir B|貯水池B
Hut|小屋
Shanty|掘っ立て小屋
Signboard D|看板D
Digital Signage A|電子看板A
Digital Signage B|電子看板B
Windmill|風車
Parabolic Antenna|パラボラアンテナ
Heliport|ヘリポート
Entrance A (Open)|入口A
Entrance A (Closed)|入口A
Entrance B (Open)|入口B
Entrance B (Closed)|入口B
Entrance C (Open)|入口C
Entrance C (Closed)|入口C
Entrance D (Closed)|入口D
Entrance E (Closed)|入口E
Road|道路
Road|道路
Road Closed|通行止め
Rocky Mountain A|岩山A
Rocky Mountain A|岩山A
Rocky Mountain B|岩山B
Rocky Mountain B|岩山B
Rocky Mountain C|岩山C
Road|道路
Road|道路
Road|道路
Rocky Mountain A|岩山A
Rocky Mountain A|岩山A
Rocky Mountain B|岩山B
Rocky Mountain B|岩山B
Rocky Mountain C|岩山C
Road|道路
Road|道路
Road|道路
Rocky Mountain A|岩山A
Rocky Mountain A|岩山A
Rocky Mountain B|岩山B
Rocky Mountain B|岩山B
Rocky Mountain D|岩山D
Road|道路
Road|道路
Road|道路
Rocky Mountain A|岩山A
Rocky Mountain A|岩山A
Rocky Mountain B|岩山B
Rocky Mountain B|岩山B
Broken Buildings|壊れたビル街
Town A|町A
Town B|町B
Slum A|スラム街A
Slum B|スラム街B
Mansion A|邸宅A
Mansion A|邸宅A
Gate A|ゲートA
Gate B|ゲートB
Shopping Area A|商店街A
Shopping Area B|商店街B
Buildings A|ビル街A
Buildings B|ビル街B
Mansion B|邸宅B
Mansion B|邸宅B
Gate C|ゲートC
Gate D|ゲートD
Residential Street|住宅街
Residential Street|住宅街
Slum|スラム街
Slum|スラム街
School|学校
School|学校
Hospital|病院
Hospital|病院
Residential Street|住宅街
Residential Street|住宅街
Slum|スラム街
Slum|スラム街
School|学校
School|学校
Hospital|病院
Hospital|病院
City A|街A
City A|街A
City B|街B
City B|街B
Residence A|屋敷A
Residence A|屋敷A
Residence B|屋敷B
Residence B|屋敷B
City A|街A
City A|街A
City B|街B
City B|街B
Residence A|屋敷A
Residence A|屋敷A
Residence B|屋敷B
Residence B|屋敷B
Bridge A (V)|橋A
Bridge A (H)|橋A
Broken Bridge A (V)|壊れた橋A
Broken Bridge A (H)|壊れた橋A
Bridge B (V)|橋B
Bridge B (H)|橋B
Broken Bridge B (V)|壊れた橋(縦)
Broken Bridge B (H)|壊れた橋(横)
Building A|ビルA
Building B|ビルB
Building C|ビルC
Building D|ビルD
Apartment|マンション
Apartment Complex|マンション群
Collapsed Building A|崩壊したビルA
Collapsed Building B|崩壊したビルB
Building A|ビルA
Building B|ビルB
Building C|ビルC
Building D|ビルD
Apartment|マンション
Apartment Complex|マンション群
Collapsed Building A|崩壊したビルA
Collapsed Building B|崩壊したビルB
Large Town A|大きな町A
Large Town A|大きな町A
Entertainment District A|歓楽街A
Entertainment District A|歓楽街A
Police Station|警察署
Police Station|警察署
Island A|島A
Island A|島A
Large Town A|大きな町A
Large Town A|大きな町A
Entertainment District A|歓楽街A
Entertainment District A|歓楽街A
Police Station|警察署
Police Station|警察署
Island A|島A
Island A|島A
Large Town B|大きな町B
Large Town B|大きな町B
Entertainment District B|歓楽街B
Entertainment District B|歓楽街B
Museum|博物館
Museum|博物館
Island B|島B
Island B|島B
Large Town B|大きな町B
Large Town B|大きな町B
Entertainment District B|歓楽街B
Entertainment District B|歓楽街B
Museum|博物館
Museum|博物館
Island B|島B
Island B|島B
Warehouse A|倉庫A
Warehouse A|倉庫A
Factory|工場
Factory|工場
Warehouse B|倉庫B
Gantry Crane|ガントリークレーン
Park|公園
Island C|島C
Warehouse A|倉庫A
Warehouse A|倉庫A
Factory|工場
Factory|工場
Warehouse B|倉庫B
Gantry Crane|ガントリークレーン
Statue A|像A
Statue B|像B
Laboratory|研究所
Laboratory|研究所
Construction Site|工事現場
Construction Site|工事現場
Watchtower|監視塔
Steel Tower|鉄塔
Tower A|タワーA
Tower B|タワーB
Laboratory|研究所
Laboratory|研究所
Construction Site|工事現場
Construction Site|工事現場
Watchtower|監視塔
Steel Tower|鉄塔
Tower A|タワーA
Tower B|タワーB
Outer Wall|外壁
Outer Wall|外壁
Outer Wall|外壁
Outer Wall|外壁
Outer Wall|外壁
Outer Wall|外壁
Outer Wall|外壁
Outer Wall|外壁
Outer Wall|外壁
Outer Wall (Gate)|外壁(門)
Outer Wall|外壁
Outer Wall|外壁
Outer Wall|外壁
Outer Wall|外壁
Outer Wall|外壁
Outer Wall|外壁
Outer Wall|外壁
Outer Wall|外壁
Outer Wall|外壁
Outer Wall|外壁
Outer Wall|外壁
Outer Wall|外壁
Outer Wall|外壁
Outer Wall (Gate)|外壁(門)
Outer Wall|外壁
Outer Wall|外壁
Outer Wall|外壁
Outer Wall|外壁
Outer Wall|外壁
Outer Wall|外壁
Outer Wall|外壁
Outer Wall|外壁
Outer Wall|外壁
Outer Wall|外壁
Outer Wall|外壁
Outer Wall|外壁
Outer Wall|外壁
Outer Wall|外壁
Outer Wall|外壁
Outer Wall|外壁
Theme Park|テーマパーク
Theme Park|テーマパーク
Port|港湾
Port|港湾
Military Base|軍事基地
Military Base|軍事基地
Dome|ドーム
Dome|ドーム
Theme Park|テーマパーク
Theme Park|テーマパーク
Port|港湾
Port|港湾
Military Base|軍事基地
Military Base|軍事基地
Dome|ドーム
Dome|ドーム
Lighthouse|灯台
Broken Lighthouse|壊れた灯台
Temple|寺院
Church|教会
Cemetery A|墓地A
Cemetery B|墓地B
Prison|刑務所
Prison|刑務所

125
js/libs/effekseer.min.js vendored Normal file

File diff suppressed because one or more lines are too long

7
js/libs/localforage.min.js vendored Normal file

File diff suppressed because one or more lines are too long

1
js/libs/pako.min.js vendored Normal file

File diff suppressed because one or more lines are too long

41996
js/libs/pixi.js Normal file

File diff suppressed because it is too large Load diff

6
js/libs/vorbisdecoder.js Normal file

File diff suppressed because one or more lines are too long

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