Compare commits

...

4 Commits

@ -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+.

@ -11,13 +11,13 @@ neoforge_loader_range=[4,)
fabric_loader_version=0.18.2
## Mod Properties
mod_id=decocraft_paintings
mod_name=Decocraft Paintings Addon
mod_id=decocraft_kids
mod_name=Decocraft Kids Addon
mod_license=All Rights Reserved
mod_version=1.0.0
mod_group_id=com.razz.decocraft.paintings
mod_authors=Momo, Razz, ProfMobius, Taelnia
mod_description=Adds painting decorations to Decocraft
mod_group_id=com.razz.decocraft.kids
mod_authors=Momo, Razz, ProfMobius
mod_description=Adds kids decorations to Decocraft
# Decocraft minimum version
decocraft_version=3.0.7
decocraft_version=3.0.7

Binary file not shown.

@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME

2
gradlew vendored

@ -1,7 +1,7 @@
#!/bin/sh
#
# Copyright © 2015-2021 the original authors.
# Copyright © 2015 the original authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.

188
gradlew.bat vendored

@ -1,94 +1,94 @@
@rem
@rem Copyright 2015 the original author or authors.
@rem
@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 obtain a copy of the License at
@rem
@rem https://www.apache.org/licenses/LICENSE-2.0
@rem
@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 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
@rem
@rem SPDX-License-Identifier: Apache-2.0
@rem
@if "%DEBUG%"=="" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@rem
@rem ##########################################################################
@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal
set DIRNAME=%~dp0
if "%DIRNAME%"=="" set DIRNAME=.
@rem This is normally unused
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@rem Resolve any "." and ".." in APP_HOME to make it shorter.
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.
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if %ERRORLEVEL% equ 0 goto execute
echo. 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 Please set the JAVA_HOME variable in your environment to match the 1>&2
echo location of your Java installation. 1>&2
goto fail
:findJavaFromJavaHome
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
if exist "%JAVA_EXE%" goto execute
echo. 1>&2
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
echo. 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
goto fail
:execute
@rem Setup the command line
set CLASSPATH=
@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" %*
:end
@rem End local scope for the variables with windows NT shell
if %ERRORLEVEL% equ 0 goto mainEnd
:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
set EXIT_CODE=%ERRORLEVEL%
if %EXIT_CODE% equ 0 set EXIT_CODE=1
if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
exit /b %EXIT_CODE%
:mainEnd
if "%OS%"=="Windows_NT" endlocal
:omega
@rem
@rem Copyright 2015 the original author or authors.
@rem
@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 obtain a copy of the License at
@rem
@rem https://www.apache.org/licenses/LICENSE-2.0
@rem
@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 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
@rem
@rem SPDX-License-Identifier: Apache-2.0
@rem
@if "%DEBUG%"=="" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@rem
@rem ##########################################################################
@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal
set DIRNAME=%~dp0
if "%DIRNAME%"=="" set DIRNAME=.
@rem This is normally unused
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@rem Resolve any "." and ".." in APP_HOME to make it shorter.
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.
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if %ERRORLEVEL% equ 0 goto execute
echo. 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 Please set the JAVA_HOME variable in your environment to match the 1>&2
echo location of your Java installation. 1>&2
goto fail
:findJavaFromJavaHome
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
if exist "%JAVA_EXE%" goto execute
echo. 1>&2
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
echo. 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
goto fail
:execute
@rem Setup the command line
set CLASSPATH=
@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" %*
:end
@rem End local scope for the variables with windows NT shell
if %ERRORLEVEL% equ 0 goto mainEnd
:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
set EXIT_CODE=%ERRORLEVEL%
if %EXIT_CODE% equ 0 set EXIT_CODE=1
if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
exit /b %EXIT_CODE%
:mainEnd
if "%OS%"=="Windows_NT" endlocal
:omega

@ -8,4 +8,4 @@ plugins {
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.9.0'
}
rootProject.name = 'decocraft-paintings'
rootProject.name = 'decocraft-kids'

@ -1,4 +1,4 @@
[
"groups.json",
"paintings.json"
]
"kids.json"
]

@ -1,3 +1,3 @@
{
"paintings": { "label": "itemGroup.decocraft.paintings", "icon": "painting_1_a" }
}
"kids": { "label": "itemGroup.decocraft.kids", "icon": "teddy_bear_orange" }
}

@ -0,0 +1,885 @@
{
"models": [
{
"name": "Ceiling Fan Crayon",
"decoref": "ceiling_fan_crayon",
"material": "ceiling_fan_crayon",
"model": "ceiling_fan_crayon",
"scale": 1.0,
"tabs": "lighting",
"default_animation": "animation.ceiling_fan_idle",
"type": "animated",
"script": {
"on_use": {
"animations": [
{
"to": "animation.ceiling_fan_on",
"from": "animation.ceiling_fan_idle"
},
{
"to": "animation.ceiling_fan_idle",
"from": "animation.ceiling_fan_on"
}
]
},
"light": 15
},
"crafting_color": [0, 0, 0]
},
{
"name": "Crayon Box",
"decoref": "crayon_box",
"material": "crayon_box",
"model": "crayon_box",
"scale": 1.0,
"tabs": "clutter",
"crafting_color": [0, 0, 0]
},{
"name": "Crib Birch",
"decoref": "crib_birch",
"material": "crib_birch",
"model": "crib",
"scale": 1.0,
"tabs": "comfort",
"default_animation": "animation.crib.idle",
"type": "bed",
"script": {
"shift_on_use": {
"animations": [
{
"to": "animation.crib.spin",
"from": "animation.crib.idle"
},
{
"to": "animation.crib.idle",
"from": "animation.crib.spin"
}
]
},
"tool_modelswitch": {
"link": "crib_oak"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Crib Oak",
"decoref": "crib_oak",
"material": "crib_oak",
"model": "crib",
"scale": 1.0,
"tabs": "comfort",
"default_animation": "animation.crib.idle",
"type": "bed",
"script": {
"shift_on_use": {
"animations": [
{
"to": "animation.crib.spin",
"from": "animation.crib.idle"
},
{
"to": "animation.crib.idle",
"from": "animation.crib.spin"
}
]
},
"tool_modelswitch": {
"link": "crib_palm"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Crib Palm",
"decoref": "crib_palm",
"material": "crib_palm",
"model": "crib",
"scale": 1.0,
"tabs": "comfort",
"default_animation": "animation.crib.idle",
"type": "bed",
"script": {
"shift_on_use": {
"animations": [
{
"to": "animation.crib.spin",
"from": "animation.crib.idle"
},
{
"to": "animation.crib.idle",
"from": "animation.crib.spin"
}
]
},
"tool_modelswitch": {
"link": "crib_spruce"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Crib Spruce",
"decoref": "crib_spruce",
"material": "crib_spruce",
"model": "crib",
"scale": 1.0,
"tabs": "comfort",
"default_animation": "animation.crib.idle",
"type": "bed",
"script": {
"shift_on_use": {
"animations": [
{
"to": "animation.crib.spin",
"from": "animation.crib.idle"
},
{
"to": "animation.crib.idle",
"from": "animation.crib.spin"
}
]
},
"tool_modelswitch": {
"link": "crib_white"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Crib White",
"decoref": "crib_white",
"material": "crib_white",
"model": "crib",
"scale": 1.0,
"tabs": "comfort",
"default_animation": "animation.crib.idle",
"type": "bed",
"script": {
"shift_on_use": {
"animations": [
{
"to": "animation.crib.spin",
"from": "animation.crib.idle"
},
{
"to": "animation.crib.idle",
"from": "animation.crib.spin"
}
]
},
"tool_modelswitch": {
"link": "crib_black"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Crib Black",
"decoref": "crib_black",
"material": "crib_black",
"model": "crib",
"scale": 1.0,
"tabs": "comfort",
"default_animation": "animation.crib.idle",
"type": "bed",
"script": {
"shift_on_use": {
"animations": [
{
"to": "animation.crib.spin",
"from": "animation.crib.idle"
},
{
"to": "animation.crib.idle",
"from": "animation.crib.spin"
}
]
},
"tool_modelswitch": {
"link": "crib_birch"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Dollhouse",
"decoref": "dollhouse",
"material": "dollhouse",
"model": "dollhouse",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"script": {
"on_use": {
"link": "dollhouse_open"
},
"tool_modelswitch": {
"link": "dump_truck"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Dollhouse Open",
"decoref": "dollhouse_open",
"material": "dollhouse",
"model": "dollhouse_open",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"hidden": true,
"script": {
"on_use": {
"link": "dollhouse"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Dump Truck",
"decoref": "dump_truck",
"material": "dump_truck",
"model": "dump_truck",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"crafting_color": [0, 0, 0]
},
{
"name": "Hot Air Balloon Red",
"decoref": "hot_air_balloon_red",
"material": "hot_air_balloon_red",
"model": "hot_air_balloon",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"script": {
"tool_modelswitch": {
"link": "hot_air_balloon_orange"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Hot Air Balloon Orange",
"decoref": "hot_air_balloon_orange",
"material": "hot_air_balloon_orange",
"model": "hot_air_balloon",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"script": {
"tool_modelswitch": {
"link": "hot_air_balloon_yellow"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Hot Air Balloon Yellow",
"decoref": "hot_air_balloon_yellow",
"material": "hot_air_balloon_yellow",
"model": "hot_air_balloon",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"script": {
"tool_modelswitch": {
"link": "hot_air_balloon_green"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Hot Air Balloon Green",
"decoref": "hot_air_balloon_green",
"material": "hot_air_balloon_green",
"model": "hot_air_balloon",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"script": {
"tool_modelswitch": {
"link": "hot_air_balloon_cyan"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Hot Air Balloon Cyan",
"decoref": "hot_air_balloon_cyan",
"material": "hot_air_balloon_cyan",
"model": "hot_air_balloon",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"script": {
"tool_modelswitch": {
"link": "hot_air_balloon_blue"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Hot Air Balloon Blue",
"decoref": "hot_air_balloon_blue",
"material": "hot_air_balloon_blue",
"model": "hot_air_balloon",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"script": {
"tool_modelswitch": {
"link": "hot_air_balloon_purple"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Hot Air Balloon Purple",
"decoref": "hot_air_balloon_purple",
"material": "hot_air_balloon_purple",
"model": "hot_air_balloon",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"script": {
"tool_modelswitch": {
"link": "hot_air_balloon_pink"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Hot Air Balloon Pink",
"decoref": "hot_air_balloon_pink",
"material": "hot_air_balloon_pink",
"model": "hot_air_balloon",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"script": {
"tool_modelswitch": {
"link": "hot_air_balloon_berry"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Hot Air Balloon Berry",
"decoref": "hot_air_balloon_berry",
"material": "hot_air_balloon_berry",
"model": "hot_air_balloon",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"script": {
"tool_modelswitch": {
"link": "hot_air_balloon_p_red"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Hot Air Balloon P Red",
"decoref": "hot_air_balloon_p_red",
"material": "hot_air_balloon_p_red",
"model": "hot_air_balloon",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"script": {
"tool_modelswitch": {
"link": "hot_air_balloon_p_orange"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Hot Air Balloon P Orange",
"decoref": "hot_air_balloon_p_orange",
"material": "hot_air_balloon_p_orange",
"model": "hot_air_balloon",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"script": {
"tool_modelswitch": {
"link": "hot_air_balloon_p_yellow"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Hot Air Balloon P Yellow",
"decoref": "hot_air_balloon_p_yellow",
"material": "hot_air_balloon_p_yellow",
"model": "hot_air_balloon",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"script": {
"tool_modelswitch": {
"link": "hot_air_balloon_p_lime"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Hot Air Balloon P Lime",
"decoref": "hot_air_balloon_p_lime",
"material": "hot_air_balloon_p_lime",
"model": "hot_air_balloon",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"script": {
"tool_modelswitch": {
"link": "hot_air_balloon_p_green"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Hot Air Balloon P Green",
"decoref": "hot_air_balloon_p_green",
"material": "hot_air_balloon_p_green",
"model": "hot_air_balloon",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"script": {
"tool_modelswitch": {
"link": "hot_air_balloon_p_cyan"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Hot Air Balloon P Cyan",
"decoref": "hot_air_balloon_p_cyan",
"material": "hot_air_balloon_p_cyan",
"model": "hot_air_balloon",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"script": {
"tool_modelswitch": {
"link": "hot_air_balloon_p_blue"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Hot Air Balloon P Blue",
"decoref": "hot_air_balloon_p_blue",
"material": "hot_air_balloon_p_blue",
"model": "hot_air_balloon",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"script": {
"tool_modelswitch": {
"link": "hot_air_balloon_p_purple"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Hot Air Balloon P Purple",
"decoref": "hot_air_balloon_p_purple",
"material": "hot_air_balloon_p_purple",
"model": "hot_air_balloon",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"script": {
"tool_modelswitch": {
"link": "hot_air_balloon_p_pink"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Hot Air Balloon P Pink",
"decoref": "hot_air_balloon_p_pink",
"material": "hot_air_balloon_p_pink",
"model": "hot_air_balloon",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"script": {
"tool_modelswitch": {
"link": "hot_air_balloon_red"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Jack In The Box",
"decoref": "jack_in_the_box",
"material": "jack_in_the_box",
"model": "jack_in_the_box",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"crafting_color": [0, 0, 0]
},
{
"name": "Rocking Horse",
"decoref": "rocking_horse",
"material": "rocking_horse",
"model": "rocking_horse",
"scale": 1.0,
"tabs": "toys",
"type": "seat",
"crafting_color": [0, 0, 0]
},
{
"name": "Rubber Ducky",
"decoref": "rubber_ducky",
"material": "rubber_ducky",
"model": "rubber_ducky",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"crafting_color": [0, 0, 0]
},
{
"name": "Stuffed Creeper",
"decoref": "stuffed_creeper",
"material": "stuffed_creeper",
"model": "stuffed_creeper",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"crafting_color": [0, 0, 0]
},
{
"name": "Bunny Plush Light Blue",
"decoref": "bunny_plush_light_blue",
"material": "teddy_bear_light_blue",
"model": "bunny_plush",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"crafting_color": [0, 0, 0]
},
{
"name": "Teddy Bear Red",
"decoref": "teddy_bear_red",
"material": "teddy_bear_red",
"model": "teddy_bear",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"script": {
"tool_modelswitch": {
"link": "teddy_bear_orange"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Teddy Bear Orange",
"decoref": "teddy_bear_orange",
"material": "teddy_bear_orange",
"model": "teddy_bear",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"script": {
"tool_modelswitch": {
"link": "teddy_bear_yellow"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Teddy Bear Yellow",
"decoref": "teddy_bear_yellow",
"material": "teddy_bear_yellow",
"model": "teddy_bear",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"script": {
"tool_modelswitch": {
"link": "teddy_bear_lime"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Teddy Bear Lime",
"decoref": "teddy_bear_lime",
"material": "teddy_bear_lime",
"model": "teddy_bear",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"script": {
"tool_modelswitch": {
"link": "teddy_bear_cyan"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Teddy Bear Cyan",
"decoref": "teddy_bear_cyan",
"material": "teddy_bear_cyan",
"model": "teddy_bear",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"script": {
"tool_modelswitch": {
"link": "teddy_bear_light_blue"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Teddy Bear Light Blue",
"decoref": "teddy_bear_light_blue",
"material": "teddy_bear_light_blue",
"model": "teddy_bear",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"script": {
"tool_modelswitch": {
"link": "teddy_bear_lavender"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Teddy Bear Lavender",
"decoref": "teddy_bear_lavender",
"material": "teddy_bear_lavender",
"model": "teddy_bear",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"script": {
"tool_modelswitch": {
"link": "teddy_bear_pink"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Teddy Bear Pink",
"decoref": "teddy_bear_pink",
"material": "teddy_bear_pink",
"model": "teddy_bear",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"script": {
"tool_modelswitch": {
"link": "teddy_bear_white"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Teddy Bear White",
"decoref": "teddy_bear_white",
"material": "teddy_bear_white",
"model": "teddy_bear",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"script": {
"tool_modelswitch": {
"link": "teddy_bear_cream"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Teddy Bear Cream",
"decoref": "teddy_bear_cream",
"material": "teddy_bear_cream",
"model": "teddy_bear",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"script": {
"tool_modelswitch": {
"link": "teddy_bear_brown"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Teddy Bear Brown",
"decoref": "teddy_bear_brown",
"material": "teddy_bear_brown",
"model": "teddy_bear",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"script": {
"tool_modelswitch": {
"link": "teddy_bear_gray"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Teddy Bear Gray",
"decoref": "teddy_bear_gray",
"material": "teddy_bear_gray",
"model": "teddy_bear",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"script": {
"tool_modelswitch": {
"link": "teddy_bear_black"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Teddy Bear Black",
"decoref": "teddy_bear_black",
"material": "teddy_bear_black",
"model": "teddy_bear",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"script": {
"tool_modelswitch": {
"link": "teddy_bear_rainbow"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Teddy Bear Rainbow",
"decoref": "teddy_bear_rainbow",
"material": "teddy_bear_rainbow",
"model": "teddy_bear",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"script": {
"tool_modelswitch": {
"link": "teddy_bear_red"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Toy Boat",
"decoref": "toy_boat",
"material": "toy_boat",
"model": "toy_boat",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"crafting_color": [0, 0, 0]
},{
"name": "Train Set 1",
"decoref": "train_set_1",
"material": "train_set_1",
"model": "train_set_1",
"scale": 1.0,
"tabs": "toys",
"default_animation": "animation.train_set_idle",
"type": "animated",
"script": {
"on_use": {
"animations": [
{
"to": "animation.train_set_move",
"from": "animation.train_set_idle"
},
{
"to": "animation.train_set_idle",
"from": "animation.train_set_move"
}
]
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Wooden Blocks 1",
"decoref": "wooden_blocks_1",
"material": "wooden_blocks_1",
"model": "wooden_blocks",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"script": {
"tool_modelswitch": {
"link": "wooden_blocks_2"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Wooden Blocks 2",
"decoref": "wooden_blocks_2",
"material": "wooden_blocks_2",
"model": "wooden_blocks",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"script": {
"tool_modelswitch": {
"link": "wooden_blocks_3"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Wooden Blocks 3",
"decoref": "wooden_blocks_3",
"material": "wooden_blocks_3",
"model": "wooden_blocks",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"script": {
"tool_modelswitch": {
"link": "wooden_blocks_4"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Wooden Blocks 4",
"decoref": "wooden_blocks_4",
"material": "wooden_blocks_4",
"model": "wooden_blocks",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"script": {
"tool_modelswitch": {
"link": "wooden_blocks_1"
}
},
"crafting_color": [0, 0, 0]
},
{
"name": "Xylophone",
"decoref": "xylophone",
"material": "xylophone",
"model": "xylophone",
"scale": 1.0,
"tabs": "toys",
"rotatable": true,
"crafting_color": [0, 0, 0]
}
],
"bounding_boxes": []
}

@ -1,99 +0,0 @@
{
"itemGroup.decocraft.paintings": "Decocraft - Paintings",
"block.decocraft.painting_1_a": "Painting 1-A",
"block.decocraft.painting_1_b": "Painting 1-B",
"block.decocraft.painting_1_c": "Painting 1-C",
"block.decocraft.painting_1_d": "Painting 1-D",
"block.decocraft.painting_1_e": "Painting 1-E",
"block.decocraft.painting_1_f": "Painting 1-F",
"block.decocraft.painting_1_g": "Painting 1-G",
"block.decocraft.painting_1_h": "Painting 1-H",
"block.decocraft.painting_1_i": "Painting 1-I",
"block.decocraft.painting_1_j": "Painting 1-J",
"block.decocraft.painting_2_a": "Painting 2-A",
"block.decocraft.painting_2_b": "Painting 2-B",
"block.decocraft.painting_2_c": "Painting 2-C",
"block.decocraft.painting_2_d": "Painting 2-D",
"block.decocraft.painting_2_e": "Painting 2-E",
"block.decocraft.painting_2_f": "Painting 2-F",
"block.decocraft.painting_2_g": "Painting 2-G",
"block.decocraft.painting_2_h": "Painting 2-H",
"block.decocraft.painting_2_i": "Painting 2-I",
"block.decocraft.painting_2_j": "Painting 2-J",
"block.decocraft.painting_2_k": "Painting 2-K",
"block.decocraft.painting_3_a": "Painting 3-A",
"block.decocraft.painting_3_b": "Painting 3-B",
"block.decocraft.painting_3_c": "Painting 3-C",
"block.decocraft.painting_3_d": "Painting 3-D",
"block.decocraft.painting_3_e": "Painting 3-E",
"block.decocraft.painting_3_f": "Painting 3-F",
"block.decocraft.painting_3_g": "Painting 3-G",
"block.decocraft.painting_3_h": "Painting 3-H",
"block.decocraft.painting_3_i": "Painting 3-I",
"block.decocraft.painting_3_j": "Painting 3-J",
"block.decocraft.painting_3_k": "Painting 3-K",
"block.decocraft.painting_4_a": "Painting 4-A",
"block.decocraft.painting_4_b": "Painting 4-B",
"block.decocraft.painting_4_c": "Painting 4-C",
"block.decocraft.painting_4_d": "Painting 4-D",
"block.decocraft.painting_4_e": "Painting 4-E",
"block.decocraft.painting_4_f": "Painting 4-F",
"block.decocraft.painting_4_g": "Painting 4-G",
"block.decocraft.painting_4_h": "Painting 4-H",
"block.decocraft.painting_4_i": "Painting 4-I",
"block.decocraft.painting_4_j": "Painting 4-J",
"block.decocraft.painting_4_k": "Painting 4-K",
"block.decocraft.painting_5_a": "Painting 5-A",
"block.decocraft.painting_5_b": "Painting 5-B",
"block.decocraft.painting_5_c": "Painting 5-C",
"block.decocraft.painting_5_d": "Painting 5-D",
"block.decocraft.painting_5_e": "Painting 5-E",
"item.decocraft.painting_1_a": "Painting 1-A",
"item.decocraft.painting_1_b": "Painting 1-B",
"item.decocraft.painting_1_c": "Painting 1-C",
"item.decocraft.painting_1_d": "Painting 1-D",
"item.decocraft.painting_1_e": "Painting 1-E",
"item.decocraft.painting_1_f": "Painting 1-F",
"item.decocraft.painting_1_g": "Painting 1-G",
"item.decocraft.painting_1_h": "Painting 1-H",
"item.decocraft.painting_1_i": "Painting 1-I",
"item.decocraft.painting_1_j": "Painting 1-J",
"item.decocraft.painting_2_a": "Painting 2-A",
"item.decocraft.painting_2_b": "Painting 2-B",
"item.decocraft.painting_2_c": "Painting 2-C",
"item.decocraft.painting_2_d": "Painting 2-D",
"item.decocraft.painting_2_e": "Painting 2-E",
"item.decocraft.painting_2_f": "Painting 2-F",
"item.decocraft.painting_2_g": "Painting 2-G",
"item.decocraft.painting_2_h": "Painting 2-H",
"item.decocraft.painting_2_i": "Painting 2-I",
"item.decocraft.painting_2_j": "Painting 2-J",
"item.decocraft.painting_2_k": "Painting 2-K",
"item.decocraft.painting_3_a": "Painting 3-A",
"item.decocraft.painting_3_b": "Painting 3-B",
"item.decocraft.painting_3_c": "Painting 3-C",
"item.decocraft.painting_3_d": "Painting 3-D",
"item.decocraft.painting_3_e": "Painting 3-E",
"item.decocraft.painting_3_f": "Painting 3-F",
"item.decocraft.painting_3_g": "Painting 3-G",
"item.decocraft.painting_3_h": "Painting 3-H",
"item.decocraft.painting_3_i": "Painting 3-I",
"item.decocraft.painting_3_j": "Painting 3-J",
"item.decocraft.painting_3_k": "Painting 3-K",
"item.decocraft.painting_4_a": "Painting 4-A",
"item.decocraft.painting_4_b": "Painting 4-B",
"item.decocraft.painting_4_c": "Painting 4-C",
"item.decocraft.painting_4_d": "Painting 4-D",
"item.decocraft.painting_4_e": "Painting 4-E",
"item.decocraft.painting_4_f": "Painting 4-F",
"item.decocraft.painting_4_g": "Painting 4-G",
"item.decocraft.painting_4_h": "Painting 4-H",
"item.decocraft.painting_4_i": "Painting 4-I",
"item.decocraft.painting_4_j": "Painting 4-J",
"item.decocraft.painting_4_k": "Painting 4-K",
"item.decocraft.painting_5_a": "Painting 5-A",
"item.decocraft.painting_5_b": "Painting 5-B",
"item.decocraft.painting_5_c": "Painting 5-C",
"item.decocraft.painting_5_d": "Painting 5-D",
"item.decocraft.painting_5_e": "Painting 5-E"
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -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": []
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 916 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 912 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 594 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 874 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

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

Loading…
Cancel
Save