commit 4fa98168481b1f774ba88d7dbbea79726bf577e5 Author: shylie Date: Tue Jul 30 14:33:14 2024 -0400 Initial commit diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..5fe1156 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,7 @@ +# Disable autocrlf on generated files, they always generate with LF +# Add any extra files or paths here to make git stop saying they +# are changed when only line endings change. +src/generated/**/.cache/cache text eol=lf +src/generated/**/*.json text eol=lf +*.png filter=lfs diff=lfs merge=lfs -text +*.gif filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5d3192c --- /dev/null +++ b/.gitignore @@ -0,0 +1,26 @@ +# eclipse +bin +*.launch +.settings +.metadata +.classpath +.project + +# idea +out +*.ipr +*.iws +*.iml +.idea + +# gradle +build +.gradle + +# other +eclipse +run +run-data + +# Files from Forge MDK +forge*changelog.txt diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..5d88235 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,19 @@ +zlib License + +(C) 2024 Shylie + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. \ No newline at end of file diff --git a/README.txt b/README.txt new file mode 100644 index 0000000..6ae8a68 --- /dev/null +++ b/README.txt @@ -0,0 +1,46 @@ + +Source installation information for modders +------------------------------------------- +This code follows the Minecraft Forge installation methodology. It will apply +some small patches to the vanilla MCP source code, giving you and it access +to some of the data and functions you need to build a successful mod. + +Note also that the patches are built against "un-renamed" MCP source code (aka +SRG Names) - this means that you will not be able to read them directly against +normal code. + +Setup Process: +============================== + +Step 1: Open your command-line and browse to the folder where you extracted the zip file. + +Step 2: You're left with a choice. +If you prefer to use Eclipse: +1. Run the following command: `./gradlew genEclipseRuns` +2. Open Eclipse, Import > Existing Gradle Project > Select Folder + or run `gradlew eclipse` to generate the project. + +If you prefer to use IntelliJ: +1. Open IDEA, and import project. +2. Select your build.gradle file and have it import. +3. Run the following command: `./gradlew genIntellijRuns` +4. Refresh the Gradle Project in IDEA if required. + +If at any point you are missing libraries in your IDE, or you've run into problems you can +run `gradlew --refresh-dependencies` to refresh the local cache. `gradlew clean` to reset everything +(this does not affect your code) and then start the process again. + +Mapping Names: +============================= +By default, the MDK is configured to use the official mapping names from Mojang for methods and fields +in the Minecraft codebase. These names are covered by a specific license. All modders should be aware of this +license, if you do not agree with it you can change your mapping names to other crowdsourced names in your +build.gradle. For the latest license text, refer to the mapping file itself, or the reference copy here: +https://github.com/MinecraftForge/MCPConfig/blob/master/Mojang.md + +Additional Resources: +========================= +Community Documentation: https://docs.minecraftforge.net/en/1.20.1/gettingstarted/ +LexManos' Install Video: https://youtu.be/8VEdtQLuLO0 +Forge Forums: https://forums.minecraftforge.net/ +Forge Discord: https://discord.minecraftforge.net/ diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..221f2cf --- /dev/null +++ b/build.gradle @@ -0,0 +1,231 @@ +plugins { + id 'eclipse' + id 'idea' + id 'maven-publish' + id 'net.minecraftforge.gradle' version '[6.0,6.2)' +} + +version = mod_version +group = mod_group_id + +base { + archivesName = mod_id +} + +// Mojang ships Java 17 to end users in 1.18+, so your mod should target Java 17. +java.toolchain.languageVersion = JavaLanguageVersion.of(17) + +println "Java: ${System.getProperty 'java.version'}, JVM: ${System.getProperty 'java.vm.version'} (${System.getProperty 'java.vendor'}), Arch: ${System.getProperty 'os.arch'}" +minecraft { + // The mappings can be changed at any time and must be in the following format. + // Channel: Version: + // official MCVersion Official field/method names from Mojang mapping files + // parchment YYYY.MM.DD-MCVersion Open community-sourced parameter names and javadocs layered on top of official + // + // You must be aware of the Mojang license when using the 'official' or 'parchment' mappings. + // See more information here: https://github.com/MinecraftForge/MCPConfig/blob/master/Mojang.md + // + // Parchment is an unofficial project maintained by ParchmentMC, separate from MinecraftForge + // Additional setup is needed to use their mappings: https://parchmentmc.org/docs/getting-started + // + // Use non-default mappings at your own risk. They may not always work. + // Simply re-run your setup task after changing the mappings to update your workspace. + mappings channel: mapping_channel, version: mapping_version + + // When true, this property will have all Eclipse/IntelliJ IDEA run configurations run the "prepareX" task for the given run configuration before launching the game. + // In most cases, it is not necessary to enable. + // enableEclipsePrepareRuns = true + // enableIdeaPrepareRuns = true + + // This property allows configuring Gradle's ProcessResources task(s) to run on IDE output locations before launching the game. + // It is REQUIRED to be set to true for this template to function. + // See https://docs.gradle.org/current/dsl/org.gradle.language.jvm.tasks.ProcessResources.html + copyIdeResources = true + + // When true, this property will add the folder name of all declared run configurations to generated IDE run configurations. + // The folder name can be set on a run configuration using the "folderName" property. + // By default, the folder name of a run configuration is the name of the Gradle project containing it. + // generateRunFolders = true + + // This property enables access transformers for use in development. + // They will be applied to the Minecraft artifact. + // The access transformer file can be anywhere in the project. + // However, it must be at "META-INF/accesstransformer.cfg" in the final mod jar to be loaded by Forge. + // This default location is a best practice to automatically put the file in the right place in the final jar. + // See https://docs.minecraftforge.net/en/latest/advanced/accesstransformers/ for more information. + // accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg') + + // Default run configurations. + // These can be tweaked, removed, or duplicated as needed. + runs { + // applies to all the run configs below + configureEach { + workingDirectory project.file('run') + + // Recommended logging data for a userdev environment + // The markers can be added/remove as needed separated by commas. + // "SCAN": For mods scan. + // "REGISTRIES": For firing of registry events. + // "REGISTRYDUMP": For getting the contents of all registries. + property 'forge.logging.markers', 'REGISTRIES' + + // Recommended logging level for the console + // You can set various levels here. + // Please read: https://stackoverflow.com/questions/2031163/when-to-use-the-different-log-levels + property 'forge.logging.console.level', 'debug' + + mods { + "${mod_id}" { + source sourceSets.main + } + } + } + + client { + // Comma-separated list of namespaces to load gametests from. Empty = all namespaces. + property 'forge.enabledGameTestNamespaces', mod_id + property 'mixin.env.remapRefMap', 'true' + property 'mixin.env.refMapRemappingFile', "${projectDir}/build/createSrgToMcp/output.srg" + } + + server { + property 'forge.enabledGameTestNamespaces', mod_id + args '--nogui' + property 'mixin.env.remapRefMap', 'true' + property 'mixin.env.refMapRemappingFile', "${projectDir}/build/createSrgToMcp/output.srg" + } + + // This run config launches GameTestServer and runs all registered gametests, then exits. + // By default, the server will crash when no gametests are provided. + // The gametest system is also enabled by default for other run configs under the /test command. + gameTestServer { + property 'forge.enabledGameTestNamespaces', mod_id + } + + data { + // example of overriding the workingDirectory set in configureEach above + workingDirectory project.file('run-data') + + // Specify the modid for data generation, where to output the resulting resource, and where to look for existing resources. + args '--mod', mod_id, '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/') + property 'mixin.env.remapRefMap', 'true' + property 'mixin.env.refMapRemappingFile', "${projectDir}/build/createSrgToMcp/output.srg" + } + } +} + +// Include resources generated by data generators. +sourceSets.main.resources { srcDir 'src/generated/resources' } + +repositories { + // Put repositories for dependencies here + // ForgeGradle automatically adds the Forge maven and Maven Central for you + + // If you have mod jar dependencies in ./libs, you can declare them as a repository like so. + // See https://docs.gradle.org/current/userguide/declaring_repositories.html#sub:flat_dir_resolver + // flatDir { + // dir 'libs' + // } + + maven { + url 'https://www.cursemaven.com' + } + maven { // jei + name = 'Jared' + url = 'https://maven.blamejared.com/' + } + maven { // curios + name = 'Illusive Soulworks maven' + url = 'https://maven.theillusivec4.top/' + } +} + +dependencies { + // Specify the version of Minecraft to use. + // Any artifact can be supplied so long as it has a "userdev" classifier artifact and is a compatible patcher artifact. + // The "userdev" classifier will be requested and setup by ForgeGradle. + // If the group id is "net.minecraft" and the artifact id is one of ["client", "server", "joined"], + // then special handling is done to allow a setup of a vanilla dependency without the use of an external repository. + minecraft "net.minecraftforge:forge:${minecraft_version}-${forge_version}" + + // Example mod dependency with JEI - using fg.deobf() ensures the dependency is remapped to your development mappings + // The JEI API is declared for compile time use, while the full JEI artifact is used at runtime + // compileOnly fg.deobf("mezz.jei:jei-${mc_version}-common-api:${jei_version}") + // compileOnly fg.deobf("mezz.jei:jei-${mc_version}-forge-api:${jei_version}") + // runtimeOnly fg.deobf("mezz.jei:jei-${mc_version}-forge:${jei_version}") + + // Example mod dependency using a mod jar from ./libs with a flat dir repository + // This maps to ./libs/coolmod-${mc_version}-${coolmod_version}.jar + // The group id is ignored when searching -- in this case, it is "blank" + // implementation fg.deobf("blank:coolmod-${mc_version}:${coolmod_version}") + + // For more info: + // http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html + // http://www.gradle.org/docs/current/userguide/dependency_management.html + + implementation fg.deobf("curse.maven:embers-rekindled-300777:${embers_version}") + implementation fg.deobf("mezz.jei:jei-${minecraft_version}-forge:${jei_version}") + + compileOnly fg.deobf("top.theillusivec4.curios:curios-forge:${curios_version}:api") + runtimeOnly fg.deobf("top.theillusivec4.curios:curios-forge:${curios_version}") +} + +// This block of code expands all declared replace properties in the specified resource targets. +// A missing property will result in an error. Properties are expanded using ${} Groovy notation. +// When "copyIdeResources" is enabled, this will also run before the game launches in IDE environments. +// See https://docs.gradle.org/current/dsl/org.gradle.language.jvm.tasks.ProcessResources.html +tasks.named('processResources', ProcessResources).configure { + var replaceProperties = [ + minecraft_version: minecraft_version, minecraft_version_range: minecraft_version_range, + forge_version: forge_version, forge_version_range: forge_version_range, + loader_version_range: loader_version_range, + mod_id: mod_id, mod_name: mod_name, mod_license: mod_license, mod_version: mod_version, + mod_authors: mod_authors, mod_description: mod_description, + ] + inputs.properties replaceProperties + + filesMatching(['META-INF/mods.toml', 'pack.mcmeta']) { + expand replaceProperties + [project: project] + } +} + +// Example for how to get properties into the manifest for reading at runtime. +tasks.named('jar', Jar).configure { + manifest { + attributes([ + 'Specification-Title' : mod_id, + 'Specification-Vendor' : mod_authors, + 'Specification-Version' : '1', // We are version 1 of ourselves + 'Implementation-Title' : project.name, + 'Implementation-Version' : project.jar.archiveVersion, + 'Implementation-Vendor' : mod_authors, + 'Implementation-Timestamp': new Date().format("yyyy-MM-dd'T'HH:mm:ssZ") + ]) + } + + // This is the preferred method to reobfuscate your jar file + finalizedBy 'reobfJar' +} + +// However if you are in a multi-project build, dev time needs unobfed jar files, so you can delay the obfuscation until publishing by doing: +// tasks.named('publish').configure { +// dependsOn 'reobfJar' +// } + +// Example configuration to allow publishing using the maven-publish plugin +publishing { + publications { + register('mavenJava', MavenPublication) { + artifact jar + } + } + repositories { + maven { + url "file://${project.projectDir}/mcmodsrepo" + } + } +} + +tasks.withType(JavaCompile).configureEach { + options.encoding = 'UTF-8' // Use the UTF-8 charset for Java compilation +} diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 0000000..eae8845 --- /dev/null +++ b/gradle.properties @@ -0,0 +1,63 @@ +# Sets default memory used for gradle commands. Can be overridden by user or command line properties. +# This is required to provide enough memory for the Minecraft decompilation process. +org.gradle.jvmargs=-Xmx3G +org.gradle.daemon=false + + +## Environment Properties + +# The Minecraft version must agree with the Forge version to get a valid artifact +minecraft_version=1.20.1 +# The Minecraft version range can use any release version of Minecraft as bounds. +# Snapshots, pre-releases, and release candidates are not guaranteed to sort properly +# as they do not follow standard versioning conventions. +minecraft_version_range=[1.20.1,1.21) +# The Forge version must agree with the Minecraft version to get a valid artifact +forge_version=47.3.1 +# The Forge version range can use any version of Forge as bounds or match the loader version range +forge_version_range=[47,) +# The loader version range can only use the major version of Forge/FML as bounds +loader_version_range=[47,) +# The mapping channel to use for mappings. +# The default set of supported mapping channels are ["official", "snapshot", "snapshot_nodoc", "stable", "stable_nodoc"]. +# Additional mapping channels can be registered through the "channelProviders" extension in a Gradle plugin. +# +# | Channel | Version | | +# |-----------|----------------------|--------------------------------------------------------------------------------| +# | official | MCVersion | Official field/method names from Mojang mapping files | +# | parchment | YYYY.MM.DD-MCVersion | Open community-sourced parameter names and javadocs layered on top of official | +# +# You must be aware of the Mojang license when using the 'official' or 'parchment' mappings. +# See more information here: https://github.com/MinecraftForge/MCPConfig/blob/master/Mojang.md +# +# Parchment is an unofficial project maintained by ParchmentMC, separate from Minecraft Forge. +# Additional setup is needed to use their mappings, see https://parchmentmc.org/docs/getting-started +mapping_channel=official +# The mapping version to query from the mapping channel. +# This must match the format required by the mapping channel. +mapping_version=1.20.1 + + +## Mod Properties + +# The unique mod identifier for the mod. Must be lowercase in English locale. Must fit the regex [a-z][a-z0-9_]{1,63} +# Must match the String constant located in the main mod class annotated with @Mod. +mod_id=ashes +# The human-readable display name for the mod. +mod_name=Ashes +# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default. +mod_license=zlib +# The mod version. See https://semver.org/ +mod_version=0.1.0 +# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository. +# This should match the base package used for the mod sources. +# See https://maven.apache.org/guides/mini/guide-naming-conventions.html +mod_group_id=info.shylie.ashes +# The authors of the mod. This is a simple text string that is used for display purposes in the mod list. +mod_authors=Shylie +# The description of the mod. This is a simple multiline text string that is used for display purposes in the mod list. +mod_description=Embers addon focused on ash-related content. + +embers_version=5571196 +jei_version=15.2.0.23 +curios_version=5.9.0+1.20.1 \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000..c1962a7 Binary files /dev/null and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..2617362 --- /dev/null +++ b/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,6 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip +networkTimeout=10000 +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew new file mode 100644 index 0000000..aeb74cb --- /dev/null +++ b/gradlew @@ -0,0 +1,245 @@ +#!/bin/sh + +# +# Copyright © 2015-2021 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. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +############################################################################## +# +# Gradle start up script for POSIX generated by Gradle. +# +# Important for running: +# +# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is +# noncompliant, but you have some other compliant shell such as ksh or +# bash, then to run this script, type that shell name before the whole +# command line, like: +# +# ksh Gradle +# +# Busybox and similar reduced shells will NOT work, because this script +# requires all of these POSIX shell features: +# * functions; +# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», +# «${var#prefix}», «${var%suffix}», and «$( cmd )»; +# * compound commands having a testable exit status, especially «case»; +# * various built-in commands including «command», «set», and «ulimit». +# +# Important for patching: +# +# (2) This script targets any POSIX shell, so it avoids extensions provided +# by Bash, Ksh, etc; in particular arrays are avoided. +# +# The "traditional" practice of packing multiple parameters into a +# space-separated string is a well documented source of bugs and security +# problems, so this is (mostly) avoided, by progressively accumulating +# options in "$@", and eventually passing that to Java. +# +# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, +# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; +# see the in-line comments for details. +# +# There are tweaks for specific operating systems such as AIX, CygWin, +# Darwin, MinGW, and NonStop. +# +# (3) This script is generated from the Groovy template +# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# within the Gradle project. +# +# You can find Gradle at https://github.com/gradle/gradle/. +# +############################################################################## + +# Attempt to set APP_HOME + +# Resolve links: $0 may be a link +app_path=$0 + +# Need this for daisy-chained symlinks. +while + APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path + [ -h "$app_path" ] +do + ls=$( ls -ld "$app_path" ) + link=${ls#*' -> '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac +done + +# This is normally unused +# shellcheck disable=SC2034 +APP_BASE_NAME=${0##*/} +APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD=maximum + +warn () { + echo "$*" +} >&2 + +die () { + echo + echo "$*" + echo + exit 1 +} >&2 + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD=$JAVA_HOME/jre/sh/java + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." +fi + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC3045 + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC3045 + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac +fi + +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. + +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Collect all arguments for the java command; +# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of +# shell script including quotes and variable substitutions, so put them in +# double quotes to make sure that they get re-expanded; and +# * put everything else in single quotes, so that it's not re-expanded. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.wrapper.GradleWrapperMain \ + "$@" + +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' + +exec "$JAVACMD" "$@" diff --git a/gradlew.bat b/gradlew.bat new file mode 100644 index 0000000..93e3f59 --- /dev/null +++ b/gradlew.bat @@ -0,0 +1,92 @@ +@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 + +@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. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +: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 diff --git a/settings.gradle b/settings.gradle new file mode 100644 index 0000000..93f1b80 --- /dev/null +++ b/settings.gradle @@ -0,0 +1,13 @@ +pluginManagement { + repositories { + gradlePluginPortal() + maven { + name = 'MinecraftForge' + url = 'https://maven.minecraftforge.net/' + } + } +} + +plugins { + id 'org.gradle.toolchains.foojay-resolver-convention' version '0.7.0' +} \ No newline at end of file diff --git a/src/generated/resources/.cache/81865ef998211ff68340afa8e6cd0e1cf8ec012a b/src/generated/resources/.cache/81865ef998211ff68340afa8e6cd0e1cf8ec012a new file mode 100644 index 0000000..126e14f --- /dev/null +++ b/src/generated/resources/.cache/81865ef998211ff68340afa8e6cd0e1cf8ec012a @@ -0,0 +1,4 @@ +// 1.20.1 2024-07-30T13:47:57.4562926 Item Models: ashes +63ec6c618a3a23eab4cab9c52d7d3250de9b516e assets/ashes/models/item/ashen_golem_spawn_egg.json +060aa5df9f6e6c2d7476baa7c80b996a3c9fd4df assets/ashes/models/item/heated_ashy_ingot.json +49ecc679012241ea5a31c76f6ffde9236c2a2ef5 assets/ashes/models/item/param_rune.json diff --git a/src/generated/resources/assets/ashes/models/item/ashen_golem_spawn_egg.json b/src/generated/resources/assets/ashes/models/item/ashen_golem_spawn_egg.json new file mode 100644 index 0000000..d1aaa9d --- /dev/null +++ b/src/generated/resources/assets/ashes/models/item/ashen_golem_spawn_egg.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/template_spawn_egg" +} \ No newline at end of file diff --git a/src/generated/resources/assets/ashes/models/item/heated_ashy_ingot.json b/src/generated/resources/assets/ashes/models/item/heated_ashy_ingot.json new file mode 100644 index 0000000..7b7cd5a --- /dev/null +++ b/src/generated/resources/assets/ashes/models/item/heated_ashy_ingot.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ashes:item/heated_ashy_ingot" + } +} \ No newline at end of file diff --git a/src/generated/resources/assets/ashes/models/item/param_rune.json b/src/generated/resources/assets/ashes/models/item/param_rune.json new file mode 100644 index 0000000..912f0ee --- /dev/null +++ b/src/generated/resources/assets/ashes/models/item/param_rune.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ashes:item/rune" + } +} \ No newline at end of file diff --git a/src/main/java/info/shylie/ashes/Ashes.java b/src/main/java/info/shylie/ashes/Ashes.java new file mode 100644 index 0000000..51c36be --- /dev/null +++ b/src/main/java/info/shylie/ashes/Ashes.java @@ -0,0 +1,89 @@ +package info.shylie.ashes; + +import com.mojang.logging.LogUtils; +import info.shylie.ashes.datagen.ItemModels; +import info.shylie.ashes.entity.AshenGolemEntity; +import info.shylie.ashes.entity.render.AshenGolemRenderer; +import net.minecraft.data.DataGenerator; +import net.minecraft.data.PackOutput; +import net.minecraftforge.api.distmarker.Dist; +import net.minecraftforge.api.distmarker.OnlyIn; +import net.minecraftforge.client.event.EntityRenderersEvent; +import net.minecraftforge.common.MinecraftForge; +import net.minecraftforge.common.data.ExistingFileHelper; +import net.minecraftforge.data.event.GatherDataEvent; +import net.minecraftforge.event.entity.EntityAttributeCreationEvent; +import net.minecraftforge.event.server.ServerStartingEvent; +import net.minecraftforge.eventbus.api.IEventBus; +import net.minecraftforge.eventbus.api.SubscribeEvent; +import net.minecraftforge.fml.ModLoadingContext; +import net.minecraftforge.fml.common.Mod; +import net.minecraftforge.fml.config.ModConfig; +import net.minecraftforge.fml.event.lifecycle.FMLClientSetupEvent; +import net.minecraftforge.fml.event.lifecycle.FMLCommonSetupEvent; +import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext; +import org.slf4j.Logger; + +@Mod(Ashes.MODID) +public class Ashes +{ + public static final String MODID = "ashes"; + public static final Logger LOGGER = LogUtils.getLogger(); + + public Ashes() + { + IEventBus modEventBus = FMLJavaModLoadingContext.get().getModEventBus(); + + modEventBus.addListener(this::commonSetup); + modEventBus.addListener(this::gatherData); + modEventBus.addListener(this::entityAttributes); + + AshesRegistry.BLOCKS.register(modEventBus); + AshesRegistry.ITEMS.register(modEventBus); + AshesRegistry.ENTITY_TYPES.register(modEventBus); + AshesRegistry.CREATIVE_TABS.register(modEventBus); + AshesRegistry.TASK_RUNES.register(modEventBus); + AshesRegistry.PARAM_RUNES.register(modEventBus); + + MinecraftForge.EVENT_BUS.register(this); + + ModLoadingContext.get().registerConfig(ModConfig.Type.COMMON, Config.SPEC); + } + + private void commonSetup(final FMLCommonSetupEvent event) + { + LOGGER.info("From embers to ashes..."); + } + + private void entityAttributes(EntityAttributeCreationEvent event) { + event.put(AshesRegistry.ASHEN_GOLEM.get(), AshenGolemEntity.createAttributes().build()); + } + + private void gatherData(GatherDataEvent event) { + DataGenerator generator = event.getGenerator(); + PackOutput output = generator.getPackOutput(); + ExistingFileHelper efh = event.getExistingFileHelper(); + + generator.addProvider(event.includeClient(), new ItemModels(output, efh)); + } + + @SubscribeEvent + public void onServerStarting(ServerStartingEvent event) + { + } + + @Mod.EventBusSubscriber(modid = MODID, bus = Mod.EventBusSubscriber.Bus.MOD, value = Dist.CLIENT) + public static class ClientModEvents { + @OnlyIn(Dist.CLIENT) + @SubscribeEvent + public static void onClientSetup(FMLClientSetupEvent event) + { + } + + @OnlyIn(Dist.CLIENT) + @SubscribeEvent + public static void registerRenderers(EntityRenderersEvent.RegisterRenderers event) { + event.registerEntityRenderer(AshesRegistry.ASHEN_GOLEM.get(), AshenGolemRenderer::new); + } + } +} diff --git a/src/main/java/info/shylie/ashes/AshesRegistry.java b/src/main/java/info/shylie/ashes/AshesRegistry.java new file mode 100644 index 0000000..fd6de6e --- /dev/null +++ b/src/main/java/info/shylie/ashes/AshesRegistry.java @@ -0,0 +1,83 @@ +package info.shylie.ashes; + +import com.rekindled.embers.RegistryManager; +import com.rekindled.embers.util.Misc; +import info.shylie.ashes.api.rune.IParamRune; +import info.shylie.ashes.api.rune.ITaskRune; +import info.shylie.ashes.entity.AshenGolemEntity; +import info.shylie.ashes.item.ParamRune; +import info.shylie.ashes.rune.param.BlockPosRune; +import net.minecraft.core.registries.Registries; +import net.minecraft.network.chat.Component; +import net.minecraft.resources.ResourceLocation; +import net.minecraft.world.entity.EntityType; +import net.minecraft.world.entity.Mob; +import net.minecraft.world.entity.MobCategory; +import net.minecraft.world.item.CreativeModeTab; +import net.minecraft.world.item.CreativeModeTabs; +import net.minecraft.world.item.Item; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.level.block.Block; +import net.minecraftforge.common.ForgeSpawnEggItem; +import net.minecraftforge.registries.*; + +import java.util.function.Supplier; + +public class AshesRegistry { + public static final DeferredRegister ITEMS = DeferredRegister.create(ForgeRegistries.ITEMS, Ashes.MODID); + public static final DeferredRegister BLOCKS = DeferredRegister.create(ForgeRegistries.BLOCKS, Ashes.MODID); + public static final DeferredRegister> ENTITY_TYPES = DeferredRegister.create(ForgeRegistries.ENTITY_TYPES, Ashes.MODID); + public static final DeferredRegister CREATIVE_TABS = DeferredRegister.create(Registries.CREATIVE_MODE_TAB, Ashes.MODID); + public static final DeferredRegister TASK_RUNES = DeferredRegister.create(new ResourceLocation(Ashes.MODID, "task_runes"), Ashes.MODID); + public static final DeferredRegister> PARAM_RUNES = DeferredRegister.create(new ResourceLocation(Ashes.MODID, "param_runes"), Ashes.MODID); + + public static final Supplier> TASK_RUNES_REGISTRY = TASK_RUNES.makeRegistry(RegistryBuilder::new); + public static final Supplier>> PARAM_RUNES_REGISTRY = PARAM_RUNES.makeRegistry(RegistryBuilder::new); + + public static final RegistryObject HEATED_ASHY_INGOT; + public static final RegistryObject PARAM_RUNE; + public static final RegistryObject ASHEN_GOLEM_SPAWN_EGG; + + public static final RegistryObject> ASHEN_GOLEM; + + public static final RegistryObject ASHES_TAB; + + public static final RegistryObject BLOCK_POS_RUNE; + + static { + HEATED_ASHY_INGOT = ITEMS.register( + "heated_ashy_ingot", + () -> new Item(new Item.Properties()) + ); + PARAM_RUNE = ITEMS.register( + "param_rune", + () -> new ParamRune(new Item.Properties()) + ); + + ASHEN_GOLEM = RegistryManager.registerEntity( + "ashen_golem", + EntityType.Builder.of(AshenGolemEntity::new, MobCategory.CREATURE) + .sized(0.6F, 1.8F) + .fireImmune() + ); + ASHEN_GOLEM_SPAWN_EGG = registerSpawnEgg(ASHEN_GOLEM, Misc.intColor(38, 38, 38), Misc.intColor(66, 66, 66)); + + ASHES_TAB = CREATIVE_TABS.register("ashes_tab", + () -> CreativeModeTab.builder() + .icon(() -> new ItemStack(RegistryManager.INTELLIGENT_APPARATUS.get())) + .title(Component.translatable("itemgroup." + Ashes.MODID)) + .withTabsBefore(CreativeModeTabs.SPAWN_EGGS) + .displayItems((params, output) -> { + for (var item : ITEMS.getEntries()) { + output.accept(item.get()); + } + }).build() + ); + + BLOCK_POS_RUNE = PARAM_RUNES.register("block_pos_rune", BlockPosRune::new); + } + + public static RegistryObject registerSpawnEgg(RegistryObject> type, int bg, int fg) { + return ITEMS.register(type.getId().getPath() + "_spawn_egg", () -> new ForgeSpawnEggItem(type, bg, fg, new Item.Properties())); + } +} diff --git a/src/main/java/info/shylie/ashes/Config.java b/src/main/java/info/shylie/ashes/Config.java new file mode 100644 index 0000000..d78879c --- /dev/null +++ b/src/main/java/info/shylie/ashes/Config.java @@ -0,0 +1,19 @@ +package info.shylie.ashes; + +import net.minecraftforge.common.ForgeConfigSpec; +import net.minecraftforge.eventbus.api.SubscribeEvent; +import net.minecraftforge.fml.common.Mod; +import net.minecraftforge.fml.event.config.ModConfigEvent; + +@Mod.EventBusSubscriber(modid = Ashes.MODID, bus = Mod.EventBusSubscriber.Bus.MOD) +public class Config +{ + private static final ForgeConfigSpec.Builder BUILDER = new ForgeConfigSpec.Builder(); + + static final ForgeConfigSpec SPEC = BUILDER.build(); + + @SubscribeEvent + static void onLoad(final ModConfigEvent event) + { + } +} diff --git a/src/main/java/info/shylie/ashes/api/rune/IParamRune.java b/src/main/java/info/shylie/ashes/api/rune/IParamRune.java new file mode 100644 index 0000000..49dc7bf --- /dev/null +++ b/src/main/java/info/shylie/ashes/api/rune/IParamRune.java @@ -0,0 +1,29 @@ +package info.shylie.ashes.api.rune; + +import net.minecraft.world.InteractionHand; +import net.minecraft.world.entity.player.Player; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.context.UseOnContext; +import net.minecraft.world.level.Level; + +public interface IParamRune extends IRune { + T getParameter(ItemStack stack); + + default boolean setParameter(UseOnContext context) { + return false; + } + + default boolean setParameter(UseContext context) { + return false; + } + + default boolean setParameter(ItemStackedOnMeContext context) { + return false; + } + + record UseContext(Level level, Player player, InteractionHand hand) { + } + + record ItemStackedOnMeContext(ItemStack me, ItemStack other) { + } +} diff --git a/src/main/java/info/shylie/ashes/api/rune/IRune.java b/src/main/java/info/shylie/ashes/api/rune/IRune.java new file mode 100644 index 0000000..3f4c550 --- /dev/null +++ b/src/main/java/info/shylie/ashes/api/rune/IRune.java @@ -0,0 +1,7 @@ +package info.shylie.ashes.api.rune; + +import net.minecraft.world.item.ItemStack; + +public interface IRune { + String getDescription(ItemStack stack); +} diff --git a/src/main/java/info/shylie/ashes/api/rune/ITaskRune.java b/src/main/java/info/shylie/ashes/api/rune/ITaskRune.java new file mode 100644 index 0000000..2467728 --- /dev/null +++ b/src/main/java/info/shylie/ashes/api/rune/ITaskRune.java @@ -0,0 +1,4 @@ +package info.shylie.ashes.api.rune; + +public interface ITaskRune extends IRune { +} diff --git a/src/main/java/info/shylie/ashes/datagen/ItemModels.java b/src/main/java/info/shylie/ashes/datagen/ItemModels.java new file mode 100644 index 0000000..af8f052 --- /dev/null +++ b/src/main/java/info/shylie/ashes/datagen/ItemModels.java @@ -0,0 +1,40 @@ +package info.shylie.ashes.datagen; + +import info.shylie.ashes.Ashes; +import info.shylie.ashes.AshesRegistry; +import net.minecraft.data.PackOutput; +import net.minecraft.resources.ResourceLocation; +import net.minecraft.world.item.Item; +import net.minecraftforge.client.model.generators.ItemModelProvider; +import net.minecraftforge.common.data.ExistingFileHelper; +import net.minecraftforge.registries.RegistryObject; + +public class ItemModels extends ItemModelProvider { + public ItemModels(PackOutput gen, ExistingFileHelper exFileHelper) { + super(gen, Ashes.MODID, exFileHelper); + } + + @Override + protected void registerModels() { + basicItem(AshesRegistry.HEATED_ASHY_INGOT.get()); + itemWithTexture(AshesRegistry.PARAM_RUNE, "rune"); + spawnEgg(AshesRegistry.ASHEN_GOLEM_SPAWN_EGG); + } + + private void itemWithTexture(RegistryObject registryObject, String texture) { + itemWithTexture(registryObject, "item/generated", texture); + } + + private void itemWithTexture(RegistryObject registryObject, String model, String... textures) { + ResourceLocation id = registryObject.getId(); + + for (int i = 0; i < textures.length; i++) { + ResourceLocation textureLocation = new ResourceLocation(id.getNamespace(), "item/" + textures[i]); + singleTexture(id.getPath(), new ResourceLocation(model), "layer" + i, textureLocation); + } + } + + private void spawnEgg(RegistryObject registryObject) { + withExistingParent(registryObject.getId().getPath(), "item/template_spawn_egg"); + } +} diff --git a/src/main/java/info/shylie/ashes/entity/AshenGolemEntity.java b/src/main/java/info/shylie/ashes/entity/AshenGolemEntity.java new file mode 100644 index 0000000..d0c9601 --- /dev/null +++ b/src/main/java/info/shylie/ashes/entity/AshenGolemEntity.java @@ -0,0 +1,40 @@ +package info.shylie.ashes.entity; + +import com.rekindled.embers.datagen.EmbersSounds; +import net.minecraft.core.BlockPos; +import net.minecraft.sounds.SoundEvent; +import net.minecraft.world.damagesource.DamageSource; +import net.minecraft.world.entity.EntityType; +import net.minecraft.world.entity.ai.attributes.AttributeSupplier; +import net.minecraft.world.entity.ai.attributes.Attributes; +import net.minecraft.world.entity.animal.AbstractGolem; +import net.minecraft.world.level.Level; +import net.minecraft.world.level.block.state.BlockState; +import org.jetbrains.annotations.Nullable; + +public class AshenGolemEntity extends AbstractGolem { + public AshenGolemEntity(EntityType entityType, Level level) { + super(entityType, level); + } + + public static AttributeSupplier.Builder createAttributes() { + return AbstractGolem.createLivingAttributes() + .add(Attributes.MOVEMENT_SPEED, 0.5) + .add(Attributes.MAX_HEALTH, 30.0) + .add(Attributes.FOLLOW_RANGE, 8.0) + .add(Attributes.ARMOR, 6.0) + .add(Attributes.KNOCKBACK_RESISTANCE, 1.0); + } + + @Nullable + @Override + protected SoundEvent getHurtSound(DamageSource damageSource) { + return EmbersSounds.ANCIENT_GOLEM_HURT.get(); + } + + @Override + protected void playStepSound(BlockPos pos, BlockState state) { + super.playStepSound(pos, state); + playSound(EmbersSounds.ANCIENT_GOLEM_STEP.get()); + } +} diff --git a/src/main/java/info/shylie/ashes/entity/render/AshenGolemRenderer.java b/src/main/java/info/shylie/ashes/entity/render/AshenGolemRenderer.java new file mode 100644 index 0000000..660422a --- /dev/null +++ b/src/main/java/info/shylie/ashes/entity/render/AshenGolemRenderer.java @@ -0,0 +1,29 @@ +package info.shylie.ashes.entity.render; + +import com.rekindled.embers.Embers; +import com.rekindled.embers.entity.render.AncientGolemEyeLayer; +import com.rekindled.embers.model.AncientGolemModel; +import info.shylie.ashes.Ashes; +import info.shylie.ashes.entity.AshenGolemEntity; +import net.minecraft.client.model.geom.ModelLayerLocation; +import net.minecraft.client.renderer.entity.EntityRendererProvider; +import net.minecraft.client.renderer.entity.MobRenderer; +import net.minecraft.resources.ResourceLocation; +import net.minecraftforge.api.distmarker.Dist; +import net.minecraftforge.api.distmarker.OnlyIn; + +@OnlyIn(Dist.CLIENT) +public class AshenGolemRenderer extends MobRenderer> { + public static final ModelLayerLocation LAYER_LOCATION = new ModelLayerLocation(new ResourceLocation(Embers.MODID, "ancient_golem"), "main"); + public static final ResourceLocation TEXTURE = new ResourceLocation(Ashes.MODID, "textures/entity/golem.png"); + + public AshenGolemRenderer(EntityRendererProvider.Context context) { + super(context, new AncientGolemModel<>(context.bakeLayer(LAYER_LOCATION)), 0.5F); + addLayer(new AncientGolemEyeLayer<>(this)); + } + + @Override + public ResourceLocation getTextureLocation(AshenGolemEntity ashenGolemEntity) { + return TEXTURE; + } +} diff --git a/src/main/java/info/shylie/ashes/item/ParamRune.java b/src/main/java/info/shylie/ashes/item/ParamRune.java new file mode 100644 index 0000000..18fa09f --- /dev/null +++ b/src/main/java/info/shylie/ashes/item/ParamRune.java @@ -0,0 +1,84 @@ +package info.shylie.ashes.item; + +import info.shylie.ashes.Ashes; +import info.shylie.ashes.AshesRegistry; +import info.shylie.ashes.api.rune.IParamRune; +import net.minecraft.resources.ResourceLocation; +import net.minecraft.world.InteractionHand; +import net.minecraft.world.InteractionResult; +import net.minecraft.world.InteractionResultHolder; +import net.minecraft.world.entity.SlotAccess; +import net.minecraft.world.entity.player.Player; +import net.minecraft.world.inventory.ClickAction; +import net.minecraft.world.inventory.Slot; +import net.minecraft.world.item.Item; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.context.UseOnContext; +import net.minecraft.world.level.Level; + +public class ParamRune extends Item { + public ParamRune(Properties properties) { + super(properties); + } + + public boolean setParameter(UseOnContext context) { + IParamRune rune = getRune(context.getItemInHand()); + if (rune == null) { return false; } + return rune.setParameter(context); + } + public boolean setParameter(IParamRune.UseContext context) { + IParamRune rune = getRune(context.player().getItemInHand(context.hand())); + if (rune == null) { return false; } + return rune.setParameter(context); + } + public boolean setParameter(IParamRune.ItemStackedOnMeContext context) { + IParamRune rune = getRune(context.me()); + if (rune == null) { return false; } + return rune.setParameter(context); + } + + @Override + public final InteractionResultHolder use(Level level, Player player, InteractionHand hand) { + if (player.isCrouching() && setParameter(new IParamRune.UseContext(level, player, hand))) { + return InteractionResultHolder.success(player.getItemInHand(hand)); + } + + return InteractionResultHolder.pass(player.getItemInHand(hand)); + } + + @Override + public final InteractionResult useOn(UseOnContext context) { + Player player = context.getPlayer(); + + if (player != null && player.isCrouching() && setParameter(context)) { + return InteractionResult.SUCCESS; + } + + return InteractionResult.PASS; + } + + @Override + public boolean overrideOtherStackedOnMe(ItemStack me, ItemStack other, Slot slot, ClickAction action, Player player, SlotAccess slotAccess) { + return action == ClickAction.SECONDARY && !other.isEmpty() && setParameter(new IParamRune.ItemStackedOnMeContext(me, other)); + } + + @Override + public String getDescriptionId(ItemStack stack) { + IParamRune rune = getRune(stack); + if (rune == null) { return ""; } + String desc = rune.getDescription(stack); + return desc == null ? "" : desc; + } + + private IParamRune getRune(ItemStack stack) { + if (stack.getTag() == null) { return null; } + IParamRune rune = AshesRegistry.PARAM_RUNES_REGISTRY.get() + .getValue(new ResourceLocation(stack.getTag().getString("rune_type"))); + + if (rune == null) { + Ashes.LOGGER.warn("Unknown rune type: '{}'", stack.getTag().getString("rune_type")); + } + + return rune; + } +} diff --git a/src/main/java/info/shylie/ashes/rune/param/BlockPosRune.java b/src/main/java/info/shylie/ashes/rune/param/BlockPosRune.java new file mode 100644 index 0000000..d29e650 --- /dev/null +++ b/src/main/java/info/shylie/ashes/rune/param/BlockPosRune.java @@ -0,0 +1,34 @@ +package info.shylie.ashes.rune.param; + +import info.shylie.ashes.api.rune.IParamRune; +import net.minecraft.core.BlockPos; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.context.UseOnContext; + +public class BlockPosRune implements IParamRune { + @Override + public String getDescription(ItemStack stack) { + BlockPos pos = getParameter(stack); + if (pos == null) { return null; } + return String.format("(%d, %d, %d)", pos.getX(), pos.getY(), pos.getZ()); + } + + @Override + public BlockPos getParameter(ItemStack stack) { + CompoundTag tag = stack.getOrCreateTag(); + if (!tag.contains("x") || !tag.contains("y") || !tag.contains("z")) { + return null; + } + return new BlockPos(tag.getInt("x"), tag.getInt("y"), tag.getInt("z")); + } + + @Override + public boolean setParameter(UseOnContext context) { + CompoundTag tag = context.getItemInHand().getOrCreateTag(); + tag.putInt("x", context.getClickedPos().getX()); + tag.putInt("y", context.getClickedPos().getY()); + tag.putInt("z", context.getClickedPos().getZ()); + return true; + } +} diff --git a/src/main/resources/META-INF/mods.toml b/src/main/resources/META-INF/mods.toml new file mode 100644 index 0000000..9485808 --- /dev/null +++ b/src/main/resources/META-INF/mods.toml @@ -0,0 +1,77 @@ +# This is an example mods.toml file. It contains the data relating to the loading mods. +# There are several mandatory fields (#mandatory), and many more that are optional (#optional). +# The overall format is standard TOML format, v0.5.0. +# Note that there are a couple of TOML lists in this file. +# Find more information on toml format here: https://github.com/toml-lang/toml +# The name of the mod loader type to load - for regular FML @Mod mods it should be javafml +modLoader="javafml" #mandatory +# A version range to match for said mod loader - for regular FML @Mod it will be the forge version +loaderVersion="${loader_version_range}" #mandatory This is typically bumped every Minecraft version by Forge. See our download page for lists of versions. +# The license for you mod. This is mandatory metadata and allows for easier comprehension of your redistributive properties. +# Review your options at https://choosealicense.com/. All rights reserved is the default copyright stance, and is thus the default here. +license="${mod_license}" +# A URL to refer people to when problems occur with this mod +#issueTrackerURL="https://change.me.to.your.issue.tracker.example.invalid/" #optional +# A list of mods - how many allowed here is determined by the individual mod loader +[[mods]] #mandatory +# The modid of the mod +modId="${mod_id}" #mandatory +# The version number of the mod +version="${mod_version}" #mandatory +# A display name for the mod +displayName="${mod_name}" #mandatory +# A URL to query for updates for this mod. See the JSON update specification https://docs.minecraftforge.net/en/latest/misc/updatechecker/ +#updateJSONURL="https://change.me.example.invalid/updates.json" #optional +# A URL for the "homepage" for this mod, displayed in the mod UI +#displayURL="https://change.me.to.your.mods.homepage.example.invalid/" #optional +# A file name (in the root of the mod JAR) containing a logo for display +#logoFile="examplemod.png" #optional +# A text field displayed in the mod UI +#credits="" #optional +# A text field displayed in the mod UI +authors="${mod_authors}" #optional +# Display Test controls the display for your mod in the server connection screen +# MATCH_VERSION means that your mod will cause a red X if the versions on client and server differ. This is the default behaviour and should be what you choose if you have server and client elements to your mod. +# IGNORE_SERVER_VERSION means that your mod will not cause a red X if it's present on the server but not on the client. This is what you should use if you're a server only mod. +# IGNORE_ALL_VERSION means that your mod will not cause a red X if it's present on the client or the server. This is a special case and should only be used if your mod has no server component. +# NONE means that no display test is set on your mod. You need to do this yourself, see IExtensionPoint.DisplayTest for more information. You can define any scheme you wish with this value. +# IMPORTANT NOTE: this is NOT an instruction as to which environments (CLIENT or DEDICATED SERVER) your mod loads on. Your mod should load (and maybe do nothing!) whereever it finds itself. +#displayTest="MATCH_VERSION" # MATCH_VERSION is the default if nothing is specified (#optional) + +# The description text for the mod (multi line!) (#mandatory) +description='''${mod_description}''' +# A dependency - use the . to indicate dependency for a specific modid. Dependencies are optional. +[[dependencies.${mod_id}]] #optional + # the modid of the dependency + modId="forge" #mandatory + # Does this dependency have to exist - if not, ordering below must be specified + mandatory=true #mandatory + # The version range of the dependency + versionRange="${forge_version_range}" #mandatory + # An ordering relationship for the dependency - BEFORE or AFTER required if the dependency is not mandatory + # BEFORE - This mod is loaded BEFORE the dependency + # AFTER - This mod is loaded AFTER the dependency + ordering="NONE" + # Side this dependency is applied on - BOTH, CLIENT, or SERVER + side="BOTH" +# Here's another dependency +[[dependencies.${mod_id}]] + modId="minecraft" + mandatory=true + # This version range declares a minimum of the current minecraft version up to but not including the next major version + versionRange="${minecraft_version_range}" + ordering="NONE" + side="BOTH" + +[[dependencies.${mod_id}]] + modId="embers" + mandatory=true + versionRange="[1.20.1-1.3.9,)" + ordering="AFTER" + side="BOTH" + +# Features are specific properties of the game environment, that you may want to declare you require. This example declares +# that your mod requires GL version 3.2 or higher. Other features will be added. They are side aware so declaring this won't +# stop your mod loading on the server for example. +#[features.${mod_id}] +#openGLVersion="[3.2,)" \ No newline at end of file diff --git a/src/main/resources/assets/ashes.pxc b/src/main/resources/assets/ashes.pxc new file mode 100644 index 0000000..7dff152 --- /dev/null +++ b/src/main/resources/assets/ashes.pxc @@ -0,0 +1 @@ +{"previewGrid":{"pixel":false,"color":8482157,"size":[16,16],"show":false,"snap":false,"opacity":0.5},"nodes":[{"name":"Surface out","group":"eYT1PU975043H1HEvnfYKHeNiaVQUzzQ","previewable":true,"inputs":[{"name":"Value","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":0,"from_node":"eYT0kN184158T87235v8rAtfMp7ayFjZ","on_end":0,"raw_value":[[0,-1,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":473710,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0}],"x":988.44444444444446,"y":-138.66666666666669,"iname":"Group_Output49465","buffer":{},"tool":false,"attri":{"color":-1,"show_update_trigger":false,"node_param_width":192,"inherit_name":false,"update_graph":true,"node_width":0,"annotation":"","node_height":0},"renamed":true,"id":"eYT1PU975049KtjIYCry9r4gmG2nXbdc","render":true,"outputs":[],"inspectInputs":[{"name":"Toggle execution","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":354339,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Toggle execution","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":335026,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Update","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"color":-1,"visible":true}],"type":"Node_Group_Output","show_parameter":false},{"name":"Render Spritesheet","group":-4,"previewable":true,"inputs":[{"name":"Sprites","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"atlas":true},"from_index":0,"from_node":"eYT1PU975043H1HEvnfYKHeNiaVQUzzQ","on_end":0,"raw_value":[[0,-4,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":423642,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Sprite set","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"data":["Animation","Sprite array"]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":435145,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Frame step","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,1,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":222255,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Packing type","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{"data":[{"name":"Horizontal","data":"Horizontal","tooltip":"","spr":"@ref sprite(s_node_alignment)","spr_blend":9404030,"spr_ind":0},{"name":"Vertical","data":"Vertical","tooltip":"","spr":"@ref sprite(s_node_alignment)","spr_blend":9404030,"spr_ind":1},{"name":"Grid","data":"Grid","tooltip":"","spr":"@ref sprite(s_node_alignment)","spr_blend":9404030,"spr_ind":2}]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,1,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":154626,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Grid column","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,4,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":939946,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Alignment","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"data":["First","Middle","Last"]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":192282,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Spacing","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":324583,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Padding","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,[0,0,0,0],[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":183947,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":129050,"type":0}]],[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":243282,"type":0}]],[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":788348,"type":0}]],[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":520540,"type":0}]]],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Range","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,[1,30],[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":505606,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":964578,"type":0}]],[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":454759,"type":0}]]],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Spacing","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,[0,0],[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":445455,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":518471,"type":0}]],[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":513999,"type":0}]]],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Overlappable","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":276560,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Custom Range","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":571508,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0}],"x":448,"y":-176,"iname":"Render_Spritesheet66243","buffer":{},"tool":false,"attri":{"color":-1,"show_update_trigger":false,"color_depth":2,"node_param_width":192,"update_graph":true,"node_width":0,"annotation":"","node_height":0},"renamed":true,"id":"eYTAZU486859lmhx3u0ll7UJ6lJRA0KV","render":true,"outputs":[{"color":-1,"visible":true},{"color":-1,"visible":true}],"inspectInputs":[{"name":"Execute node","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":865972,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Toggle execution","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":267164,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Update","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"color":-1,"visible":true}],"type":"Node_Render_Sprite_Sheet","show_parameter":false},{"name":"Surface in","group":"eYT1PU975043H1HEvnfYKHeNiaVQUzzQ","previewable":true,"inputs":[{"name":"Display type","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{"update_hover":false,"data":["Default"]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":454625,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Range","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"linked":false},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,[0,1],[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":791841,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":245880,"type":0}]],[[0,1,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":807762,"type":0}]]],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Input type","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{"update_hover":false,"data":["Integer","Float","Boolean","Color","Surface","File Path","Curve","Text","Object","Node",-1,"Any","Path","Particle","Rigidbody Object","Domain","Struct","Strands","Mesh","Trigger",-1,"3D Mesh","3D Light","3D Scene","3D Material",-1,"Audio"]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,4,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":355958,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Enum label","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,"",[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":733887,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Vector size","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"data":["2","3","4"]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":638702,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Order","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":809772,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Display preview gizmo","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,true,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":637412,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Step","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0.01,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":165530,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Button Label","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,"Trigger",[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":163532,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0}],"x":-80,"y":-176,"iname":"Group_Input50956","buffer":{},"tool":false,"attri":{"color":-1,"show_update_trigger":false,"node_param_width":192,"inherit_name":false,"inherit_type":false,"update_graph":true,"node_width":0,"annotation":"","node_height":0},"renamed":true,"id":"eYT1PU975044VCYAvivbbqcJtp7hDuNu","render":true,"outputs":[{"color":-1,"visible":true}],"inspectInputs":[{"name":"Toggle execution","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":681079,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Toggle execution","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":975639,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Update","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"color":-1,"visible":true}],"type":"Node_Group_Input","show_parameter":false},{"name":"Draw Gradient","group":"eYT1PU975043H1HEvnfYKHeNiaVQUzzQ","previewable":true,"inputs":[{"name":"Dimension","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,[16,16],[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":360968,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[[[0,16,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":272873,"type":0}]],[[0,16,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":931244,"type":0}]]],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Gradient","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,"{\"keys\":[{\"time\":0.0,\"value\":4278190080.0},{\"time\":1.0,\"value\":4294967295.0}],\"type\":0.0}",[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":381255,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{"mapped":false,"map_index":15},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Type","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{"data":[{"name":"Linear","data":"Linear","tooltip":"","spr":"@ref sprite(s_node_gradient_type)","spr_blend":9404030,"spr_ind":0},{"name":"Circular","data":"Circular","tooltip":"","spr":"@ref sprite(s_node_gradient_type)","spr_blend":9404030,"spr_ind":1},{"name":"Radial","data":"Radial","tooltip":"","spr":"@ref sprite(s_node_gradient_type)","spr_blend":9404030,"spr_ind":2}]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":469994,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{"mapped":false},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Angle","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,135,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":967937,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{"mapped":false,"map_index":10},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Radius","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0.5,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":920859,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{"mapped":false,"map_index":11},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Shift","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"range":[-2,2,0.01]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":250490,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{"mapped":false,"map_index":12},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Center","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,[0.5,0.5],[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":483364,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[[[0,0.5,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":498887,"type":0}]],[[0,0.5,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":173194,"type":0}]]],"global_use":false,"anim":false,"unit":1,"shift_x":0,"shift_y":0},{"name":"Loop","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{"data":["None","Loop","Pingpong"]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":673213,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Mask","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"atlas":true},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,-4,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":514189,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Scale","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"range":[0,2,0.01]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,1,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":515794,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{"mapped":false,"map_index":13},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Angle map","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"atlas":true},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,-4,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":984366,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Radius map","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"atlas":true},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,-4,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":714374,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Shift map","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"atlas":true},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,-4,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":687134,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Scale map","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"atlas":true},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,-4,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":678537,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Uniform ratio","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,true,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":495339,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Gradient map","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"atlas":true},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,-4,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":563465,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Gradient map range","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,[0,0,1,0],[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":837999,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":216605,"type":0}]],[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":771862,"type":0}]],[[0,1,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":699570,"type":0}]],[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":458800,"type":0}]]],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0}],"x":76.444444444444457,"y":101.33333333333331,"iname":"Draw_Gradient96498","buffer":{},"tool":false,"attri":{"color":-1,"show_update_trigger":false,"use_project_dimension":true,"color_depth":1,"node_param_width":192,"update_graph":true,"node_width":0,"annotation":"","node_height":0,"array_process":0},"renamed":true,"id":"eYT0aQ1493917h3T5hrwmePj4q3B2b4J","render":true,"outputs":[{"color":-1,"visible":true}],"inspectInputs":[{"name":"Toggle execution","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":681506,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Toggle execution","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":512089,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Update","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"color":-1,"visible":true}],"type":"Node_Gradient","show_parameter":false,"array_process":0},{"name":"Color Adjust","group":"eYT1PU975043H1HEvnfYKHeNiaVQUzzQ","previewable":true,"inputs":[{"name":"Surface in","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"atlas":true},"from_index":0,"from_node":"eYT0LD581034xCjjPFC4M0Jhf9C1osb3","on_end":0,"raw_value":[[0,-4,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":783776,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Brightness","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{"range":[-1,1,0.01]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0.5,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":342584,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{"mapped":false,"map_index":18},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Contrast","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0.5,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":507551,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{"mapped":false,"map_index":19},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Hue","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"range":[-1,1,0.01]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":381664,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{"mapped":false,"map_index":20},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Saturation","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{"range":[-1,1,0.01]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":354507,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{"mapped":false,"map_index":21},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Value","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"range":[-1,1,0.01]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":803213,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{"mapped":false,"map_index":22},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Blend","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,4294967295,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":388542,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{"mapped":false},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Blend amount","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":893977,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{"mapped":false,"map_index":23},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Mask","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"atlas":true},"from_index":0,"from_node":"eYT0bd1566982ml0R6Yr16SMKVQTdZe0","on_end":0,"raw_value":[[0,-4,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":949393,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Alpha","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,1,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":604684,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{"mapped":false,"map_index":24},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Exposure","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"range":[0,4,0.01]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,1,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":941573,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{"mapped":false,"map_index":25},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Active","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,true,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":435459,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Input Type","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"data":["Surface","Color"]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":468018,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Color","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,[4279506202,4280098598,4280756531,4281151291,4281809479,4282270031,4282665047,4283388771,4284046704,4284507256,4278204851,4278208219,4278211327,4281894911,4284263167],[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":583742,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[[[0,4279506202,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":554062,"type":0}]],[[0,4280098598,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":436073,"type":0}]]],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Blend mode","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"data":["Normal","Add","Subtract","Multiply","Screen","Overlay","Hue","Saturation","Luminosity","Maximum","Minimum","Replace","Difference"]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":199435,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{"mapped":false},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Channel","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"data":["@ref sprite(__newsprite870)","@ref sprite(__newsprite870)","@ref sprite(__newsprite870)","@ref sprite(__newsprite870)"]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,15,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":574955,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Invert mask","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":308343,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{"mapped":false},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Mask feather","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"range":[1,16,0.10000000000000001]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,1,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":237156,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{"mapped":false},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Brightness map","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"atlas":true},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,-4,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":644629,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Contrast map","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"atlas":true},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,-4,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":181368,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Hue map","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"atlas":true},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,-4,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":514155,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Saturation map","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"atlas":true},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,-4,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":918377,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Value map","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"atlas":true},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,-4,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":226576,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Blend map","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"atlas":true},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,-4,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":172890,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Alpha map","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"atlas":true},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,-4,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":714671,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Exposure map","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"atlas":true},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,-4,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":182186,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0}],"x":620.44444444444446,"y":-58.666666666666686,"iname":"Color_Adjust49446","buffer":{},"tool":false,"attri":{"color":-1,"show_update_trigger":false,"color_depth":2,"node_param_width":192,"update_graph":true,"node_width":0,"annotation":"","node_height":0,"array_process":0},"renamed":true,"id":"eYT0ck1634114sZBMu1qu0LfsSHuLuUy","render":true,"outputs":[{"color":-1,"visible":true},{"color":-1,"visible":false}],"inspectInputs":[{"name":"Toggle execution","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":733527,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Toggle execution","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":771164,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Update","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"color":-1,"visible":true}],"type":"Node_Color_adjust","show_parameter":false,"array_process":0},{"name":"Join Text","group":-4,"previewable":true,"inputs":[{"name":"Text array","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":0,"from_node":"eYT0Bm016277Rdd8DswSYTsxpP694dDq","on_end":0,"raw_value":[[0,[],[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":345409,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Divider","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,"\\",[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":403699,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0}],"x":-192,"y":0,"iname":"Join_Text82480","buffer":{},"tool":false,"attri":{"color":-1,"show_update_trigger":false,"node_param_width":192,"update_graph":true,"node_width":0,"annotation":"","node_height":0},"renamed":true,"id":"eYT0CI046344yc77ocxWmjeLcbTR5Oap","render":true,"outputs":[{"color":-1,"visible":true}],"inspectInputs":[{"name":"Toggle execution","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":687448,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Toggle execution","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":247618,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Update","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"color":-1,"visible":true}],"type":"Node_String_Join","show_parameter":false},{"name":"Export","group":-4,"previewable":true,"inputs":[{"name":"Surface","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"atlas":true},"from_index":0,"from_node":"eYTAZU486859lmhx3u0ll7UJ6lJRA0KV","on_end":0,"raw_value":[[0,-4,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":329234,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Paths","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{"filter":"Portable Network Graphics (.png)|*.png|Joint Photographic Experts Group (.jpg)|*.jpg"},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,"C:\\Users\\fuzzc\\Documents\\Programming\\ashes\\src\\main\\resources\\assets\\ashes\\textures\\item\\source\\export.png",[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":200238,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Template","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,"%1d%n%i",[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":360096,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Type","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{"update_hover":false,"data":["Multiple images","Image sequences","Animations"]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":466290,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Template guides","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":"%d Directory\r\n%1d Goes up 1 level\r\n%n File name\r\n%f Frame\r\n%i Array index","from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":450140,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Loop","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,true,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":196031,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Frame optimization","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":247355,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Color merge","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0.02,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":790213,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Framerate","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,30,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":907885,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Format","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{"update_hover":false,"data":[".png",".jpg",".webp"]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":841975,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Quality","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"range":[0,100,0.10000000000000001]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,23,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":673332,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Sequence begin","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":112033,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Frame range","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{"range":[0,30,0.10000000000000001]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,[1,30],[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":316411,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":518021,"type":0}]],[[0,-1,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":609960,"type":0}]]],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Subformat","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"update_hover":false,"data":["INDEX4","INDEX8","Default (PNG32)"]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,2,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":437461,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Frame step","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,1,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":732743,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Custom Range","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":253952,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Export on Save","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":654623,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0}],"x":752,"y":-112,"iname":"Export61276","buffer":{},"tool":false,"attri":{"color":-1,"show_update_trigger":false,"node_param_width":192,"update_graph":true,"node_width":0,"annotation":"","node_height":0},"renamed":true,"id":"eYTAVF232095AEly8LxMMMQDw1SthXDB","render":true,"outputs":[{"color":-1,"visible":false},{"color":-1,"visible":false}],"inspectInputs":[{"name":"Export","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":123828,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Export All","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":314936,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Update","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"color":-1,"visible":true}],"type":"Node_Export","show_parameter":false},{"name":"Group","group":-4,"previewable":true,"inputs":[{"name":"Surface in","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"atlas":true},"from_index":0,"from_node":"eYT0Ek1939928dEuHVAkkOThUcsYy7w8","on_end":0,"raw_value":[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":375054,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0}],"x":224,"y":0,"instance_base":-4,"iname":"Group21416","buffer":{},"tool":false,"attri":{"show_update_trigger":false,"input_display_list":[0,["Separator",false],["Separator",false]],"output_display_list":[0],"custom_input_list":["eYT1PU975044VCYAvivbbqcJtp7hDuNu"],"update_graph":true,"custom_output_list":["eYT1PU975049KtjIYCry9r4gmG2nXbdc"],"node_width":0,"node_height":0,"color":-1,"node_param_width":192,"annotation":""},"renamed":true,"id":"eYT1PU975043H1HEvnfYKHeNiaVQUzzQ","render":true,"outputs":[{"color":-1,"visible":true}],"inspectInputs":[{"name":"Toggle execution","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-3,"from_node":"eYT0Ek1939928dEuHVAkkOThUcsYy7w8","on_end":0,"raw_value":[[0,false,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":434015,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Toggle execution","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":169972,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Update","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"color":-1,"visible":true}],"type":"Node_Group","show_parameter":false},{"name":"Blend","group":"eYT1PU975043H1HEvnfYKHeNiaVQUzzQ","previewable":true,"inputs":[{"name":"Background","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"atlas":true},"from_index":0,"from_node":"eYT0LD581034xCjjPFC4M0Jhf9C1osb3","on_end":0,"raw_value":[[0,-4,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":632165,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Foreground","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"atlas":true},"from_index":0,"from_node":"eYT0aQ1493917h3T5hrwmePj4q3B2b4J","on_end":0,"raw_value":[[0,-4,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":654474,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Blend mode","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{"data":["Normal","Add","Subtract","Multiply","Screen","Overlay","Hue","Saturation","Luminosity","Maximum","Minimum","Replace","Difference"]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,3,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":646438,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Opacity","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,1,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":182141,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Mask","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"atlas":true},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,-4,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":800628,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Fill mode","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"data":["None","Stretch","Tile"]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":967128,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Output dimension","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"data":["Background","Forground","Mask","Maximum","Constant"]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":758589,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Constant dimension","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,[16,16],[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":192347,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[[[0,16,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":716961,"type":0}]],[[0,16,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":547670,"type":0}]]],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Active","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,true,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":193698,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Preserve alpha","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":294352,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Horizontal Align","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"data":["@ref sprite(__newsprite874)","@ref sprite(__newsprite874)","@ref sprite(__newsprite874)"]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":366742,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Vertical Align","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"data":["@ref sprite(__newsprite875)","@ref sprite(__newsprite875)","@ref sprite(__newsprite875)"]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":549878,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Invert mask","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":946949,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Mask feather","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"range":[1,16,0.10000000000000001]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,1,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":126901,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Position","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,[0.5,0.5],[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":617583,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[[[0,0.5,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":246672,"type":0}]],[[0,0.5,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":345884,"type":0}]]],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0}],"x":252.44444444444446,"y":21.333333333333314,"iname":"Blend11749","buffer":{},"tool":false,"attri":{"color":-1,"show_update_trigger":false,"use_project_dimension":true,"color_depth":2,"node_param_width":192,"update_graph":true,"node_width":0,"annotation":"","node_height":0,"array_process":0},"renamed":true,"id":"eYT0bA1538120JuBrBx6WwcHqXEPNtvR","render":true,"outputs":[{"color":-1,"visible":true}],"inspectInputs":[{"name":"Toggle execution","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":305908,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Toggle execution","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":629797,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Update","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"color":-1,"visible":true}],"type":"Node_Blend","show_parameter":false,"array_process":0},{"name":"Separate File Path","group":-4,"previewable":true,"inputs":[{"name":"Path","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":4,"from_node":"eYT06c232892OCgspMsCeSTAAP9bIi67","on_end":0,"raw_value":[[0,"",[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":848383,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Keep extension","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":527453,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0}],"x":-576,"y":-32,"iname":"Separate_File_Path16590","buffer":{},"tool":false,"attri":{"color":-1,"show_update_trigger":false,"node_param_width":192,"update_graph":true,"node_width":0,"annotation":"","node_height":0,"array_process":0},"renamed":true,"id":"eYT077262212QzepD572DQQkVg0p7FXk","render":true,"outputs":[{"color":-1,"visible":true},{"color":-1,"visible":true}],"inspectInputs":[{"name":"Toggle execution","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":495044,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Toggle execution","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":879795,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Update","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"color":-1,"visible":true}],"type":"Node_Path_Separate_Folder","show_parameter":false,"array_process":0},{"name":"Text","group":-4,"previewable":true,"inputs":[{"name":"Text","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,"textures\\item\\source",[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":532580,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0}],"x":-576,"y":96,"iname":"Text93144","buffer":{},"tool":false,"attri":{"color":-1,"show_update_trigger":false,"node_param_width":192,"update_graph":true,"node_width":0,"annotation":"","node_height":0,"array_process":0},"renamed":true,"id":"eYT0C3031040hu7rOoDILZyl4KiyAcVo","render":true,"outputs":[{"color":-1,"visible":true}],"inspectInputs":[{"name":"Toggle execution","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":477411,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Toggle execution","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":337786,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Update","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"color":-1,"visible":true}],"type":"Node_String","show_parameter":false,"array_process":0},{"name":"Array","group":-4,"previewable":true,"inputs":[{"name":"Type","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"update_hover":false,"data":["Any","Surface","Number","Color","Text"]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":139178,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Spread array","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":383061,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Input","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":0,"from_node":"eYT077262212QzepD572DQQkVg0p7FXk","on_end":0,"raw_value":[[0,-1,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":348798,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Input","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":0,"from_node":"eYT06c232892OCgspMsCeSTAAP9bIi67","on_end":0,"raw_value":[[0,-1,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":239275,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Input","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":0,"from_node":"eYT0C3031040hu7rOoDILZyl4KiyAcVo","on_end":0,"raw_value":[[0,-1,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":190829,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0}],"x":-352,"y":-16,"input_fix_len":2,"iname":"Array68607","buffer":{},"tool":false,"attri":{"color":-1,"size":0,"show_update_trigger":false,"spread_value":false,"node_param_width":192,"update_graph":true,"node_width":0,"annotation":"","node_height":0},"renamed":true,"id":"eYT0Bm016277Rdd8DswSYTsxpP694dDq","render":true,"outputs":[{"color":-1,"visible":true}],"inspectInputs":[{"name":"Toggle execution","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":459601,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Toggle execution","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":228847,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Update","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"color":-1,"visible":true}],"data_length":1,"type":"Node_Array","show_parameter":false},{"name":"Export","group":-4,"previewable":true,"inputs":[{"name":"Surface","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"atlas":true},"from_index":0,"from_node":"eYTAj62064804X8kwXDRpYYq5Wlori2h","on_end":0,"raw_value":[[0,-4,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":287577,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Paths","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{"filter":"Graphics Interchange Format (.gif)|*.gif|Animated WebP (.webp)|*.webp"},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,"C:\\Users\\fuzzc\\Documents\\Programming\\ashes\\src\\main\\resources\\assets\\ashes\\textures\\item\\export.png",[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":570519,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Template","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,"%d%n%i-preview",[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":632540,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Type","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{"update_hover":false,"data":["Multiple images","Image sequences","Animations"]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,2,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":361447,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Template guides","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":"%d Directory\r\n%1d Goes up 1 level\r\n%n File name\r\n%f Frame\r\n%i Array index","from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":462161,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Loop","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,true,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":679929,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Frame optimization","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":964411,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Color merge","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0.02,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":388052,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Framerate","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,30,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":702509,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Format","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{"update_hover":false,"data":[".gif",".apng",".webp",".mp4"]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":725778,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Quality","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"range":[0,100,0.10000000000000001]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,23,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":675506,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Sequence begin","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":591695,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Frame range","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{"range":[0,30,0.10000000000000001]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,[1,30],[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":239389,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":838624,"type":0}]],[[0,-1,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":735317,"type":0}]]],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Subformat","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"update_hover":false,"data":["INDEX4","INDEX8","Default (PNG32)"]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,2,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":951072,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Frame step","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,1,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":882042,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Custom Range","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":680219,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Export on Save","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":824311,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0}],"x":688,"y":176,"iname":"Export55151","buffer":{},"tool":false,"attri":{"color":-1,"show_update_trigger":false,"node_param_width":192,"update_graph":true,"node_width":0,"annotation":"","node_height":0},"renamed":true,"id":"eYTAZu5129895NqoPlZBEDbUFis3IHKz","render":true,"outputs":[{"color":-1,"visible":false},{"color":-1,"visible":false}],"inspectInputs":[{"name":"Export","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":313198,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Export All","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":147735,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Update","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"color":-1,"visible":true}],"type":"Node_Export","show_parameter":false},{"name":"Scale","group":-4,"previewable":true,"inputs":[{"name":"Surface in","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"atlas":true},"from_index":0,"from_node":"eYT1PU975043H1HEvnfYKHeNiaVQUzzQ","on_end":0,"raw_value":[[0,-4,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":218504,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Scale","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{"slide_speed":0.01},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,6,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":671858,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Mode","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"data":["Upscale","Scale to fit"]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":234106,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Target dimension","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,[16,16],[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":438741,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[[[0,16,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":693487,"type":0}]],[[0,16,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":700446,"type":0}]]],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Active","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,true,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":515463,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Scale atlas position","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,true,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":918141,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0}],"x":448,"y":112,"iname":"Scale37566","buffer":{},"tool":false,"attri":{"show_update_trigger":false,"update_graph":true,"oversample":0,"node_width":0,"node_height":0,"color":-1,"interpolate":0,"use_project_dimension":true,"color_depth":2,"node_param_width":192,"annotation":"","array_process":0},"renamed":false,"id":"eYTAj62064804X8kwXDRpYYq5Wlori2h","render":true,"outputs":[{"color":-1,"visible":true}],"inspectInputs":[{"name":"Toggle execution","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":591686,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Toggle execution","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":599078,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Update","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"color":-1,"visible":true}],"type":"Node_Scale","show_parameter":false,"array_process":0},{"name":"Composite","group":"eYT1PU975043H1HEvnfYKHeNiaVQUzzQ","previewable":true,"inputs":[{"name":"Padding","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,[0,0,0,0],[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":558480,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":352143,"type":0}]],[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":279415,"type":0}]],[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":374203,"type":0}]],[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":898647,"type":0}]]],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Output dimension","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{"data":["First surface","Largest surface","Constant"]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":172388,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Dimension","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,[16,16],[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":333864,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[[[0,16,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":950375,"type":0}]],[[0,16,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":224712,"type":0}]]],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Background","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"atlas":true},"from_index":0,"from_node":"eYT1PU975044VCYAvivbbqcJtp7hDuNu","on_end":0,"raw_value":[[0,-4,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":995476,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Position 0","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,[0,0],[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":390600,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":828640,"type":0}]],[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":105169,"type":0}]]],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Rotation 0","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":828568,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Scale 0","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,[1,1],[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":797029,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[[[0,1,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":816694,"type":0}]],[[0,1,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":409528,"type":0}]]],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Blend 0","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{"data":["Normal","Add","Subtract","Multiply","Screen","Overlay","Hue","Saturation","Luminosity","Maximum","Minimum","Replace","Difference"]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":498820,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Opacity 0","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,1,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":720426,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Surface 1","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"atlas":true},"from_index":0,"from_node":"eYT0ck1634114sZBMu1qu0LfsSHuLuUy","on_end":0,"raw_value":[[0,-4,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":130066,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Position 1","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,[0,0],[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":731818,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":143325,"type":0}]],[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":728731,"type":0}]]],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Rotation 1","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":204152,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Scale 1","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,[1,1],[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":649951,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[[[0,1,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":393811,"type":0}]],[[0,1,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":484761,"type":0}]]],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Blend 1","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{"data":["Normal","Add","Subtract","Multiply","Screen","Overlay","Hue","Saturation","Luminosity","Maximum","Minimum","Replace","Difference"]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":766131,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Opacity 1","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,1,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":714376,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0}],"x":796.44444444444446,"y":-138.66666666666669,"input_fix_len":3,"iname":"Composite50435","buffer":{},"tool":false,"attri":{"layer_selectable":[true,true,true],"layer_visible":[true,true,true]},"renamed":true,"id":"eYT0kN184158T87235v8rAtfMp7ayFjZ","render":true,"outputs":[{"color":-1,"visible":true},{"color":-1,"visible":true}],"inspectInputs":[{"name":"Toggle execution","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":117303,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Toggle execution","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":305348,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Update","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"color":-1,"visible":true}],"data_length":6,"type":"Node_Composite","show_parameter":false,"array_process":0},{"name":"Remove Color","group":"eYT1PU975043H1HEvnfYKHeNiaVQUzzQ","previewable":true,"inputs":[{"name":"Surface in","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"atlas":true},"from_index":0,"from_node":"eYT1PU975044VCYAvivbbqcJtp7hDuNu","on_end":0,"raw_value":[[0,-4,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":203284,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Colors","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,[4279506202,4280098598,4280756531,4281151291,4281809479,4282270031,4282665047,4283388771,4284046704,4284507256],[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":441205,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[[[0,4294967295,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":384497,"type":0}]],[[0,4278190080,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":352592,"type":0}]]],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Threshold","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":653997,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{"mapped":false,"map_index":10},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Mask","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"atlas":true},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,-4,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":782080,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Mix","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,1,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":820016,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Active","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,true,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":722230,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Invert","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":953909,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Channel","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"data":["@ref sprite(__newsprite870)","@ref sprite(__newsprite870)","@ref sprite(__newsprite870)","@ref sprite(__newsprite870)"]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,15,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":188242,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Invert mask","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":208013,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Mask feather","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"range":[0,32,0.10000000000000001]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":616134,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Threshold map","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"atlas":true},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,-4,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":208675,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0}],"x":76.444444444444457,"y":-58.666666666666686,"iname":"Remove_Color72891","buffer":{},"tool":false,"attri":{"color":-1,"show_update_trigger":false,"color_depth":2,"node_param_width":192,"update_graph":true,"node_width":0,"annotation":"","node_height":0,"array_process":0},"renamed":true,"id":"eYT0LD581034xCjjPFC4M0Jhf9C1osb3","render":true,"outputs":[{"color":-1,"visible":true}],"inspectInputs":[{"name":"Toggle execution","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":230522,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Toggle execution","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":631435,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Update","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"color":-1,"visible":true}],"type":"Node_Color_Remove","show_parameter":false,"array_process":0},{"name":"source","group":-4,"previewable":true,"inputs":[{"name":"Path","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"filter":"dir"},"from_index":0,"from_node":"eYT0CI046344yc77ocxWmjeLcbTR5Oap","on_end":0,"raw_value":[[0,"C:\\Users\\fuzzc\\Documents\\Programming\\ashes\\src\\main\\resources\\assets\\ashes\\textures\\item\\",[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":369177,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{"mapped":false},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Extensions","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,".png",[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":883533,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Type","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{"data":["Surface","Text"]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":923655,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Recursive","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":170010,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{"mapped":false},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0}],"x":-32,"y":0,"iname":"source","buffer":{},"tool":false,"attri":{"color":-1,"show_update_trigger":false,"color_depth":1,"node_param_width":192,"file_checker":true,"update_graph":true,"node_width":0,"annotation":"","node_height":0},"renamed":true,"id":"eYT0Ek1939928dEuHVAkkOThUcsYy7w8","render":true,"outputs":[{"color":-1,"visible":true},{"color":-1,"visible":true}],"inspectInputs":[{"name":"Refresh","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":992488,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Toggle execution","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":494575,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Update","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"color":-1,"visible":true}],"type":"Node_Directory_Search","show_parameter":false},{"name":"Level Selector","group":"eYT1PU975043H1HEvnfYKHeNiaVQUzzQ","previewable":true,"inputs":[{"name":"Surface in","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"atlas":true},"from_index":0,"from_node":"eYT0bA1538120JuBrBx6WwcHqXEPNtvR","on_end":0,"raw_value":[[0,-4,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":321571,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Midpoint","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,-0.20000000000000001,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":122640,"type":0}],[29,1,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":931135,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{"mapped":false,"map_index":9},"animators":[],"global_use":false,"anim":true,"unit":0,"shift_x":0,"shift_y":0},{"name":"Range","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0.059999999999999998,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":409740,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{"mapped":false,"map_index":10},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Mask","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"atlas":true},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,-4,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":100384,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Mix","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,1,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":628360,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Active","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,true,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":510336,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Channel","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{"data":["@ref sprite(__newsprite870)","@ref sprite(__newsprite870)","@ref sprite(__newsprite870)","@ref sprite(__newsprite870)"]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,15,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":348961,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Invert mask","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":976082,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Mask feather","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"range":[0,32,0.10000000000000001]},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,0,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":211404,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Midpoint map","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"atlas":true},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,-4,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":604030,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Range map","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{"atlas":true},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,-4,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":669233,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Keep Original","name_custom":false,"is_modified":true,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],2,2,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":918998,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":false,"attributes":{"mapped":false},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0}],"x":428.44444444444446,"y":21.333333333333314,"iname":"Level_Selector44805","buffer":{},"tool":false,"attri":{"show_update_trigger":false,"update_graph":true,"node_width":0,"node_height":0,"color":-1,"color_depth":2,"preview_resolution":64,"preview_sample":32,"node_param_width":192,"annotation":"","array_process":0},"renamed":true,"id":"eYT0bd1566982ml0R6Yr16SMKVQTdZe0","render":true,"outputs":[{"color":-1,"visible":true}],"inspectInputs":[{"name":"Toggle execution","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":948791,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Toggle execution","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":413434,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Update","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"color":-1,"visible":true}],"type":"Node_Level_Selector","show_parameter":false,"array_process":0},{"name":"Project Data","group":-4,"previewable":true,"inputs":[],"x":-688,"y":48,"iname":"Project_Data83408","buffer":{},"tool":false,"attri":{"color":-1,"show_update_trigger":false,"node_param_width":192,"update_graph":true,"node_width":0,"annotation":"","node_height":0},"renamed":true,"id":"eYT06c232892OCgspMsCeSTAAP9bIi67","render":true,"outputs":[{"color":-1,"visible":true},{"color":-1,"visible":false},{"color":-1,"visible":false},{"color":-1,"visible":false},{"color":-1,"visible":true}],"inspectInputs":[{"name":"Toggle execution","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":973666,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Toggle execution","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[[0,false,[0,1],[0,0],0,0,true,{"amplitude":1,"axis_sync":false,"phase":0,"octave":2,"frequency":4,"speed":1,"seed":888281,"type":0}]],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"name":"Update","name_custom":false,"is_modified":false,"sep_axis":false,"display_data":{},"from_index":-1,"from_node":-1,"on_end":0,"raw_value":[],"loop_range":-1,"color":-1,"global_key":"","visible":true,"attributes":{},"animators":[],"global_use":false,"anim":false,"unit":0,"shift_x":0,"shift_y":0},{"color":-1,"visible":true}],"type":"Node_Project_Data","show_parameter":false}],"version":11690,"metadata":{"version":11690,"description":"","tags":[],"file_id":0,"contact":"","alias":"","aut_id":0,"author":"shylie"},"notes":[],"graphGrid":{"size":16,"color":16777215,"show":true,"show_origin":false,"snap":true,"highlight":12,"opacity":0.050000000000000003},"preview":"","onion_skin":{"color":[255,16711680],"enabled":false,"step":1,"range":[-1,1],"alpha":0.5,"on_top":true},"addon":{},"global_node":{"inputs":[],"attri":{"color":-1,"update_graph":true,"show_update_trigger":false}},"timelines":{"name":"","color":-1,"show":true,"type":"Folder","contents":[{"node_id":"eYT0bd1566982ml0R6Yr16SMKVQTdZe0","show":true,"type":"Node"},{"node_id":-4,"show":true,"type":"Node"}]},"attributes":{"palette_fix":false,"strict":false,"surface_dimension":[16,16],"palette":[4279506202,4280098598,4280756531,4281151291,4281809479,4282270031,4282665047,4283388771,4284046704,4284507256,4278204851,4278208219,4278211327,4281894911,4284263167]},"animator":{"framerate":30,"frames_total":30,"frame_range":-4}} \ No newline at end of file diff --git a/src/main/resources/assets/ashes/textures/entity/golem.png b/src/main/resources/assets/ashes/textures/entity/golem.png new file mode 100644 index 0000000..75d0344 --- /dev/null +++ b/src/main/resources/assets/ashes/textures/entity/golem.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40f1df71d4eef17b59d26bc8f1f1842ff30e4e23848a8160085e54ab143022e3 +size 1744 diff --git a/src/main/resources/assets/ashes/textures/item/export0-preview.gif b/src/main/resources/assets/ashes/textures/item/export0-preview.gif new file mode 100644 index 0000000..6b3ec37 --- /dev/null +++ b/src/main/resources/assets/ashes/textures/item/export0-preview.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91dfbf5976e853c876294ac71f160d87c2d0f5aefe7e0187d6282c8fd235dc47 +size 26260 diff --git a/src/main/resources/assets/ashes/textures/item/export1-preview.gif b/src/main/resources/assets/ashes/textures/item/export1-preview.gif new file mode 100644 index 0000000..418da31 --- /dev/null +++ b/src/main/resources/assets/ashes/textures/item/export1-preview.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8225b0673761ed601bc2f12269579d6c11ce6821c34904bd698e1e01e03fc157 +size 37176 diff --git a/src/main/resources/assets/ashes/textures/item/heated_ashy_ingot.png b/src/main/resources/assets/ashes/textures/item/heated_ashy_ingot.png new file mode 100644 index 0000000..63df215 --- /dev/null +++ b/src/main/resources/assets/ashes/textures/item/heated_ashy_ingot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9cff46ff01309d82d8246b727d9609f00a8fa4fbceb2c811c566489b143a19a +size 2070 diff --git a/src/main/resources/assets/ashes/textures/item/heated_ashy_ingot.png.mcmeta b/src/main/resources/assets/ashes/textures/item/heated_ashy_ingot.png.mcmeta new file mode 100644 index 0000000..4f0718a --- /dev/null +++ b/src/main/resources/assets/ashes/textures/item/heated_ashy_ingot.png.mcmeta @@ -0,0 +1,3 @@ +{ + "animation": {} +} \ No newline at end of file diff --git a/src/main/resources/assets/ashes/textures/item/rune.png b/src/main/resources/assets/ashes/textures/item/rune.png new file mode 100644 index 0000000..7390066 --- /dev/null +++ b/src/main/resources/assets/ashes/textures/item/rune.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e203b36647b8c57d4c23faa257ad41fc01ed1b31de4888c377ea41f441651f48 +size 985 diff --git a/src/main/resources/assets/ashes/textures/item/rune.png.mcmeta b/src/main/resources/assets/ashes/textures/item/rune.png.mcmeta new file mode 100644 index 0000000..4f0718a --- /dev/null +++ b/src/main/resources/assets/ashes/textures/item/rune.png.mcmeta @@ -0,0 +1,3 @@ +{ + "animation": {} +} \ No newline at end of file diff --git a/src/main/resources/assets/ashes/textures/item/source/heated_ashy_ingot.png b/src/main/resources/assets/ashes/textures/item/source/heated_ashy_ingot.png new file mode 100644 index 0000000..6573846 --- /dev/null +++ b/src/main/resources/assets/ashes/textures/item/source/heated_ashy_ingot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e266aef8f35ac62e178db1002242e47926bfa070b32eac41b035c00633986c54 +size 381 diff --git a/src/main/resources/assets/ashes/textures/item/source/rune.png b/src/main/resources/assets/ashes/textures/item/source/rune.png new file mode 100644 index 0000000..f4c79b0 --- /dev/null +++ b/src/main/resources/assets/ashes/textures/item/source/rune.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6e97664c871935dd39cc8611e8cbfcb111d540e86a25bfbad7fd068994c0fa6 +size 506 diff --git a/src/main/resources/pack.mcmeta b/src/main/resources/pack.mcmeta new file mode 100644 index 0000000..eca79ae --- /dev/null +++ b/src/main/resources/pack.mcmeta @@ -0,0 +1,8 @@ +{ + "pack": { + "description": { + "text": "${mod_id} resources" + }, + "pack_format": 15 + } +} \ No newline at end of file