Initial Commit
This commit is contained in:
commit
855d259ac2
364 changed files with 2582737 additions and 0 deletions
53
.gitignore
vendored
Normal file
53
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,53 @@
|
|||
# Ignore all files
|
||||
*.*
|
||||
|
||||
# File Types
|
||||
!*.mps
|
||||
!*.dat
|
||||
!*.json
|
||||
!*.txt
|
||||
!*.project
|
||||
!*.js
|
||||
!*.zip
|
||||
!*.7z
|
||||
!*.csv
|
||||
!*.ain
|
||||
!*.fnl
|
||||
!*.ks
|
||||
!*.tjs
|
||||
!*.yaml
|
||||
!*.rb
|
||||
!*.rvdata2
|
||||
|
||||
# Other Needed Files
|
||||
!.gitignore
|
||||
!README.md
|
||||
!patch-config.txt
|
||||
!GameUpdate*
|
||||
!patch*
|
||||
!Game.dat
|
||||
!bsxx.dat*
|
||||
!game.ini
|
||||
!package.nw
|
||||
|
||||
# Ignore
|
||||
previous_patch_sha.txt
|
||||
kabe3_save.dat
|
||||
kabe3_system.dat
|
||||
psbpack.dat
|
||||
Save*
|
||||
cg.dat
|
||||
scene.dat
|
||||
BSXScript_*
|
||||
|
||||
# Images
|
||||
!Layout_Command.rpgmvp
|
||||
!titles10410_kakou.rpgmvp
|
||||
!titles10410_kakou2.rpgmvp
|
||||
!titles10410_kakou3.rpgmvp
|
||||
!titles10410_kakou4.rpgmvp
|
||||
!titles10410_kakou5.rpgmvp
|
||||
!titles10410_kakou6.rpgmvp
|
||||
!titles10410_kakou7.rpgmvp
|
||||
!title_ev.rpgmvp
|
||||
!title.rpgmvp
|
||||
14
GameUpdate.bat
Normal file
14
GameUpdate.bat
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
@echo off
|
||||
setlocal
|
||||
|
||||
REM Copy GAMEUPDATE.bat to a new file
|
||||
copy patch.bat patch2.bat
|
||||
|
||||
REM Run the new file
|
||||
call patch2.bat
|
||||
|
||||
REM Delete the new file
|
||||
del patch2.bat
|
||||
|
||||
endlocal
|
||||
@echo on
|
||||
13
GameUpdate_linux.sh
Normal file
13
GameUpdate_linux.sh
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Enable error handling
|
||||
set -e
|
||||
|
||||
# Copy patch.bat to a new file
|
||||
cp patch.sh patch2.sh
|
||||
|
||||
# Run the new file
|
||||
bash patch2.sh
|
||||
|
||||
# Delete the new file
|
||||
rm patch2.sh
|
||||
102
README.md
Normal file
102
README.md
Normal file
|
|
@ -0,0 +1,102 @@
|
|||
# Apply Patch
|
||||
1. Click Code
|
||||
2. Click Download ZIP
|
||||
3. Extract to game folder and Replace All.
|
||||
|
||||
## Future Patching
|
||||
1. Run GAMEUPDATE.bat to auto patch.
|
||||
|
||||
# Troubleshooting
|
||||
**GAMEUPDATE.bat doesn't update and closes immediately**
|
||||
1. Make sure your path doesn't contain any Japanese characters or lots of whitespace.
|
||||
2. Make sure you actually have permissions in the folder
|
||||
|
||||
For WOLF RPG games, if you downloaded the game off of DLSite, you will need to do some extra steps to patch it. This is because there is a "master" file called Data.wolf that will take priority over the english patch files. You will need this file to be a folder before patching will work.
|
||||
|
||||
# Wolf Games
|
||||
1) Download the latest UberWolf.exe release from the following link:
|
||||
https://github.com/Sinflower/UberWolf/releases
|
||||
2) Drag Data.wolf onto UberWolf.exe. This will create a new folder called data.wolf~
|
||||
3) Rename the new data.wolf~ folder to Data
|
||||
4) Delete the Data.wolf file
|
||||
5) Delete previous_patch_sha.txt (this will exist if you ran GameUpdate.bat previously)
|
||||
6) Run GameUpdate.bat
|
||||
|
||||
# Edit/Contribute
|
||||
TLDR 3 steps.
|
||||
|
||||
Fork the repository.
|
||||
Make the changes.
|
||||
Submit a merge request.
|
||||
|
||||
If everything looks good and doesn't break things I'll merge it in.
|
||||
|
||||
Longer Version:
|
||||
|
||||
# Required Software:
|
||||
* [VSCode](https://code.visualstudio.com/) Make sure you check all the boxes for context menus.
|
||||
* [Git](https://git-scm.com/downloads) (Use the default for everything. Just keep clicking Next)
|
||||
|
||||
# Guide to contributing
|
||||
|
||||
### 1. Fork the Repository
|
||||
- Go to the repository you want to fork.
|
||||
- Click the "Fork" button.
|
||||
|
||||
### 2. Clone Your Fork
|
||||
- Clone your forked repository to your local machine.
|
||||
```sh
|
||||
git clone https://gitgud.io/YOUR_USERNAME/REPO_NAME.git
|
||||
```
|
||||
|
||||
### 3. Make Your Changes (In VSCode)
|
||||
- Edit the files locally on your new branch using VSCode.
|
||||
- Add and commit your changes.
|
||||
```sh
|
||||
git add .
|
||||
git commit -m "Description of your changes"
|
||||
```
|
||||
|
||||
### 4. Push Your Changes
|
||||
- Push your changes to your fork on GitGud.io.
|
||||
```sh
|
||||
git push origin your-feature-branch
|
||||
```
|
||||
|
||||
### 5. Create a Merge Request
|
||||
- Go to your fork on GitGud.io.
|
||||
- Click on "Merge Requests" in the sidebar.
|
||||
- Click the "New merge request" button.
|
||||
- Select the branch you made changes to and the target project (the original repo).
|
||||
- Provide a title and description for your merge request and submit it.
|
||||
|
||||
---
|
||||
|
||||
## Example
|
||||
|
||||
Assuming you want to fork a repository named `example-project`:
|
||||
|
||||
### 1. Fork the Repo
|
||||
- Navigate to `https://gitgud.io/original_user/example-project` and click "Fork".
|
||||
|
||||
### 2. Clone Your Fork
|
||||
```sh
|
||||
git clone https://gitgud.io/YOUR_USERNAME/example-project.git
|
||||
```
|
||||
|
||||
### 3. Make Changes and Commit
|
||||
```sh
|
||||
# Make changes to the files
|
||||
git add .
|
||||
git commit -m "Add new feature to example project"
|
||||
```
|
||||
|
||||
### 4. Push Changes
|
||||
```sh
|
||||
git push origin add-new-feature
|
||||
```
|
||||
|
||||
### 5. Create a Merge Request
|
||||
- Go to `https://gitgud.io/YOUR_USERNAME/example-project/merge_requests` and click on "New merge request".
|
||||
- Choose the source branch `add-new-feature` and target branch (default: `main` or `master`).
|
||||
- Fill in the details and submit the merge request.
|
||||
BIN
icudtl.dat
Normal file
BIN
icudtl.dat
Normal file
Binary file not shown.
12
package.json
Normal file
12
package.json
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"name": "",
|
||||
"main": "www/index.html",
|
||||
"js-flags": "--expose-gc",
|
||||
"window": {
|
||||
"title": "",
|
||||
"toolbar": false,
|
||||
"width": 816,
|
||||
"height": 624,
|
||||
"icon": "www/icon/icon.png"
|
||||
}
|
||||
}
|
||||
3
patch-config.txt
Normal file
3
patch-config.txt
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
username=dazed-translations
|
||||
repo=futanari-uniform-girl
|
||||
branch=main
|
||||
121
patch.bat
Normal file
121
patch.bat
Normal file
|
|
@ -0,0 +1,121 @@
|
|||
@echo off
|
||||
setlocal EnableExtensions EnableDelayedExpansion
|
||||
|
||||
echo Checking for pwsh...
|
||||
set _my_shell=pwsh
|
||||
|
||||
REM Check if pwsh.exe exists
|
||||
where /q !_my_shell!
|
||||
if !errorlevel! neq 0 (
|
||||
echo pwsh not found. Falling back to powershell...
|
||||
REM If pwsh is not found, set to powershell
|
||||
set _my_shell=powershell
|
||||
|
||||
REM Check if powershell.exe exists
|
||||
echo Checking for powershell...
|
||||
where /q !_my_shell!
|
||||
if !errorlevel! neq 0 (
|
||||
echo.Error: Powershell not found!
|
||||
pause
|
||||
exit /B 1
|
||||
) else (
|
||||
echo powershell found.
|
||||
)
|
||||
) else (
|
||||
echo pwsh found.
|
||||
)
|
||||
|
||||
echo Using !_my_shell! for script execution.
|
||||
|
||||
REM Check if patch-config.txt exists
|
||||
if not exist patch-config.txt (
|
||||
echo "Config file (patch-config.txt) not found! Assuming no patching needed."
|
||||
pause
|
||||
exit /b
|
||||
)
|
||||
|
||||
REM Read configuration from file
|
||||
for /f "tokens=1,2 delims==" %%a in (patch-config.txt) do (
|
||||
if "%%a"=="username" set "username=%%b"
|
||||
if "%%a"=="repo" set "repo=%%b"
|
||||
if "%%a"=="branch" set "branch=%%b"
|
||||
)
|
||||
|
||||
REM Get the latest hash
|
||||
echo "Getting latest commit SHA hash"
|
||||
!_my_shell! -Command "(Invoke-RestMethod -Uri 'https://gitgud.io/api/v4/projects/%username%%%2F%repo%/repository/branches/%branch%').commit.id" > latest_patch_sha.txt
|
||||
|
||||
REM Read the latest SHA from the file
|
||||
set /p latest_patch_sha=<latest_patch_sha.txt
|
||||
|
||||
REM Check if previous_patch_sha.txt exists
|
||||
if not exist previous_patch_sha.txt (
|
||||
echo "Previous SHA hash not found!"
|
||||
echo "Assuming first time patching..."
|
||||
goto download_extract
|
||||
)
|
||||
|
||||
REM Read the stored SHA from previous check
|
||||
set /p previous_patch_sha=<previous_patch_sha.txt
|
||||
|
||||
REM Trim whitespace from SHA strings
|
||||
set "previous_patch_sha=%previous_patch_sha: =%"
|
||||
set "latest_patch_sha=%latest_patch_sha: =%"
|
||||
|
||||
REM Compare trimmed SHAs
|
||||
if "%latest_patch_sha%" neq "%previous_patch_sha%" (
|
||||
echo "Update found! Patching..."
|
||||
goto download_extract
|
||||
) else (
|
||||
echo "Patch is up to date."
|
||||
)
|
||||
|
||||
REM Delete latest_patch_sha.txt
|
||||
del latest_patch_sha.txt
|
||||
|
||||
endlocal
|
||||
pause
|
||||
exit /b
|
||||
|
||||
:download_extract
|
||||
|
||||
REM Escape single quotes in paths
|
||||
set "escaped_cd=%CD:'=''%"
|
||||
|
||||
REM Download zip file
|
||||
echo "Downloading latest patch..."
|
||||
!_my_shell! -Command "Set-Location -LiteralPath '%escaped_cd%'; Invoke-WebRequest -Uri 'https://gitgud.io/%username%/%repo%/-/archive/%branch%/%repo%-%branch%.zip' -OutFile 'repo.zip'"
|
||||
if !errorlevel! neq 0 (
|
||||
pause
|
||||
exit /b
|
||||
)
|
||||
|
||||
REM Extract contents, overwriting conflicts
|
||||
echo "Extracting..."
|
||||
!_my_shell! -Command "Set-Location -LiteralPath '%escaped_cd%'; Expand-Archive -Path '.\repo.zip' -DestinationPath '.' -Force"
|
||||
if !errorlevel! neq 0 (
|
||||
echo Extraction failed!
|
||||
del repo.zip
|
||||
rmdir /s /q "%repo%-%branch%"
|
||||
pause
|
||||
exit /b
|
||||
)
|
||||
echo "Applying patch..."
|
||||
xcopy /s /e /y "%repo%-%branch%\*" "."
|
||||
if !errorlevel! neq 0 (
|
||||
echo Patch application failed!
|
||||
del repo.zip
|
||||
rmdir /s /q "%repo%-%branch%"
|
||||
pause
|
||||
exit /b
|
||||
)
|
||||
REM Clean up
|
||||
echo "Cleaning up..."
|
||||
del repo.zip
|
||||
rmdir /s /q "%repo%-%branch%"
|
||||
del latest_patch_sha.txt
|
||||
REM Store latest SHA for next check
|
||||
echo %latest_patch_sha% > previous_patch_sha.txt
|
||||
endlocal
|
||||
pause
|
||||
exit /b
|
||||
92
patch.sh
Normal file
92
patch.sh
Normal file
|
|
@ -0,0 +1,92 @@
|
|||
#!/bin/bash
|
||||
|
||||
check_dependency() {
|
||||
if ! command -v "$1" > /dev/null 2>&1; then
|
||||
echo "Error: '$1' is not installed. Please install it using 'pkg install $1'."
|
||||
exit 1
|
||||
fi
|
||||
}
|
||||
|
||||
# Check for jq, unzip, and curl
|
||||
check_dependency jq
|
||||
check_dependency unzip
|
||||
check_dependency curl
|
||||
|
||||
CONFIG_FILE="patch-config.txt"
|
||||
|
||||
# Check if CONFIG_FILE exists
|
||||
if [ ! -f "$CONFIG_FILE" ]; then
|
||||
echo "Config file '$CONFIG_FILE' not found! Assuming no patching needed."
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# Convert line endings to Unix format
|
||||
sed -i 's/\r$//' "$CONFIG_FILE"
|
||||
|
||||
# Debug information
|
||||
echo "Current directory: $(pwd)"
|
||||
echo "Config file path: $(pwd)/$CONFIG_FILE"
|
||||
|
||||
# Read configuration from file
|
||||
. "$(pwd)/$CONFIG_FILE"
|
||||
|
||||
# Get the latest hash
|
||||
echo "Getting latest commit SHA hash"
|
||||
latest_patch_sha=$(curl -s "https://gitgud.io/api/v4/projects/$username%2F$repo/repository/branches/$branch" | jq -r '.commit.id')
|
||||
|
||||
download_extract() {
|
||||
# Download zip file
|
||||
echo "Downloading latest patch..."
|
||||
curl -sL "https://gitgud.io/$username/$repo/-/archive/$branch/$repo-$branch.zip" -o repo.zip
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "Download failed!"
|
||||
rm -f repo.zip
|
||||
rm -rf "$repo-$branch"
|
||||
return 1
|
||||
fi
|
||||
|
||||
# Extract contents, overwriting conflicts
|
||||
echo "Extracting..."
|
||||
unzip -qo repo.zip
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "Extraction failed!"
|
||||
rm -f repo.zip
|
||||
rm -rf "$repo-$branch"
|
||||
return 1
|
||||
fi
|
||||
|
||||
echo "Applying patch..."
|
||||
cp -r "$repo-$branch/"* .
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "Patch application failed!"
|
||||
rm -f repo.zip
|
||||
rm -rf "$repo-$branch"
|
||||
return 1
|
||||
fi
|
||||
|
||||
echo "Cleaning up..."
|
||||
rm repo.zip
|
||||
rm -rf "$repo-$branch"
|
||||
rm -f latest_patch_sha.txt
|
||||
|
||||
# Store latest SHA for next check
|
||||
echo "$latest_patch_sha" > previous_patch_sha.txt
|
||||
}
|
||||
|
||||
# Check if previous_patch_sha.txt exists
|
||||
if [ ! -f previous_patch_sha.txt ]; then
|
||||
echo "Previous SHA hash not found!"
|
||||
echo "Assuming first time patching..."
|
||||
download_extract
|
||||
else
|
||||
# Read the stored SHA from previous check
|
||||
previous_patch_sha=$(cat previous_patch_sha.txt)
|
||||
|
||||
# Compare trimmed SHAs
|
||||
if [ "$latest_patch_sha" != "$previous_patch_sha" ]; then
|
||||
echo "Update found! Patching..."
|
||||
download_extract
|
||||
else
|
||||
echo "Patch is up to date."
|
||||
fi
|
||||
fi
|
||||
95
www/data/Actors.json
Normal file
95
www/data/Actors.json
Normal file
|
|
@ -0,0 +1,95 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "heroine03",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
3,
|
||||
0
|
||||
],
|
||||
"faceIndex": 1,
|
||||
"faceName": "Actor3",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "白雪",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
}
|
||||
]
|
||||
130804
www/data/Animations.json
Normal file
130804
www/data/Animations.json
Normal file
File diff suppressed because it is too large
Load diff
2609
www/data/Armors.json
Normal file
2609
www/data/Armors.json
Normal file
File diff suppressed because it is too large
Load diff
262
www/data/BattleHUD.json
Normal file
262
www/data/BattleHUD.json
Normal file
|
|
@ -0,0 +1,262 @@
|
|||
[
|
||||
{
|
||||
"type": "Text",
|
||||
"Value": "${$gameParty.leader().hp+'/'}",
|
||||
"Condition": "$gameParty.inBattle()",
|
||||
"Layer": "100",
|
||||
"Font": "GameFont",
|
||||
"Max Width": "150",
|
||||
"Align": "left",
|
||||
"Font Size": "30",
|
||||
"Text Color": "#f48686",
|
||||
"Text Alpha": "255",
|
||||
"Outline Color": "#000000",
|
||||
"Outline Alpha": "127",
|
||||
"animateInfo": {
|
||||
"x": {
|
||||
"spd": 0,
|
||||
"loop": false,
|
||||
"min": 0,
|
||||
"max": 0
|
||||
},
|
||||
"y": {
|
||||
"spd": 0,
|
||||
"loop": false,
|
||||
"min": 0,
|
||||
"max": 0
|
||||
},
|
||||
"s": {
|
||||
"spd": 0,
|
||||
"loop": false,
|
||||
"min": 1,
|
||||
"max": 1
|
||||
},
|
||||
"r": {
|
||||
"spd": 0,
|
||||
"loop": false,
|
||||
"min": 0,
|
||||
"max": 0
|
||||
}
|
||||
},
|
||||
"id": 17,
|
||||
"x": 842,
|
||||
"y": 526
|
||||
},
|
||||
{
|
||||
"type": "Text",
|
||||
"Value": "${$gameParty.leader().mhp}",
|
||||
"Condition": "$gameParty.inBattle()",
|
||||
"Layer": "100",
|
||||
"Font": "GameFont",
|
||||
"Max Width": "150",
|
||||
"Align": "left",
|
||||
"Font Size": "30",
|
||||
"Text Color": "#f48686",
|
||||
"Text Alpha": "255",
|
||||
"Outline Color": "#000000",
|
||||
"Outline Alpha": "127",
|
||||
"animateInfo": {
|
||||
"x": {
|
||||
"spd": 0,
|
||||
"loop": false,
|
||||
"min": 0,
|
||||
"max": 0
|
||||
},
|
||||
"y": {
|
||||
"spd": 0,
|
||||
"loop": false,
|
||||
"min": 0,
|
||||
"max": 0
|
||||
},
|
||||
"s": {
|
||||
"spd": 0,
|
||||
"loop": false,
|
||||
"min": 1,
|
||||
"max": 1
|
||||
},
|
||||
"r": {
|
||||
"spd": 0,
|
||||
"loop": false,
|
||||
"min": 0,
|
||||
"max": 0
|
||||
}
|
||||
},
|
||||
"id": 18,
|
||||
"x": 917,
|
||||
"y": 526
|
||||
},
|
||||
{
|
||||
"type": "Text",
|
||||
"Value": "${$gameParty.leader().mp+'/'}",
|
||||
"Condition": "$gameParty.inBattle()",
|
||||
"Layer": "100",
|
||||
"Font": "GameFont",
|
||||
"Max Width": "150",
|
||||
"Align": "left",
|
||||
"Font Size": "30",
|
||||
"Text Color": "#7979ff",
|
||||
"Text Alpha": "255",
|
||||
"Outline Color": "#000000",
|
||||
"Outline Alpha": "127",
|
||||
"animateInfo": {
|
||||
"x": {
|
||||
"spd": 0,
|
||||
"loop": false,
|
||||
"min": 0,
|
||||
"max": 0
|
||||
},
|
||||
"y": {
|
||||
"spd": 0,
|
||||
"loop": false,
|
||||
"min": 0,
|
||||
"max": 0
|
||||
},
|
||||
"s": {
|
||||
"spd": 0,
|
||||
"loop": false,
|
||||
"min": 1,
|
||||
"max": 1
|
||||
},
|
||||
"r": {
|
||||
"spd": 0,
|
||||
"loop": false,
|
||||
"min": 0,
|
||||
"max": 0
|
||||
}
|
||||
},
|
||||
"id": 19,
|
||||
"x": 845,
|
||||
"y": 565
|
||||
},
|
||||
{
|
||||
"type": "Text",
|
||||
"Value": "${$gameParty.leader().mmp}",
|
||||
"Condition": "$gameParty.inBattle()",
|
||||
"Layer": "100",
|
||||
"Font": "GameFont",
|
||||
"Max Width": "150",
|
||||
"Align": "left",
|
||||
"Font Size": "30",
|
||||
"Text Color": "#7979ff",
|
||||
"Text Alpha": "255",
|
||||
"Outline Color": "#000000",
|
||||
"Outline Alpha": "127",
|
||||
"animateInfo": {
|
||||
"x": {
|
||||
"spd": 0,
|
||||
"loop": false,
|
||||
"min": 0,
|
||||
"max": 0
|
||||
},
|
||||
"y": {
|
||||
"spd": 0,
|
||||
"loop": false,
|
||||
"min": 0,
|
||||
"max": 0
|
||||
},
|
||||
"s": {
|
||||
"spd": 0,
|
||||
"loop": false,
|
||||
"min": 1,
|
||||
"max": 1
|
||||
},
|
||||
"r": {
|
||||
"spd": 0,
|
||||
"loop": false,
|
||||
"min": 0,
|
||||
"max": 0
|
||||
}
|
||||
},
|
||||
"id": 24,
|
||||
"x": 917,
|
||||
"y": 566
|
||||
},
|
||||
{
|
||||
"type": "Gauge",
|
||||
"Cur. Value": "$gameVariables.value(101)",
|
||||
"Max Value": "1000",
|
||||
"Condition": "$gameSwitches.value(201)",
|
||||
"Layer": "0",
|
||||
"Width": "228",
|
||||
"Height": "20",
|
||||
"Style": "left",
|
||||
"Color 1": "#ea80e2",
|
||||
"Color 1 Alpha": "255",
|
||||
"Color 2": "#831a8e",
|
||||
"Color 2 Alpha": "255",
|
||||
"Back Color": "#666666",
|
||||
"Color 4 Alpha": "255",
|
||||
"Outline Size": "1",
|
||||
"Outline Color": "#222222",
|
||||
"Color 3 Alpha": "255",
|
||||
"animateInfo": {
|
||||
"x": {
|
||||
"spd": 0,
|
||||
"loop": false,
|
||||
"min": 0,
|
||||
"max": 0
|
||||
},
|
||||
"y": {
|
||||
"spd": 0,
|
||||
"loop": false,
|
||||
"min": 0,
|
||||
"max": 0
|
||||
},
|
||||
"s": {
|
||||
"spd": 0,
|
||||
"loop": false,
|
||||
"min": 1,
|
||||
"max": 1
|
||||
},
|
||||
"r": {
|
||||
"spd": 0,
|
||||
"loop": false,
|
||||
"min": 0,
|
||||
"max": 0
|
||||
}
|
||||
},
|
||||
"id": 21,
|
||||
"x": 626,
|
||||
"y": 353
|
||||
},
|
||||
{
|
||||
"type": "Picture",
|
||||
"Condition": "$gameSwitches.value(200)",
|
||||
"Layer": "1",
|
||||
"Image": "bf frame",
|
||||
"Scale X": "1",
|
||||
"Scale Y": "1",
|
||||
"Opacity": "255",
|
||||
"Hue": "0",
|
||||
"Blend": "0",
|
||||
"animateInfo": {
|
||||
"x": {
|
||||
"spd": 0,
|
||||
"loop": false,
|
||||
"min": 0,
|
||||
"max": 0
|
||||
},
|
||||
"y": {
|
||||
"spd": 0,
|
||||
"loop": false,
|
||||
"min": 0,
|
||||
"max": 0
|
||||
},
|
||||
"s": {
|
||||
"spd": 0,
|
||||
"loop": false,
|
||||
"min": 1,
|
||||
"max": 1
|
||||
},
|
||||
"r": {
|
||||
"spd": 0,
|
||||
"loop": false,
|
||||
"min": 0,
|
||||
"max": 0
|
||||
}
|
||||
},
|
||||
"id": 23,
|
||||
"x": 600,
|
||||
"y": 384
|
||||
}
|
||||
]
|
||||
3513
www/data/Classes.json
Normal file
3513
www/data/Classes.json
Normal file
File diff suppressed because it is too large
Load diff
93014
www/data/CommonEvents.json
Normal file
93014
www/data/CommonEvents.json
Normal file
File diff suppressed because it is too large
Load diff
3
www/data/DataEX.json
Normal file
3
www/data/DataEX.json
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"Actors": {}
|
||||
}
|
||||
6295
www/data/Enemies.json
Normal file
6295
www/data/Enemies.json
Normal file
File diff suppressed because it is too large
Load diff
2689
www/data/Items.json
Normal file
2689
www/data/Items.json
Normal file
File diff suppressed because it is too large
Load diff
1366
www/data/Map001.json
Normal file
1366
www/data/Map001.json
Normal file
File diff suppressed because it is too large
Load diff
20205
www/data/Map002.json
Normal file
20205
www/data/Map002.json
Normal file
File diff suppressed because it is too large
Load diff
12700
www/data/Map003.json
Normal file
12700
www/data/Map003.json
Normal file
File diff suppressed because it is too large
Load diff
3830
www/data/Map004.json
Normal file
3830
www/data/Map004.json
Normal file
File diff suppressed because it is too large
Load diff
5673
www/data/Map005.json
Normal file
5673
www/data/Map005.json
Normal file
File diff suppressed because it is too large
Load diff
13578
www/data/Map006.json
Normal file
13578
www/data/Map006.json
Normal file
File diff suppressed because it is too large
Load diff
17503
www/data/Map007.json
Normal file
17503
www/data/Map007.json
Normal file
File diff suppressed because it is too large
Load diff
6064
www/data/Map008.json
Normal file
6064
www/data/Map008.json
Normal file
File diff suppressed because it is too large
Load diff
6095
www/data/Map009.json
Normal file
6095
www/data/Map009.json
Normal file
File diff suppressed because it is too large
Load diff
8812
www/data/Map010.json
Normal file
8812
www/data/Map010.json
Normal file
File diff suppressed because it is too large
Load diff
7876
www/data/Map011.json
Normal file
7876
www/data/Map011.json
Normal file
File diff suppressed because it is too large
Load diff
5281
www/data/Map012.json
Normal file
5281
www/data/Map012.json
Normal file
File diff suppressed because it is too large
Load diff
7424
www/data/Map013.json
Normal file
7424
www/data/Map013.json
Normal file
File diff suppressed because it is too large
Load diff
4670
www/data/Map014.json
Normal file
4670
www/data/Map014.json
Normal file
File diff suppressed because it is too large
Load diff
7701
www/data/Map015.json
Normal file
7701
www/data/Map015.json
Normal file
File diff suppressed because it is too large
Load diff
20884
www/data/Map016.json
Normal file
20884
www/data/Map016.json
Normal file
File diff suppressed because it is too large
Load diff
5259
www/data/Map017.json
Normal file
5259
www/data/Map017.json
Normal file
File diff suppressed because it is too large
Load diff
4635
www/data/Map018.json
Normal file
4635
www/data/Map018.json
Normal file
File diff suppressed because it is too large
Load diff
7231
www/data/Map019.json
Normal file
7231
www/data/Map019.json
Normal file
File diff suppressed because it is too large
Load diff
6738
www/data/Map020.json
Normal file
6738
www/data/Map020.json
Normal file
File diff suppressed because it is too large
Load diff
12028
www/data/Map021.json
Normal file
12028
www/data/Map021.json
Normal file
File diff suppressed because it is too large
Load diff
16465
www/data/Map022.json
Normal file
16465
www/data/Map022.json
Normal file
File diff suppressed because it is too large
Load diff
7049
www/data/Map023.json
Normal file
7049
www/data/Map023.json
Normal file
File diff suppressed because it is too large
Load diff
29816
www/data/Map024.json
Normal file
29816
www/data/Map024.json
Normal file
File diff suppressed because it is too large
Load diff
6146
www/data/Map025.json
Normal file
6146
www/data/Map025.json
Normal file
File diff suppressed because it is too large
Load diff
8131
www/data/Map026.json
Normal file
8131
www/data/Map026.json
Normal file
File diff suppressed because it is too large
Load diff
14084
www/data/Map027.json
Normal file
14084
www/data/Map027.json
Normal file
File diff suppressed because it is too large
Load diff
3373
www/data/Map028.json
Normal file
3373
www/data/Map028.json
Normal file
File diff suppressed because it is too large
Load diff
2998
www/data/Map029.json
Normal file
2998
www/data/Map029.json
Normal file
File diff suppressed because it is too large
Load diff
3424
www/data/Map030.json
Normal file
3424
www/data/Map030.json
Normal file
File diff suppressed because it is too large
Load diff
2998
www/data/Map031.json
Normal file
2998
www/data/Map031.json
Normal file
File diff suppressed because it is too large
Load diff
5425
www/data/Map032.json
Normal file
5425
www/data/Map032.json
Normal file
File diff suppressed because it is too large
Load diff
6599
www/data/Map033.json
Normal file
6599
www/data/Map033.json
Normal file
File diff suppressed because it is too large
Load diff
24460
www/data/Map034.json
Normal file
24460
www/data/Map034.json
Normal file
File diff suppressed because it is too large
Load diff
4406
www/data/Map035.json
Normal file
4406
www/data/Map035.json
Normal file
File diff suppressed because it is too large
Load diff
11540
www/data/Map036.json
Normal file
11540
www/data/Map036.json
Normal file
File diff suppressed because it is too large
Load diff
11274
www/data/Map037.json
Normal file
11274
www/data/Map037.json
Normal file
File diff suppressed because it is too large
Load diff
3082
www/data/Map038.json
Normal file
3082
www/data/Map038.json
Normal file
File diff suppressed because it is too large
Load diff
8844
www/data/Map039.json
Normal file
8844
www/data/Map039.json
Normal file
File diff suppressed because it is too large
Load diff
14145
www/data/Map040.json
Normal file
14145
www/data/Map040.json
Normal file
File diff suppressed because it is too large
Load diff
22408
www/data/Map041.json
Normal file
22408
www/data/Map041.json
Normal file
File diff suppressed because it is too large
Load diff
6439
www/data/Map042.json
Normal file
6439
www/data/Map042.json
Normal file
File diff suppressed because it is too large
Load diff
6320
www/data/Map043.json
Normal file
6320
www/data/Map043.json
Normal file
File diff suppressed because it is too large
Load diff
8919
www/data/Map044.json
Normal file
8919
www/data/Map044.json
Normal file
File diff suppressed because it is too large
Load diff
10347
www/data/Map045.json
Normal file
10347
www/data/Map045.json
Normal file
File diff suppressed because it is too large
Load diff
14230
www/data/Map046.json
Normal file
14230
www/data/Map046.json
Normal file
File diff suppressed because it is too large
Load diff
6200
www/data/Map047.json
Normal file
6200
www/data/Map047.json
Normal file
File diff suppressed because it is too large
Load diff
6833
www/data/Map048.json
Normal file
6833
www/data/Map048.json
Normal file
File diff suppressed because it is too large
Load diff
6470
www/data/Map049.json
Normal file
6470
www/data/Map049.json
Normal file
File diff suppressed because it is too large
Load diff
9963
www/data/Map050.json
Normal file
9963
www/data/Map050.json
Normal file
File diff suppressed because it is too large
Load diff
13959
www/data/Map051.json
Normal file
13959
www/data/Map051.json
Normal file
File diff suppressed because it is too large
Load diff
7450
www/data/Map052.json
Normal file
7450
www/data/Map052.json
Normal file
File diff suppressed because it is too large
Load diff
6435
www/data/Map053.json
Normal file
6435
www/data/Map053.json
Normal file
File diff suppressed because it is too large
Load diff
18314
www/data/Map054.json
Normal file
18314
www/data/Map054.json
Normal file
File diff suppressed because it is too large
Load diff
4818
www/data/Map055.json
Normal file
4818
www/data/Map055.json
Normal file
File diff suppressed because it is too large
Load diff
6586
www/data/Map056.json
Normal file
6586
www/data/Map056.json
Normal file
File diff suppressed because it is too large
Load diff
18560
www/data/Map057.json
Normal file
18560
www/data/Map057.json
Normal file
File diff suppressed because it is too large
Load diff
8213
www/data/Map058.json
Normal file
8213
www/data/Map058.json
Normal file
File diff suppressed because it is too large
Load diff
8483
www/data/Map059.json
Normal file
8483
www/data/Map059.json
Normal file
File diff suppressed because it is too large
Load diff
7002
www/data/Map060.json
Normal file
7002
www/data/Map060.json
Normal file
File diff suppressed because it is too large
Load diff
34281
www/data/Map061.json
Normal file
34281
www/data/Map061.json
Normal file
File diff suppressed because it is too large
Load diff
31570
www/data/Map062.json
Normal file
31570
www/data/Map062.json
Normal file
File diff suppressed because it is too large
Load diff
14957
www/data/Map063.json
Normal file
14957
www/data/Map063.json
Normal file
File diff suppressed because it is too large
Load diff
23937
www/data/Map064.json
Normal file
23937
www/data/Map064.json
Normal file
File diff suppressed because it is too large
Load diff
5591
www/data/Map065.json
Normal file
5591
www/data/Map065.json
Normal file
File diff suppressed because it is too large
Load diff
5044
www/data/Map066.json
Normal file
5044
www/data/Map066.json
Normal file
File diff suppressed because it is too large
Load diff
11217
www/data/Map067.json
Normal file
11217
www/data/Map067.json
Normal file
File diff suppressed because it is too large
Load diff
5405
www/data/Map068.json
Normal file
5405
www/data/Map068.json
Normal file
File diff suppressed because it is too large
Load diff
10305
www/data/Map069.json
Normal file
10305
www/data/Map069.json
Normal file
File diff suppressed because it is too large
Load diff
12996
www/data/Map070.json
Normal file
12996
www/data/Map070.json
Normal file
File diff suppressed because it is too large
Load diff
8655
www/data/Map071.json
Normal file
8655
www/data/Map071.json
Normal file
File diff suppressed because it is too large
Load diff
8768
www/data/Map072.json
Normal file
8768
www/data/Map072.json
Normal file
File diff suppressed because it is too large
Load diff
24411
www/data/Map073.json
Normal file
24411
www/data/Map073.json
Normal file
File diff suppressed because it is too large
Load diff
9570
www/data/Map074.json
Normal file
9570
www/data/Map074.json
Normal file
File diff suppressed because it is too large
Load diff
7489
www/data/Map075.json
Normal file
7489
www/data/Map075.json
Normal file
File diff suppressed because it is too large
Load diff
7756
www/data/Map076.json
Normal file
7756
www/data/Map076.json
Normal file
File diff suppressed because it is too large
Load diff
5288
www/data/Map077.json
Normal file
5288
www/data/Map077.json
Normal file
File diff suppressed because it is too large
Load diff
4694
www/data/Map078.json
Normal file
4694
www/data/Map078.json
Normal file
File diff suppressed because it is too large
Load diff
4928
www/data/Map079.json
Normal file
4928
www/data/Map079.json
Normal file
File diff suppressed because it is too large
Load diff
6836
www/data/Map080.json
Normal file
6836
www/data/Map080.json
Normal file
File diff suppressed because it is too large
Load diff
17947
www/data/Map081.json
Normal file
17947
www/data/Map081.json
Normal file
File diff suppressed because it is too large
Load diff
7522
www/data/Map082.json
Normal file
7522
www/data/Map082.json
Normal file
File diff suppressed because it is too large
Load diff
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue