Compare commits
1 Commits
v-26.1-pai
...
v-26.1-dec
| Author | SHA1 | Date |
|---|---|---|
|
|
c38ba3b394 | 3 weeks ago |
@ -1,44 +0,0 @@
|
|||||||
# Decocraft Paintings Pack
|
|
||||||
|
|
||||||
Universal addon pack adding 48 paintings to Decocraft.
|
|
||||||
Single jar works on both NeoForge and Fabric.
|
|
||||||
|
|
||||||
## Contents
|
|
||||||
|
|
||||||
- 5 painting series with variants (48 total)
|
|
||||||
- Painting 1: 10 variants (A-J)
|
|
||||||
- Painting 2: 11 variants (A-K)
|
|
||||||
- Painting 3: 11 variants (A-K)
|
|
||||||
- Painting 4: 11 variants (A-K)
|
|
||||||
- Painting 5: 5 variants (A-E)
|
|
||||||
|
|
||||||
Each series shares a BBModel shape with different textures per variant.
|
|
||||||
Variants cycle with the decobrush tool.
|
|
||||||
|
|
||||||
## File Structure
|
|
||||||
|
|
||||||
```
|
|
||||||
assets/decocraft/
|
|
||||||
decocraft.json - manifest
|
|
||||||
groups.json - paintings creative tab
|
|
||||||
paintings.json - all 48 painting definitions
|
|
||||||
models/bbmodel/ - 5 BBModel files (one per series)
|
|
||||||
textures/block/ - 48 block textures
|
|
||||||
textures/item/ - 48 item textures
|
|
||||||
lang/en_us.json - display names
|
|
||||||
```
|
|
||||||
|
|
||||||
Blockstates, block models, item models, item definitions, and loot tables
|
|
||||||
are all generated dynamically at runtime by the main Decocraft mod.
|
|
||||||
|
|
||||||
## Building
|
|
||||||
|
|
||||||
```
|
|
||||||
./gradlew build
|
|
||||||
```
|
|
||||||
|
|
||||||
Output jar goes to `build/libs/`.
|
|
||||||
|
|
||||||
## Version Compatibility
|
|
||||||
|
|
||||||
Works with Decocraft 4.0+ on Minecraft 26.1+.
|
|
||||||
@ -1,94 +1,94 @@
|
|||||||
@rem
|
@rem
|
||||||
@rem Copyright 2015 the original author or authors.
|
@rem Copyright 2015 the original author or authors.
|
||||||
@rem
|
@rem
|
||||||
@rem Licensed under the Apache License, Version 2.0 (the "License");
|
@rem Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
@rem you may not use this file except in compliance with the License.
|
@rem you may not use this file except in compliance with the License.
|
||||||
@rem You may obtain a copy of the License at
|
@rem You may obtain a copy of the License at
|
||||||
@rem
|
@rem
|
||||||
@rem https://www.apache.org/licenses/LICENSE-2.0
|
@rem https://www.apache.org/licenses/LICENSE-2.0
|
||||||
@rem
|
@rem
|
||||||
@rem Unless required by applicable law or agreed to in writing, software
|
@rem Unless required by applicable law or agreed to in writing, software
|
||||||
@rem distributed under the License is distributed on an "AS IS" BASIS,
|
@rem distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
@rem See the License for the specific language governing permissions and
|
@rem See the License for the specific language governing permissions and
|
||||||
@rem limitations under the License.
|
@rem limitations under the License.
|
||||||
@rem
|
@rem
|
||||||
@rem SPDX-License-Identifier: Apache-2.0
|
@rem SPDX-License-Identifier: Apache-2.0
|
||||||
@rem
|
@rem
|
||||||
|
|
||||||
@if "%DEBUG%"=="" @echo off
|
@if "%DEBUG%"=="" @echo off
|
||||||
@rem ##########################################################################
|
@rem ##########################################################################
|
||||||
@rem
|
@rem
|
||||||
@rem Gradle startup script for Windows
|
@rem Gradle startup script for Windows
|
||||||
@rem
|
@rem
|
||||||
@rem ##########################################################################
|
@rem ##########################################################################
|
||||||
|
|
||||||
@rem Set local scope for the variables with windows NT shell
|
@rem Set local scope for the variables with windows NT shell
|
||||||
if "%OS%"=="Windows_NT" setlocal
|
if "%OS%"=="Windows_NT" setlocal
|
||||||
|
|
||||||
set DIRNAME=%~dp0
|
set DIRNAME=%~dp0
|
||||||
if "%DIRNAME%"=="" set DIRNAME=.
|
if "%DIRNAME%"=="" set DIRNAME=.
|
||||||
@rem This is normally unused
|
@rem This is normally unused
|
||||||
set APP_BASE_NAME=%~n0
|
set APP_BASE_NAME=%~n0
|
||||||
set APP_HOME=%DIRNAME%
|
set APP_HOME=%DIRNAME%
|
||||||
|
|
||||||
@rem Resolve any "." and ".." in APP_HOME to make it shorter.
|
@rem Resolve any "." and ".." in APP_HOME to make it shorter.
|
||||||
for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
|
for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
|
||||||
|
|
||||||
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||||
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
|
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
|
||||||
|
|
||||||
@rem Find java.exe
|
@rem Find java.exe
|
||||||
if defined JAVA_HOME goto findJavaFromJavaHome
|
if defined JAVA_HOME goto findJavaFromJavaHome
|
||||||
|
|
||||||
set JAVA_EXE=java.exe
|
set JAVA_EXE=java.exe
|
||||||
%JAVA_EXE% -version >NUL 2>&1
|
%JAVA_EXE% -version >NUL 2>&1
|
||||||
if %ERRORLEVEL% equ 0 goto execute
|
if %ERRORLEVEL% equ 0 goto execute
|
||||||
|
|
||||||
echo. 1>&2
|
echo. 1>&2
|
||||||
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
|
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
|
||||||
echo. 1>&2
|
echo. 1>&2
|
||||||
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
|
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
|
||||||
echo location of your Java installation. 1>&2
|
echo location of your Java installation. 1>&2
|
||||||
|
|
||||||
goto fail
|
goto fail
|
||||||
|
|
||||||
:findJavaFromJavaHome
|
:findJavaFromJavaHome
|
||||||
set JAVA_HOME=%JAVA_HOME:"=%
|
set JAVA_HOME=%JAVA_HOME:"=%
|
||||||
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
|
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
|
||||||
|
|
||||||
if exist "%JAVA_EXE%" goto execute
|
if exist "%JAVA_EXE%" goto execute
|
||||||
|
|
||||||
echo. 1>&2
|
echo. 1>&2
|
||||||
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
|
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
|
||||||
echo. 1>&2
|
echo. 1>&2
|
||||||
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
|
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
|
||||||
echo location of your Java installation. 1>&2
|
echo location of your Java installation. 1>&2
|
||||||
|
|
||||||
goto fail
|
goto fail
|
||||||
|
|
||||||
:execute
|
:execute
|
||||||
@rem Setup the command line
|
@rem Setup the command line
|
||||||
|
|
||||||
set CLASSPATH=
|
set CLASSPATH=
|
||||||
|
|
||||||
|
|
||||||
@rem Execute Gradle
|
@rem Execute Gradle
|
||||||
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %*
|
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %*
|
||||||
|
|
||||||
:end
|
:end
|
||||||
@rem End local scope for the variables with windows NT shell
|
@rem End local scope for the variables with windows NT shell
|
||||||
if %ERRORLEVEL% equ 0 goto mainEnd
|
if %ERRORLEVEL% equ 0 goto mainEnd
|
||||||
|
|
||||||
:fail
|
:fail
|
||||||
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
|
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
|
||||||
rem the _cmd.exe /c_ return code!
|
rem the _cmd.exe /c_ return code!
|
||||||
set EXIT_CODE=%ERRORLEVEL%
|
set EXIT_CODE=%ERRORLEVEL%
|
||||||
if %EXIT_CODE% equ 0 set EXIT_CODE=1
|
if %EXIT_CODE% equ 0 set EXIT_CODE=1
|
||||||
if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
|
if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
|
||||||
exit /b %EXIT_CODE%
|
exit /b %EXIT_CODE%
|
||||||
|
|
||||||
:mainEnd
|
:mainEnd
|
||||||
if "%OS%"=="Windows_NT" endlocal
|
if "%OS%"=="Windows_NT" endlocal
|
||||||
|
|
||||||
:omega
|
:omega
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
[
|
[
|
||||||
"groups.json",
|
"groups.json",
|
||||||
"paintings.json"
|
"decopops.json"
|
||||||
]
|
]
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"paintings": { "label": "itemGroup.decocraft.paintings", "icon": "painting_1_a" }
|
"decopops": { "label": "itemGroup.decocraft.decopops", "icon": "000_dpop_razz" }
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,917 +0,0 @@
|
|||||||
{
|
|
||||||
"models": [
|
|
||||||
{
|
|
||||||
"name": "Painting 1-A",
|
|
||||||
"model": "painting_1",
|
|
||||||
"material": "painting_1_a",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
35.0,
|
|
||||||
30.0,
|
|
||||||
25.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_1_a",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_1_b"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 1-B",
|
|
||||||
"model": "painting_1",
|
|
||||||
"material": "painting_1_b",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
35.0,
|
|
||||||
32.0,
|
|
||||||
25.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_1_b",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_1_c"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 1-C",
|
|
||||||
"model": "painting_1",
|
|
||||||
"material": "painting_1_c",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
35.0,
|
|
||||||
30.0,
|
|
||||||
29.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_1_c",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_1_d"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 1-D",
|
|
||||||
"model": "painting_1",
|
|
||||||
"material": "painting_1_d",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
41.0,
|
|
||||||
30.0,
|
|
||||||
25.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_1_d",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_1_e"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 1-E",
|
|
||||||
"model": "painting_1",
|
|
||||||
"material": "painting_1_e",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
35.0,
|
|
||||||
38.0,
|
|
||||||
25.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_1_e",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_1_f"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 1-F",
|
|
||||||
"model": "painting_1",
|
|
||||||
"material": "painting_1_f",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
35.0,
|
|
||||||
30.0,
|
|
||||||
35.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_1_f",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_1_g"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 1-G",
|
|
||||||
"model": "painting_1",
|
|
||||||
"material": "painting_1_g",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
47.0,
|
|
||||||
30.0,
|
|
||||||
25.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_1_g",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_1_h"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 1-H",
|
|
||||||
"model": "painting_1",
|
|
||||||
"material": "painting_1_h",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
35.0,
|
|
||||||
44.0,
|
|
||||||
25.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_1_h",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_1_i"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 1-I",
|
|
||||||
"model": "painting_1",
|
|
||||||
"material": "painting_1_i",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
35.0,
|
|
||||||
30.0,
|
|
||||||
41.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_1_i",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_1_j"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 1-J",
|
|
||||||
"model": "painting_1",
|
|
||||||
"material": "painting_1_j",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
53.0,
|
|
||||||
30.0,
|
|
||||||
25.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_1_j",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_1_a"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 2-A",
|
|
||||||
"model": "painting_2",
|
|
||||||
"material": "painting_2_a",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
28.0,
|
|
||||||
35.0,
|
|
||||||
42.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_2_a",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_2_b"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 2-B",
|
|
||||||
"model": "painting_2",
|
|
||||||
"material": "painting_2_b",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
28.0,
|
|
||||||
37.0,
|
|
||||||
42.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_2_b",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_2_c"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 2-C",
|
|
||||||
"model": "painting_2",
|
|
||||||
"material": "painting_2_c",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
28.0,
|
|
||||||
35.0,
|
|
||||||
46.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_2_c",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_2_d"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 2-D",
|
|
||||||
"model": "painting_2",
|
|
||||||
"material": "painting_2_d",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
34.0,
|
|
||||||
35.0,
|
|
||||||
42.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_2_d",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_2_e"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 2-E",
|
|
||||||
"model": "painting_2",
|
|
||||||
"material": "painting_2_e",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
28.0,
|
|
||||||
43.0,
|
|
||||||
42.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_2_e",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_2_f"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 2-F",
|
|
||||||
"model": "painting_2",
|
|
||||||
"material": "painting_2_f",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
28.0,
|
|
||||||
35.0,
|
|
||||||
52.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_2_f",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_2_g"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 2-G",
|
|
||||||
"model": "painting_2",
|
|
||||||
"material": "painting_2_g",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
40.0,
|
|
||||||
35.0,
|
|
||||||
42.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_2_g",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_2_h"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 2-H",
|
|
||||||
"model": "painting_2",
|
|
||||||
"material": "painting_2_h",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
28.0,
|
|
||||||
49.0,
|
|
||||||
42.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_2_h",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_2_i"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 2-I",
|
|
||||||
"model": "painting_2",
|
|
||||||
"material": "painting_2_i",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
28.0,
|
|
||||||
35.0,
|
|
||||||
58.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_2_i",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_2_j"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 2-J",
|
|
||||||
"model": "painting_2",
|
|
||||||
"material": "painting_2_j",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
46.0,
|
|
||||||
35.0,
|
|
||||||
42.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_2_j",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_2_k"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 2-K",
|
|
||||||
"model": "painting_2",
|
|
||||||
"material": "painting_2_k",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
28.0,
|
|
||||||
55.0,
|
|
||||||
42.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_2_k",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_2_a"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 3-A",
|
|
||||||
"model": "painting_3",
|
|
||||||
"material": "painting_3_a",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
30.0,
|
|
||||||
40.0,
|
|
||||||
35.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_3_a",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_3_b"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 3-B",
|
|
||||||
"model": "painting_3",
|
|
||||||
"material": "painting_3_b",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
30.0,
|
|
||||||
42.0,
|
|
||||||
35.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_3_b",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_3_c"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 3-C",
|
|
||||||
"model": "painting_3",
|
|
||||||
"material": "painting_3_c",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
30.0,
|
|
||||||
40.0,
|
|
||||||
39.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_3_c",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_3_d"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 3-D",
|
|
||||||
"model": "painting_3",
|
|
||||||
"material": "painting_3_d",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
36.0,
|
|
||||||
40.0,
|
|
||||||
35.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_3_d",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_3_e"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 3-E",
|
|
||||||
"model": "painting_3",
|
|
||||||
"material": "painting_3_e",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
30.0,
|
|
||||||
48.0,
|
|
||||||
35.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_3_e",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_3_f"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 3-F",
|
|
||||||
"model": "painting_3",
|
|
||||||
"material": "painting_3_f",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
30.0,
|
|
||||||
40.0,
|
|
||||||
45.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_3_f",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_3_g"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 3-G",
|
|
||||||
"model": "painting_3",
|
|
||||||
"material": "painting_3_g",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
42.0,
|
|
||||||
40.0,
|
|
||||||
35.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_3_g",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_3_h"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 3-H",
|
|
||||||
"model": "painting_3",
|
|
||||||
"material": "painting_3_h",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
30.0,
|
|
||||||
54.0,
|
|
||||||
35.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_3_h",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_3_i"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 3-I",
|
|
||||||
"model": "painting_3",
|
|
||||||
"material": "painting_3_i",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
30.0,
|
|
||||||
40.0,
|
|
||||||
51.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_3_i",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_3_j"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 3-J",
|
|
||||||
"model": "painting_3",
|
|
||||||
"material": "painting_3_j",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
48.0,
|
|
||||||
40.0,
|
|
||||||
35.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_3_j",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_3_k"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 3-K",
|
|
||||||
"model": "painting_3",
|
|
||||||
"material": "painting_3_k",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
30.0,
|
|
||||||
60.0,
|
|
||||||
35.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_3_k",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_3_a"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 4-A",
|
|
||||||
"model": "painting_4",
|
|
||||||
"material": "painting_4_a",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
40.0,
|
|
||||||
30.0,
|
|
||||||
35.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_4_a",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_4_b"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 4-B",
|
|
||||||
"model": "painting_4",
|
|
||||||
"material": "painting_4_b",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
40.0,
|
|
||||||
32.0,
|
|
||||||
35.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_4_b",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_4_c"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 4-C",
|
|
||||||
"model": "painting_4",
|
|
||||||
"material": "painting_4_c",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
40.0,
|
|
||||||
30.0,
|
|
||||||
39.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_4_c",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_4_d"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 4-D",
|
|
||||||
"model": "painting_4",
|
|
||||||
"material": "painting_4_d",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
46.0,
|
|
||||||
30.0,
|
|
||||||
35.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_4_d",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_4_e"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 4-E",
|
|
||||||
"model": "painting_4",
|
|
||||||
"material": "painting_4_e",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
40.0,
|
|
||||||
38.0,
|
|
||||||
35.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_4_e",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_4_f"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 4-F",
|
|
||||||
"model": "painting_4",
|
|
||||||
"material": "painting_4_f",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
40.0,
|
|
||||||
30.0,
|
|
||||||
45.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_4_f",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_4_g"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 4-G",
|
|
||||||
"model": "painting_4",
|
|
||||||
"material": "painting_4_g",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
52.0,
|
|
||||||
30.0,
|
|
||||||
35.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_4_g",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_4_h"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 4-H",
|
|
||||||
"model": "painting_4",
|
|
||||||
"material": "painting_4_h",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
40.0,
|
|
||||||
44.0,
|
|
||||||
35.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_4_h",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_4_i"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 4-I",
|
|
||||||
"model": "painting_4",
|
|
||||||
"material": "painting_4_i",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
40.0,
|
|
||||||
30.0,
|
|
||||||
51.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_4_i",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_4_j"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 4-J",
|
|
||||||
"model": "painting_4",
|
|
||||||
"material": "painting_4_j",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
58.0,
|
|
||||||
30.0,
|
|
||||||
35.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_4_j",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_4_k"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 4-K",
|
|
||||||
"model": "painting_4",
|
|
||||||
"material": "painting_4_k",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
40.0,
|
|
||||||
50.0,
|
|
||||||
35.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_4_k",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_4_a"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 5-A",
|
|
||||||
"model": "painting_5",
|
|
||||||
"material": "painting_5_a",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
30.0,
|
|
||||||
30.0,
|
|
||||||
40.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_5_a",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_5_b"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 5-B",
|
|
||||||
"model": "painting_5",
|
|
||||||
"material": "painting_5_b",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
30.0,
|
|
||||||
32.0,
|
|
||||||
40.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_5_b",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_5_c"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 5-C",
|
|
||||||
"model": "painting_5",
|
|
||||||
"material": "painting_5_c",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
30.0,
|
|
||||||
30.0,
|
|
||||||
44.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_5_c",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_5_d"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 5-D",
|
|
||||||
"model": "painting_5",
|
|
||||||
"material": "painting_5_d",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
36.0,
|
|
||||||
30.0,
|
|
||||||
40.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_5_d",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_5_e"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Painting 5-E",
|
|
||||||
"model": "painting_5",
|
|
||||||
"material": "painting_5_e",
|
|
||||||
"scale": 1.0,
|
|
||||||
"tabs": "paintings",
|
|
||||||
"type": "underlayer",
|
|
||||||
"crafting_color": [
|
|
||||||
30.0,
|
|
||||||
38.0,
|
|
||||||
40.0
|
|
||||||
],
|
|
||||||
"decoref": "painting_5_e",
|
|
||||||
"script": {
|
|
||||||
"tool_modelswitch": {
|
|
||||||
"link": "painting_5_a"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"bounding_boxes": []
|
|
||||||
}
|
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 3.5 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 3.0 KiB |
|
After Width: | Height: | Size: 2.2 KiB |
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 3.3 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 4.2 KiB |
|
After Width: | Height: | Size: 2.6 KiB |
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 3.9 KiB |
|
After Width: | Height: | Size: 2.2 KiB |
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 2.6 KiB |
|
After Width: | Height: | Size: 2.6 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 3.0 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 3.7 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 2.6 KiB |
|
After Width: | Height: | Size: 3.0 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 2.2 KiB |
|
After Width: | Height: | Size: 2.6 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 2.6 KiB |
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 2.8 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 3.5 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 2.7 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 3.0 KiB |
|
After Width: | Height: | Size: 2.2 KiB |
|
After Width: | Height: | Size: 2.2 KiB |