mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-25 08:28:34 +01:00
Compare commits
69 commits
d9b0a714d1
...
ee43fb930c
Author | SHA1 | Date | |
---|---|---|---|
ee43fb930c | |||
737a7d3d54 | |||
f404183d54 | |||
fe9610a6f3 | |||
361d4122f8 | |||
707e575586 | |||
cb31f1efbd | |||
9f90ad7e62 | |||
35ac4f5140 | |||
127595467f | |||
35a2a97e00 | |||
|
8e3c44ee0f | ||
|
1443d13df3 | ||
|
db7b7677f2 | ||
|
3e61998ca8 | ||
|
24fb9a26e0 | ||
|
9916db2991 | ||
|
42affe942f | ||
|
4eee99c75b | ||
|
4d5cc7aa58 | ||
|
fb62b86632 | ||
|
2c07ef0fa0 | ||
|
395b6d0491 | ||
|
35ff26221a | ||
|
d0363ed81c | ||
06a2957f27 | |||
|
5db1f3fbcd | ||
|
8b22fcfa6b | ||
|
2c57a7641a | ||
|
26b021a5e9 | ||
|
497b742b87 | ||
|
c945843038 | ||
|
615bde1cb8 | ||
|
829cc788c7 | ||
|
2ae9ed307e | ||
|
f44c4de74a | ||
|
9dbbb7b913 | ||
|
b51722e181 | ||
|
9d8e711d35 | ||
|
69df7e0e81 | ||
|
47f11f0287 | ||
|
be421af8e2 | ||
|
17473ae179 | ||
|
4c439f5b56 | ||
|
78b9055eae | ||
|
fb1663f106 | ||
|
a5c031c135 | ||
|
6139ca68fa | ||
|
6e0fb39544 | ||
|
0b964b4c89 | ||
|
99b7e0bf43 | ||
|
aa015521bc | ||
|
40d27de0f5 | ||
|
d04ba602d8 | ||
|
4020a1a95d | ||
34d151c878 | |||
9d6118ef27 | |||
e32d6d5866 | |||
7d974b909b | |||
|
b65b646dc8 | ||
|
896a082d74 | ||
|
1355a8e0a1 | ||
|
b9cdc48868 | ||
|
5180afb19d | ||
|
b2493cd071 | ||
|
714b3a8433 | ||
|
36aeb38ce7 | ||
|
90c937a27a | ||
|
5cf1d2e674 |
4063 changed files with 45200 additions and 88266 deletions
2
.github/FUNDING.yml
vendored
Normal file
2
.github/FUNDING.yml
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
github: Ellpeck
|
||||
patreon: Ellpeck
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -12,7 +12,6 @@
|
|||
/classes
|
||||
/bin/
|
||||
/run/
|
||||
/runs/
|
||||
|
||||
*.classpath
|
||||
*.project
|
||||
|
|
2
Jenkinsfile
vendored
2
Jenkinsfile
vendored
|
@ -21,7 +21,7 @@ pipeline {
|
|||
|
||||
stage('Publish') {
|
||||
when {
|
||||
branch '1.12.2'
|
||||
branch 'main'
|
||||
}
|
||||
steps {
|
||||
sh './gradlew publish --no-daemon'
|
||||
|
|
2
LICENSE
2
LICENSE
|
@ -1,6 +1,6 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2019 Mrbysco
|
||||
Copyright (c) 2015-2020 Ellpeck
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
|
200
build.gradle
200
build.gradle
|
@ -1,161 +1,137 @@
|
|||
plugins {
|
||||
id 'java-library'
|
||||
id 'eclipse'
|
||||
id 'idea'
|
||||
id 'maven-publish'
|
||||
id 'net.neoforged.gradle.userdev' version '7.0.165'
|
||||
buildscript {
|
||||
repositories {
|
||||
maven { url = 'https://files.minecraftforge.net/maven' }
|
||||
jcenter()
|
||||
mavenCentral()
|
||||
}
|
||||
dependencies {
|
||||
classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '3.+', changing: true
|
||||
}
|
||||
}
|
||||
|
||||
def buildSuffix = System.getenv('BUILD_NUMBER') ? "-b${System.getenv('BUILD_NUMBER')}" : ""
|
||||
apply plugin: 'net.minecraftforge.gradle'
|
||||
apply plugin: 'eclipse'
|
||||
apply plugin: 'idea'
|
||||
apply plugin: 'maven-publish'
|
||||
|
||||
version = "$mod_version+mc${game_version}${buildSuffix}"
|
||||
version = mod_version
|
||||
group = "de.ellpeck.actuallyadditions"
|
||||
base {
|
||||
archivesName = "ActuallyAdditions"
|
||||
archivesBaseName = "actuallyadditions-${mc_version}"
|
||||
|
||||
if (System.getenv('BUILD_NUMBER') != null) {
|
||||
version += "." + System.getenv('BUILD_NUMBER')
|
||||
}
|
||||
|
||||
java.toolchain.languageVersion = JavaLanguageVersion.of(21)
|
||||
sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8'
|
||||
|
||||
if (rootProject.file('src/main/resources/META-INF/accesstransformer.cfg').exists()) {
|
||||
minecraft.accessTransformers.file rootProject.file('src/main/resources/META-INF/accesstransformer.cfg')
|
||||
sourceSets {
|
||||
main.resources.srcDirs += 'src/generated/resources'
|
||||
}
|
||||
|
||||
minecraft {
|
||||
mappings channel: "snapshot", version: mcp_version
|
||||
// accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg')
|
||||
|
||||
runs {
|
||||
// applies to all the run configs below
|
||||
configureEach { net.neoforged.gradle.dsl.common.runs.run.Run run ->
|
||||
//Limit ram usage for the dev environment to 4GB
|
||||
jvmArgument '-Xmx4G'
|
||||
|
||||
if (run.project.javaToolchains.launcherFor(java.toolchain).map { it.metadata.vendor }.getOrElse("").contains("JetBrains")) {
|
||||
run.jvmArgument("-XX:+AllowEnhancedClassRedefinition")
|
||||
}
|
||||
|
||||
modSource project.sourceSets.main
|
||||
}
|
||||
|
||||
client {
|
||||
// Comma-separated list of namespaces to load gametests from. Empty = all namespaces.
|
||||
systemProperty 'neoforge.enabledGameTestNamespaces', "actuallyadditions"
|
||||
properties 'forge.logging.markers': ''
|
||||
properties 'forge.logging.console.level': 'debug'
|
||||
workingDirectory project.file('run')
|
||||
mods {
|
||||
actuallyadditions {
|
||||
source sourceSets.main
|
||||
}
|
||||
}
|
||||
client2 {
|
||||
configure ("client")
|
||||
|
||||
programArguments.addAll '--username', 'Dev2'
|
||||
|
||||
// Comma-separated list of namespaces to load gametests from. Empty = all namespaces.
|
||||
systemProperty 'neoforge.enabledGameTestNamespaces', "actuallyadditions"
|
||||
}
|
||||
|
||||
server {
|
||||
systemProperty 'neoforge.enabledGameTestNamespaces', "actuallyadditions"
|
||||
programArgument '--nogui'
|
||||
properties 'forge.logging.markers': ''
|
||||
properties 'forge.logging.console.level': 'debug'
|
||||
workingDirectory project.file('run/server')
|
||||
mods {
|
||||
actuallyadditions {
|
||||
source sourceSets.main
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
data {
|
||||
// example of overriding the workingDirectory set in configureEach above, uncomment if you want to use it
|
||||
// workingDirectory project.file('run-data')
|
||||
|
||||
// Specify the modid for data generation, where to output the resulting resource, and where to look for existing resources.
|
||||
programArguments.addAll '--mod', "actuallyadditions", '--all', '--output', file('src/generated/resources/').getAbsolutePath(), '--existing', file('src/main/resources/').getAbsolutePath()
|
||||
workingDirectory project.file('run/data')
|
||||
args "--mod", "actuallyadditions", "--all", "--output", file('src/generated/resources/'), "--existing", file('src/main/resources')
|
||||
mods {
|
||||
actuallyadditions {
|
||||
source sourceSets.main
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
sourceSets.main.resources { srcDir 'src/generated/resources' }
|
||||
|
||||
// Sets up a dependency configuration called 'localRuntime'.
|
||||
// This configuration should be used instead of 'runtimeOnly' to declare
|
||||
// a dependency that will be present for runtime testing but that is
|
||||
// "optional", meaning it will not be pulled by dependents of this mod.
|
||||
configurations {
|
||||
runtimeClasspath.extendsFrom localRuntime
|
||||
}
|
||||
|
||||
repositories {
|
||||
maven {
|
||||
url = "https://maven.blamejared.com"
|
||||
name = "Progwml6 maven / JEI Maven"
|
||||
url = "https://dvs1.progwml6.com/files/maven/"
|
||||
}
|
||||
maven {
|
||||
url "https://cursemaven.com"
|
||||
content {
|
||||
includeGroup "curse.maven"
|
||||
name = "ModMaven / JEI Mirror"
|
||||
url = "https://modmaven.k-4u.nl"
|
||||
}
|
||||
maven {
|
||||
url = "https://www.cursemaven.com"
|
||||
}
|
||||
maven { url = 'https://maven.octo-studios.com/releases' }
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation "net.neoforged:neoforge:${neo_version}"
|
||||
minecraft "net.minecraftforge:forge:${mc_version}-${forge_version}"
|
||||
|
||||
compileOnly "mezz.jei:jei-${jei_minecraft}-common-api:${jei_version}"
|
||||
compileOnly "mezz.jei:jei-${jei_minecraft}-neoforge-api:${jei_version}"
|
||||
// compile against the JEI API but do not include it at runtime
|
||||
compileOnly fg.deobf("mezz.jei:jei-${mc_version}:${jei_version}:api")
|
||||
// at runtime, use the full JEI jar
|
||||
runtimeOnly fg.deobf("mezz.jei:jei-${mc_version}:${jei_version}")
|
||||
|
||||
localRuntime "mezz.jei:jei-${jei_minecraft}-neoforge:${jei_version}"
|
||||
|
||||
compileOnly "vazkii.patchouli:Patchouli:${patchouli_version}"
|
||||
localRuntime "vazkii.patchouli:Patchouli:${patchouli_version}"
|
||||
compileOnly "xyz.brassgoggledcoders:PatchouliProvider:${patchouli_provider_version}"
|
||||
localRuntime "xyz.brassgoggledcoders:PatchouliProvider:${patchouli_provider_version}"
|
||||
|
||||
localRuntime "curse.maven:jade-324717:5803666"
|
||||
localRuntime "curse.maven:mekanism-268560:5680395"
|
||||
|
||||
implementation "top.theillusivec4.curios:curios-neoforge:${curios_version}"
|
||||
compile "curse.maven:fastworkbench:3003114"
|
||||
}
|
||||
|
||||
jar {
|
||||
group = 'artifact'
|
||||
manifest {
|
||||
attributes(["Specification-Title" : "Actually Additions",
|
||||
"Specification-Version" : "1",
|
||||
"Implementation-Title" : project.archivesBaseName,
|
||||
"Implementation-Version" : project.version,
|
||||
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ"),
|
||||
"Modloader": "Neoforge",
|
||||
"Modloader-Version": project.neo_version,
|
||||
])
|
||||
attributes(["Specification-Title": "actuallyadditions",
|
||||
"Specification-Vendor": "Ellpeck",
|
||||
"Specification-Version": mod_version,
|
||||
"Implementation-Title": project.name,
|
||||
"Implementation-Version": "${version}",
|
||||
"Implementation-Vendor" :"Ellpeck",
|
||||
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")],)
|
||||
}
|
||||
}
|
||||
|
||||
from sourceSets.main.output
|
||||
}
|
||||
|
||||
task apiJar(type: Jar) {
|
||||
from sourceSets.main.output
|
||||
from sourceSets.main.java
|
||||
archiveClassifier.set('api')
|
||||
include 'de/ellpeck/actuallyadditions/api/**'
|
||||
}
|
||||
|
||||
javadoc {
|
||||
include 'de/ellpeck/actuallyadditions/api/**'
|
||||
}
|
||||
|
||||
task javadocJar(type: Jar, dependsOn: javadoc) {
|
||||
from 'build/docs/javadoc'
|
||||
archiveClassifier.set('javadoc')
|
||||
task deobfJar(type: Jar) {
|
||||
from(sourceSets.main.output)
|
||||
archiveName = "${baseName}-${version}-deobf.${extension}"
|
||||
}
|
||||
|
||||
task sourcesJar(type: Jar) {
|
||||
from sourceSets.main.java
|
||||
archiveClassifier.set('sources')
|
||||
from(sourceSets.main.allSource)
|
||||
archiveName = "${baseName}-${version}-sources.${extension}"
|
||||
}
|
||||
|
||||
artifacts {
|
||||
archives sourcesJar, apiJar, javadocJar
|
||||
archives deobfJar
|
||||
archives sourcesJar
|
||||
}
|
||||
|
||||
publishing {
|
||||
tasks.publish.dependsOn build
|
||||
publications {
|
||||
mavenJava(MavenPublication) {
|
||||
groupId = group
|
||||
artifactId = base.archivesName.get()
|
||||
version = version
|
||||
|
||||
groupId project.group
|
||||
artifactId project.archivesBaseName
|
||||
version project.version
|
||||
from components.java
|
||||
|
||||
artifact sourcesJar
|
||||
artifact apiJar
|
||||
artifact javadocJar
|
||||
artifact deobfJar {
|
||||
classifier 'deobf'
|
||||
}
|
||||
|
||||
artifact sourcesJar {
|
||||
classifier 'sources'
|
||||
}
|
||||
|
||||
pom.withXml {
|
||||
def node = asNode()
|
||||
|
@ -170,11 +146,3 @@ publishing {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
// IDEA no longer automatically downloads sources/javadoc jars for dependencies, so we need to explicitly enable the behavior.
|
||||
idea {
|
||||
module {
|
||||
downloadSources = true
|
||||
downloadJavadoc = true
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,21 +1,11 @@
|
|||
# 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
|
||||
# Actually Additions
|
||||
|
||||
mod_version=1.3.6
|
||||
mod_version=2.0
|
||||
|
||||
# Forge
|
||||
game_version=1.21.1
|
||||
neo_version=21.1.71
|
||||
|
||||
# Parchment (Mappings)
|
||||
neogradle.subsystems.parchment.minecraftVersion=1.21
|
||||
neogradle.subsystems.parchment.mappingsVersion=2024.07.28
|
||||
neogradle.subsystems.conventions.runs.create-default-run-per-type=false
|
||||
|
||||
# Other mods
|
||||
jei_minecraft=1.21.1
|
||||
jei_version=19.21.0.246
|
||||
patchouli_version=1.21-87-NEOFORGE
|
||||
patchouli_provider_version=1.21.1-1.0.11-Snapshot.3
|
||||
curios_version=9.+
|
||||
mc_version=1.15.2
|
||||
mcp_version=20200514-1.15.1
|
||||
forge_version=31.2.36
|
||||
jei_version=6.0.3.15
|
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
Binary file not shown.
4
gradle/wrapper/gradle-wrapper.properties
vendored
4
gradle/wrapper/gradle-wrapper.properties
vendored
|
@ -1,7 +1,5 @@
|
|||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
|
||||
networkTimeout=10000
|
||||
validateDistributionUrl=true
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.3-all.zip
|
||||
|
|
303
gradlew
vendored
303
gradlew
vendored
|
@ -1,127 +1,78 @@
|
|||
#!/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.
|
||||
#
|
||||
#!/usr/bin/env sh
|
||||
|
||||
##############################################################################
|
||||
#
|
||||
# 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/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
|
||||
# within the Gradle project.
|
||||
#
|
||||
# You can find Gradle at https://github.com/gradle/gradle/.
|
||||
#
|
||||
##
|
||||
## Gradle start up script for UN*X
|
||||
##
|
||||
##############################################################################
|
||||
|
||||
# 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
|
||||
PRG="$0"
|
||||
# Need this for relative symlinks.
|
||||
while [ -h "$PRG" ] ; do
|
||||
ls=`ls -ld "$PRG"`
|
||||
link=`expr "$ls" : '.*-> \(.*\)$'`
|
||||
if expr "$link" : '/.*' > /dev/null; then
|
||||
PRG="$link"
|
||||
else
|
||||
PRG=`dirname "$PRG"`"/$link"
|
||||
fi
|
||||
done
|
||||
SAVED="`pwd`"
|
||||
cd "`dirname \"$PRG\"`/" >/dev/null
|
||||
APP_HOME="`pwd -P`"
|
||||
cd "$SAVED" >/dev/null
|
||||
|
||||
# This is normally unused
|
||||
# shellcheck disable=SC2034
|
||||
APP_BASE_NAME=${0##*/}
|
||||
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
|
||||
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
|
||||
APP_NAME="Gradle"
|
||||
APP_BASE_NAME=`basename "$0"`
|
||||
|
||||
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||
DEFAULT_JVM_OPTS=""
|
||||
|
||||
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
||||
MAX_FD=maximum
|
||||
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 ;;
|
||||
case "`uname`" in
|
||||
CYGWIN* )
|
||||
cygwin=true
|
||||
;;
|
||||
Darwin* )
|
||||
darwin=true
|
||||
;;
|
||||
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
|
||||
JAVACMD="$JAVA_HOME/jre/sh/java"
|
||||
else
|
||||
JAVACMD=$JAVA_HOME/bin/java
|
||||
JAVACMD="$JAVA_HOME/bin/java"
|
||||
fi
|
||||
if [ ! -x "$JAVACMD" ] ; then
|
||||
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
|
||||
|
@ -130,120 +81,92 @@ Please set the JAVA_HOME variable in your environment to match the
|
|||
location of your Java installation."
|
||||
fi
|
||||
else
|
||||
JAVACMD=java
|
||||
if ! command -v java >/dev/null 2>&1
|
||||
then
|
||||
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||
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
|
||||
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=SC2039,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=SC2039,SC3045
|
||||
ulimit -n "$MAX_FD" ||
|
||||
warn "Could not set maximum file descriptor limit to $MAX_FD"
|
||||
esac
|
||||
if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
|
||||
MAX_FD_LIMIT=`ulimit -H -n`
|
||||
if [ $? -eq 0 ] ; then
|
||||
if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
|
||||
MAX_FD="$MAX_FD_LIMIT"
|
||||
fi
|
||||
ulimit -n $MAX_FD
|
||||
if [ $? -ne 0 ] ; then
|
||||
warn "Could not set maximum file descriptor limit: $MAX_FD"
|
||||
fi
|
||||
else
|
||||
warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
|
||||
fi
|
||||
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" )
|
||||
# For Darwin, add options to specify how the application appears in the dock
|
||||
if $darwin; then
|
||||
GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
|
||||
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
|
||||
|
||||
# For Cygwin, switch paths to Windows format before running java
|
||||
if $cygwin ; then
|
||||
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
|
||||
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
|
||||
JAVACMD=`cygpath --unix "$JAVACMD"`
|
||||
|
||||
# We build the pattern for arguments to be converted via cygpath
|
||||
ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
|
||||
SEP=""
|
||||
for dir in $ROOTDIRSRAW ; do
|
||||
ROOTDIRS="$ROOTDIRS$SEP$dir"
|
||||
SEP="|"
|
||||
done
|
||||
OURCYGPATTERN="(^($ROOTDIRS))"
|
||||
# Add a user-defined pattern to the cygpath arguments
|
||||
if [ "$GRADLE_CYGPATTERN" != "" ] ; then
|
||||
OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
|
||||
fi
|
||||
# Now convert the arguments - kludge to limit ourselves to /bin/sh
|
||||
i=0
|
||||
for arg in "$@" ; do
|
||||
CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
|
||||
CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
|
||||
|
||||
if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
|
||||
eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
|
||||
else
|
||||
eval `echo args$i`="\"$arg\""
|
||||
fi
|
||||
i=$((i+1))
|
||||
done
|
||||
case $i in
|
||||
(0) set -- ;;
|
||||
(1) set -- "$args0" ;;
|
||||
(2) set -- "$args0" "$args1" ;;
|
||||
(3) set -- "$args0" "$args1" "$args2" ;;
|
||||
(4) set -- "$args0" "$args1" "$args2" "$args3" ;;
|
||||
(5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
|
||||
(6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
|
||||
(7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
|
||||
(8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
|
||||
(9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
# Escape application args
|
||||
save () {
|
||||
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
|
||||
echo " "
|
||||
}
|
||||
APP_ARGS=$(save "$@")
|
||||
|
||||
# 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, following the shell quoting and substitution rules
|
||||
eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
|
||||
|
||||
# Collect all arguments for the java command:
|
||||
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
|
||||
# and any embedded shellness will be escaped.
|
||||
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
|
||||
# treated as '${Hostname}' itself on the command line.
|
||||
|
||||
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"
|
||||
# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
|
||||
if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
|
||||
cd "$(dirname "$0")"
|
||||
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" "$@"
|
||||
|
|
72
gradlew.bat
vendored
72
gradlew.bat
vendored
|
@ -1,19 +1,3 @@
|
|||
@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
|
||||
|
@ -26,28 +10,24 @@ 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"
|
||||
set DEFAULT_JVM_OPTS=
|
||||
|
||||
@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
|
||||
if "%ERRORLEVEL%" == "0" goto init
|
||||
|
||||
echo. 1>&2
|
||||
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
|
||||
echo. 1>&2
|
||||
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
|
||||
echo location of your Java installation. 1>&2
|
||||
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
|
||||
|
||||
|
@ -55,36 +35,48 @@ goto fail
|
|||
set JAVA_HOME=%JAVA_HOME:"=%
|
||||
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
|
||||
|
||||
if exist "%JAVA_EXE%" goto execute
|
||||
if exist "%JAVA_EXE%" goto init
|
||||
|
||||
echo. 1>&2
|
||||
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
|
||||
echo. 1>&2
|
||||
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
|
||||
echo location of your Java installation. 1>&2
|
||||
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
|
||||
|
||||
:init
|
||||
@rem Get command-line arguments, handling Windows variants
|
||||
|
||||
if not "%OS%" == "Windows_NT" goto win9xME_args
|
||||
|
||||
:win9xME_args
|
||||
@rem Slurp the command line arguments.
|
||||
set CMD_LINE_ARGS=
|
||||
set _SKIP=2
|
||||
|
||||
:win9xME_args_slurp
|
||||
if "x%~1" == "x" goto execute
|
||||
|
||||
set CMD_LINE_ARGS=%*
|
||||
|
||||
: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 %*
|
||||
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
|
||||
|
||||
:end
|
||||
@rem End local scope for the variables with windows NT shell
|
||||
if %ERRORLEVEL% equ 0 goto mainEnd
|
||||
if "%ERRORLEVEL%"=="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%
|
||||
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
|
||||
exit /b 1
|
||||
|
||||
:mainEnd
|
||||
if "%OS%"=="Windows_NT" endlocal
|
||||
|
|
Binary file not shown.
Binary file not shown.
Before Width: | Height: | Size: 4.6 KiB |
Binary file not shown.
Before Width: | Height: | Size: 51 KiB |
95
port.MD
95
port.MD
|
@ -1,95 +0,0 @@
|
|||
# Remove
|
||||
- [x] Lush caves
|
||||
- [x] 11 lens (lens of disruption)
|
||||
- [x] Smiley cloud
|
||||
- [x] Occasional solidified XP drop from mobs
|
||||
- [x] Treasure chests
|
||||
- [x] Composter and bio-mash, biomass, bio coal and fertilizer
|
||||
- [x] Charcoal blocks
|
||||
- [x] Ender pearl blocks
|
||||
- [x] ESDs
|
||||
- [x] Fishing nets
|
||||
- [x] Solar panels
|
||||
- [X] Item repairers
|
||||
- [x] Knife (food can just be crafted normally)
|
||||
- [X] Black lotuses and black dye
|
||||
- [x] Chest to storage crate upgrade (makes little sense with the way they are being changed), keep the other ones though
|
||||
- [x] Ring of liquid banning
|
||||
- [x] Emerald and obsidian armor and tools
|
||||
- [x] Black quartz armor and tools
|
||||
- [x] Crystal armor and tools (why did I ever make this)
|
||||
- [x] Resonant rice (this was an in-joke a long time ago)
|
||||
- [x] Jam villager and jams
|
||||
- [x] Potion rings
|
||||
- [x] Fur balls
|
||||
- [x] The food (except for stuff used elsewhere like the coffee)
|
||||
- [x] The weird rainbow colored item names, except for the crystals which should keep their color-matching names
|
||||
|
||||
# Change
|
||||
- [ ] Make crystal clusters spawn in amethyst nodes in 1.18, leave unused in 1.16 (same with crystal shards)
|
||||
- [ ] Possibly make the bio reactor generate more CF, but with the same mechanics
|
||||
- [ ] Improve the UI of the firework box (it's missing the gradient background, and it should also have a texture)
|
||||
- [ ] Make fluid laser relays have a reasonable cap (maybe 2048mb per tick or something? Possibly check other mods for reference)
|
||||
- [ ] Change "whitelist" and "blacklist" in item filters to "allow" and "deny" or something similar
|
||||
- [ ] Change the recipe for the XP solidifier so that it's craftable even with solidified XP removed from mobs
|
||||
- [ ] Add off-hand slots to energizer and enervator
|
||||
- [x] Change the recipe of casings (the lava factory ones) to give only 4, and rename them to "Lava Factory Casing"
|
||||
- [x] Make coal generator create half as much CF, we don't want this to be a main power source for people( Flanks: already dropped to 20fe/t)
|
||||
- [x] Make black quartz drop the items directly, unless silk-touched
|
||||
- [ ] Make storage crates work as follows, recipes unchanged:
|
||||
- [ ] Lowest tier can hold 8192 of a single item
|
||||
- [ ] Mid-tier can hold 16384 of two items
|
||||
- [ ] Highest tier can hold 32768 of four items
|
||||
- [ ] Rename powered furnace to double powered furnace and add a second block which is a single powered furnace, make recipes work similarly to crusher and double crusher
|
||||
- [ ] Make greenhouse glass less OP and potentially more difficult to craft
|
||||
- [ ] Improve the coffee maker's ui by putting the water meter actually into the ui
|
||||
- [x] Rename phantom boosters to range boosters (since they work for other stuff too)
|
||||
- [x] Make worms use that new forge event/hook to keep the ground watered instead of trying to re-water it every few ticks
|
||||
- [x] Give ender star an enchantment glint
|
||||
- [ ] Make miner lens far more expensive to use, mmm power creep
|
||||
- [x] Make coffee beans and seeds be the same item or I might get killed by someone finally
|
||||
|
||||
# Keep As Is
|
||||
- [X] Battery box
|
||||
- [x] Item interfaces and item laser system
|
||||
- [x] Farmer
|
||||
- [x] Empowerer and display stands
|
||||
- [x] Tiny torch
|
||||
- [x] Shock absorber
|
||||
- [x] Player interface
|
||||
- [x] Vertical digger
|
||||
- [x] Atomic reconstructor
|
||||
- [x] Ranged collector
|
||||
- [x] Breakers, placers and long-range breakers, as well as fluid variants
|
||||
- [x] Leaf-eating generator
|
||||
- [ ] Lamps and lamp controller
|
||||
- [x] Lava factory controller
|
||||
- [x] The entire canola system
|
||||
- [x] Phantomfaces and their variants
|
||||
- [x] Feeder
|
||||
- [x] Crusher and double crusher
|
||||
- [x] Heat collectors
|
||||
- [x] Precision dropper
|
||||
- [x] Engineer's goggles
|
||||
- [ ] Laser relay modifiers and wrench
|
||||
- [x] Handheld filler
|
||||
- [x] Sacks
|
||||
- [x] Player probe
|
||||
- [x] Item filter
|
||||
- [x] Water bowl
|
||||
- [x] Tiny coal and charcoal
|
||||
- [x] Rice slimeballs
|
||||
- [ ] Storage crate keeper
|
||||
- [x] Color, detonation, certain death, killer and disenchanting lenses
|
||||
- [ ] Storage crate upgrades, except for the "chest to storage crate" one
|
||||
- [x] Ring of growth
|
||||
- [x] Ring of magnetization
|
||||
- [x] Teleport staff
|
||||
- [ ] Wings of the Bats and wing items dropped from bats
|
||||
- [x] Drills and drill upgrades
|
||||
- [x] Batteries
|
||||
- [x] Crafting table on a stick
|
||||
- [x] Leaf blowers
|
||||
- [ ] The book
|
||||
- [x] The Crystal Flux name and rainbow effect
|
||||
- [x] Engineer's village house and engineer villager
|
|
@ -1,14 +0,0 @@
|
|||
pluginManagement {
|
||||
repositories {
|
||||
gradlePluginPortal()
|
||||
maven {
|
||||
name = 'Official NeoForge Maven'
|
||||
url = 'https://maven.neoforged.net/releases'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
plugins {
|
||||
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.8.0'
|
||||
}
|
||||
rootProject.name = "actuallyadditions"
|
7
setup.bat
Normal file
7
setup.bat
Normal file
|
@ -0,0 +1,7 @@
|
|||
call gradlew eclipse --no-daemon
|
||||
call gradlew eclipse genEclipseRuns --no-daemon
|
||||
for %%I in (.) do set PROJNAME=%%~nxI
|
||||
del %PROJNAME%-Client.launch
|
||||
del %PROJNAME%-Server.launch
|
||||
ren runClient.launch %PROJNAME%-Client.launch
|
||||
ren runServer.launch %PROJNAME%-Server.launch
|
|
@ -1,64 +0,0 @@
|
|||
#Because he's me
|
||||
ellpeck=actuallyadditions:atomic_reconstructor
|
||||
#Because he submitted tons of ideas for the mod
|
||||
dqmhose=minecraft:torch
|
||||
#Because he does all of the textures
|
||||
twoofeight=actuallyadditions:heat_collector
|
||||
#Because she is awesome and squids are cool
|
||||
larixine=actuallyadditions:black_crystal_shard
|
||||
#Because he helps me with models and stuff
|
||||
canitzp=actuallyadditions:coffee_machine_block
|
||||
#Because he's an awesome guy and helps with lots of stuff
|
||||
xdjackiexd=actuallyadditions:drill_white
|
||||
#Because worms
|
||||
bootytoast=actuallyadditions:worm
|
||||
#Because he does the ActAdd doc on the FTB Wiki
|
||||
xbony2=actuallyadditions:booklet
|
||||
|
||||
#Patreon stuff
|
||||
# 0 = Redstone, 1 = Lapis, 2 = Diamond, 3 = Coal, 4 = Emerald, 5 = Iron
|
||||
ftog_thorgal=actuallyadditions:restonia_crystal
|
||||
minetechniker=actuallyadditions:empowered_diamatine_crystal
|
||||
3pixel=actuallyadditions:more_damage_lens
|
||||
kirindave=actuallyadditions:empowered_void_crystal
|
||||
theonewhohunts=actuallyadditions:empowered_emeradic_crystal
|
||||
garantiertnicht=actuallyadditions:filling_wand
|
||||
heathcliff1998=actuallyadditions:empowered_emeradic_crystal
|
||||
saphrym=actuallyadditions:void_crystal
|
||||
lyxthegamer=actuallyadditions:empowered_emeradic_crystal
|
||||
skedone=actuallyadditions:empowered_emeradic_crystal
|
||||
r33s3s=actuallyadditions:empowered_diamatine_crystal
|
||||
roadrunner116=actuallyadditions:emeradic_crystal
|
||||
albrechtboucher=actuallyadditions:empowered_diamatine_crystal
|
||||
fobok=actuallyadditions:emeradic_crystal
|
||||
dankfrog=actuallyadditions:empowered_diamatine_crystal
|
||||
deanwhufc=actuallyadditions:empowered_diamatine_crystal
|
||||
witsend66=actuallyadditions:empowered_palis_crystal
|
||||
broccoli_bob=actuallyadditions:void_crystal
|
||||
dolinmyster=actuallyadditions:empowered_emeradic_crystal
|
||||
savos_darkran=actuallyadditions:emeradic_crystal
|
||||
flanks255=actuallyadditions:empowered_void_crystal
|
||||
spectacular101=actuallyadditions:enori_crystal
|
||||
scottradish=actuallyadditions:restonia_crystal
|
||||
slothicornstudio=actuallyadditions:empowered_enori_crystal
|
||||
mecharm=actuallyadditions:enori_crystal
|
||||
DJAscendance=actuallyadditions:diamatine_crystal
|
||||
SneezySchoo=actuallyadditions:restonia_crystal
|
||||
Mistakin=actuallyadditions:void_crystal
|
||||
Tonitch8=actuallyadditions:emeradic_crystal
|
||||
Owlwix=actuallyadditions:empowered_enori_crystal
|
||||
3MJoey=actuallyadditions:palis_crystal
|
||||
Ridanis=actuallyadditions:hairy_ball
|
||||
gefailter71=actuallyadditions:empowered_restonia_crystal
|
||||
SeaSaltStar=actuallyadditions:restonia_crystal
|
||||
VlaDracul3=actuallyadditions:emeradic_crystal
|
||||
slbsh=actuallyadditions:empowered_restonia_crystal
|
||||
WolfgalVlad=actuallyadditions:empowered_diamatine_crystal
|
||||
Water_Moon=actuallyadditions:phantom_booster
|
||||
ticticboi=actuallyadditions:empowered_diamatine_crystal
|
||||
The_Boo=actuallyadditions:empowered_diamatine_crystal
|
||||
Cloniart47=actuallyadditions:diamatine_crystal
|
||||
kei_kouma=actuallyadditions:enori_crystal
|
||||
kingofaces2=actuallyadditions:emeradic_crystal
|
||||
Sharkbite202020=actuallyadditions:empowered_emeradic_crystal
|
||||
ArcticPrince=actuallyadditions:phantom_itemface
|
|
@ -1,19 +0,0 @@
|
|||
// 1.21.1 2024-10-22T22:13:28.2925645 Registries
|
||||
74628b34b75e1a2fa2ac1f6282b7d9d4e155c254 data/actuallyadditions/banner_pattern/book.json
|
||||
899dfa1e0d0b15ffc090605543ec144bbfcacc4c data/actuallyadditions/banner_pattern/drill.json
|
||||
7d9a33a9a151ad83de36e9af8822d08c86137adc data/actuallyadditions/banner_pattern/leaf_blo.json
|
||||
2e09aca41de0d283a4db78add64744852788bbeb data/actuallyadditions/banner_pattern/phan_con.json
|
||||
020d2b1f1c21d6c6663ef8126a52e2b9deb0e52e data/actuallyadditions/damage_type/atomicreconstructor.json
|
||||
4ba41428fdcf03f52855029153722e22e8702823 data/actuallyadditions/neoforge/biome_modifier/add_black_quartz.json
|
||||
360756e7cd20afc4c6b2ad58b2fd4f37358f2ee6 data/actuallyadditions/neoforge/biome_modifier/add_canola.json
|
||||
0f06d7aad676a45a4ca187552ac8c4bbd6f1b1b7 data/actuallyadditions/neoforge/biome_modifier/add_coffee.json
|
||||
1401a66bbf2e1daaa459381103ffba9d02be352d data/actuallyadditions/neoforge/biome_modifier/add_flax.json
|
||||
dceca4be717b43a4dfc945f62f5c09622604d7f4 data/actuallyadditions/worldgen/configured_feature/canola_patch.json
|
||||
d56ed72dde226d9ac5eb07fa701f7a3902f1dcf2 data/actuallyadditions/worldgen/configured_feature/coffee_patch.json
|
||||
9a42d5943e40d102c5e9efee988527da3622d88d data/actuallyadditions/worldgen/configured_feature/flax_patch.json
|
||||
80765c24aa747df53139d14a9ac3293b4b3eab16 data/actuallyadditions/worldgen/configured_feature/ore_black_quartz.json
|
||||
0401f9a4edd53ed76536a2c050364a6a442185bd data/actuallyadditions/worldgen/placed_feature/canola_patch.json
|
||||
d7358c6519319ed3950dcdc34102504c53ccaf22 data/actuallyadditions/worldgen/placed_feature/coffee_patch.json
|
||||
fb7baf3c1d721832a9b5bcea7ac7dd3ee2c50118 data/actuallyadditions/worldgen/placed_feature/flax_patch.json
|
||||
efb41395b407edbd91712bcb63976de46fed5d04 data/actuallyadditions/worldgen/placed_feature/ore_black_quartz.json
|
||||
7cf126882346a296f045db75facf741c77b7d3b1 data/actuallyadditions/worldgen/processor_list/engineer_house.json
|
|
@ -1 +0,0 @@
|
|||
// 1.21.1 2024-10-22T20:41:07.9123026 Update structure files in /structure/
|
|
@ -1,230 +0,0 @@
|
|||
// 1.21.1 2024-08-11T19:54:30.308272 Block States: actuallyadditions
|
||||
23a6aa86c3f14e6a61fc8b17b65063f1995c8592 assets/actuallyadditions/blockstates/atomic_reconstructor.json
|
||||
88f479927d1abdf16e24a0950ccffa86b5af8b3f assets/actuallyadditions/blockstates/battery_box.json
|
||||
6ada5cb9e03ed162433bfc048712b6fc3937b420 assets/actuallyadditions/blockstates/bio_reactor.json
|
||||
5c96fc287e63f5bdd31864bdab698ce34817fd9d assets/actuallyadditions/blockstates/black_quartz_block.json
|
||||
f88640ab3aa81ae4a027948d94386c83dd488d3f assets/actuallyadditions/blockstates/black_quartz_brick_block.json
|
||||
76275adac938c575565d4aeb21b9994a7f561f88 assets/actuallyadditions/blockstates/black_quartz_brick_slab.json
|
||||
07c0ecee63ce0d642ad6e638c5d52ab65585ad97 assets/actuallyadditions/blockstates/black_quartz_brick_stair.json
|
||||
477b822f7e986108f6d45e1fd9ab5f9b4bd5bc9b assets/actuallyadditions/blockstates/black_quartz_brick_wall.json
|
||||
92c2e6bea5f60d01734851fa1cfc4cc9406cc9ac assets/actuallyadditions/blockstates/black_quartz_ore.json
|
||||
8c0b0f586d13bd2c77f0c21022d6e769785c66db assets/actuallyadditions/blockstates/black_quartz_pillar_block.json
|
||||
9f526618577abc9e92d2cbe48e7c7047c397b732 assets/actuallyadditions/blockstates/black_quartz_pillar_slab.json
|
||||
6b814125b5f3133ff49299cebbdb4ef0899d7fdd assets/actuallyadditions/blockstates/black_quartz_pillar_stair.json
|
||||
e5b01044b394170337ce4bbb7bfcd3adfa3f55bc assets/actuallyadditions/blockstates/black_quartz_pillar_wall.json
|
||||
8d4399c1fd02d43ecdd71d76c3cedbb3b729f219 assets/actuallyadditions/blockstates/black_quartz_slab.json
|
||||
2b7ed073577ea09621ca75cc667fadfece2b617b assets/actuallyadditions/blockstates/black_quartz_stair.json
|
||||
a386ce6a9b4f27928de1429390fc11e41062ee0b assets/actuallyadditions/blockstates/black_quartz_wall.json
|
||||
3da58a578a16fb902dff325963f1183db63a87df assets/actuallyadditions/blockstates/breaker.json
|
||||
1f73309d78577b84a9e572762f603176cdd389d0 assets/actuallyadditions/blockstates/canola.json
|
||||
e4c77f5137865f083d2db69211bfc71e73442835 assets/actuallyadditions/blockstates/canola_press.json
|
||||
0b3c4fa29984d3683e140761242fbdc2c585fd54 assets/actuallyadditions/blockstates/chiseled_black_quartz_block.json
|
||||
8764f9e9fdc822116bbd9ab1ffc0063514c49dec assets/actuallyadditions/blockstates/chiseled_black_quartz_slab.json
|
||||
4d1fc1bcfe65a87e0ae3574b1f6615d18746af48 assets/actuallyadditions/blockstates/chiseled_black_quartz_stair.json
|
||||
f2783b39f74a65956ca6a5182261248242b732ff assets/actuallyadditions/blockstates/chiseled_black_quartz_wall.json
|
||||
fadd7a142bfcc99f99a98c35d08377c460fadea7 assets/actuallyadditions/blockstates/coal_generator.json
|
||||
277af68c27a4479a1302a130a6940d7451b661bf assets/actuallyadditions/blockstates/coffee.json
|
||||
8216c4ee7c9c96fb1fe394946835480bc9847270 assets/actuallyadditions/blockstates/coffee_machine.json
|
||||
1c8cc1435e5d981057fd2710962b7acfca073de1 assets/actuallyadditions/blockstates/crusher.json
|
||||
838dee5482cdeca7ce520e1dd56ce7fd8ebccd1a assets/actuallyadditions/blockstates/crusher_double.json
|
||||
d0281928d609b5391356d7f088f54f1cbc65ed09 assets/actuallyadditions/blockstates/diamatine_crystal_block.json
|
||||
cc5bb0c50e86b6dc64f1761bad43d636eee312b2 assets/actuallyadditions/blockstates/diamatine_crystal_cluster.json
|
||||
d8ad60132f734570466b36171c9cc8a695122fac assets/actuallyadditions/blockstates/display_stand.json
|
||||
4ffab17c5add0bcca802ff2d621504e81a6c6422 assets/actuallyadditions/blockstates/dropper.json
|
||||
10f6731a2b5e7f520565924fbd709c411ea0b2d4 assets/actuallyadditions/blockstates/emeradic_crystal_block.json
|
||||
d3afd98974e13f837133543deeafdc8988c9f23b assets/actuallyadditions/blockstates/emeradic_crystal_cluster.json
|
||||
7e2f1831718c2cf181691a6cbae6021d906bbaee assets/actuallyadditions/blockstates/empowered_diamatine_crystal_block.json
|
||||
e9bd75a9f1d95686b39185a57b10b1aa0ae6489f assets/actuallyadditions/blockstates/empowered_emeradic_crystal_block.json
|
||||
dbeaea40dbb69b9fbd3c0a9030b6ff85fb7fc82e assets/actuallyadditions/blockstates/empowered_enori_crystal_block.json
|
||||
bb2557ee2f04ed1c0a69f51d4ea7562ca648508d assets/actuallyadditions/blockstates/empowered_palis_crystal_block.json
|
||||
42f9cf5a7abefe37dc306a9d3301be14b299ab0b assets/actuallyadditions/blockstates/empowered_restonia_crystal_block.json
|
||||
39c7b1589f92481ae292f57dfab6fae6925b35e9 assets/actuallyadditions/blockstates/empowered_void_crystal_block.json
|
||||
980f0053f9c062d87e790b24a8fa4375b90b1e52 assets/actuallyadditions/blockstates/empowerer.json
|
||||
ddf1dd482fb99ccdf3f403919dfc1e9f402a5bcf assets/actuallyadditions/blockstates/ender_casing.json
|
||||
64ecbc138b60a9b2397c9811612d5b0282a49b41 assets/actuallyadditions/blockstates/energizer.json
|
||||
46c8311a4147786f1850fafd206692500c29ef77 assets/actuallyadditions/blockstates/enervator.json
|
||||
b35e439a9f9f9c0b27c03ac808d97ef42646fc9a assets/actuallyadditions/blockstates/enori_crystal_block.json
|
||||
cf2960b928f8869d6f3239a2e0181171e7022450 assets/actuallyadditions/blockstates/enori_crystal_cluster.json
|
||||
f56196e04d4f0388e6ce3c583201b94824a5b579 assets/actuallyadditions/blockstates/ethetic_green_block.json
|
||||
4370c6dfdfd44c95d5d54a412ba51402ae23d854 assets/actuallyadditions/blockstates/ethetic_green_slab.json
|
||||
f76f1562b7577aed3f1abae054f443915ab15d4e assets/actuallyadditions/blockstates/ethetic_green_stairs.json
|
||||
276679666dbc1c3ad2f7487cc990310d5f4e059d assets/actuallyadditions/blockstates/ethetic_green_wall.json
|
||||
e917e83319852db6aeefd77711b3b3c39971b8f5 assets/actuallyadditions/blockstates/ethetic_white_block.json
|
||||
6d39be997e221d1453f07707df7446922bf4d178 assets/actuallyadditions/blockstates/ethetic_white_slab.json
|
||||
2b8a19ce4cecf53f877620ea793e7b2f94f76102 assets/actuallyadditions/blockstates/ethetic_white_stairs.json
|
||||
4a89ca5b7b3d4e2aadee5696e3ae1b7516870d3b assets/actuallyadditions/blockstates/ethetic_white_wall.json
|
||||
a428d5f4a59646d4105db8c3de72b84a13244a0c assets/actuallyadditions/blockstates/farmer.json
|
||||
b184656f09cac215faa6f40b246551f6644a8f4d assets/actuallyadditions/blockstates/feeder.json
|
||||
9b4d1b8e764fb0e82e960f91dc27a0b71ae29239 assets/actuallyadditions/blockstates/fermenting_barrel.json
|
||||
403011543eac5fcafbbeaf107d38be51ac5cdb87 assets/actuallyadditions/blockstates/firework_box.json
|
||||
fbf67b632113c65332560069a3d4a902dac6c852 assets/actuallyadditions/blockstates/flax.json
|
||||
89b85c152e7b62da19ebf07bfc50969947dcc79d assets/actuallyadditions/blockstates/fluid_collector.json
|
||||
f5ead8189b5a82609d64f801e0dce918309ae003 assets/actuallyadditions/blockstates/fluid_placer.json
|
||||
f495a1b10121a36507645f82136d9ad596847a88 assets/actuallyadditions/blockstates/greenhouse_glass.json
|
||||
da76083e9c8983d31a82424409e61ad408bb05c7 assets/actuallyadditions/blockstates/heat_collector.json
|
||||
95ff995066c84cab57a8fc2e1419555d61b74636 assets/actuallyadditions/blockstates/hopping_item_interface.json
|
||||
5c68a76188e9d4d4e540294a299eea52b4ce2eef assets/actuallyadditions/blockstates/iron_casing.json
|
||||
0b4e9004006aa395684c89fd522ae1f07c522026 assets/actuallyadditions/blockstates/item_interface.json
|
||||
1fd7152bd623843d980a1a4e07d026598f893169 assets/actuallyadditions/blockstates/lamp_black.json
|
||||
b888f1bcb09d9956f82ac07d80316bb036deddf9 assets/actuallyadditions/blockstates/lamp_blue.json
|
||||
edd922e78fcbb42beb48a3ae3fd2b09639417f2c assets/actuallyadditions/blockstates/lamp_brown.json
|
||||
5ad6bb845c5d22948adb2be3c52de0390af8f380 assets/actuallyadditions/blockstates/lamp_controller.json
|
||||
9ba44d3e1810ff9e01fd387a7e5d4405a09e226f assets/actuallyadditions/blockstates/lamp_cyan.json
|
||||
3b73bc3a431fce9a5209f211624733918aad6f46 assets/actuallyadditions/blockstates/lamp_gray.json
|
||||
8564b44f7b20f94672e89c319d129af3a6743f91 assets/actuallyadditions/blockstates/lamp_green.json
|
||||
885c702397e146898ec1ba5348467c7047484e67 assets/actuallyadditions/blockstates/lamp_light_blue.json
|
||||
175c711b002cb5e86887ab5cd559c245abc5b87b assets/actuallyadditions/blockstates/lamp_light_gray.json
|
||||
f2a3391c56ade29544a15a011b4ab4d7ca727e83 assets/actuallyadditions/blockstates/lamp_lime.json
|
||||
07858194a222d0102278f50e00d564184c374282 assets/actuallyadditions/blockstates/lamp_magenta.json
|
||||
e14f03a7533b56c66641a17957bdc139e2c8aa10 assets/actuallyadditions/blockstates/lamp_orange.json
|
||||
a4b6f97cd4e1c47b82f1a6c580e60b0a1493b320 assets/actuallyadditions/blockstates/lamp_pink.json
|
||||
3d1386f53b8e80622fcd95eb36293a34b9a2f149 assets/actuallyadditions/blockstates/lamp_purple.json
|
||||
8ace678f68bb005b81bb462420a565c0887c208a assets/actuallyadditions/blockstates/lamp_red.json
|
||||
d60af8068da5a971b2545e4f8e6adcb0113cf020 assets/actuallyadditions/blockstates/lamp_white.json
|
||||
facb01a0b96b9a0c4178a7def560fc2cac9e9494 assets/actuallyadditions/blockstates/lamp_yellow.json
|
||||
b3418edc0f7f68cc028a20553f1bfb2702ca20cb assets/actuallyadditions/blockstates/laser_relay.json
|
||||
f56d78c23253dadd608ef4f083b26e2c8bbc092b assets/actuallyadditions/blockstates/laser_relay_advanced.json
|
||||
129d3527541bdcd3075abcce0090efa77e19fb4b assets/actuallyadditions/blockstates/laser_relay_extreme.json
|
||||
7028ce8e2fb064deb6caf24079c46a6ae4127266 assets/actuallyadditions/blockstates/laser_relay_fluids.json
|
||||
cfc214d80cacbdf785c482107f9b1eea45a66023 assets/actuallyadditions/blockstates/laser_relay_item.json
|
||||
583522367e5707edbfbb43393cde0c86d212bfe1 assets/actuallyadditions/blockstates/laser_relay_item_advanced.json
|
||||
1fe49f564612e44c44ee4a990d46181290bcf328 assets/actuallyadditions/blockstates/lava_factory_casing.json
|
||||
b67cbe7ded0d3f27e6f4017b589b2bb4ff0fbd0b assets/actuallyadditions/blockstates/lava_factory_controller.json
|
||||
aa4bb0bc28bbc42aa3e8b032b007d18db5966bcf assets/actuallyadditions/blockstates/leaf_generator.json
|
||||
ad36c89cf1523e13c2b8e23d9080b684e766bc3f assets/actuallyadditions/blockstates/long_range_breaker.json
|
||||
1c21cb983fcd3b754ab08cbc934b36a718bdfd33 assets/actuallyadditions/blockstates/oil_generator.json
|
||||
f253b8b82371939db3e2ab866bfe89659898a1e6 assets/actuallyadditions/blockstates/palis_crystal_block.json
|
||||
b2182c4b8b8c6bdc829289f5e46e74b8811a1b44 assets/actuallyadditions/blockstates/palis_crystal_cluster.json
|
||||
ebba5097e96eb35bb9d1d388bd40a4a3490144f2 assets/actuallyadditions/blockstates/phantom_booster.json
|
||||
d0b6d0e81edb6cad389dcf78bafd7d626d01fc3c assets/actuallyadditions/blockstates/phantom_breaker.json
|
||||
ae9406a5abc7cceea635c710d6442d5c7daf32d3 assets/actuallyadditions/blockstates/phantom_energyface.json
|
||||
442837cc2d80f30c59baf156426a1b680f72b1e5 assets/actuallyadditions/blockstates/phantom_itemface.json
|
||||
fb910494347a5b09b7fde0349f53d902a6559813 assets/actuallyadditions/blockstates/phantom_liquiface.json
|
||||
205a395947e0401d7927798154ef1513463c203a assets/actuallyadditions/blockstates/phantom_placer.json
|
||||
b5f689d334c1867556e1a5c11f62362cbc1bf3e6 assets/actuallyadditions/blockstates/phantom_redstoneface.json
|
||||
dfd50672d38f19133bce4de9773b8506ca7cc648 assets/actuallyadditions/blockstates/placer.json
|
||||
6ed6e0c571a60d96038120c02c6934729a38944e assets/actuallyadditions/blockstates/player_interface.json
|
||||
27f02d5fdc9d8e08242ff99165e97bf23e27c4e3 assets/actuallyadditions/blockstates/powered_furnace.json
|
||||
81bbd2c7a66a4797eb1236f701ab23583867dd54 assets/actuallyadditions/blockstates/ranged_collector.json
|
||||
f6a348866fd8a22e3f97e3ed281a679eeea927d7 assets/actuallyadditions/blockstates/restonia_crystal_block.json
|
||||
779bce8e2148d6085d6d782feb6824ecff1b2369 assets/actuallyadditions/blockstates/restonia_crystal_cluster.json
|
||||
b572ac51d7c6fc1a28d762d728e682eee2f20334 assets/actuallyadditions/blockstates/rice.json
|
||||
b3d5e4a006bd2a2126ed81803a4cd7dc976542ae assets/actuallyadditions/blockstates/shock_suppressor.json
|
||||
76d2077145b994cc8c51a1438934461fd1c11feb assets/actuallyadditions/blockstates/smooth_black_quartz_block.json
|
||||
c34fa31f1f9888dac79b210d8e78e818c6ce7d8c assets/actuallyadditions/blockstates/smooth_black_quartz_slab.json
|
||||
c2f07f07d6dc0c8134e92e81f41eef9f9c2a1f18 assets/actuallyadditions/blockstates/smooth_black_quartz_stair.json
|
||||
c04bbda2945960887da98121afe3b170abe3006f assets/actuallyadditions/blockstates/smooth_black_quartz_wall.json
|
||||
c38128c6f6b0e4cc38f74e923736a8536d0b2456 assets/actuallyadditions/blockstates/tiny_torch.json
|
||||
93868ba257844c7b666ce600799fcc0c89ca8dd9 assets/actuallyadditions/blockstates/vertical_digger.json
|
||||
08797aa1d132142e78947b38bb1ce0e9e6260450 assets/actuallyadditions/blockstates/void_crystal_block.json
|
||||
6072c1955309c670d75f3bdf9076ca7fafe7b5fd assets/actuallyadditions/blockstates/void_crystal_cluster.json
|
||||
77f68c08f48f9c407db7f648185e9df1c66d2db1 assets/actuallyadditions/blockstates/wood_casing.json
|
||||
81b4fcdb4510ff154bac92c977120a5ed41e9323 assets/actuallyadditions/blockstates/xp_solidifier.json
|
||||
3e47b24f7b4fec20aab3504f649e308e5af4d755 assets/actuallyadditions/models/block/black_quartz_brick_block.json
|
||||
034dcf4a8a81cece7c9f323d0789c79e9e1403b7 assets/actuallyadditions/models/block/black_quartz_brick_slab.json
|
||||
e030d9385b8e6405913058bc14d01be73ea7656f assets/actuallyadditions/models/block/black_quartz_brick_slab_top.json
|
||||
1c0a1e6451bc3c02e8ce23b82afa9661468c1b89 assets/actuallyadditions/models/block/black_quartz_brick_stair.json
|
||||
72896482622329e9c03a92b31ad572a7cfbfbace assets/actuallyadditions/models/block/black_quartz_brick_stair_inner.json
|
||||
8273a81cc5435d7626ef9e7766c51c2bd6082795 assets/actuallyadditions/models/block/black_quartz_brick_stair_outer.json
|
||||
071c31c99d956835c47ccb1c9955293e6fb16a34 assets/actuallyadditions/models/block/black_quartz_brick_wall_post.json
|
||||
6c8d8df60b8af620f1ac02bfc6deffe94eb6b824 assets/actuallyadditions/models/block/black_quartz_brick_wall_side.json
|
||||
47513a1464dfb14cce1297b273c2d2b56643e2e3 assets/actuallyadditions/models/block/black_quartz_brick_wall_side_tall.json
|
||||
acb2df6f957e949b1c84465ae6e8711ccedbbfb4 assets/actuallyadditions/models/block/black_quartz_ore.json
|
||||
d78c50f233b9a7b7bd56ba2c88275701668342e3 assets/actuallyadditions/models/block/black_quartz_pillar_slab.json
|
||||
ffb108234f8d20ed734b61ba82b6c43cf13c9f14 assets/actuallyadditions/models/block/black_quartz_pillar_slab_top.json
|
||||
5f7c7d2215e34c57a22ab5b34b87d9d7e9c67874 assets/actuallyadditions/models/block/black_quartz_pillar_stair.json
|
||||
a8698d5b1443eb99fa214c7c52c76d22e3548cf6 assets/actuallyadditions/models/block/black_quartz_pillar_stair_inner.json
|
||||
122d053e615d36cf9fbf26caf7462cad977e4414 assets/actuallyadditions/models/block/black_quartz_pillar_stair_outer.json
|
||||
07c691666058375fb0de08ca41a099a288e66915 assets/actuallyadditions/models/block/black_quartz_pillar_wall_post.json
|
||||
c32d1e52e5625d78464fa96a26a476a9c02f8e48 assets/actuallyadditions/models/block/black_quartz_pillar_wall_side.json
|
||||
386ff5808da4e2303df0c3ad31e150717a305367 assets/actuallyadditions/models/block/black_quartz_pillar_wall_side_tall.json
|
||||
2c9983c88195764b957b089e8089f7398c1d3475 assets/actuallyadditions/models/block/black_quartz_slab.json
|
||||
ef692aa091c605a8ec7061501b8de2ba011ab0db assets/actuallyadditions/models/block/black_quartz_slab_top.json
|
||||
9827e1fff70ae550f8e5ee0039d38ed299f2633f assets/actuallyadditions/models/block/black_quartz_stair.json
|
||||
6589be28f6fff4cb0ad8d2d52284f56572b80b45 assets/actuallyadditions/models/block/black_quartz_stair_inner.json
|
||||
7c43e0b2c39676c1981674bb515f373e0df3b11d assets/actuallyadditions/models/block/black_quartz_stair_outer.json
|
||||
9117d3ca0fe52203ccd263d90c2f55cef1dced4a assets/actuallyadditions/models/block/black_quartz_wall_post.json
|
||||
21573cc6ac697c5c6d0157ed70dabfceea4752ab assets/actuallyadditions/models/block/black_quartz_wall_side.json
|
||||
7310841211e064cf20a06015583d26b0d06c8c81 assets/actuallyadditions/models/block/black_quartz_wall_side_tall.json
|
||||
d238f221f3583b38d66f2291086336e05b07637f assets/actuallyadditions/models/block/canola_1.json
|
||||
9d4641e47eefea6353b698e583d20af9476af3d0 assets/actuallyadditions/models/block/canola_2.json
|
||||
9a3389d353f8ec0ae0ba316abfb716fe7aef013e assets/actuallyadditions/models/block/canola_3.json
|
||||
e8426de4ac49499196a507114b087f2c7dd3589e assets/actuallyadditions/models/block/canola_4.json
|
||||
49c020b959327159236a01d42634e722bfa6a10b assets/actuallyadditions/models/block/chiseled_black_quartz_slab.json
|
||||
ccc4941328803d39f7953dadc99e843768ea684e assets/actuallyadditions/models/block/chiseled_black_quartz_slab_top.json
|
||||
0978e6845641abb4778f5eb769ee96f8d3ef800f assets/actuallyadditions/models/block/chiseled_black_quartz_stair.json
|
||||
878815410dba81d70ab298ea12419e267871521e assets/actuallyadditions/models/block/chiseled_black_quartz_stair_inner.json
|
||||
c6da383335271d06ea703665ef89f2752c7d6a32 assets/actuallyadditions/models/block/chiseled_black_quartz_stair_outer.json
|
||||
7836a9f8d62741b94476a52aef697ec0d9d19a65 assets/actuallyadditions/models/block/chiseled_black_quartz_wall_post.json
|
||||
205a2abf24ef8b3d3ce854e42a1382de8616188c assets/actuallyadditions/models/block/chiseled_black_quartz_wall_side.json
|
||||
29d5932afc6a6d4bb89f28a970166c1609fe89da assets/actuallyadditions/models/block/chiseled_black_quartz_wall_side_tall.json
|
||||
c1d0f7e0040cc5abda5f49f6bc0fee99fd155306 assets/actuallyadditions/models/block/coffee_1.json
|
||||
1f784eecb4596132339be44c77b2c04c9ab9a90e assets/actuallyadditions/models/block/coffee_2.json
|
||||
f05edcc26971079ff7d1b8c46d7cdfa5528fad9b assets/actuallyadditions/models/block/coffee_3.json
|
||||
cff54eaa31e56a530e7759840f53bef533daad29 assets/actuallyadditions/models/block/coffee_4.json
|
||||
0f5e8d59d2021944eaefc6f9ea13d09e6822f1f1 assets/actuallyadditions/models/block/diamatine_crystal_block.json
|
||||
4737de603e9b5f0612529f4a987af159c033e914 assets/actuallyadditions/models/block/emeradic_crystal_block.json
|
||||
fbbc3ad45d52d38444dc094fe58ef23268f459a1 assets/actuallyadditions/models/block/empowered_diamatine_crystal_block.json
|
||||
0000183fc438238d11c863239767e7c0173b9778 assets/actuallyadditions/models/block/empowered_emeradic_crystal_block.json
|
||||
48d60f87edbe00e193e8a0520ed7c3b724a325db assets/actuallyadditions/models/block/empowered_enori_crystal_block.json
|
||||
32714eca2983bf3656655bed6c84f1a3193c5310 assets/actuallyadditions/models/block/empowered_palis_crystal_block.json
|
||||
4d300eeb826b4f3be66d3253b5b4755031390cc9 assets/actuallyadditions/models/block/empowered_restonia_crystal_block.json
|
||||
5b6f155262e8e9d9e3da9e931311d4a07aa624c2 assets/actuallyadditions/models/block/empowered_void_crystal_block.json
|
||||
e406faf558afe69613b33c336f73e4d64ab6b997 assets/actuallyadditions/models/block/ender_casing.json
|
||||
244cfc718d5bd7809001496d480d4611166b4ad2 assets/actuallyadditions/models/block/enori_crystal_block.json
|
||||
57080075deda728a1a17e55ff28bc55aabda9430 assets/actuallyadditions/models/block/ethetic_green_block.json
|
||||
421c041fe10d98ad2f02a29e7265c21a110ac21b assets/actuallyadditions/models/block/ethetic_green_slab.json
|
||||
1a2d6ae598e84d327334eae6010da950a4db9d46 assets/actuallyadditions/models/block/ethetic_green_slab_top.json
|
||||
d1488d4305290b44f82246c1566ff8e3893a2c7b assets/actuallyadditions/models/block/ethetic_green_stairs.json
|
||||
29acde3876405638261cfc73e7f58b9db27dd45e assets/actuallyadditions/models/block/ethetic_green_stairs_inner.json
|
||||
83798978250b2f70660dbc5221b072209d621d16 assets/actuallyadditions/models/block/ethetic_green_stairs_outer.json
|
||||
991a8aef9f074ffb5dda40af4712f3a7707bc379 assets/actuallyadditions/models/block/ethetic_green_wall_post.json
|
||||
c626f9e3c02978ca591d6a13ff2c557b5498e4b7 assets/actuallyadditions/models/block/ethetic_green_wall_side.json
|
||||
68f457ca33f3adc97995b1c984243fe58a6898c5 assets/actuallyadditions/models/block/ethetic_green_wall_side_tall.json
|
||||
fff542a12e03f28af13b7f1ed8b7535a7b656d2a assets/actuallyadditions/models/block/ethetic_white_block.json
|
||||
c74ea183c3cf693337492ca50764145802c1023c assets/actuallyadditions/models/block/ethetic_white_slab.json
|
||||
2ebdfd27cd00d234dea65f5f588e9cdf4d1647e9 assets/actuallyadditions/models/block/ethetic_white_slab_top.json
|
||||
dd0c00bac5a34e082ee684b3b1fe0d8b5c1732df assets/actuallyadditions/models/block/ethetic_white_stairs.json
|
||||
e43fb787403c75309030780ca89b36719e6a52fe assets/actuallyadditions/models/block/ethetic_white_stairs_inner.json
|
||||
e1c0b3daa481abf0436e281507b00781c15b110e assets/actuallyadditions/models/block/ethetic_white_stairs_outer.json
|
||||
e7e506073363b52d34a7ebb0d53e595838a2d809 assets/actuallyadditions/models/block/ethetic_white_wall_post.json
|
||||
38b8e90785221f892d47dcb3d88bf9177b764820 assets/actuallyadditions/models/block/ethetic_white_wall_side.json
|
||||
f44be9b3805792e67d95dd649dbe6e77b7106b35 assets/actuallyadditions/models/block/ethetic_white_wall_side_tall.json
|
||||
42dd06e887f4c2b0c5a0e0df76dc9539506a6cae assets/actuallyadditions/models/block/flax_1.json
|
||||
81fb9c720ffff8aa53deb1c64818574e030a9395 assets/actuallyadditions/models/block/flax_2.json
|
||||
59c41812cc7c4fc10a031cc8f78a415e0a4cdad4 assets/actuallyadditions/models/block/flax_3.json
|
||||
e3e785bece49062ca21a3b0ffad8092011773290 assets/actuallyadditions/models/block/flax_4.json
|
||||
402e7e76f54d81f96b3a9f1ad5aff2570415a18e assets/actuallyadditions/models/block/iron_casing.json
|
||||
0839cdce8e285345ddef93068319da0005e37d29 assets/actuallyadditions/models/block/lamp_black.json
|
||||
1f4100eb3c45a368512a4b5ebb9ae570f8be6f8a assets/actuallyadditions/models/block/lamp_blue.json
|
||||
0ca8497fca73a0d2a8b79cee48b82e0b20db7e2a assets/actuallyadditions/models/block/lamp_brown.json
|
||||
43d3c5cf0121479bf17742237dd8c247d5fe31f6 assets/actuallyadditions/models/block/lamp_cyan.json
|
||||
3f44adb23638f14e120e63cace9e3199da19a67a assets/actuallyadditions/models/block/lamp_gray.json
|
||||
2359f5206a30b7dabf206f7bd5297e6f9f90a12e assets/actuallyadditions/models/block/lamp_green.json
|
||||
7066bd469e231d194658b9cf42f433f3856d3ee4 assets/actuallyadditions/models/block/lamp_light_blue.json
|
||||
c8080834962c61c7f29e273bad3de88b271d22f3 assets/actuallyadditions/models/block/lamp_light_gray.json
|
||||
1162277f11f1523d6a0c451bddff5487a37e552d assets/actuallyadditions/models/block/lamp_lime.json
|
||||
d236be154263bc0d0f368c5f9539885f6652c27d assets/actuallyadditions/models/block/lamp_magenta.json
|
||||
19b19f5124dd408d7d93bf0955c9e28a2e2a9f2a assets/actuallyadditions/models/block/lamp_orange.json
|
||||
64b0312bdfefd48a42ccb2246339cbf800b65618 assets/actuallyadditions/models/block/lamp_pink.json
|
||||
194733ef5a0184b2b529c9acee9c6996204823dc assets/actuallyadditions/models/block/lamp_purple.json
|
||||
7c639749c1843f0a5e5679f64d3785f9bf6f2439 assets/actuallyadditions/models/block/lamp_red.json
|
||||
830208d8bb83bf56df080d7f7246b0e310259a0c assets/actuallyadditions/models/block/lamp_white.json
|
||||
e9f8b43d10f6c9dd0b105ee3d4bf82fd9366d300 assets/actuallyadditions/models/block/lamp_yellow.json
|
||||
59691e057ec8ae9f83477a3932ac25b49b175bc7 assets/actuallyadditions/models/block/palis_crystal_block.json
|
||||
58d4c88e8f7533d3e943a7253814093e24303032 assets/actuallyadditions/models/block/restonia_crystal_block.json
|
||||
6fbcd4fd700ebee4cdb2b2a06514d64d5b4958f7 assets/actuallyadditions/models/block/rice_1.json
|
||||
eef99031816cdab0e9eab0595ad8651c737a57e3 assets/actuallyadditions/models/block/rice_2.json
|
||||
d38724f2a1a00fb13e999bcd87db5fc0b39390bb assets/actuallyadditions/models/block/rice_3.json
|
||||
8c8e9ea3775550c18fc038448b3a474c003e3415 assets/actuallyadditions/models/block/rice_4.json
|
||||
3d710199a99324077b4fffab49df908fdd9e2c45 assets/actuallyadditions/models/block/smooth_black_quartz_block.json
|
||||
b4d79c3364274a4eb4e60325340bdb8580e87a35 assets/actuallyadditions/models/block/smooth_black_quartz_slab.json
|
||||
80e72f5732b6a94218f1ce05866d839adc528ffb assets/actuallyadditions/models/block/smooth_black_quartz_slab_top.json
|
||||
7c7e938772437734bd92e85a7ba948dd3eaee3df assets/actuallyadditions/models/block/smooth_black_quartz_stair.json
|
||||
589c9239afd28ef665f36a872e742c01df65f750 assets/actuallyadditions/models/block/smooth_black_quartz_stair_inner.json
|
||||
cf61c8f0bf0b43cde6e58b7ae6c50bdbf8181635 assets/actuallyadditions/models/block/smooth_black_quartz_stair_outer.json
|
||||
c86aa92b52138474b46a95ff1f9419e4b10c2ed3 assets/actuallyadditions/models/block/smooth_black_quartz_wall_post.json
|
||||
922f6501e927004e4d48fa525e8a6a0c1ab3d8fe assets/actuallyadditions/models/block/smooth_black_quartz_wall_side.json
|
||||
27f7ef9c119dc1c317af89c5931485d88adeba5d assets/actuallyadditions/models/block/smooth_black_quartz_wall_side_tall.json
|
||||
8cc3c113faa6d8e07b7b95828cf9dc06788ac153 assets/actuallyadditions/models/block/void_crystal_block.json
|
||||
925701ab41fe0fc872bd5390e093412f5e88afe1 assets/actuallyadditions/models/block/wood_casing.json
|
|
@ -1,11 +0,0 @@
|
|||
// 1.21.1 2024-08-11T19:30:01.8163216 Fuel Recipes
|
||||
76f02a2cc4d39ec2adb71fbe0ac6da3a1b31ff9d data/actuallyadditions/recipe/liquid_fuel/canola_oil.json
|
||||
6b23d46a93b3e67bb58858c13becd6bd3f348f6f data/actuallyadditions/recipe/liquid_fuel/crystallized_canola_oil.json
|
||||
056a848bc5c836985a9f080c3a540bf97e710f2a data/actuallyadditions/recipe/liquid_fuel/empowered_canola_oil.json
|
||||
0f6dd7157c080d139886b390000aa075aaa658cd data/actuallyadditions/recipe/liquid_fuel/refined_canola_oil.json
|
||||
0732b5aebc03718a2adf8710c149021b1bc05eb7 data/actuallyadditions/recipe/solid_fuel/charcoal.json
|
||||
5a8956fa96bf886b5b13d3359ee58dcaee9b87cc data/actuallyadditions/recipe/solid_fuel/coal-block.json
|
||||
d6dbd4428a27289d3407a7609c5e8342a0c72b1a data/actuallyadditions/recipe/solid_fuel/coal.json
|
||||
50885f04b21b6cdb4a1d41b8d4f1210762c21db9 data/actuallyadditions/recipe/solid_fuel/lava.json
|
||||
5bc9490d9ce3874d628644059d2ab3738b267242 data/actuallyadditions/recipe/solid_fuel/stick.json
|
||||
df8a71b8bd2bc3594381e1337c65a0963dd06714 data/actuallyadditions/recipe/solid_fuel/tiny-coal.json
|
|
@ -1,14 +0,0 @@
|
|||
// 1.21.1 2024-10-17T18:39:09.6349717 Empowering Recipes
|
||||
cc9c78901a2ac70dc5efa029684edac7376c68e2 data/actuallyadditions/recipe/empowering/diamatine.json
|
||||
0ee7498f9720da718f2904bfb2826f48592629e7 data/actuallyadditions/recipe/empowering/diamatine_block.json
|
||||
09c7ef6ae8c1690e9b0b3bf323951005335a172f data/actuallyadditions/recipe/empowering/emeradic.json
|
||||
f79081a34b05b6e44b9b543b0e1710ef57f65314 data/actuallyadditions/recipe/empowering/emeradic_block.json
|
||||
ada12731cdb55ceea84eaca71b71c3e484d4399d data/actuallyadditions/recipe/empowering/empowered_canola.json
|
||||
439b7d2abae8901e62dc8e39d0a539fac5db01cf data/actuallyadditions/recipe/empowering/enori.json
|
||||
f26b6d17245059f52fbdb3a2fb2f0d2cc94a416b data/actuallyadditions/recipe/empowering/enori_block.json
|
||||
e6dc65c420164c12058725522ffc2936e2d858d9 data/actuallyadditions/recipe/empowering/palis.json
|
||||
0304d2445bbee8c000da9358d3dc927f0bb204b7 data/actuallyadditions/recipe/empowering/palis_block.json
|
||||
fc6614cdce92599ecf86b61dcc7b7c0809bfb931 data/actuallyadditions/recipe/empowering/restonia.json
|
||||
127ee36d2277e7c932e6e3ebf18609b0f1377b24 data/actuallyadditions/recipe/empowering/restonia_block.json
|
||||
7297f8038e481e2683115cbbb1500db7bc92cc24 data/actuallyadditions/recipe/empowering/void.json
|
||||
742672c5059855595e1918d0ec90ad727e248bae data/actuallyadditions/recipe/empowering/void_block.json
|
|
@ -1,124 +0,0 @@
|
|||
// 1.21.1 2024-10-16T22:24:12.9580535 Loot Tables
|
||||
ef11aa79a2f96a47250f46811f8491fd34d627f9 data/actuallyadditions/loot_table/blocks/atomic_reconstructor.json
|
||||
e15c868b26b669c30365bfb93e7d9274e07df16d data/actuallyadditions/loot_table/blocks/battery_box.json
|
||||
745d64af3b0203a138f9eca7de21ed4988b35c95 data/actuallyadditions/loot_table/blocks/bio_reactor.json
|
||||
35b8659ab4d6203d29e2dc4e387316af79ef8578 data/actuallyadditions/loot_table/blocks/black_quartz_block.json
|
||||
628eed867614594d56c01b5785e59cd9f214806b data/actuallyadditions/loot_table/blocks/black_quartz_brick_block.json
|
||||
7ccaec2a308c46c91faaddf6c529e867a39a7b48 data/actuallyadditions/loot_table/blocks/black_quartz_brick_slab.json
|
||||
1281fecab9def4da2bb659354623b91704f8663e data/actuallyadditions/loot_table/blocks/black_quartz_brick_stair.json
|
||||
7d6c3fd126003b42e84c2159cf07b8c78ff1f729 data/actuallyadditions/loot_table/blocks/black_quartz_brick_wall.json
|
||||
6123ca0154b61495fa2a0d9f46a8c73137f3766d data/actuallyadditions/loot_table/blocks/black_quartz_ore.json
|
||||
ad0d7ffd625d3bec74e52e1384c67120649c1108 data/actuallyadditions/loot_table/blocks/black_quartz_pillar_block.json
|
||||
c49b30e8d893f67866d0a47cf8682502468e9864 data/actuallyadditions/loot_table/blocks/black_quartz_pillar_slab.json
|
||||
32fc64201d29c1a319808ac3bcef4fbab1ad2632 data/actuallyadditions/loot_table/blocks/black_quartz_pillar_stair.json
|
||||
0d8f0f1aa81b6108fe9757c03be499b6c0d2ae85 data/actuallyadditions/loot_table/blocks/black_quartz_pillar_wall.json
|
||||
38ae78b75ed66ec8e2df8f292ada90ac352e8f88 data/actuallyadditions/loot_table/blocks/black_quartz_slab.json
|
||||
e4f42700948abba5991c961ee5b2c0ab6839d437 data/actuallyadditions/loot_table/blocks/black_quartz_stair.json
|
||||
0d7396ec2071fcdd2df045b20c9b5a5a2692cc80 data/actuallyadditions/loot_table/blocks/black_quartz_wall.json
|
||||
eca894a5b2e0c19418d95ffb072e51359a60fe3e data/actuallyadditions/loot_table/blocks/breaker.json
|
||||
6543b2f46d8c4e81c3b3efb8aff3cb3216c4acda data/actuallyadditions/loot_table/blocks/canola.json
|
||||
1e482a0dec0dffade2a63d57fd58e1b154a513dd data/actuallyadditions/loot_table/blocks/canola_press.json
|
||||
37edff6a4dd2975276e73be28cf2490bd91700a9 data/actuallyadditions/loot_table/blocks/chiseled_black_quartz_block.json
|
||||
967afd8eaa3169037502ac72985ddba7b3670087 data/actuallyadditions/loot_table/blocks/chiseled_black_quartz_slab.json
|
||||
b598ece027ef00e9ed0457a7f9542ebe8b89538c data/actuallyadditions/loot_table/blocks/chiseled_black_quartz_stair.json
|
||||
584c40d2867ad0376823c1a4f37f1d901721ae4f data/actuallyadditions/loot_table/blocks/chiseled_black_quartz_wall.json
|
||||
7d23a0c906af2f6b3fecaba91f776385db5a50bc data/actuallyadditions/loot_table/blocks/coal_generator.json
|
||||
afab93747299dba6783292e5949ea7e0cd5d5b13 data/actuallyadditions/loot_table/blocks/coffee.json
|
||||
ef604b6cc4ac21ee792ab7df41b77578b4d213db data/actuallyadditions/loot_table/blocks/coffee_machine.json
|
||||
fa895b25a0816ca506f7031ec3861cfd4de04f28 data/actuallyadditions/loot_table/blocks/crate_small.json
|
||||
7c7a4028f6fe02446d1557f72ad494ab363a8409 data/actuallyadditions/loot_table/blocks/crusher.json
|
||||
cbd5456165eaf299685aab50dc3bce38d99a1cf8 data/actuallyadditions/loot_table/blocks/crusher_double.json
|
||||
25b7a44418e2858552dd5150d67bffe1f30269a8 data/actuallyadditions/loot_table/blocks/diamatine_crystal_block.json
|
||||
ba64f685c7b3c7f998e61d9a3905e627784fb017 data/actuallyadditions/loot_table/blocks/diamatine_crystal_cluster.json
|
||||
33bc6704cd8545a60049b9f168bc8aa391937e48 data/actuallyadditions/loot_table/blocks/display_stand.json
|
||||
3f9aa8b99fad7066fd3a6118a499e3237920cc7e data/actuallyadditions/loot_table/blocks/dropper.json
|
||||
a8183cf6b77bbac91f09ea485f5eaadf70aa8fb0 data/actuallyadditions/loot_table/blocks/emeradic_crystal_block.json
|
||||
25d55ab81ed1fc53387b4bc3712d4f26b188270f data/actuallyadditions/loot_table/blocks/emeradic_crystal_cluster.json
|
||||
4811fb48ac8e17ed71d0e42016ccfd7f244026d4 data/actuallyadditions/loot_table/blocks/empowered_diamatine_crystal_block.json
|
||||
e02f5203b700239638e4fafb9915e6873f1b76bc data/actuallyadditions/loot_table/blocks/empowered_emeradic_crystal_block.json
|
||||
00fa7d2d85a41d1834d016cd232d92a8dad1a81f data/actuallyadditions/loot_table/blocks/empowered_enori_crystal_block.json
|
||||
bab8f64d69ec78ab2f32fa084d95a2875b62778f data/actuallyadditions/loot_table/blocks/empowered_palis_crystal_block.json
|
||||
acada2cb6400090f925065bb7c1a83bdb6dbe1b3 data/actuallyadditions/loot_table/blocks/empowered_restonia_crystal_block.json
|
||||
6c334eb0d55d5ea98201ecb2817171f67571d5ee data/actuallyadditions/loot_table/blocks/empowered_void_crystal_block.json
|
||||
a8b055792b0064b29e4c6732ccfa440e8baf9b5b data/actuallyadditions/loot_table/blocks/empowerer.json
|
||||
bb7c77182bd147e1189d865c5a992fbf19a629f4 data/actuallyadditions/loot_table/blocks/ender_casing.json
|
||||
6990098510a0dcb1961a80f00d5f71d4b2bc3f46 data/actuallyadditions/loot_table/blocks/energizer.json
|
||||
f3c68d58b25c3dbb6d4a65c14dd6d2c28e53814f data/actuallyadditions/loot_table/blocks/enervator.json
|
||||
47d7dd8175c672b8568b8863c6b65ab26168fd5f data/actuallyadditions/loot_table/blocks/enori_crystal_block.json
|
||||
b133d4e6b05aea63e6d89d696ac03710b88d1d51 data/actuallyadditions/loot_table/blocks/enori_crystal_cluster.json
|
||||
aca50008d47da6a89a41421752329fc108b74caa data/actuallyadditions/loot_table/blocks/ethetic_green_block.json
|
||||
2898af59e57ae6b6400a02e56baaf5af796fe971 data/actuallyadditions/loot_table/blocks/ethetic_green_slab.json
|
||||
011939f5b508413a3827de5b12ff58dd1c875ca7 data/actuallyadditions/loot_table/blocks/ethetic_green_stairs.json
|
||||
816eb5010ccb0147b79f3e6a43c13c4364bd4476 data/actuallyadditions/loot_table/blocks/ethetic_green_wall.json
|
||||
04da571b4aeae7e0c7fdbd7aa801f7252fbb413e data/actuallyadditions/loot_table/blocks/ethetic_white_block.json
|
||||
d4eeacb9036343a75ba390acb912c294db3bbdb6 data/actuallyadditions/loot_table/blocks/ethetic_white_slab.json
|
||||
358bf32510a08de204f61e668588ee58460e1321 data/actuallyadditions/loot_table/blocks/ethetic_white_stairs.json
|
||||
0b05b4ba5b76e887bfba59740383f63287adc78d data/actuallyadditions/loot_table/blocks/ethetic_white_wall.json
|
||||
6b88e7795b82affdb3f24b4b9c62e99458836f77 data/actuallyadditions/loot_table/blocks/farmer.json
|
||||
4f60395b41acdd21a5e8e8592fb6141a230ffdde data/actuallyadditions/loot_table/blocks/feeder.json
|
||||
18f0f3130da03f20277f843f3b8c4e4282efb65c data/actuallyadditions/loot_table/blocks/fermenting_barrel.json
|
||||
c02726c670fccfa57d403272b9c96e3ad9cf4cc9 data/actuallyadditions/loot_table/blocks/firework_box.json
|
||||
4bd34fdd919b12992acbfe81b6aa79cadb7f2774 data/actuallyadditions/loot_table/blocks/flax.json
|
||||
ad1acc54d462b7bd1355fda6b05a9cc6ffa26418 data/actuallyadditions/loot_table/blocks/fluid_collector.json
|
||||
4e3bec1c890dbeb36175c0905a7e6a5a6108ec45 data/actuallyadditions/loot_table/blocks/fluid_placer.json
|
||||
8f15a45992ecb1be2ce326702c204c190a0aad14 data/actuallyadditions/loot_table/blocks/greenhouse_glass.json
|
||||
4f3d2255de5aff7857911d138eb334bb9d9753ba data/actuallyadditions/loot_table/blocks/heat_collector.json
|
||||
ed7443ee9e9956b1fc8ac87728201d88ccea755e data/actuallyadditions/loot_table/blocks/hopping_item_interface.json
|
||||
197f1835bc3bdd7268e22440891bc12e8c6ee3da data/actuallyadditions/loot_table/blocks/iron_casing.json
|
||||
2128eb452ad7fb77d8f279a1005e2542753055c9 data/actuallyadditions/loot_table/blocks/item_interface.json
|
||||
86e6ee457d3ada8c1709baba9e7ff79f590823ca data/actuallyadditions/loot_table/blocks/lamp_black.json
|
||||
4cd4b13fab59cf0064dc4d97880bf10128847aec data/actuallyadditions/loot_table/blocks/lamp_blue.json
|
||||
8c59350ed501dd06eb5904451dcef1a6ca3a717c data/actuallyadditions/loot_table/blocks/lamp_brown.json
|
||||
ab04e4392fa427b8bed612a6c64b9dec86ab9ed9 data/actuallyadditions/loot_table/blocks/lamp_controller.json
|
||||
5a7cf730a18ed5760d58a8a173ed5f5e06ca83bd data/actuallyadditions/loot_table/blocks/lamp_cyan.json
|
||||
d83e067881513d8c4223faf4d2d26e9a1c5db5ff data/actuallyadditions/loot_table/blocks/lamp_gray.json
|
||||
bc14272591aee6a340307caccc1037bf0f81fadc data/actuallyadditions/loot_table/blocks/lamp_green.json
|
||||
4a8d82e9a0b5eaacb6e67422027c430b0db510a0 data/actuallyadditions/loot_table/blocks/lamp_light_blue.json
|
||||
1fa17a72c9f630e91d0503cabaaa0183cc697b41 data/actuallyadditions/loot_table/blocks/lamp_light_gray.json
|
||||
d0f317612d2407245551f4e4d15c778efcce34ce data/actuallyadditions/loot_table/blocks/lamp_lime.json
|
||||
5f8249246d98bdd65c39cf7131e6a052f803e20d data/actuallyadditions/loot_table/blocks/lamp_magenta.json
|
||||
3556617de82a2864903a24f57bfaea46a105bbaf data/actuallyadditions/loot_table/blocks/lamp_orange.json
|
||||
5075c9c8447bd433d72f5c2dae1cda9d4637f922 data/actuallyadditions/loot_table/blocks/lamp_pink.json
|
||||
3ec501e57ec5aeac85722e0964f890c38390a22b data/actuallyadditions/loot_table/blocks/lamp_purple.json
|
||||
40a7ab819aca471a8ffffdfc2a282c2dfb67513b data/actuallyadditions/loot_table/blocks/lamp_red.json
|
||||
99e553d21ff6a5e46fa3733e634f834875222aab data/actuallyadditions/loot_table/blocks/lamp_white.json
|
||||
ba4c3f87f29e72a6bc95f202a00d41372621b842 data/actuallyadditions/loot_table/blocks/lamp_yellow.json
|
||||
f50259991b8a5ba9d3eb9aee75afb5172913c155 data/actuallyadditions/loot_table/blocks/laser_relay.json
|
||||
8ec828ad8c18251f50df50a853bb2d46c7b26d08 data/actuallyadditions/loot_table/blocks/laser_relay_advanced.json
|
||||
af0cb5ad3473b274da2873d3e08da0f4085e6699 data/actuallyadditions/loot_table/blocks/laser_relay_extreme.json
|
||||
1c88df46ff3b62b051fe7b10be78928b9193962e data/actuallyadditions/loot_table/blocks/laser_relay_fluids.json
|
||||
20d05d184f07b17974fd7fc560d11750d9f77c48 data/actuallyadditions/loot_table/blocks/laser_relay_item.json
|
||||
04f2ec311197a6e8770d30704448ee6abba70e32 data/actuallyadditions/loot_table/blocks/laser_relay_item_advanced.json
|
||||
395d67efbd229f614c51bd96f637797f035cc7e3 data/actuallyadditions/loot_table/blocks/lava_factory_casing.json
|
||||
f8a03e56a032e858126f1b1861ea0b759a3e517d data/actuallyadditions/loot_table/blocks/lava_factory_controller.json
|
||||
82e3d0039b6702d62c5460953426812d798cdc37 data/actuallyadditions/loot_table/blocks/leaf_generator.json
|
||||
27ba42bb0f2dca72e29393944b61e566d758a2dc data/actuallyadditions/loot_table/blocks/long_range_breaker.json
|
||||
43113c67b268280ce09b9c90df83f33c15bf2f06 data/actuallyadditions/loot_table/blocks/oil_generator.json
|
||||
f0905fdc46775bb0d7382375b0a1109d125175e7 data/actuallyadditions/loot_table/blocks/palis_crystal_block.json
|
||||
5162668136335d22fef342550e3a14f8c0347e92 data/actuallyadditions/loot_table/blocks/palis_crystal_cluster.json
|
||||
dadc9a4648ff9cfa77840405384be4937cea991b data/actuallyadditions/loot_table/blocks/phantom_booster.json
|
||||
7ca8e4e140407dc71416289d293319748d6074a5 data/actuallyadditions/loot_table/blocks/phantom_breaker.json
|
||||
c020a9e28f95800f7eb064fc557afe3cd78ee77a data/actuallyadditions/loot_table/blocks/phantom_energyface.json
|
||||
9ce6fa8855e586447f45321f9a54495bfd8a0aad data/actuallyadditions/loot_table/blocks/phantom_itemface.json
|
||||
8be6d5b0ebb76e4122b1a91893cf8e1a2c34fc59 data/actuallyadditions/loot_table/blocks/phantom_liquiface.json
|
||||
75eb64c44741c6d010ed2b226ebc8edec30ee151 data/actuallyadditions/loot_table/blocks/phantom_placer.json
|
||||
999e9a1cf6a2c5409ac719ee9d9497954cff5921 data/actuallyadditions/loot_table/blocks/phantom_redstoneface.json
|
||||
10649f4e8c6315e1c28877dd2d74519b374c2aef data/actuallyadditions/loot_table/blocks/placer.json
|
||||
f0a5b8a9ef9e878baa8e1792605ecb6371bf6262 data/actuallyadditions/loot_table/blocks/player_interface.json
|
||||
e030d31981f02c0ed25d08fcaf8d8e7c89016247 data/actuallyadditions/loot_table/blocks/powered_furnace.json
|
||||
8f51bc016a6797bfdf81973a21509e14bd47f245 data/actuallyadditions/loot_table/blocks/ranged_collector.json
|
||||
0cff315b834058c90a7f26425565e086fb833305 data/actuallyadditions/loot_table/blocks/restonia_crystal_block.json
|
||||
d1c8ca548cefbb4f33d4763606a7e0c909319717 data/actuallyadditions/loot_table/blocks/restonia_crystal_cluster.json
|
||||
247ec0004cfa51a635f305aed06f6a8f2d0cd0c4 data/actuallyadditions/loot_table/blocks/rice.json
|
||||
d9337537495eb5b2d5288c6df81125594522e5b7 data/actuallyadditions/loot_table/blocks/shock_suppressor.json
|
||||
a534077796cbfbcf0c66f986db3abd037c2d14d6 data/actuallyadditions/loot_table/blocks/smooth_black_quartz_block.json
|
||||
5018c69cc3e6c87b0080ed3ea914e47744088ab7 data/actuallyadditions/loot_table/blocks/smooth_black_quartz_slab.json
|
||||
a33803a54b60eb930713929368729dbd01fa77f0 data/actuallyadditions/loot_table/blocks/smooth_black_quartz_stair.json
|
||||
7e8b01ddeca1446e40e16254afc145c738802a62 data/actuallyadditions/loot_table/blocks/smooth_black_quartz_wall.json
|
||||
b457272e382a377d7e55f2b74d49683a14d62825 data/actuallyadditions/loot_table/blocks/tiny_torch.json
|
||||
d43769e7f20448bf87952664a3ddd12db0804627 data/actuallyadditions/loot_table/blocks/vertical_digger.json
|
||||
16963296de38141657d91d76d0458313529e4033 data/actuallyadditions/loot_table/blocks/void_crystal_block.json
|
||||
3a359dfa76bec7d76fe995787f74ab748a98b0c9 data/actuallyadditions/loot_table/blocks/void_crystal_cluster.json
|
||||
d3498d690b7d9170fecdc2dd9825519b680cfeec data/actuallyadditions/loot_table/blocks/wood_casing.json
|
||||
e1ebdde950a7f730c423a16143ad5598e3b6e3a7 data/actuallyadditions/loot_table/blocks/xp_solidifier.json
|
||||
860b2c007cf8a1942e3f2934e1385a3a75d3a940 data/actuallyadditions/loot_table/engineer_house.json
|
|
@ -1,2 +0,0 @@
|
|||
// 1.21.1 2024-08-11T19:30:01.8123206 Tags for minecraft:damage_type mod id actuallyadditions
|
||||
3a8b958fa1ed1a54ee9729180ef290e2ac270b41 data/minecraft/tags/damage_type/bypasses_armor.json
|
|
@ -1,129 +0,0 @@
|
|||
// 1.21.1 2024-08-11T19:30:01.8168205 Color Change Recipes
|
||||
f18e28e80edbb86590e83462af2d6afc52175005 data/actuallyadditions/recipe/colorchange/black_carpet.json
|
||||
01e45ef2675c38cb304ec759b840ddbe9b52606f data/actuallyadditions/recipe/colorchange/black_dye.json
|
||||
92bb17949078b8f0d9151e41149f252c83dbfa2a data/actuallyadditions/recipe/colorchange/black_glazed_terracotta.json
|
||||
7e7260c3ee0b7f1cf7b5c2a828878f38aaf46db9 data/actuallyadditions/recipe/colorchange/black_stained_glass.json
|
||||
1a115dde011f11aac2b9066e5ecd937ddb177ea8 data/actuallyadditions/recipe/colorchange/black_stained_glass_pane.json
|
||||
492e1f4480a83826f5c6edfe4f3a674867995f5b data/actuallyadditions/recipe/colorchange/black_terracotta.json
|
||||
99097853c4030b0b9614896292d6e8e5fae772f4 data/actuallyadditions/recipe/colorchange/black_wool.json
|
||||
6ee475a5dee00383de929328fd9632af37ca1699 data/actuallyadditions/recipe/colorchange/blue_carpet.json
|
||||
8e537358513920923cdb2ebaf4657cf78ea7c753 data/actuallyadditions/recipe/colorchange/blue_dye.json
|
||||
2082a871877dd0dbf0fb67c449711a8f41d1a442 data/actuallyadditions/recipe/colorchange/blue_glazed_terracotta.json
|
||||
db30887177129e7e47f52a74fe1a6c2f5b48d0eb data/actuallyadditions/recipe/colorchange/blue_stained_glass.json
|
||||
70a5566134adf4e30e48e552aa15bbd21ff88044 data/actuallyadditions/recipe/colorchange/blue_stained_glass_pane.json
|
||||
8f9f2c3864fb59fb37480c49c369d0f92422a5e4 data/actuallyadditions/recipe/colorchange/blue_terracotta.json
|
||||
7992929547874c85edf290a20e644bc4ed3baea1 data/actuallyadditions/recipe/colorchange/blue_wool.json
|
||||
a8478288b0bd377de6ae2b594aec56aba70f9e89 data/actuallyadditions/recipe/colorchange/brown_carpet.json
|
||||
1ae5c7f845f5124220da633916d3d04d84bc89bf data/actuallyadditions/recipe/colorchange/brown_dye.json
|
||||
9704ed5e8fb188bf179f553752c258c8e7fbba81 data/actuallyadditions/recipe/colorchange/brown_glazed_terracotta.json
|
||||
f3a0f6961fee4f2b56dac0123f230c518127cc26 data/actuallyadditions/recipe/colorchange/brown_stained_glass.json
|
||||
06bb86fae0726b10b5418dcfa08b65afa900d14a data/actuallyadditions/recipe/colorchange/brown_stained_glass_pane.json
|
||||
3b94aa688c7eaac968f40428226bcd52912569d9 data/actuallyadditions/recipe/colorchange/brown_terracotta.json
|
||||
0eb5dfcd383aa88b9332f40c201c581d619c1713 data/actuallyadditions/recipe/colorchange/brown_wool.json
|
||||
d47ac704a8443f8482576796f5b629336f2cbd8f data/actuallyadditions/recipe/colorchange/cyan_carpet.json
|
||||
c27497d8885ae9ed2db0ba964b04e3aacd0ae68b data/actuallyadditions/recipe/colorchange/cyan_dye.json
|
||||
ddd2917527763cfa6c5ba3dc5555b34d70d7c480 data/actuallyadditions/recipe/colorchange/cyan_glazed_terracotta.json
|
||||
32a882edcd90356bcc2a6925ce342ed7ee31f139 data/actuallyadditions/recipe/colorchange/cyan_stained_glass.json
|
||||
9426d5d4a2f4d66359cfd143d7d11a5896e9596d data/actuallyadditions/recipe/colorchange/cyan_stained_glass_pane.json
|
||||
a96ff4e5d785b6265b0da38fe2f7e1646a0b4e1a data/actuallyadditions/recipe/colorchange/cyan_terracotta.json
|
||||
42a923ed69095953422c85d39c6343ffa57d851f data/actuallyadditions/recipe/colorchange/cyan_wool.json
|
||||
cd3efcf46c1f586f46b6fd1eb202ae617ad74aab data/actuallyadditions/recipe/colorchange/gray_carpet.json
|
||||
addc0d424ac52189fc82c933f4ddd5d960c739bd data/actuallyadditions/recipe/colorchange/gray_dye.json
|
||||
e5cd575eab624c5d6723390eedf6b31aa7429497 data/actuallyadditions/recipe/colorchange/gray_glazed_terracotta.json
|
||||
314f554176d5349fae2f5f8f91c8d74e7f08a9c3 data/actuallyadditions/recipe/colorchange/gray_stained_glass.json
|
||||
ba114611105c2503abdddbfbe4c13127de434692 data/actuallyadditions/recipe/colorchange/gray_stained_glass_pane.json
|
||||
3a1227bf9a1140e2237ffc9bc84b91247d04a89c data/actuallyadditions/recipe/colorchange/gray_terracotta.json
|
||||
df9f82e52d7e3489434d1b044a8871ca428535fd data/actuallyadditions/recipe/colorchange/gray_wool.json
|
||||
2e9deeb9314fcd75de8296d00cec5cf407d70d23 data/actuallyadditions/recipe/colorchange/green_carpet.json
|
||||
763de756a2b6bbde2afd54bd84b9b00759354f26 data/actuallyadditions/recipe/colorchange/green_dye.json
|
||||
2423210df9f79d5b55e8816ddc71183f139a0629 data/actuallyadditions/recipe/colorchange/green_glazed_terracotta.json
|
||||
c6dd0dd725f2692454e5095026d6e14323906c65 data/actuallyadditions/recipe/colorchange/green_stained_glass.json
|
||||
5d4f025c77253d38d83d42013c100565ff413f55 data/actuallyadditions/recipe/colorchange/green_stained_glass_pane.json
|
||||
e8757a46cb7d3ff2b22275c6dd3b4b23038ed95a data/actuallyadditions/recipe/colorchange/green_terracotta.json
|
||||
50d1181aed3c8e0e5ec9ce12c31393ddfdb50985 data/actuallyadditions/recipe/colorchange/green_wool.json
|
||||
1875e8ec68bd0b23bc4e56be7a2dadeba2ba7f96 data/actuallyadditions/recipe/colorchange/lamp_black.json
|
||||
ccec4714d654fd0ecc820fd7577a4b2e5f73924c data/actuallyadditions/recipe/colorchange/lamp_blue.json
|
||||
5b2b8ba150ce640472cbc6a2b77b097722dcac83 data/actuallyadditions/recipe/colorchange/lamp_brown.json
|
||||
03443f16150555061aedc9b3c47cf4377fb8752e data/actuallyadditions/recipe/colorchange/lamp_cyan.json
|
||||
28b1a553097dd22c266a40a5effae73887f7a30d data/actuallyadditions/recipe/colorchange/lamp_gray.json
|
||||
931cd948888ff303ea4a880dab55b8afe8969dd9 data/actuallyadditions/recipe/colorchange/lamp_green.json
|
||||
5124f6df7bb1146f2b3adbdfd591a56467d3d40c data/actuallyadditions/recipe/colorchange/lamp_light_blue.json
|
||||
f5504342542d10e1e6bd2fba96bc44dd22d6d86e data/actuallyadditions/recipe/colorchange/lamp_light_gray.json
|
||||
c255f2120614233d4ca3c9ff1be2662ccbeb2266 data/actuallyadditions/recipe/colorchange/lamp_lime.json
|
||||
6208a280c14b6e4a9995edc440f4f950b32dd8f6 data/actuallyadditions/recipe/colorchange/lamp_magenta.json
|
||||
b0dd17471b6fac401bb8a9425a46408039e4e28e data/actuallyadditions/recipe/colorchange/lamp_orange.json
|
||||
837c81d55b3583117ebcf8ec5fef95f3d4b63fdd data/actuallyadditions/recipe/colorchange/lamp_pink.json
|
||||
9b4df15c94985db12be78b2ff68710a98b535590 data/actuallyadditions/recipe/colorchange/lamp_purple.json
|
||||
40c72aa7c622c75e9840b4e0141a5f181eef8f30 data/actuallyadditions/recipe/colorchange/lamp_red.json
|
||||
ddc70d50038d48b938559c3bed8be51c258c9728 data/actuallyadditions/recipe/colorchange/lamp_white.json
|
||||
5ad24159f7861f1ca2dc2e5583dfaa46116c6801 data/actuallyadditions/recipe/colorchange/lamp_yellow.json
|
||||
f58bf886e061c8e8f529c3ca6a047a49a34598d6 data/actuallyadditions/recipe/colorchange/light_blue_carpet.json
|
||||
8258ec40716dae09533c0a05bb8d8fae8b3de0e3 data/actuallyadditions/recipe/colorchange/light_blue_dye.json
|
||||
c41ae69529aec4ec7ef07ebf7523e90da38346eb data/actuallyadditions/recipe/colorchange/light_blue_glazed_terracotta.json
|
||||
154a7d923e453c57597dd4b915a8f42220a0fe7f data/actuallyadditions/recipe/colorchange/light_blue_stained_glass.json
|
||||
a9596a8d638c8fe3fba6b5ca48d6780396547a18 data/actuallyadditions/recipe/colorchange/light_blue_stained_glass_pane.json
|
||||
56e4a80625cc58433733e43c4d58d9c72f1ad0f9 data/actuallyadditions/recipe/colorchange/light_blue_terracotta.json
|
||||
bbe0cf0c929fcceda13606d7c14e07bcef65376d data/actuallyadditions/recipe/colorchange/light_blue_wool.json
|
||||
1dd4f61fd3c3ff65e4b4fd5d520ae12a2b836176 data/actuallyadditions/recipe/colorchange/light_gray_carpet.json
|
||||
6ecf7f93c1eec6bde3547bc12970605352f6ba2f data/actuallyadditions/recipe/colorchange/light_gray_dye.json
|
||||
c333f13119cccf8d14c76c55bc750b42b143676d data/actuallyadditions/recipe/colorchange/light_gray_glazed_terracotta.json
|
||||
5a8f724a82da7396fea226dbec94271f72be8c3a data/actuallyadditions/recipe/colorchange/light_gray_stained_glass.json
|
||||
23a2d232ecf78254e84b58a3336e8925003e4b43 data/actuallyadditions/recipe/colorchange/light_gray_stained_glass_pane.json
|
||||
4ade1f3effe3df91127a70cbe00f5bfa56e19ca0 data/actuallyadditions/recipe/colorchange/light_gray_terracotta.json
|
||||
99096113fe1c4b6bf8e1f422467bb353cdd84031 data/actuallyadditions/recipe/colorchange/light_gray_wool.json
|
||||
5fe9f7fbe1b4c75c44decdd4c662401e61227758 data/actuallyadditions/recipe/colorchange/lime_carpet.json
|
||||
685f254da8e2a023e5a2431f11adcadf7a5788f9 data/actuallyadditions/recipe/colorchange/lime_dye.json
|
||||
2192dcf4987746955e8fd74740872f7d3ac99c3f data/actuallyadditions/recipe/colorchange/lime_glazed_terracotta.json
|
||||
c96d771860098f6ca0acc8fff23df5ac8b446ba0 data/actuallyadditions/recipe/colorchange/lime_stained_glass.json
|
||||
4ecec33c49fe7f6afa3baa5b2228b0b8075a0e19 data/actuallyadditions/recipe/colorchange/lime_stained_glass_pane.json
|
||||
a120a0063724118ec0179eb1eba788539c583e66 data/actuallyadditions/recipe/colorchange/lime_terracotta.json
|
||||
081603c09c551af9bc7f316a3fefd9d237584338 data/actuallyadditions/recipe/colorchange/lime_wool.json
|
||||
e02638678a5dc87e392776b554d2cf1889b70bb8 data/actuallyadditions/recipe/colorchange/magenta_carpet.json
|
||||
0d839a33c7fc3fcf2c7f5794f67aaede699ea44c data/actuallyadditions/recipe/colorchange/magenta_dye.json
|
||||
f12e222e5e5026a56eb78f0fdda12799ec701f47 data/actuallyadditions/recipe/colorchange/magenta_glazed_terracotta.json
|
||||
cd43210b434a6b8f08a0aa456833b3e364e6465c data/actuallyadditions/recipe/colorchange/magenta_stained_glass.json
|
||||
da294c7847095fa26112cd3195afb2f26b6107e0 data/actuallyadditions/recipe/colorchange/magenta_stained_glass_pane.json
|
||||
9e633b2bb88fe425ac95043ab9fb7882ab0f5dbd data/actuallyadditions/recipe/colorchange/magenta_terracotta.json
|
||||
fe0ca5067bbab519ca83fae5738abaf29b0acac1 data/actuallyadditions/recipe/colorchange/magenta_wool.json
|
||||
92d9b2688c05c0db8a1072e523c3d99d21c0bb5f data/actuallyadditions/recipe/colorchange/orange_carpet.json
|
||||
a7b204f237509b66c938c088500dfedbd87ae758 data/actuallyadditions/recipe/colorchange/orange_dye.json
|
||||
63860badc1f3a74353c6dc90a272cb9447119c52 data/actuallyadditions/recipe/colorchange/orange_glazed_terracotta.json
|
||||
bdccd4ce85bd5c23681b94f4e8ea423d4862b53d data/actuallyadditions/recipe/colorchange/orange_stained_glass.json
|
||||
92824a14c4b1105ea58f7fd7ba217289d61153a9 data/actuallyadditions/recipe/colorchange/orange_stained_glass_pane.json
|
||||
e35f1fb63d8bd001d44d7611d9a6d36812002885 data/actuallyadditions/recipe/colorchange/orange_terracotta.json
|
||||
efcc35bc38824e380caf994fd66008e74402eeb2 data/actuallyadditions/recipe/colorchange/orange_wool.json
|
||||
b27cedc51abb1261b154922458762cea152a2f40 data/actuallyadditions/recipe/colorchange/pink_carpet.json
|
||||
57933eb15186a21fd804bf0a237bc8510921ad44 data/actuallyadditions/recipe/colorchange/pink_dye.json
|
||||
6d7bbaadda74312130b63c7f7335f740e199fb74 data/actuallyadditions/recipe/colorchange/pink_glazed_terracotta.json
|
||||
97fd8c3a81dfed6137db02df11ef8357aaab8b00 data/actuallyadditions/recipe/colorchange/pink_stained_glass.json
|
||||
d84000d95776a68c6d8a6d1f0c73ba9dafc37197 data/actuallyadditions/recipe/colorchange/pink_stained_glass_pane.json
|
||||
95d1251171f4088afd0cb4909bc5e6ea8c254a89 data/actuallyadditions/recipe/colorchange/pink_terracotta.json
|
||||
28b318728965b5009bd867f1b532e6ed8b14d3c4 data/actuallyadditions/recipe/colorchange/pink_wool.json
|
||||
4fe2678985b6aee889f424bf508e1350d0d0e225 data/actuallyadditions/recipe/colorchange/purple_carpet.json
|
||||
b7711f2972c4f7adbf52acbde27a95e03d2db5c5 data/actuallyadditions/recipe/colorchange/purple_dye.json
|
||||
da4fe14c7454ba13e7f3b53f1e5976744bd2c4c6 data/actuallyadditions/recipe/colorchange/purple_glazed_terracotta.json
|
||||
a149d09a4879d7fb4a51a7178cc8e5057862a55e data/actuallyadditions/recipe/colorchange/purple_stained_glass.json
|
||||
be19170c40af07515595bbb4229a085945df26ad data/actuallyadditions/recipe/colorchange/purple_stained_glass_pane.json
|
||||
f34c86d33bfcae62750080613ffd3ca7dab2f2cc data/actuallyadditions/recipe/colorchange/purple_terracotta.json
|
||||
2d280957fe40b9e446917b355440ea77da1c20bf data/actuallyadditions/recipe/colorchange/purple_wool.json
|
||||
779baafdcba853f7ca666f26769a9d60be53fd1a data/actuallyadditions/recipe/colorchange/red_carpet.json
|
||||
36da91bc3edc3aeb7225c99b6e2e0b3c1f813e3d data/actuallyadditions/recipe/colorchange/red_dye.json
|
||||
b7acdf5d9cefd3a20bedbc8c3eebe815eca8ce51 data/actuallyadditions/recipe/colorchange/red_glazed_terracotta.json
|
||||
724c2096dbf8635395188c22bb39d555b9a3eb83 data/actuallyadditions/recipe/colorchange/red_stained_glass.json
|
||||
6f46bfd6ac231cbef0f140f1b5bc5ac35aafac29 data/actuallyadditions/recipe/colorchange/red_stained_glass_pane.json
|
||||
5ded4e772c838299318d97fbd3856eaf220e2152 data/actuallyadditions/recipe/colorchange/red_terracotta.json
|
||||
7f33a6b496ef1e00f8f8e9930fe3a13763f10740 data/actuallyadditions/recipe/colorchange/red_wool.json
|
||||
e8e04ddc41b4ddb88d1ed8250bda791dde4ae39b data/actuallyadditions/recipe/colorchange/white_carpet.json
|
||||
9a7b007a30c27ff60168c7474bbdafedb3b1472f data/actuallyadditions/recipe/colorchange/white_dye.json
|
||||
a72b386f15a07cf637492646555b893b80af3016 data/actuallyadditions/recipe/colorchange/white_glazed_terracotta.json
|
||||
a3e759e742bf8dc10552a2e9e7580c6b9a79321d data/actuallyadditions/recipe/colorchange/white_stained_glass.json
|
||||
ac39031821f42280d72fcd7d72c893640434f15e data/actuallyadditions/recipe/colorchange/white_stained_glass_pane.json
|
||||
bfe667babd4bf61888c6a02876de70644f1b1602 data/actuallyadditions/recipe/colorchange/white_terracotta.json
|
||||
e5db9c2292d3ad45f0e1a01e600a4c9842abd0a1 data/actuallyadditions/recipe/colorchange/white_wool.json
|
||||
36ae44d2318e5cbfed349c4289c1eac632ec52cc data/actuallyadditions/recipe/colorchange/yellow_carpet.json
|
||||
2615aa90e9900370a6cd6eb36b023a86ef475408 data/actuallyadditions/recipe/colorchange/yellow_dye.json
|
||||
bebe6064a18e8fed07adc725a250131ebd687894 data/actuallyadditions/recipe/colorchange/yellow_glazed_terracotta.json
|
||||
19e7edc5ba1fce24d05c16ddc0d969b3f0f602d7 data/actuallyadditions/recipe/colorchange/yellow_stained_glass.json
|
||||
ba73ca601cac4308f3d0680051c6f11dffa90dff data/actuallyadditions/recipe/colorchange/yellow_stained_glass_pane.json
|
||||
b79d90396aa68bbe10f1cb8d5b53e04b929b12eb data/actuallyadditions/recipe/colorchange/yellow_terracotta.json
|
||||
80cc6e4269f312322dbad7f2b9c852212fe04f2c data/actuallyadditions/recipe/colorchange/yellow_wool.json
|
|
@ -1,23 +0,0 @@
|
|||
// 1.21.1 2024-10-19T16:19:48.5749712 Block Tags
|
||||
8665de82dd3d3a1351ce58f78108214f359104b0 data/actuallyadditions/tags/block/mineable/aio.json
|
||||
f7dc293929a2176bc6e428c765f6bf49fbeccdb5 data/actuallyadditions/tags/block/mineable/drill.json
|
||||
3ce233e27b4d7db10e2d4832602ef5b2a57f9a65 data/c/tags/block/ores.json
|
||||
2bcfae7c119b0b64170989e7d41b352a8d55ea43 data/c/tags/block/ores/black_quartz.json
|
||||
2bcfae7c119b0b64170989e7d41b352a8d55ea43 data/c/tags/block/ores_in_ground/stone.json
|
||||
6c9a3c952d8fad5bfd8a5ab0b76aeb0b930d1db9 data/c/tags/block/storage_blocks/black_quartz.json
|
||||
02a18fabd2fe852ec9d6564242eaef8b58dd6517 data/c/tags/block/storage_blocks/diamatine_crystal.json
|
||||
e38d81e8b3eef1f8a225b98891672f00942496e9 data/c/tags/block/storage_blocks/emeradic_crystal.json
|
||||
bbce87d7a828d3e31abf1209cceb3c6084423678 data/c/tags/block/storage_blocks/empowered_diamatine_crystal.json
|
||||
520350a8e9e7818642cc7d663396a1d3c238d9ec data/c/tags/block/storage_blocks/empowered_emeradic_crystal.json
|
||||
9ad94fbd4cda9e4ad8c68078cc53b67eb4043160 data/c/tags/block/storage_blocks/empowered_enori_crystal.json
|
||||
fb95ac8041521e1d2879f6fcb652266dcd9e0fb1 data/c/tags/block/storage_blocks/empowered_palis_crystal.json
|
||||
4885ac9140dbf4f8af14cf61e6ec9e81b933b77b data/c/tags/block/storage_blocks/empowered_restonia_crystal.json
|
||||
5a912b868ae8a193bc17f5c3f485e22818c3c06f data/c/tags/block/storage_blocks/empowered_void_crystal.json
|
||||
741733f39fa70fc6a7a85f033088821af14971c6 data/c/tags/block/storage_blocks/enori_crystal.json
|
||||
148cd937543fd58b196403c18839b2698bf87fdf data/c/tags/block/storage_blocks/palis_crystal.json
|
||||
b9aa28a54d47054ba5653bec2f20e0a675ab5120 data/c/tags/block/storage_blocks/restonia_crystal.json
|
||||
fb4f349bc6fd89f26ef2ba72a9236f05eefd8ea2 data/c/tags/block/storage_blocks/void_crystal.json
|
||||
8dbaf9b7bd6774bc7c01a47a72b8a7fdaee51f87 data/minecraft/tags/block/mineable/axe.json
|
||||
58c611cbaae2a0a5dd6f82f183b7d0f5dc2d09e6 data/minecraft/tags/block/mineable/pickaxe.json
|
||||
fab721a4fe7ece1d0e019ce36c4d2862f70ee53b data/minecraft/tags/block/needs_stone_tool.json
|
||||
f74407e86c92d0d9435d62ff0f95999f3a84c674 data/minecraft/tags/block/walls.json
|
|
@ -1,2 +0,0 @@
|
|||
// 1.21.1 2024-08-11T19:30:01.8323187 Sound Definitions
|
||||
e7a33758b55803bd59c68b8024cb8484dd4f060f assets/actuallyadditions/sounds.json
|
|
@ -1,40 +0,0 @@
|
|||
// 1.21.1 2024-10-19T11:22:45.676221 Tags for minecraft:item mod id actuallyadditions
|
||||
87327118c2f16da245b76de4fdcaab149456d9b8 data/actuallyadditions/tags/item/coffee_beans.json
|
||||
f3ee78cd8c9563bd1828de2b4b336735f289f9f2 data/actuallyadditions/tags/item/crystals.json
|
||||
441008b49b4bab00125100fc969cb6582eff7271 data/actuallyadditions/tags/item/crystal_blocks.json
|
||||
7e6e49c3eb5302af147a2d6ba439e83bd4831cbc data/actuallyadditions/tags/item/drills.json
|
||||
ae55da193b94fd6375c05d5aa46cafdda9d335cd data/actuallyadditions/tags/item/tiny_coals.json
|
||||
d0115caba2ef0aae6d1c07068d2b30819dfad612 data/curios/tags/item/charm.json
|
||||
dc377437805c7c5696b88c17454da7b856b9055e data/c/tags/item/buckets.json
|
||||
ea53bfe045e7e533a13fa2fa8793cd7741e92902 data/c/tags/item/bucket/canola_oil.json
|
||||
fb46ac4e564c749fcaa5ba1393ab33fcd91817f5 data/c/tags/item/bucket/crystallized_oil.json
|
||||
e70a00f63e5f22e8f37d76d45bbadc66ff0e3598 data/c/tags/item/bucket/empowered_oil.json
|
||||
3d76a9a33b8db313d2960468ef55ae7baf1d997f data/c/tags/item/bucket/refined_canola_oil.json
|
||||
822a882fc0d985d819c32a1039616f999761fae3 data/c/tags/item/crops.json
|
||||
aaf3c8c818cc015e9c693e0bbf8f86da81f78285 data/c/tags/item/crops/canola.json
|
||||
87327118c2f16da245b76de4fdcaab149456d9b8 data/c/tags/item/crops/coffee.json
|
||||
4be6e9ebd0f4ea040587e7ff05c78270990889b8 data/c/tags/item/crops/flax.json
|
||||
b37abd458a4812414db5038303af41c5f2632527 data/c/tags/item/crops/rice.json
|
||||
4a4e3f4f78d79b28ad1a47e12d2903faec63fd91 data/c/tags/item/gems/black_quartz.json
|
||||
3ce233e27b4d7db10e2d4832602ef5b2a57f9a65 data/c/tags/item/ores.json
|
||||
2bcfae7c119b0b64170989e7d41b352a8d55ea43 data/c/tags/item/ores/black_quartz.json
|
||||
2bcfae7c119b0b64170989e7d41b352a8d55ea43 data/c/tags/item/ores_in_ground/stone.json
|
||||
b89a5011bccf6484c8290f02d793e58e4ac51221 data/c/tags/item/seeds.json
|
||||
f29e7ca84f30d7b2d4b19ad10b62f56fc422378a data/c/tags/item/seeds/canola.json
|
||||
87327118c2f16da245b76de4fdcaab149456d9b8 data/c/tags/item/seeds/coffee.json
|
||||
4be6e9ebd0f4ea040587e7ff05c78270990889b8 data/c/tags/item/seeds/flax.json
|
||||
27f7953be7073bc266bdf5a245658268d11a4252 data/c/tags/item/seeds/rice.json
|
||||
da125442e98e78f6dac7e0c8f35a51503f5bb79d data/c/tags/item/slime_balls.json
|
||||
6c9a3c952d8fad5bfd8a5ab0b76aeb0b930d1db9 data/c/tags/item/storage_blocks/black_quartz.json
|
||||
02a18fabd2fe852ec9d6564242eaef8b58dd6517 data/c/tags/item/storage_blocks/diamatine_crystal.json
|
||||
e38d81e8b3eef1f8a225b98891672f00942496e9 data/c/tags/item/storage_blocks/emeradic_crystal.json
|
||||
bbce87d7a828d3e31abf1209cceb3c6084423678 data/c/tags/item/storage_blocks/empowered_diamatine_crystal.json
|
||||
520350a8e9e7818642cc7d663396a1d3c238d9ec data/c/tags/item/storage_blocks/empowered_emeradic_crystal.json
|
||||
9ad94fbd4cda9e4ad8c68078cc53b67eb4043160 data/c/tags/item/storage_blocks/empowered_enori_crystal.json
|
||||
fb95ac8041521e1d2879f6fcb652266dcd9e0fb1 data/c/tags/item/storage_blocks/empowered_palis_crystal.json
|
||||
4885ac9140dbf4f8af14cf61e6ec9e81b933b77b data/c/tags/item/storage_blocks/empowered_restonia_crystal.json
|
||||
5a912b868ae8a193bc17f5c3f485e22818c3c06f data/c/tags/item/storage_blocks/empowered_void_crystal.json
|
||||
741733f39fa70fc6a7a85f033088821af14971c6 data/c/tags/item/storage_blocks/enori_crystal.json
|
||||
148cd937543fd58b196403c18839b2698bf87fdf data/c/tags/item/storage_blocks/palis_crystal.json
|
||||
b9aa28a54d47054ba5653bec2f20e0a675ab5120 data/c/tags/item/storage_blocks/restonia_crystal.json
|
||||
fb4f349bc6fd89f26ef2ba72a9236f05eefd8ea2 data/c/tags/item/storage_blocks/void_crystal.json
|
|
@ -1,27 +0,0 @@
|
|||
// 1.21.1 2024-10-23T15:56:03.829867 Laser Recipes
|
||||
87f1b80067bdc8e1b27db0a2ff657307323977f1 data/actuallyadditions/recipe/laser/crystalize_diamatine_crystal.json
|
||||
c361631711c92f959cf875fca71fcef784daf6d0 data/actuallyadditions/recipe/laser/crystalize_diamatine_crystal_block.json
|
||||
73dbbbbc20514868a236bcc972ac28254a69725f data/actuallyadditions/recipe/laser/crystalize_emeradic_crystal.json
|
||||
ca6b06f1ab8a31d05fc48045468c18cc8d37e6e0 data/actuallyadditions/recipe/laser/crystalize_emeradic_crystal_block.json
|
||||
138b2663ca3dad2604cd3ac06eb98e6758de20ce data/actuallyadditions/recipe/laser/crystalize_enori_crystal.json
|
||||
4c753a1f1a3d1ec4fe78b61065ab0814eb4634cf data/actuallyadditions/recipe/laser/crystalize_enori_crystal_block.json
|
||||
c5ac8b550b215e367f5bcef4fb939b3daee5d1b1 data/actuallyadditions/recipe/laser/crystalize_palis_crystal.json
|
||||
730697a9f711d44cfbc54b1a714ccff8d6cff89a data/actuallyadditions/recipe/laser/crystalize_palis_crystal_block.json
|
||||
2014fcb70fdb0a7341db4500ac2569b07109e390 data/actuallyadditions/recipe/laser/crystalize_restonia_crystal.json
|
||||
a634db4bfd67fbc35695b43d1afc354b0d1a75f2 data/actuallyadditions/recipe/laser/crystalize_restonia_crystal_block.json
|
||||
5b8f7571e086d5978c30593e03f24508aa34cbd4 data/actuallyadditions/recipe/laser/crystalize_void_crystal.json
|
||||
1a0a43d0324d2dcd83df2812e107d22a44a9456f data/actuallyadditions/recipe/laser/crystalize_void_crystal_block.json
|
||||
3ba5e2bc709c69f2d2ff4da0311d57a323b030f7 data/actuallyadditions/recipe/laser/crystallized_canola_seed.json
|
||||
85804eeb251bec6d093e707f0e1a1e827a239120 data/actuallyadditions/recipe/laser/ethetic_green_block.json
|
||||
a42879186a3a7547c7ae4fd98eb748d8460aab6f data/actuallyadditions/recipe/laser/ethetic_white_block.json
|
||||
99be24a9d1f51b3078ad53133f7b2f552509b81a data/actuallyadditions/recipe/laser/laser_relay.json
|
||||
5a952fe0eeb86bc841771bf879d93a1f43380256 data/actuallyadditions/recipe/laser/laser_relay_fluids.json
|
||||
0b853a3847b99aedd81d1ac01fa506e185f1d4b8 data/actuallyadditions/recipe/laser/laser_relay_item.json
|
||||
e7d05995bdf8c32df06a0a4bbb5d3dcad22ae01a data/actuallyadditions/recipe/laser/leather.json
|
||||
b8c2185c315a1b7f2a68fb270906265e2473b085 data/actuallyadditions/recipe/laser/lens.json
|
||||
1596045dcc44b6271c2819263716c83ceb6e6269 data/actuallyadditions/recipe/laser/lens_of_certain_death.json
|
||||
60d5c4148dfea328117b51315286d9a9fbd8465a data/actuallyadditions/recipe/laser/lens_of_color.json
|
||||
615c1450083fd9abef8e250298600701ee6437c6 data/actuallyadditions/recipe/laser/lens_of_detonation.json
|
||||
682d595ee483c26bc20f35679d6928eb324acf6c data/actuallyadditions/recipe/laser/nether_wart.json
|
||||
c5930335da1b996509e6e72c943549c347a0c5e3 data/actuallyadditions/recipe/laser/prismarine_shard.json
|
||||
15580fc1b94dcebcf061a8936e72a491733bba04 data/actuallyadditions/recipe/laser/soul_sand.json
|
|
@ -1,2 +0,0 @@
|
|||
// 1.21.1 2024-10-19T11:22:45.6782191 Curios for actuallyadditions
|
||||
42b9baaa8afba52b9f39f6830fc7620e3eb75c70 data/actuallyadditions/curios/entities/player.json
|
|
@ -1,125 +0,0 @@
|
|||
// 1.21.1 2024-10-16T22:05:14.5301488 Item Recipes
|
||||
14bd5bc2ee3e84b6f3a3181c0e0efd40df5f1d84 data/actuallyadditions/recipe/advanced_coil.json
|
||||
955aad6c1def123a6adbaeabb13faa6eedce847f data/actuallyadditions/recipe/advanced_leaf_blower.json
|
||||
97e7ba64f5054b030f4e49615dc4212a28ca9be1 data/actuallyadditions/recipe/basic_coil.json
|
||||
9ddd60c8a4ba88f957c4bf8a6557e1bc916dc7f2 data/actuallyadditions/recipe/black_quartz_ore_blasting.json
|
||||
58878fdf048198334575b0ca51ee8ed8d2cdbd49 data/actuallyadditions/recipe/black_quartz_ore_smelting.json
|
||||
68779380488ce8382c179c7a257164af38396ed9 data/actuallyadditions/recipe/booklet.json
|
||||
efa939d57796d62f709fb6f9964f17d48b7a870a data/actuallyadditions/recipe/book_pattern.json
|
||||
f50e40600f80221489380fe83b05885fe0a31606 data/actuallyadditions/recipe/canola_seeds.json
|
||||
5d9cf677f060687651252d2b32777b5efcc73eba data/actuallyadditions/recipe/charcoal_to_tiny.json
|
||||
5764e1651a8786db1f566e77cde6abb5cff4aa1c data/actuallyadditions/recipe/coal_to_tiny.json
|
||||
a5c95bf492b37ae272db2497446288883b86611c data/actuallyadditions/recipe/compress/diamatine_crystal.json
|
||||
036494fd0a33a5d349d6464d565bdc52178fa337 data/actuallyadditions/recipe/compress/diamatine_crystal_block.json
|
||||
42c7fc11b9b493109d26df69b8b4bd12640a29c5 data/actuallyadditions/recipe/compress/emeradic_crystal.json
|
||||
2cc18a38e89f44a7a1484feee110e3477d1baec2 data/actuallyadditions/recipe/compress/emeradic_crystal_block.json
|
||||
c9fb3c4623971d02b45f32d3c73a5bd7f02bcac9 data/actuallyadditions/recipe/compress/empowered_diamatine_crystal_block.json
|
||||
10ccfbecc0dcda979483b54cde017f90241605ba data/actuallyadditions/recipe/compress/empowered_emeradic_crystal_block.json
|
||||
6b2401f1080e037f404c80afcef675d7a9086530 data/actuallyadditions/recipe/compress/empowered_enori_crystal_block.json
|
||||
e8e723b43c6526d4da08b6457014d2ea62b91a2e data/actuallyadditions/recipe/compress/empowered_palis_crystal_block.json
|
||||
1d31f6a1d19c02418f957c02d189e53e8552f9ba data/actuallyadditions/recipe/compress/empowered_restonia_crystal_block.json
|
||||
67419f19930499bdc86a676998c35ff67ef4c2f7 data/actuallyadditions/recipe/compress/empowered_void_crystal_block.json
|
||||
cb31580636c51589f79ca42c082cc292917c4f69 data/actuallyadditions/recipe/compress/enori_crystal.json
|
||||
4d86cb29a7c0f4e9a1b130fd26aa63dd52c9f484 data/actuallyadditions/recipe/compress/enori_crystal_block.json
|
||||
f6e880b46ad1f657a193b135648510cd3db70c14 data/actuallyadditions/recipe/compress/palis_crystal.json
|
||||
d1d47d53704e1dcd2d11eef778224cb399cea5c3 data/actuallyadditions/recipe/compress/palis_crystal_block.json
|
||||
cf8d7de75db64f16356cd21b5ec51e680055bf78 data/actuallyadditions/recipe/compress/restonia_crystal.json
|
||||
8167e6f67ad75e345179b45bcd045981d2fc7ce7 data/actuallyadditions/recipe/compress/restonia_crystal_block.json
|
||||
c909c0d94e4a885de0ba033e4bd0dcbc4a52293f data/actuallyadditions/recipe/compress/void_crystal.json
|
||||
84920e103da386a23bf4929219184fab93bf75ac data/actuallyadditions/recipe/compress/void_crystal_block.json
|
||||
3c33bbe358821aefa19658900914c1dae56e91d8 data/actuallyadditions/recipe/crafter_on_a_stick.json
|
||||
6494a7a978957b3fb8b0990aaeaf16b0bdc35520 data/actuallyadditions/recipe/crate_keeper.json
|
||||
af0ef513c90b6e77f3b2d30b883a9c73cc27c533 data/actuallyadditions/recipe/decompress/diamatine_crystal.json
|
||||
af56da7b234bac273b858b20ef9362844246c17d data/actuallyadditions/recipe/decompress/diamatine_crystal_shard.json
|
||||
ccf92d452806ff685eed017f3da0df8fdbb4e528 data/actuallyadditions/recipe/decompress/emeradic_crystal.json
|
||||
9877bf3b7d4f438cf3c2614460dd98a67d4d6dca data/actuallyadditions/recipe/decompress/emeradic_crystal_shard.json
|
||||
99c78df3668657d281f860041db79be9c79504f4 data/actuallyadditions/recipe/decompress/empowered_diamatine_crystal.json
|
||||
8be9f340167b5630f59ddbabd182cf9d53bd9f75 data/actuallyadditions/recipe/decompress/empowered_emeradic_crystal.json
|
||||
4a7e504ef2144c52b981cccd82f9ac98afb9649f data/actuallyadditions/recipe/decompress/empowered_enori_crystal.json
|
||||
4a8b36e08e57305855fe755c934e064c42a67f13 data/actuallyadditions/recipe/decompress/empowered_palis_crystal.json
|
||||
bb247d4a62262334b88e6b204e3e150aa3627e9f data/actuallyadditions/recipe/decompress/empowered_restonia_crystal.json
|
||||
4a47545221dcb40cf5dc5cf96e555e488d2faaf2 data/actuallyadditions/recipe/decompress/empowered_void_crystal.json
|
||||
e159b4d66a5eed32f256f5c5e39ab2cfa0c38b1e data/actuallyadditions/recipe/decompress/enori_crystal.json
|
||||
be144df940e603b5d3457ffc626ae71883a2fd5a data/actuallyadditions/recipe/decompress/enori_crystal_shard.json
|
||||
34d011aa6c2ff456fc651a576f8f5c1d6b98cdd4 data/actuallyadditions/recipe/decompress/palis_crystal.json
|
||||
0922600e2650989959abc01bf09f40df1c299b18 data/actuallyadditions/recipe/decompress/palis_crystal_shard.json
|
||||
e3c81c333104baebd02e4b0355ac07d6f4927334 data/actuallyadditions/recipe/decompress/restonia_crystal.json
|
||||
089792945164bb530a8982e413500d289b163918 data/actuallyadditions/recipe/decompress/restonia_crystal_shard.json
|
||||
aa04cb95f6c723f631b968afbd0037192e0a46aa data/actuallyadditions/recipe/decompress/void_crystal.json
|
||||
263394a8ccab3e239b870b78bf4d1dca959f6c08 data/actuallyadditions/recipe/decompress/void_crystal_shard.json
|
||||
5c9c0603f78ceb6de7e55a398fed6d30e44936c9 data/actuallyadditions/recipe/diamond_aiot.json
|
||||
d449363a6a4b89c8a718d98cde294cc648a9b485 data/actuallyadditions/recipe/double_battery.json
|
||||
836d06df12ebb1b4506ebd3b95f4d488a62ec0c4 data/actuallyadditions/recipe/drill_coloring/dye_drill_black.json
|
||||
fb1f5a571b19ef49a899d5776b626118342108b3 data/actuallyadditions/recipe/drill_coloring/dye_drill_blue.json
|
||||
84d5c995ee33352d69ee5c2aa83c3968affbcebb data/actuallyadditions/recipe/drill_coloring/dye_drill_brown.json
|
||||
e58498cdfe8fe51b04292864f62711af67b44d35 data/actuallyadditions/recipe/drill_coloring/dye_drill_cyan.json
|
||||
ce971f33b9e8be10e43fc7e7be91a0573ff45f73 data/actuallyadditions/recipe/drill_coloring/dye_drill_gray.json
|
||||
fa6c5ffc9f742799ac639a3138ce8bb5b548b4c2 data/actuallyadditions/recipe/drill_coloring/dye_drill_green.json
|
||||
087149df86c0332d9f321c1c092db0ad33c967dd data/actuallyadditions/recipe/drill_coloring/dye_drill_light_blue.json
|
||||
11821c443c3fcea44d4527ddc8f8a51133853133 data/actuallyadditions/recipe/drill_coloring/dye_drill_light_gray.json
|
||||
7df9ef361d0b366860bbf92424cf0d0bf79035f9 data/actuallyadditions/recipe/drill_coloring/dye_drill_lime.json
|
||||
698cf24c334d5bb05f447a4fdf8f1e5546e20b1f data/actuallyadditions/recipe/drill_coloring/dye_drill_magenta.json
|
||||
e447436880c0370d9a0158a7ee47cc6a95a0dd0f data/actuallyadditions/recipe/drill_coloring/dye_drill_orange.json
|
||||
022958646fc11a838f9083ecd553f7a051020a06 data/actuallyadditions/recipe/drill_coloring/dye_drill_pink.json
|
||||
78490dfd929a5bbd4ece14ec098f98ca8e7cc854 data/actuallyadditions/recipe/drill_coloring/dye_drill_purple.json
|
||||
5e1a4f23d9d596bed5f2aebca574002918a5fb97 data/actuallyadditions/recipe/drill_coloring/dye_drill_red.json
|
||||
91e28015934f2e49144760cb4c454b9593d1b85e data/actuallyadditions/recipe/drill_coloring/dye_drill_white.json
|
||||
1122df15841403bfb97f6e020090abb1e9494796 data/actuallyadditions/recipe/drill_coloring/dye_drill_yellow.json
|
||||
3226a302f425ab52edb0c6008c7a4eb10cb2fd18 data/actuallyadditions/recipe/drill_core.json
|
||||
8df3f7b20c8c46ed492b314aa4322b6a00178417 data/actuallyadditions/recipe/drill_light_blue.json
|
||||
f146fe12be4b36cd125d85ea25e26d5288198f72 data/actuallyadditions/recipe/drill_pattern.json
|
||||
37582da7c42402d059d28c248e9fdc31e966ab2b data/actuallyadditions/recipe/drill_upgrade_block_placing.json
|
||||
cefaab53d6b8d438e1892d82cf3cbee1dd473688 data/actuallyadditions/recipe/drill_upgrade_five_by_five.json
|
||||
3b68286acf4a230bd367308fd3728c311d1e44df data/actuallyadditions/recipe/drill_upgrade_fortune.json
|
||||
e5ef56c17efd20cdf6e8510ec3fd750558026958 data/actuallyadditions/recipe/drill_upgrade_fortune_ii.json
|
||||
2c558f1410778e6e645896913e902b8db429588f data/actuallyadditions/recipe/drill_upgrade_silk_touch.json
|
||||
9019a719ccc3772a327768a4bebf7e59be96117c data/actuallyadditions/recipe/drill_upgrade_speed.json
|
||||
a8b8e2a7ee66f320dc3fdffe07ec1b37a9d5a895 data/actuallyadditions/recipe/drill_upgrade_speed_ii.json
|
||||
792becebcb8e93b5893517463325ad08f7d07300 data/actuallyadditions/recipe/drill_upgrade_speed_iii.json
|
||||
d13393cec567e646d5a3fda8f700ae5739770d7e data/actuallyadditions/recipe/drill_upgrade_three_by_three.json
|
||||
eccc61f49d5d85852f83a2186d7eb11709d7dfb4 data/actuallyadditions/recipe/empty_cup.json
|
||||
66596c1119f7e237bb11a045677f702d97d664b7 data/actuallyadditions/recipe/engineers_goggles.json
|
||||
b8e6e228feb1b51b1b9c3269f932ffa0438d54ad data/actuallyadditions/recipe/engineers_goggles_advanced.json
|
||||
90ccbe23b72d53009557fc15b09ccfe2ca3136e9 data/actuallyadditions/recipe/filter.json
|
||||
ad46e7a5850ef6eeee2144e86405caba0d2c81c8 data/actuallyadditions/recipe/gold_aiot.json
|
||||
d31e6082ddda37e3720e63f65b8291dd06eaee6f data/actuallyadditions/recipe/handheld_filler.json
|
||||
36981ed18f6945c20de95e4c5232f5cc38c8f4fb data/actuallyadditions/recipe/iron_aiot.json
|
||||
9071210cdbaa6c01002288cede3934596e10bff3 data/actuallyadditions/recipe/item_tag.json
|
||||
e52bd1f4efd2a3f45e2ed531ebfd88bbeec9d2fd data/actuallyadditions/recipe/laser_upgrade_invisibility.json
|
||||
12881cb3c42ce1c5586bbb8e4a3cde5147c27a3f data/actuallyadditions/recipe/laser_upgrade_range.json
|
||||
71a20f32bd98ed2c24e0c0dd9c8c76fa380619b3 data/actuallyadditions/recipe/laser_wrench.json
|
||||
d127e0fe7ddfebc1be5bb415ca1f70cd53256310 data/actuallyadditions/recipe/laser_wrench_nbt.json
|
||||
94b390fe9752a5238b384513f0a81e73cf336694 data/actuallyadditions/recipe/leaf_blower.json
|
||||
10ca7e926a8a975627952b5b4460ec8a253d6167 data/actuallyadditions/recipe/leaf_blo_pattern.json
|
||||
d4f7bc84709a6585cb2951e56d99f26952ad1eae data/actuallyadditions/recipe/lens.json
|
||||
c21db44694326763d9d2def893757d0968e0e84f data/actuallyadditions/recipe/lens_of_disenchanting.json
|
||||
5911246dec8d0a52053dfd3c100c90ce91b75ea2 data/actuallyadditions/recipe/lens_of_the_killer.json
|
||||
cc4a287f8c64b227d79f8872fa2b8d5c521688f7 data/actuallyadditions/recipe/lens_of_the_miner.json
|
||||
66c63820b2c18fab143078bab0bb70f1e3bdf8d4 data/actuallyadditions/recipe/netherite_aiot.json
|
||||
da0d788ca6d23254db4fd38132e595123be20690 data/actuallyadditions/recipe/phantom_clearing.json
|
||||
a87ce0c47d97dffb4aae7b22d014007a6c9594a5 data/actuallyadditions/recipe/phantom_connector.json
|
||||
677077d200d9670b747403447b94648edce8a181 data/actuallyadditions/recipe/phan_con_pattern.json
|
||||
f471f62cce2a66b1abcb20ac2f04a721cb502c82 data/actuallyadditions/recipe/player_probe.json
|
||||
a63510c304f5b5d0f814f75210b99b02e643fde5 data/actuallyadditions/recipe/quadruple_battery.json
|
||||
27a066dffb4934fada9191452dcc1865670d7785 data/actuallyadditions/recipe/quintuple_battery.json
|
||||
f4390d29692bc7255e4f71dd8c7a1889a08472a0 data/actuallyadditions/recipe/rice_dough.json
|
||||
8387752b39fe9b367e409e4ee1d70227830a4720 data/actuallyadditions/recipe/rice_dough_smelting.json
|
||||
f7b4a51bf6bcaee860b68bfd2dc40a6b0bfff6bc data/actuallyadditions/recipe/rice_paper.json
|
||||
1b4692ed1d3eac3616f11252e2d838d43d9dbc3a data/actuallyadditions/recipe/rice_seeds.json
|
||||
73e49fa3d60186037c58569eee42fc6dbff0e55c data/actuallyadditions/recipe/rice_slime.json
|
||||
f5cbc0efed1684fa5201cbd023d90fdec89aa0b3 data/actuallyadditions/recipe/rice_slime_potion.json
|
||||
be20b48da77573463f63c119b542fde5d4c14843 data/actuallyadditions/recipe/ring.json
|
||||
b5bcd0457a68e28d37312f1a1e94a106d3b6f038 data/actuallyadditions/recipe/ring_of_growth.json
|
||||
8e0ac0d696ff3ecd1ef43122707b8f131bba3fbf data/actuallyadditions/recipe/ring_of_magnetizing.json
|
||||
f31206c1d67ddc93e41d13f24d54e8d6b5913348 data/actuallyadditions/recipe/single_battery.json
|
||||
9504d2a8e3cb536cf865e8385a013743a0d615d0 data/actuallyadditions/recipe/stone_aiot.json
|
||||
bd83fca2a318f4b513a38310e4b3d26f87ab9439 data/actuallyadditions/recipe/tagged_slime_block.json
|
||||
7e657b2d9a1aeea7fc93f8be27b4a32f814f21e4 data/actuallyadditions/recipe/tagged_sticky_piston.json
|
||||
b40274260097d19ae4f925e31982d8bfad3acd84 data/actuallyadditions/recipe/teleport_staff.json
|
||||
b0e94b90682d5224dd995c15b26d6df50fd78dd6 data/actuallyadditions/recipe/tiny_to_charcoal.json
|
||||
a60310bd6c5ec1368137372aed468e673cd1fd00 data/actuallyadditions/recipe/tiny_to_coal.json
|
||||
d05b0592f4bca3c8872951e64bd1a71556f6123e data/actuallyadditions/recipe/travelers_sack.json
|
||||
56223a36e975121cb68ceb8612149a18e6b2e196 data/actuallyadditions/recipe/triple_battery.json
|
||||
2fef8ec63ca79504963931f6af6890d7d1e81068 data/actuallyadditions/recipe/void_sack.json
|
||||
7105ba5ab80fe4117035aa910316947db63cca6f data/actuallyadditions/recipe/wings_of_the_bats.json
|
||||
710584ebeab5a6cbffd6444c68afeb4d31e9573f data/actuallyadditions/recipe/wooden_aiot.json
|
|
@ -1,76 +0,0 @@
|
|||
// 1.21.1 2024-10-19T22:58:03.6472462 Recipes
|
||||
b44fee42c2b2b3f56256fe76b2d9f529dc87350a data/actuallyadditions/recipe/atomic_reconstructor.json
|
||||
b1c937b75ba7f8e02dfac4db5253271f2de502e5 data/actuallyadditions/recipe/battery_box.json
|
||||
660b96730a8ef88b4b44e4ce67fde0945c13ae7f data/actuallyadditions/recipe/bio_reactor.json
|
||||
767d9b27b28f42f5946ea4693eccc000eff974cd data/actuallyadditions/recipe/black_quartz_block.json
|
||||
f9d6f63ed61e5336781d59694eac2e8ad48b6871 data/actuallyadditions/recipe/black_quartz_brick_slab.json
|
||||
9b48829383319c593ca143e803d4d4286d435034 data/actuallyadditions/recipe/black_quartz_brick_stair.json
|
||||
be5641c262536ed05fa7fa307b5087191e01ad1f data/actuallyadditions/recipe/black_quartz_brick_wall.json
|
||||
bc3771d03192825636fb2d1037b902f5c39e97f8 data/actuallyadditions/recipe/black_quartz_pillar_block.json
|
||||
3d658c921ea08a80509f5e899c310d84af825854 data/actuallyadditions/recipe/black_quartz_pillar_slab.json
|
||||
72316aa353fa29f5d0eb5e74849e94ff68ac3ee8 data/actuallyadditions/recipe/black_quartz_pillar_stair.json
|
||||
93052b0c0fdf1aa83a5a0b26037a008aefc3ba80 data/actuallyadditions/recipe/black_quartz_pillar_wall.json
|
||||
e9fad26d1fbcb1acf6f5bd711e890787dae636b1 data/actuallyadditions/recipe/black_quartz_slab.json
|
||||
393c8837e266d33037e02d6704564e2867e89c5b data/actuallyadditions/recipe/black_quartz_stair.json
|
||||
24f80731fdcb2f950f28949e9c3dbfcd1ec83278 data/actuallyadditions/recipe/black_quartz_wall.json
|
||||
bc5c51e659c0b493098b7919740fc6419efb94d9 data/actuallyadditions/recipe/breaker.json
|
||||
48a5893a0109e467dca8343ee6d4334095e6d118 data/actuallyadditions/recipe/canola_press.json
|
||||
d46bb9d164ab5fcd00acb4f97f77f18245780243 data/actuallyadditions/recipe/chiseled_black_quartz_block.json
|
||||
f4f6b7f673e0296cbc363bc1600c19ce164f1b5e data/actuallyadditions/recipe/chiseled_black_quartz_slab.json
|
||||
97e257913384101be10c578635e576c711286564 data/actuallyadditions/recipe/chiseled_black_quartz_stair.json
|
||||
dd3985f8a437083771d0d30753c31bb926543863 data/actuallyadditions/recipe/chiseled_black_quartz_wall.json
|
||||
604cb093b57de3c44a11a4737757ca8bf0630f35 data/actuallyadditions/recipe/coal_generator.json
|
||||
e921a2a21a35ca35d09382795d94c701169cd094 data/actuallyadditions/recipe/coffee_machine.json
|
||||
18ab4329cdf121ac5f3e4fb1f0cb4dc235815dc8 data/actuallyadditions/recipe/crusher.json
|
||||
4a46face4ae9bc743cff806b7ec6eea2a86d9c95 data/actuallyadditions/recipe/crusher_double.json
|
||||
7f0c9e2598ec3820f8d659c384dd967b643628a7 data/actuallyadditions/recipe/display_stand.json
|
||||
27548fc1e6cf285191fd58fc50e3e05ae86df814 data/actuallyadditions/recipe/dropper.json
|
||||
0b966a35e1059c79b09f2df95a47aa7a54889ce1 data/actuallyadditions/recipe/empowerer.json
|
||||
91b71d58ff0a0c4f65d562e7f28946ff7a3de9d5 data/actuallyadditions/recipe/ender_casing.json
|
||||
01293bdbfd75e1bae258fb233a5afbcb0fcc8384 data/actuallyadditions/recipe/energizer.json
|
||||
dba56befdc56f06337ab63a3d427833f17347634 data/actuallyadditions/recipe/enervator.json
|
||||
2a198eee5ae79c15f1a3398f075b2f3d4565c3d0 data/actuallyadditions/recipe/ethetic_green_slab.json
|
||||
173358a81f156213d0a15923ff9d89a331e711df data/actuallyadditions/recipe/ethetic_green_stairs.json
|
||||
0c8f8519680ac09fc0e8c2519747f94ba8cb51d7 data/actuallyadditions/recipe/ethetic_green_wall.json
|
||||
2ace821b6bfc343e4d16c02513a75c9942087a48 data/actuallyadditions/recipe/ethetic_white_slab.json
|
||||
4791ef539c5d7d05ac0895a9eb0f0d1d8aed2a59 data/actuallyadditions/recipe/ethetic_white_stairs.json
|
||||
ac9d03ce26651245bb59d6538348eb8e8f24870a data/actuallyadditions/recipe/ethetic_white_wall.json
|
||||
e538fd3e9c429ff7cc5358ab44e3cd336c7c5de8 data/actuallyadditions/recipe/farmer.json
|
||||
b141cc8224f70d151e0aad5a5979dc66cf365ea3 data/actuallyadditions/recipe/feeder.json
|
||||
c1828800d15b83adfc3c76e08e90398f4e9f5fd7 data/actuallyadditions/recipe/fermenting_barrel.json
|
||||
5cd8ea1ca64410d6927cf28bee81bd45952a9b41 data/actuallyadditions/recipe/firework_box.json
|
||||
76411e1bf7b840a04307a7f702c476858edf2ba1 data/actuallyadditions/recipe/fluid_collector.json
|
||||
5a4f78d4e9881f4478d82b76fc9ff697531fe336 data/actuallyadditions/recipe/fluid_placer.json
|
||||
6a99de81eb73779bcae488365e020b8dfb770ec3 data/actuallyadditions/recipe/greenhouse_glass.json
|
||||
17a740fe256e729a1bce8b6877bda7db2ac43f21 data/actuallyadditions/recipe/heat_collector.json
|
||||
80ab891d7a37a267bf777d2da9169909a3d01a80 data/actuallyadditions/recipe/hopping_item_interface.json
|
||||
712558c8e1abfd4e6e2ffaa2efa53bb7e206e431 data/actuallyadditions/recipe/iron_casing.json
|
||||
79fae16f5218ffb0a4b8fb8fa385a0d1f846443c data/actuallyadditions/recipe/item_interface.json
|
||||
68418f8b833a28a22aef2088bbe050093009a9f3 data/actuallyadditions/recipe/laser_relay.json
|
||||
125da42a29e7ddb2848c2e9ae5fec6ae4131c79f data/actuallyadditions/recipe/laser_relay_advanced.json
|
||||
c089153034c8334874b5c3a35350e06a8727e288 data/actuallyadditions/recipe/laser_relay_extreme.json
|
||||
15698347d0d3b69c8ffb97f24e58abea05bc5111 data/actuallyadditions/recipe/laser_relay_item_advanced.json
|
||||
0765b05a9cbf03135680e75c799caf868490ec05 data/actuallyadditions/recipe/lava_factory_casing.json
|
||||
ea95eb8a0eb6f7e64c67b98ea1ec8e5be20ca10b data/actuallyadditions/recipe/lava_factory_controller.json
|
||||
af594b44d81bd0fbe626d73cedca2b028a39e7e5 data/actuallyadditions/recipe/leaf_generator.json
|
||||
1e0d09b13415765c2703d320478326327c2e48cb data/actuallyadditions/recipe/long_range_breaker.json
|
||||
f7caabe5cad5ac66ddd21fc4a8890462f2b85f3a data/actuallyadditions/recipe/oil_generator.json
|
||||
592779012e1f9e67fd0676334e820e4cd2f832f5 data/actuallyadditions/recipe/phantom_booster.json
|
||||
14af5ba8644d121a77367a43e716731dad6534e2 data/actuallyadditions/recipe/phantom_breaker.json
|
||||
4c3c9126f77749e7096ad6f933f50ee4fa0ab1e9 data/actuallyadditions/recipe/phantom_energyface.json
|
||||
960db1ef18da1bba2deae22321ee1610730da939 data/actuallyadditions/recipe/phantom_itemface.json
|
||||
64fa5f333931a8a7728e9a800074b3d0c0aad769 data/actuallyadditions/recipe/phantom_liquiface.json
|
||||
943757f6dfe5463d025741b2933a607ab25d4283 data/actuallyadditions/recipe/phantom_placer.json
|
||||
a64fee6d626245cd7da1c10cb5452eaa7b03eacf data/actuallyadditions/recipe/phantom_redstoneface.json
|
||||
c2ac056a53acebbe002bae1edf2cb81175eebaa6 data/actuallyadditions/recipe/placer.json
|
||||
6f060c9d859bb9643409ac4cd7bd43d412bce4ec data/actuallyadditions/recipe/player_interface.json
|
||||
6209355d9f0af0944e04dd940b94d1e7842bcf6a data/actuallyadditions/recipe/powered_furnace.json
|
||||
81009abd0f659d5bde626a430509cb501b6c0ffd data/actuallyadditions/recipe/ranged_collector.json
|
||||
b267b3df7e751818fadbbba4015706bc50c95c6a data/actuallyadditions/recipe/shock_suppressor.json
|
||||
844e5ce4b6d5efbe6619f41996d9a53bed45bb9b data/actuallyadditions/recipe/smooth_black_quartz_slab.json
|
||||
c7626ec53d19fda16bc53ae0f39824d8cb6969d0 data/actuallyadditions/recipe/smooth_black_quartz_stair.json
|
||||
a5bbea36e4e66a6c1aed2b618b6b2782b334963c data/actuallyadditions/recipe/smooth_black_quartz_wall.json
|
||||
f0a6cbd14eac4a35f31b17818a10c3052d848e32 data/actuallyadditions/recipe/tiny_torch.json
|
||||
417bba7527a62cea44fd900ce3882000ada36a2c data/actuallyadditions/recipe/vertical_digger.json
|
||||
207a2f79e0b0c94905c385aaa0dd843c26fcfa6d data/actuallyadditions/recipe/wood_casing.json
|
||||
c5dae80ac00ec9829c80d6e453adcb488e775005 data/actuallyadditions/recipe/xp_solidifier.json
|
|
@ -1,3 +0,0 @@
|
|||
// 1.21.1 2024-08-11T19:30:01.8123206 Misc Recipes
|
||||
11e0dd08e85ab0f073a06a447be5e57949849180 data/actuallyadditions/recipe/fermenting/refined_canola.json
|
||||
3b226a682d7de7ffff4b91818057c740b4e7bcd7 data/actuallyadditions/recipe/pressing/canola.json
|
|
@ -1,5 +0,0 @@
|
|||
// 1.21.1 2024-08-11T19:30:01.831819 Tags for minecraft:banner_pattern mod id actuallyadditions
|
||||
3dd9e0b0c98a7e1c7043f53569e3bbe83d8d8f81 data/actuallyadditions/tags/banner_pattern/pattern_item/book.json
|
||||
5fdfca3b16ef2b8b12a96218d4792f5dd92670cb data/actuallyadditions/tags/banner_pattern/pattern_item/drill.json
|
||||
6ce4a69df9109573aeb0f2e56ff087ed6a6068d7 data/actuallyadditions/tags/banner_pattern/pattern_item/leaf_blower.json
|
||||
6ed142fcbd485f7f74f5befc735deb4094b42979 data/actuallyadditions/tags/banner_pattern/pattern_item/phan_con.json
|
|
@ -1,234 +0,0 @@
|
|||
// 1.21.1 2024-08-11T19:30:01.826318 Item Models: actuallyadditions
|
||||
34463d3d2ae3fafaaea338e7ffc03cd139d3cfeb assets/actuallyadditions/models/item/advanced_coil.json
|
||||
24594fc68e66011dc2d7b79b92c94b387e710318 assets/actuallyadditions/models/item/advanced_leaf_blower.json
|
||||
ba2d814e269cdef72e1045f200b3c20ed6961517 assets/actuallyadditions/models/item/atomic_reconstructor.json
|
||||
78b81d459280fce5b554931fab46e216423d9dbc assets/actuallyadditions/models/item/basic_coil.json
|
||||
54a76f76a049874b89b3d2b8b79e73fc9ee7ba0a assets/actuallyadditions/models/item/bats_wing.json
|
||||
7e87d33f54fa5aaa0f57f30a16038d9290f9ae99 assets/actuallyadditions/models/item/battery_box.json
|
||||
4898aa83002493eef70df16d4a5f7a9fa1584dee assets/actuallyadditions/models/item/bio_reactor.json
|
||||
a9526b51513a0c73a611c8e64f06f2b319fa4387 assets/actuallyadditions/models/item/black_quartz.json
|
||||
81d6647c902bced925a4311ada26e18db0d5826a assets/actuallyadditions/models/item/black_quartz_block.json
|
||||
0f826350c1a3dd7172476ef27d059bce95a2a434 assets/actuallyadditions/models/item/black_quartz_brick_block.json
|
||||
e4f0168005ef994fbcd66f87cc7b7a82dbce99aa assets/actuallyadditions/models/item/black_quartz_brick_slab.json
|
||||
b956a8aae9de652cf961b56e6eb0f9e8cc46da2d assets/actuallyadditions/models/item/black_quartz_brick_stair.json
|
||||
d0f371985cfdbc8dbd93d4f58f2d7a0245edd03b assets/actuallyadditions/models/item/black_quartz_brick_wall.json
|
||||
384947f2a16b16859cfddb6a669ea7aba0ece9df assets/actuallyadditions/models/item/black_quartz_ore.json
|
||||
06f30c5eab42ad4cc8228322ae9ad1c7d0c8f7e2 assets/actuallyadditions/models/item/black_quartz_pillar_block.json
|
||||
56ef7ec11853b867bf39b29fc714bb631d713a95 assets/actuallyadditions/models/item/black_quartz_pillar_slab.json
|
||||
4dfa84b403aa3cfebfc1bb0eaae2a3010891ee8e assets/actuallyadditions/models/item/black_quartz_pillar_stair.json
|
||||
a41a81204caeddaaeaba35a5d1087361d7df5eae assets/actuallyadditions/models/item/black_quartz_pillar_wall.json
|
||||
c8974657e959db31495382cf6a86a3367df5d8c9 assets/actuallyadditions/models/item/black_quartz_slab.json
|
||||
74aaa894cd68cf64f8ad5aac0e7c0b26cdb0a021 assets/actuallyadditions/models/item/black_quartz_stair.json
|
||||
7e8476e561bd4854b54ce79cb798fd9b2915efb4 assets/actuallyadditions/models/item/black_quartz_wall.json
|
||||
a921bf283b5864b283ffff0737d8c3c89487dd08 assets/actuallyadditions/models/item/booklet.json
|
||||
e02c1dcb56bd16fe497ed8a4f19c52233aa9b20e assets/actuallyadditions/models/item/book_pattern.json
|
||||
8f1232a569a12d54b1053fae05dc85d23b28ed42 assets/actuallyadditions/models/item/breaker.json
|
||||
a311a3b7ad53f4b3e248939aecb41edbc5539a64 assets/actuallyadditions/models/item/canola.json
|
||||
fa77f5b54168ff7c11c5ce9fbe342eb7298a9ec8 assets/actuallyadditions/models/item/canola_oil_bucket.json
|
||||
73ff7de0094bcc2b89106282f99ef1e2384a05c5 assets/actuallyadditions/models/item/canola_press.json
|
||||
23a5a96f1ed000d86ed4a51ff06b25fea909f9b4 assets/actuallyadditions/models/item/canola_seeds.json
|
||||
290bc294c4475cc55b0ed30a9039ab01c7c25e1a assets/actuallyadditions/models/item/chiseled_black_quartz_block.json
|
||||
c73981382d646e4a0186b26fcfad817d39252055 assets/actuallyadditions/models/item/chiseled_black_quartz_slab.json
|
||||
2da8ce13d0dff36eb41cdd5304a5f12e3a2c3b05 assets/actuallyadditions/models/item/chiseled_black_quartz_stair.json
|
||||
7d4d97ae9522f6948c87038688e6127656585011 assets/actuallyadditions/models/item/chiseled_black_quartz_wall.json
|
||||
5552f28e9045f34bcd21185104328e63ffea4482 assets/actuallyadditions/models/item/coal_generator.json
|
||||
5aded8cc17941f3019c742359b40d97a2314bac3 assets/actuallyadditions/models/item/coffee_beans.json
|
||||
074b1d09d638b991a090d3fe1336a33b6d63f8a3 assets/actuallyadditions/models/item/coffee_cup.json
|
||||
a67f1795e1ad1d6ed19f2a35f176f39e00dbb9c3 assets/actuallyadditions/models/item/coffee_machine.json
|
||||
523148eac33929fb0d2892856a5ddcb784043bb5 assets/actuallyadditions/models/item/crafter_on_a_stick.json
|
||||
89cc79420e3a7c2952ce729537b7503a517bb9de assets/actuallyadditions/models/item/crate_keeper.json
|
||||
cfc7022ad26717b33c916d380435cc32ace34c0b assets/actuallyadditions/models/item/crate_small.json
|
||||
9bc734dadf9d5b85b8cc5685b673a1d074cf3d6d assets/actuallyadditions/models/item/crusher.json
|
||||
4b7ef5dd15d930d4b0b5507cd08c27cb5ee1498a assets/actuallyadditions/models/item/crusher_double.json
|
||||
91e18e2c5ae8f657b977865312e8cd7ee348d8f1 assets/actuallyadditions/models/item/crystallized_canola_seed.json
|
||||
5f0125cbbd70bf0061f97a2ef224d64e17880f42 assets/actuallyadditions/models/item/crystallized_oil_bucket.json
|
||||
327bb93357d04e9158b024278e7dc0533872870e assets/actuallyadditions/models/item/diamatine_crystal.json
|
||||
41096b470637e0ef8fd4db2376d26fe61daf8384 assets/actuallyadditions/models/item/diamatine_crystal_block.json
|
||||
6559ba1ebc7abc0e75693e085f3e85624a17b79f assets/actuallyadditions/models/item/diamatine_crystal_cluster.json
|
||||
7e7fc4f0260f1fef2a3281280f4006c47f1bba35 assets/actuallyadditions/models/item/diamatine_crystal_shard.json
|
||||
3318c3bb118ee0bb1008a936c72ec80dcaf59b8c assets/actuallyadditions/models/item/diamond_aiot.json
|
||||
11e4961bde9e6900dc90a833108060a774783df6 assets/actuallyadditions/models/item/display_stand.json
|
||||
2ed3d6a7d3b292d765616e09ca0fe03810ad80eb assets/actuallyadditions/models/item/double_battery.json
|
||||
2669dbeb32101f50763c9cd7f71f5b401461dc18 assets/actuallyadditions/models/item/drill_black.json
|
||||
1b836004c51c7730cb9e2b21f6e6deb036d2274e assets/actuallyadditions/models/item/drill_blue.json
|
||||
aa33fb2f609dfd580a0170bf59472b42430aec44 assets/actuallyadditions/models/item/drill_brown.json
|
||||
9f381b99a07d86f593ad23f21b69953ea440bb68 assets/actuallyadditions/models/item/drill_core.json
|
||||
80ac2161c43623c7e0cc4a9cf456229d3b3adba3 assets/actuallyadditions/models/item/drill_cyan.json
|
||||
ec5271390d19a8f654a039ce484c687f23a67ef5 assets/actuallyadditions/models/item/drill_gray.json
|
||||
19c8303f3d33482f543a4e4346948962ba8b4503 assets/actuallyadditions/models/item/drill_green.json
|
||||
64bd52ecac64de40f151612351e1850ca5da01f2 assets/actuallyadditions/models/item/drill_light_blue.json
|
||||
23fe074980dc4fc5b5f0fb4a824a92346b10a88b assets/actuallyadditions/models/item/drill_light_gray.json
|
||||
d1a9bbc0f92cf264b361cd392b192e5eba191b15 assets/actuallyadditions/models/item/drill_lime.json
|
||||
b451f12814595ac7b06ffee06eaa93249c2c0075 assets/actuallyadditions/models/item/drill_magenta.json
|
||||
c5be173ce3f3c5fdc376eacbefb2e3d913a2ecc4 assets/actuallyadditions/models/item/drill_orange.json
|
||||
65f60912d49440c97977e319e6ffdbfe68aae594 assets/actuallyadditions/models/item/drill_pattern.json
|
||||
26a3683600670d1733f0e0be80528e1b01d1c94a assets/actuallyadditions/models/item/drill_pink.json
|
||||
086647e21977dff542f6cb09c4b0f3f826f874c5 assets/actuallyadditions/models/item/drill_purple.json
|
||||
a1dae4b66cce762b355ef2b5bbf399693f09b141 assets/actuallyadditions/models/item/drill_red.json
|
||||
8ef73b41977224209334cabf7e1045837aa929d4 assets/actuallyadditions/models/item/drill_upgrade_block_placing.json
|
||||
127e2a8dfc5ee71302e2d257abfd175d3f5f9d64 assets/actuallyadditions/models/item/drill_upgrade_five_by_five.json
|
||||
5bf43366c38cd5ef070898a11b82a2b233b96fad assets/actuallyadditions/models/item/drill_upgrade_fortune.json
|
||||
5b97eb31cd76fefebe769b9c457ea7266972f913 assets/actuallyadditions/models/item/drill_upgrade_fortune_ii.json
|
||||
b88def6178c09deb38ed716785e75567d1c2da75 assets/actuallyadditions/models/item/drill_upgrade_silk_touch.json
|
||||
ab8cf32dd091701b325eb35e847c40b4ee91b5bd assets/actuallyadditions/models/item/drill_upgrade_speed.json
|
||||
42fe05ad3d60a9c7181b4edef17991724051d9a4 assets/actuallyadditions/models/item/drill_upgrade_speed_ii.json
|
||||
f7a3f382e4527c76256bc0dbc588041f8820fa61 assets/actuallyadditions/models/item/drill_upgrade_speed_iii.json
|
||||
55b3c697cd0ad1b831d773d3fdce2bf791e7a23c assets/actuallyadditions/models/item/drill_upgrade_three_by_three.json
|
||||
b23de462f3fd72a64945ee497ac10b2663579ce8 assets/actuallyadditions/models/item/drill_white.json
|
||||
3b770ac5928a24cbb7a9632eed889c771b6d7af4 assets/actuallyadditions/models/item/drill_yellow.json
|
||||
184e0b97cf0ba0fdded5f60154e452bae9d8cfec assets/actuallyadditions/models/item/dropper.json
|
||||
5b8ab7834e0be223235b769f8125a6ce975fff09 assets/actuallyadditions/models/item/emeradic_crystal.json
|
||||
c27e8b54522ff17d84f01a6d3a0303a4b3c1a1eb assets/actuallyadditions/models/item/emeradic_crystal_block.json
|
||||
41ad224d53871c009b459e939cac046248f95d88 assets/actuallyadditions/models/item/emeradic_crystal_cluster.json
|
||||
d289c83c74218afb6ffdd4ce21782e0304263192 assets/actuallyadditions/models/item/emeradic_crystal_shard.json
|
||||
090128925b5d4fe7bac12554cf810c251930a8e2 assets/actuallyadditions/models/item/empowered_canola_seed.json
|
||||
f3161e3fa263281b2754a91ba15a98a09ebfae50 assets/actuallyadditions/models/item/empowered_diamatine_crystal.json
|
||||
db59980eb72833c10b2831415f2ee03dd89cf760 assets/actuallyadditions/models/item/empowered_diamatine_crystal_block.json
|
||||
aa5de8e474f33cb97dc1ba2950f8abe67026e30b assets/actuallyadditions/models/item/empowered_emeradic_crystal.json
|
||||
383cd73169c029abcb2241761350f74a20f561f5 assets/actuallyadditions/models/item/empowered_emeradic_crystal_block.json
|
||||
208a00e1a0cca596991bdb9e02724b31d964be48 assets/actuallyadditions/models/item/empowered_enori_crystal.json
|
||||
ddb1c951b2ed6c366f1e3eb2e70397e07507298b assets/actuallyadditions/models/item/empowered_enori_crystal_block.json
|
||||
a6c902a5cea0d9ef4019224d472a305af5f8d641 assets/actuallyadditions/models/item/empowered_oil_bucket.json
|
||||
bea490e8cc6ce5b077a84dd3eeeae6b1d2921e2a assets/actuallyadditions/models/item/empowered_palis_crystal.json
|
||||
8ec9b589485c06f0222ba62e987ca9ffeaebddcb assets/actuallyadditions/models/item/empowered_palis_crystal_block.json
|
||||
d89cb0fb4e15b0200c8e1f3efa8029472ed93dae assets/actuallyadditions/models/item/empowered_restonia_crystal.json
|
||||
dcf453d18ae115ea027798c509ab0097d3638460 assets/actuallyadditions/models/item/empowered_restonia_crystal_block.json
|
||||
fa5ad56054d3d1fa2cae577c490520184682990a assets/actuallyadditions/models/item/empowered_void_crystal.json
|
||||
d126b338cdc9ea161afaa8cf238c2e6432210ab2 assets/actuallyadditions/models/item/empowered_void_crystal_block.json
|
||||
1da3311ae660be5c5802f7f1593d340ed785f7a1 assets/actuallyadditions/models/item/empowerer.json
|
||||
1bc676ebb828e539e49d34bcdbf8de8808788b29 assets/actuallyadditions/models/item/empty_cup.json
|
||||
44120a0c34c1e7d180761db7db790d2d42f4421b assets/actuallyadditions/models/item/ender_casing.json
|
||||
a7605af0a7b033b2eb9872f49e6ab7967160ab1a assets/actuallyadditions/models/item/ender_star.json
|
||||
4f30d8d31f0657644876c0ce45218ca052c76f6d assets/actuallyadditions/models/item/energizer.json
|
||||
2ea6d1faeeb6996538dda7abf14a62817ffc0058 assets/actuallyadditions/models/item/enervator.json
|
||||
24d77d6a424136a9d860dc544529bbc12be6ca9d assets/actuallyadditions/models/item/engineers_goggles.json
|
||||
c3d29a96c9b8c0d105f363939a7c76c355a4e834 assets/actuallyadditions/models/item/engineers_goggles_advanced.json
|
||||
a89dc6aaf8cf583c733b5be1f385e0ef88421d2a assets/actuallyadditions/models/item/enori_crystal.json
|
||||
e69c4c1c9d155f3e14320584800bb723e31f4c3f assets/actuallyadditions/models/item/enori_crystal_block.json
|
||||
402c503501ac74e7505db48d4271df30baafbd74 assets/actuallyadditions/models/item/enori_crystal_cluster.json
|
||||
552392ba9cc24b7dd9b160b866da794de3466a78 assets/actuallyadditions/models/item/enori_crystal_shard.json
|
||||
5105aae5fc7416276770b15e8f709c2b9aa37661 assets/actuallyadditions/models/item/ethetic_green_block.json
|
||||
461c0ce7e29062bd746edd6f1489c3c56fc9fba7 assets/actuallyadditions/models/item/ethetic_green_slab.json
|
||||
bb6f5392796c0adb55fe8c05d241e100a582216b assets/actuallyadditions/models/item/ethetic_green_stairs.json
|
||||
0c73aca9b3e356896ff50dab363a62981d8e14da assets/actuallyadditions/models/item/ethetic_green_wall.json
|
||||
d63c6b082f37ce7fdefceaf23b27ce1304e462a8 assets/actuallyadditions/models/item/ethetic_white_block.json
|
||||
45e8d6f385a72912908866c63c01a8ed5cd121c4 assets/actuallyadditions/models/item/ethetic_white_slab.json
|
||||
17348e065fc131ee393ca706e5fb67e27446a697 assets/actuallyadditions/models/item/ethetic_white_stairs.json
|
||||
f280eb6cd443cc9ad0373bcea0e32bfd9612ce32 assets/actuallyadditions/models/item/ethetic_white_wall.json
|
||||
cb75ec3d4e570f7b7e15148b4deda9d4c248e22a assets/actuallyadditions/models/item/farmer.json
|
||||
180b9bac03a2b7e6e0765f2911ca12ba66f9ffe1 assets/actuallyadditions/models/item/feeder.json
|
||||
fa6ecbf0d5de9c36ca72da31becf2dff0dbea2af assets/actuallyadditions/models/item/fermenting_barrel.json
|
||||
2d2e82c58b990cf9b7b721e484bb3e9a7135ae21 assets/actuallyadditions/models/item/filter.json
|
||||
bea6d0047a8f59a3612752e09f17bed9cb247394 assets/actuallyadditions/models/item/firework_box.json
|
||||
81e4bc2a89ce62ef657b1fe46955fc8d15a6cb5b assets/actuallyadditions/models/item/flax_seeds.json
|
||||
7139a6ac99026c6e9577aacdb2d3d1259bd1f138 assets/actuallyadditions/models/item/fluid_collector.json
|
||||
b47cfe22bd714502624e39b3d8e825616152b4c7 assets/actuallyadditions/models/item/fluid_placer.json
|
||||
6d914cb6ef8083ccb4835ccb275b4ee43d4e4f5f assets/actuallyadditions/models/item/gold_aiot.json
|
||||
a6e2106885c833e549bd7ba533dbc0ae71bd07a0 assets/actuallyadditions/models/item/greenhouse_glass.json
|
||||
b08483a789d525b90808638a497ff43947454dfa assets/actuallyadditions/models/item/handheld_filler.json
|
||||
d058286787b169cd09245f2cae6606bfedeb4813 assets/actuallyadditions/models/item/heat_collector.json
|
||||
44b520347755bcb5308187153fe3e902ab666fae assets/actuallyadditions/models/item/hopping_item_interface.json
|
||||
f9f045a7713addffc4c419d1a3acdc9eac176065 assets/actuallyadditions/models/item/iron_aiot.json
|
||||
bd9be4f8d1235d6a418280c0a9a585c53360a99e assets/actuallyadditions/models/item/iron_casing.json
|
||||
4b742b7bf9df6b8f745ed00ac29860959ff6f076 assets/actuallyadditions/models/item/item_interface.json
|
||||
f290b9736cf0be8ce90e0731f40aa656d763f977 assets/actuallyadditions/models/item/item_tag.json
|
||||
a0545bce8530d20e0d87775144ed47f2df070219 assets/actuallyadditions/models/item/lamp_black.json
|
||||
ddecd4c60d4d0f77175eaa0178f6397afd7ee98f assets/actuallyadditions/models/item/lamp_blue.json
|
||||
53e733a0cf113affea99490724efd72ee28cf823 assets/actuallyadditions/models/item/lamp_brown.json
|
||||
6da0f6b4b5902b6edfceb1ad1da68d2eedd4fd1f assets/actuallyadditions/models/item/lamp_controller.json
|
||||
318dfa2d59143dcfa0c80c5737c2be615de36775 assets/actuallyadditions/models/item/lamp_cyan.json
|
||||
87b4f790502f49966402065f78c741bcba13dd4a assets/actuallyadditions/models/item/lamp_gray.json
|
||||
2c94699dabd27108f5b91649368da0f13a6ebfee assets/actuallyadditions/models/item/lamp_green.json
|
||||
4d55a64d1ea22a1f98793d6bbc0494d4c8da64e1 assets/actuallyadditions/models/item/lamp_light_blue.json
|
||||
745c21cbcad8ea5497bdbefdd02329995ce34add assets/actuallyadditions/models/item/lamp_light_gray.json
|
||||
94a023517d8fc7010674ca35bd97c1f06f20a7d7 assets/actuallyadditions/models/item/lamp_lime.json
|
||||
1dd547f6ed02f9e9aa003a6fce8a99723233e147 assets/actuallyadditions/models/item/lamp_magenta.json
|
||||
0859c5175dc283ad8f4b6c775d056719df2b0fe8 assets/actuallyadditions/models/item/lamp_orange.json
|
||||
42feb4551b5195c43a857740f7d43bf649a9c806 assets/actuallyadditions/models/item/lamp_pink.json
|
||||
ecca7ae3b8be9bd3cc4bb03fc67f953dc0457565 assets/actuallyadditions/models/item/lamp_purple.json
|
||||
48f7aa99f0b23062ebd8786263d50b735543abb9 assets/actuallyadditions/models/item/lamp_red.json
|
||||
9e3a7b59adc5027d02d670336edbd976d6542b45 assets/actuallyadditions/models/item/lamp_white.json
|
||||
5954f2cf5ce36bc62fa48319468ba3071c0a56a8 assets/actuallyadditions/models/item/lamp_yellow.json
|
||||
0564b3476e14a666482189debf313fe5b7b8e471 assets/actuallyadditions/models/item/laser_relay.json
|
||||
8d445961de532602ca6c7ac32c65ab8191a9daad assets/actuallyadditions/models/item/laser_relay_advanced.json
|
||||
b7ca5de0aa839ed3ef4f81392666a639a3ad9dba assets/actuallyadditions/models/item/laser_relay_extreme.json
|
||||
675bfd2749745ecd2fb7d5cac73d5534bb446ab1 assets/actuallyadditions/models/item/laser_relay_fluids.json
|
||||
f930964ba83e5dbc8f2080659704f0917b51a823 assets/actuallyadditions/models/item/laser_relay_item.json
|
||||
b35a25719115ddb587b6172c2ba9769ecf29ad4d assets/actuallyadditions/models/item/laser_relay_item_advanced.json
|
||||
a20fa6e1df0a18526f8cac045b6e0f4fcb4bf30c assets/actuallyadditions/models/item/laser_upgrade_invisibility.json
|
||||
3158f761dde7a7d54464d510e56238f135300a94 assets/actuallyadditions/models/item/laser_upgrade_range.json
|
||||
9872092852b1fe5f338e71d726111d713d652b3a assets/actuallyadditions/models/item/laser_wrench.json
|
||||
05e3583ade09c7d90ddb536c5be6d3df1ce786c7 assets/actuallyadditions/models/item/lava_factory_casing.json
|
||||
34573ebef541f5d9f7d62ba95205f81e1de234b4 assets/actuallyadditions/models/item/lava_factory_controller.json
|
||||
df17f763590bf5c883eec492e4ab4d8dc4bdeb97 assets/actuallyadditions/models/item/leaf_blower.json
|
||||
040d94359f68325e207c6635117a777a3b612c7e assets/actuallyadditions/models/item/leaf_blo_pattern.json
|
||||
4a349378c423823c42c3075e145ca6e5b31631ad assets/actuallyadditions/models/item/leaf_generator.json
|
||||
c86d9a24e157d61bd56b0c4dd847e93c21f9406a assets/actuallyadditions/models/item/lens.json
|
||||
e3504dd0c16703f516932406b6ac26fdac7f30b1 assets/actuallyadditions/models/item/lens_of_certain_death.json
|
||||
2e4e43cce27b360d81a776811bb9b194a195a98d assets/actuallyadditions/models/item/lens_of_color.json
|
||||
ac8af809a857f6b099b1141a4b3f302f24a41c87 assets/actuallyadditions/models/item/lens_of_detonation.json
|
||||
a263a311f5111b5c5a115db9a44883d4c966c7ac assets/actuallyadditions/models/item/lens_of_disenchanting.json
|
||||
fb524bde62c59b985c38549240bd30a4cd58101d assets/actuallyadditions/models/item/lens_of_the_killer.json
|
||||
195a38d18111b07d2b2eec3bde56a12cf7bb31d7 assets/actuallyadditions/models/item/lens_of_the_miner.json
|
||||
2052ba8678a2cb0784b0a87b77b8724e24fb2d03 assets/actuallyadditions/models/item/long_range_breaker.json
|
||||
36acda859585d2953c8c557c56fbcccd43196de6 assets/actuallyadditions/models/item/netherite_aiot.json
|
||||
1770c8bcbbdcdcb00b7b8dbb0345f824802a40fa assets/actuallyadditions/models/item/oil_generator.json
|
||||
8ad287a4487215e18834ceac21f0bc5bde71cff9 assets/actuallyadditions/models/item/palis_crystal.json
|
||||
1a4ec0f6ed3b9b741438be7d4388676c92d0d3c1 assets/actuallyadditions/models/item/palis_crystal_block.json
|
||||
df692efd0af52a6b3eef1332cb2e6b5469e47dbf assets/actuallyadditions/models/item/palis_crystal_cluster.json
|
||||
d5b8eb39b032ae228c12c6bcea09179e36788035 assets/actuallyadditions/models/item/palis_crystal_shard.json
|
||||
158760d91cbb130b57b457e673e4b936b337ffc1 assets/actuallyadditions/models/item/phantom_booster.json
|
||||
b393ea03ae008aca117e8f7aa5a2d69ef36b827b assets/actuallyadditions/models/item/phantom_breaker.json
|
||||
2e3aa5aed20b31941e10b8ae868153f25aeadde4 assets/actuallyadditions/models/item/phantom_connector.json
|
||||
3b84ebf4b2a84e972dabde604bb7e11222fccacf assets/actuallyadditions/models/item/phantom_energyface.json
|
||||
4e96f842b302c570d739c38610abcda5f2766cf9 assets/actuallyadditions/models/item/phantom_itemface.json
|
||||
57c38461980802bef0a353a335eb470d36afd803 assets/actuallyadditions/models/item/phantom_liquiface.json
|
||||
974194113a4b6bf1e101cc4a2b826cdc067204ef assets/actuallyadditions/models/item/phantom_placer.json
|
||||
3eb4d917b6a1ad3a5512b505853cb2bc361e9942 assets/actuallyadditions/models/item/phantom_redstoneface.json
|
||||
57dd3274f49361ca5954d8202453c12a250f1241 assets/actuallyadditions/models/item/phan_con_pattern.json
|
||||
bc0ddfda095c4b5ee092c5a3e4d0b6ba920c2d63 assets/actuallyadditions/models/item/placer.json
|
||||
39c58314ca0c6a71223dd2e52e91ec1371831a74 assets/actuallyadditions/models/item/player_interface.json
|
||||
6bd69a7b1644ed47ebc115b3e3168f78b47a5609 assets/actuallyadditions/models/item/player_probe.json
|
||||
2d75896d58ab8ff3f312beb28f069587839a54e7 assets/actuallyadditions/models/item/powered_furnace.json
|
||||
36424d918b51bb3ab16dfa2310c7dd15149cb545 assets/actuallyadditions/models/item/quadruple_battery.json
|
||||
491c3aae5c73fe127773af252a5c7b3ec7f80a74 assets/actuallyadditions/models/item/quintuple_battery.json
|
||||
ccc770adced6451c185235528211a9e88b613ab3 assets/actuallyadditions/models/item/ranged_collector.json
|
||||
59648134ac462b14d92448690be3a627a8cb30ae assets/actuallyadditions/models/item/refined_canola_oil_bucket.json
|
||||
df03ad8a142229fc6ca1b74c636d11348904d218 assets/actuallyadditions/models/item/restonia_crystal.json
|
||||
3bb9ebbc33d28dc27715dab6d8326ff20414a1c4 assets/actuallyadditions/models/item/restonia_crystal_block.json
|
||||
e87ad7ddf4132057650bd86861b9530fba03afed assets/actuallyadditions/models/item/restonia_crystal_cluster.json
|
||||
f6c0f1caa393cbc3f0da64e563fd8a69802e1bf3 assets/actuallyadditions/models/item/restonia_crystal_shard.json
|
||||
c081c23f7b55df0ccaf8207c86f4057e2a06fb35 assets/actuallyadditions/models/item/rice.json
|
||||
6cda14a5ec7b8cbd3e37391955f1884cfe4a4b3e assets/actuallyadditions/models/item/rice_dough.json
|
||||
591fbae514c7794337254eb9ad3d21ecb5136c4f assets/actuallyadditions/models/item/rice_seeds.json
|
||||
98a100f95da50c2b2160095671c191cf0387ca9c assets/actuallyadditions/models/item/rice_slimeball.json
|
||||
809eddf9a181b2e6c4c3099f8f81ed464267e5a4 assets/actuallyadditions/models/item/ring.json
|
||||
a74394b664fc2787f2635b1981c3c7b1abad0172 assets/actuallyadditions/models/item/ring_of_growth.json
|
||||
4e2da52440b5284413a50abe6b04b61154149c8d assets/actuallyadditions/models/item/ring_of_magnetizing.json
|
||||
9d4bfba1a6fdd2f24e84ad6d06db1550d0d5afaa assets/actuallyadditions/models/item/shock_suppressor.json
|
||||
6bf60c19c00abd795b6749220137d856c9cfdd4f assets/actuallyadditions/models/item/single_battery.json
|
||||
b4e1e094bca9bcaf35f617aa9a8be6e73ff60ebe assets/actuallyadditions/models/item/smooth_black_quartz_block.json
|
||||
0ef621fa8f28b2dfa677f4a3837c6ac82cb060b7 assets/actuallyadditions/models/item/smooth_black_quartz_slab.json
|
||||
a7ad3c2505d68d88cc72d440596ade6f9b1ca46b assets/actuallyadditions/models/item/smooth_black_quartz_stair.json
|
||||
f0f6f38089487a184603f8aebed7b6fe0e660ca0 assets/actuallyadditions/models/item/smooth_black_quartz_wall.json
|
||||
c1023d8b9b8bcfd41a95d24601096681d799e67a assets/actuallyadditions/models/item/snail.json
|
||||
14f2152c42b42f92769c9584a4d8baea7707e3b2 assets/actuallyadditions/models/item/solidified_experience.json
|
||||
f4f238229a72372ad2d6fd862a5f2b7789196f01 assets/actuallyadditions/models/item/stone_aiot.json
|
||||
0f91c0cf92a346bccd1142ac7b6ab37bee7822e5 assets/actuallyadditions/models/item/teleport_staff.json
|
||||
3a1975bc538af53751dfa8b736088e5f8c8f3277 assets/actuallyadditions/models/item/tiny_charcoal.json
|
||||
7e61347e2f6cb36aab1e0b92d84521f3a9281961 assets/actuallyadditions/models/item/tiny_coal.json
|
||||
cf9fefdbd60278e5c0eb3858789c1305037f517d assets/actuallyadditions/models/item/tiny_torch.json
|
||||
37c33ee537ada74f1ba2bfe2b53ae42677be1dc9 assets/actuallyadditions/models/item/travelers_sack.json
|
||||
3ac4b97ae2690d645087d6872d39d7f35070b947 assets/actuallyadditions/models/item/triple_battery.json
|
||||
a2d656d1974443483eb69de4d8a738a6d02ea32a assets/actuallyadditions/models/item/vertical_digger.json
|
||||
f32b1a5228624c0fdbbd4a62a34d1aaa6d863ce6 assets/actuallyadditions/models/item/void_crystal.json
|
||||
424f9dc0fab6a071a8d96712293958d62223816f assets/actuallyadditions/models/item/void_crystal_block.json
|
||||
60ded841dd22dd153d6e71ee5bdb4ae2bc26ee28 assets/actuallyadditions/models/item/void_crystal_cluster.json
|
||||
5c8e67420170aa273e67e11d54ca599494d08c55 assets/actuallyadditions/models/item/void_crystal_shard.json
|
||||
033fee24fdc1f52b5257a3a72bf50cb5ab1d460e assets/actuallyadditions/models/item/void_sack.json
|
||||
a9c047be2422aa5854bbc5d98065b628153de4c6 assets/actuallyadditions/models/item/water_bowl.json
|
||||
fa67aa422701af36457ce6512e9975851298fc27 assets/actuallyadditions/models/item/wings_of_the_bats.json
|
||||
223779f0008613f103c90922a8c8fa3f0bb437b6 assets/actuallyadditions/models/item/wooden_aiot.json
|
||||
b1765120b498ca056ba4a3ffc2860f1362339ca8 assets/actuallyadditions/models/item/wood_casing.json
|
||||
b8f3729fc5d615c0e4d13180ee5952f8819f318f assets/actuallyadditions/models/item/worm.json
|
||||
6225be93ce8fd43d627f1bfdfea565f8ee986e4a assets/actuallyadditions/models/item/xp_solidifier.json
|
|
@ -1,2 +0,0 @@
|
|||
// 1.21.1 2024-08-11T19:30:01.8303185 Tags for minecraft:point_of_interest_type mod id actuallyadditions
|
||||
65352c4eaf105efa72687c568c2d5b5f5fd11996 data/minecraft/tags/point_of_interest_type/acquirable_job_site.json
|
|
@ -1,4 +0,0 @@
|
|||
// 1.21.1 2024-08-11T19:30:01.8133184 Global Loot Modifiers : actuallyadditions
|
||||
c314f845c2f475a0e11bbbeaf9ce082f283e84ed data/actuallyadditions/loot_modifiers/bat_loot.json
|
||||
f77519b3b0453bb66d43569f8c67e59de6e49a2f data/actuallyadditions/loot_modifiers/dungeon_loot.json
|
||||
24211d6853742ccd8fc0116f93710ef5ee759c29 data/neoforge/loot_modifiers/global_loot_modifiers.json
|
|
@ -1,50 +0,0 @@
|
|||
// 1.21.1 2024-08-11T19:30:01.8098204 Crushing Recipes
|
||||
eb36eaa39e54d916d852bb833968498fd7fc88f2 data/actuallyadditions/recipe/crushing/allium.json
|
||||
2a8f3130ca52a7f74ac4683fa51d72f590ed5729 data/actuallyadditions/recipe/crushing/azure_bluet.json
|
||||
77f3ae8ae4fa897c5a15e0478a26461cb345fb5b data/actuallyadditions/recipe/crushing/black_quartz_ore.json
|
||||
7e856d09cb416999b107e288b5680c8ea49fc473 data/actuallyadditions/recipe/crushing/blaze_rod.json
|
||||
a72cc97d32e7d671924297cbf7012abb20a0e59e data/actuallyadditions/recipe/crushing/blue_orchid.json
|
||||
27c48344690aff2aa059fdf0afcf549d8b592730 data/actuallyadditions/recipe/crushing/bone.json
|
||||
f326abad3e6ef6dc555065bdee7ed900c3e06973 data/actuallyadditions/recipe/crushing/coal_block.json
|
||||
8c4ed0fd0426b038cba1926022e994004594300c data/actuallyadditions/recipe/crushing/coal_ore.json
|
||||
6d8975d1253037f4ad93ab587c78a0d79e07548e data/actuallyadditions/recipe/crushing/cobblestone.json
|
||||
8c8b0d00041354aa6c48a44ea7fe6f266cddde7a data/actuallyadditions/recipe/crushing/copper_ore.json
|
||||
f1988d567118529f1323225ce31c8f1581cd2414 data/actuallyadditions/recipe/crushing/cornflower.json
|
||||
1c2d972fa4fed717dd17c873a51548a60b2eca1f data/actuallyadditions/recipe/crushing/danedlion.json
|
||||
4a3d8cb0fe3e6c1d27a9267ec93f8dc7901832b4 data/actuallyadditions/recipe/crushing/deepslate_coal_ore.json
|
||||
374d4030a26a942f46e81a1cfe121aa6af008afd data/actuallyadditions/recipe/crushing/deepslate_copper_ore.json
|
||||
9985f65981ecee3fd9a9444b7b54d69aa4b3f230 data/actuallyadditions/recipe/crushing/deepslate_diamond_ore.json
|
||||
9bc602bc32e56b9a41aab448a6bb759feb09b9ce data/actuallyadditions/recipe/crushing/deepslate_emerald_ore.json
|
||||
33986de9761b8ea500b46dbccbd8a9fbf5d76f96 data/actuallyadditions/recipe/crushing/deepslate_gold_ore.json
|
||||
97494fa6beb40071e7ea44434cd1020918d0ac76 data/actuallyadditions/recipe/crushing/deepslate_iron_ore.json
|
||||
e84e573e4516aca84e428c762b2ad9fe1850c729 data/actuallyadditions/recipe/crushing/deepslate_lapis_ore.json
|
||||
0152a807e3e56463decc76ae3bcfbe940e8e9dcb data/actuallyadditions/recipe/crushing/deepslate_redstone_ore.json
|
||||
10d5eb38c13ffe666be923e0c99cc0d70fdc4fd8 data/actuallyadditions/recipe/crushing/diamond_horse_armor.json
|
||||
b3ebd4c52839c9751d38f751fa177aef99ea9761 data/actuallyadditions/recipe/crushing/diamond_ore.json
|
||||
f50a0f5d84074a7e43763a73fafd910e374b1dc9 data/actuallyadditions/recipe/crushing/emerald_ore.json
|
||||
b5a6b44c21e2ab44431f097df8164e72a28df0fe data/actuallyadditions/recipe/crushing/glowstone.json
|
||||
f0a40fc67a0f9055f83077677f25c12fb1551745 data/actuallyadditions/recipe/crushing/golden_horse_armor.json
|
||||
84b5e42db1d5ddd202626369324561942510a79a data/actuallyadditions/recipe/crushing/gold_ore.json
|
||||
7acbb32ece8ca53f5a1605e1f453a213c5150469 data/actuallyadditions/recipe/crushing/gravel.json
|
||||
836142071fba2aae3d03bf492b42b1c537c6520b data/actuallyadditions/recipe/crushing/iron_horse_armor.json
|
||||
e89f20c6fa759c01d134defdf1f7d9f4a705ebfb data/actuallyadditions/recipe/crushing/iron_ore.json
|
||||
9b9797930d44a3c2a7ad7526e93de84e9cd34234 data/actuallyadditions/recipe/crushing/lapis_ore.json
|
||||
299cb845b1bc6c2cec74ae830972ac8ec17d1422 data/actuallyadditions/recipe/crushing/lilac.json
|
||||
3e312c4073361ceb916b9696fb33bf61ed66d812 data/actuallyadditions/recipe/crushing/lily_of_the_valley.json
|
||||
737541d0088d09c80e2702408f77c795ae1889a9 data/actuallyadditions/recipe/crushing/nether_quartz_ore.json
|
||||
a7805e87958c155b6537833d11884524c68c3338 data/actuallyadditions/recipe/crushing/orange_tulip.json
|
||||
53fd6d685fa785671834b31652c49ac2c931e0e1 data/actuallyadditions/recipe/crushing/oxeye_daisy.json
|
||||
fa1a504c3581048d28650e70d8b272eab6702732 data/actuallyadditions/recipe/crushing/peony.json
|
||||
2edc78b969690c6008cfda5a62514ec45b8af8e0 data/actuallyadditions/recipe/crushing/pink_petals.json
|
||||
fdf99a76c0600869d719637158ea3117b52bd101 data/actuallyadditions/recipe/crushing/pink_tulip.json
|
||||
ca32ff741e06713c8e1a026844b0343eebade484 data/actuallyadditions/recipe/crushing/pitcher_plant.json
|
||||
3bed2561861511ed79587974dd4d3f5e0be20165 data/actuallyadditions/recipe/crushing/poppy.json
|
||||
5945eb90ba563d249b3d9b228c99498aff1ef9e9 data/actuallyadditions/recipe/crushing/prismarine_shard.json
|
||||
d299b7ce8c834342abeae99773fe550dedd34d64 data/actuallyadditions/recipe/crushing/redstone_ore.json
|
||||
6242ba047786bf2d1f5c2979d3f73c9404294eff data/actuallyadditions/recipe/crushing/red_tulip.json
|
||||
04de58fd80cc60eee3824de927b02e6977619a82 data/actuallyadditions/recipe/crushing/rice.json
|
||||
122d80cdcd9c20549155e695c93dd4a58fbf7123 data/actuallyadditions/recipe/crushing/rose_bush.json
|
||||
664ae6279620264b061ea55030be8053801d2d7f data/actuallyadditions/recipe/crushing/sugar_cane.json
|
||||
e72c69b44004cfc2a0383f3cc004f61f8ef5cb0d data/actuallyadditions/recipe/crushing/sunflower.json
|
||||
2f2d6178287c4d2df23ffbbf684440c21f64b438 data/actuallyadditions/recipe/crushing/white_tulip.json
|
||||
47524f6684553dbc98a8a34ad178bdc7af80b948 data/actuallyadditions/recipe/crushing/wither_rose.json
|
|
@ -1,8 +0,0 @@
|
|||
// 1.21.1 2024-10-17T00:54:11.5444321 Patchouli Book Provider
|
||||
25f9d206f1f0397918f65634d57f658516f3c952 assets/actuallyadditions/patchouli_books/booklet/en_us/categories/getting_started.json
|
||||
7023c70c30600d465a96b315b2b7954eedad337d assets/actuallyadditions/patchouli_books/booklet/en_us/entries/crystals.json
|
||||
cb103625b78fcc79697bdc00459a21cacf0c940a assets/actuallyadditions/patchouli_books/booklet/en_us/entries/engineer_house.json
|
||||
88df6be8c958d5e89673e9eefcf73315d50bda9f assets/actuallyadditions/patchouli_books/booklet/en_us/entries/guide.json
|
||||
2709d2e5c13efa327c5ee6c18fe10e377d49abe3 assets/actuallyadditions/patchouli_books/booklet/en_us/entries/intro.json
|
||||
78d1f1a0d393feaf903c84d11ac2749d17779217 assets/actuallyadditions/patchouli_books/booklet/en_us/entries/tutorial.json
|
||||
10146f4dd5bab35ef00a724fab1f3762e5f7c2b9 data/actuallyadditions/patchouli_books/booklet/book.json
|
|
@ -1,10 +0,0 @@
|
|||
// 1.21.1 2024-10-23T15:53:59.2712517 Coffee Ingredient Recipes
|
||||
c27e4fb15f6385f5e539ae481204836fb61b315b data/actuallyadditions/recipe/coffee_ingredient/blaze_powder.json
|
||||
58f717b91bb3bb0dd5cff8ebeb436062d45a2d0c data/actuallyadditions/recipe/coffee_ingredient/fermented_spider_eye.json
|
||||
4a528b8d95a7df8789f61d34f7253b71c164543b data/actuallyadditions/recipe/coffee_ingredient/ghast_tear.json
|
||||
5b423115202fec7a2d68ac37cba54bfa61a94985 data/actuallyadditions/recipe/coffee_ingredient/golden_carrot.json
|
||||
d30f3419c9c3bd2fc23bc0283c45c7c0106a7d3c data/actuallyadditions/recipe/coffee_ingredient/magma_cream.json
|
||||
bcc38e8cce44fabc32911122306a631602618b84 data/actuallyadditions/recipe/coffee_ingredient/milk_bucket.json
|
||||
f8400141dd335ec5c9eec0015e622a33af249621 data/actuallyadditions/recipe/coffee_ingredient/milk_tagged.json
|
||||
ac8015c1d6abdc0afc07332002dd56c6aee20172 data/actuallyadditions/recipe/coffee_ingredient/pufferfish.json
|
||||
7f1611c9771254b5bd1d9451c942216a605b7dc5 data/actuallyadditions/recipe/coffee_ingredient/sugar.json
|
|
@ -1,19 +0,0 @@
|
|||
// 1.21.1 2024-08-11T19:30:01.831819 Advancements
|
||||
38ed2ffaf66e7dba9aa6bbf9b5616a9a6c6663b1 data/actuallyadditions/advancement/craft_coal_generator.json
|
||||
3bd31828f063ca1d2f8fdbf5d7a0ce5cb3a1653f data/actuallyadditions/advancement/craft_coffee_machine.json
|
||||
fa837af962ed9333b4b2bc862c4b8ff59d773884 data/actuallyadditions/advancement/craft_crusher.json
|
||||
c06a5f048d2c11edb0ff0ce331f0ca1d4b0d5368 data/actuallyadditions/advancement/craft_double_crusher.json
|
||||
346f6a35e1aea1f01fa90aa9225a2ca8cef0799b data/actuallyadditions/advancement/craft_empowerer.json
|
||||
c39435512eba0b2de8d5c7409b51f03323b5816c data/actuallyadditions/advancement/craft_energyface.json
|
||||
71ac75b93f2ccbc3176eb7e9cb61ea276d3d4b74 data/actuallyadditions/advancement/craft_item_interface.json
|
||||
17d5b2484aac2e0ddfef170d57a08038a5f202dc data/actuallyadditions/advancement/craft_laser_relay.json
|
||||
baf2a7e773287fcb9f0a15c356dd5ba1b87c16b3 data/actuallyadditions/advancement/craft_laser_relay_advanced.json
|
||||
d00bef8c1e7268e01d0c2ccbe93562a655c92b5f data/actuallyadditions/advancement/craft_laser_relay_extreme.json
|
||||
f7e8af96ccfc02de824f36168713b0d449736656 data/actuallyadditions/advancement/craft_laser_relay_item.json
|
||||
ee861ba9d9c29f30aa1b1f99013d1c1b27c863a2 data/actuallyadditions/advancement/craft_leaf_generator.json
|
||||
d9cbca02d6be6afe3702e6c6606d6a9fc301148f data/actuallyadditions/advancement/craft_liquiface.json
|
||||
e36f49ceb7af5cfc819958d755ec502e73bc6433 data/actuallyadditions/advancement/craft_phantom_face.json
|
||||
f7f23d0f8a86959033e3d5a73b0e00faf6d592b8 data/actuallyadditions/advancement/craft_reconstructor.json
|
||||
d3e209ca499d0a54933d2250b0a72d814fdaa560 data/actuallyadditions/advancement/make_first_crystal.json
|
||||
6534b70d6a45b815c78df3b1e79a9c409dc0a44f data/actuallyadditions/advancement/pickup_coffee.json
|
||||
f907ddf26e1f21c1fb0c9120dbb444e418feaeb2 data/actuallyadditions/advancement/root.json
|
|
@ -1,21 +0,0 @@
|
|||
// 1.21.1 2024-08-11T19:30:01.8128194 Mining Lens Recipes
|
||||
76b4696fe505efc1325dd19471ca99b3eb2a77e7 data/actuallyadditions/recipe/mininglens/deepslate_deepslate_coal_ore.json
|
||||
9169fbe968ece83ac7ed122572bca5e5b263aeb3 data/actuallyadditions/recipe/mininglens/deepslate_deepslate_copper_ore.json
|
||||
8b5e29cb33c8ec3c384889de6a24504d5929e968 data/actuallyadditions/recipe/mininglens/deepslate_deepslate_diamond_ore.json
|
||||
9a8aa89ee87138e35339c3a2edbee972710cc45d data/actuallyadditions/recipe/mininglens/deepslate_deepslate_emerald_ore.json
|
||||
e2a2cd41a3943b1d1be6d22ba85b66432209edf1 data/actuallyadditions/recipe/mininglens/deepslate_deepslate_gold_ore.json
|
||||
e28b7bda72d8b915819bbe596a8cbd0ad49e2894 data/actuallyadditions/recipe/mininglens/deepslate_deepslate_iron_ore.json
|
||||
9d718933743435a906b85a8b5cc939844b689982 data/actuallyadditions/recipe/mininglens/deepslate_deepslate_lapis_ore.json
|
||||
18e638979991a636aff441721b64ca3817c31a9a data/actuallyadditions/recipe/mininglens/deepslate_deepslate_redstone_ore.json
|
||||
ba880580d5a4c052f2f87b53a70b3879f89e564c data/actuallyadditions/recipe/mininglens/nether_ancient_debris.json
|
||||
191e3aaa6d7f90e0cf38296163c45f06c00d482d data/actuallyadditions/recipe/mininglens/nether_nether_gold_ore.json
|
||||
155d0827c6cfc7bedbbb336e7e098ef8c89e61ba data/actuallyadditions/recipe/mininglens/nether_nether_quartz_ore.json
|
||||
589741018e31cf4cd944272666cbf97915379569 data/actuallyadditions/recipe/mininglens/stone_black_quartz_ore.json
|
||||
c5782acaa85a20c0fbfd648303a740daf0960ac5 data/actuallyadditions/recipe/mininglens/stone_coal_ore.json
|
||||
02a74a5c1ebe330bc1e11f7353409d1d020955f1 data/actuallyadditions/recipe/mininglens/stone_copper_ore.json
|
||||
81b73207b5c1c56237c303f562948a82ed96c237 data/actuallyadditions/recipe/mininglens/stone_diamond_ore.json
|
||||
8a25b78945df526ac661d898d9e9cf37e9c0aa03 data/actuallyadditions/recipe/mininglens/stone_emerald_ore.json
|
||||
6a1c7b15b59e81004d89f00fce73b327bbd22f0f data/actuallyadditions/recipe/mininglens/stone_gold_ore.json
|
||||
4d180516ebb88c2ff859c2287fe3fb838dfeff98 data/actuallyadditions/recipe/mininglens/stone_iron_ore.json
|
||||
556a12d70e0279d2d7b5eddb812f1b0527082681 data/actuallyadditions/recipe/mininglens/stone_lapis_ore.json
|
||||
be02249a9b09eeb006e1eb9679221f4c96df3ade data/actuallyadditions/recipe/mininglens/stone_redstone_ore.json
|
|
@ -1,30 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=down": {
|
||||
"model": "actuallyadditions:block/atomic_reconstructor",
|
||||
"x": 180
|
||||
},
|
||||
"facing=east": {
|
||||
"model": "actuallyadditions:block/atomic_reconstructor",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "actuallyadditions:block/atomic_reconstructor",
|
||||
"x": 90
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "actuallyadditions:block/atomic_reconstructor",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=up": {
|
||||
"model": "actuallyadditions:block/atomic_reconstructor"
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "actuallyadditions:block/atomic_reconstructor",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "actuallyadditions:block/battery_box"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,19 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east": {
|
||||
"model": "actuallyadditions:block/bio_reactor",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "actuallyadditions:block/bio_reactor"
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "actuallyadditions:block/bio_reactor",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "actuallyadditions:block/bio_reactor",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "actuallyadditions:block/black_quartz_block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,13 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"type=bottom": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_slab"
|
||||
},
|
||||
"type=double": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_block"
|
||||
},
|
||||
"type=top": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_slab_top"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,209 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_stair",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,90 +0,0 @@
|
|||
{
|
||||
"multipart": [
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_wall_post"
|
||||
},
|
||||
"when": {
|
||||
"up": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_wall_side",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_wall_side_tall",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/black_quartz_brick_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "tall"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "actuallyadditions:block/black_quartz_ore"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,13 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"type=bottom": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_slab"
|
||||
},
|
||||
"type=double": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_block"
|
||||
},
|
||||
"type=top": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_slab_top"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,209 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_stair",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,90 +0,0 @@
|
|||
{
|
||||
"multipart": [
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_wall_post"
|
||||
},
|
||||
"when": {
|
||||
"up": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_wall_side",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_wall_side_tall",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/black_quartz_pillar_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "tall"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,13 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"type=bottom": {
|
||||
"model": "actuallyadditions:block/black_quartz_slab"
|
||||
},
|
||||
"type=double": {
|
||||
"model": "actuallyadditions:block/black_quartz_block"
|
||||
},
|
||||
"type=top": {
|
||||
"model": "actuallyadditions:block/black_quartz_slab_top"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,209 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "actuallyadditions:block/black_quartz_stair",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,90 +0,0 @@
|
|||
{
|
||||
"multipart": [
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/black_quartz_wall_post"
|
||||
},
|
||||
"when": {
|
||||
"up": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/black_quartz_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/black_quartz_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/black_quartz_wall_side",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/black_quartz_wall_side_tall",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/black_quartz_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/black_quartz_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/black_quartz_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/black_quartz_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "tall"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,30 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=down": {
|
||||
"model": "actuallyadditions:block/breaker",
|
||||
"x": 180
|
||||
},
|
||||
"facing=east": {
|
||||
"model": "actuallyadditions:block/breaker",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "actuallyadditions:block/breaker",
|
||||
"x": 90
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "actuallyadditions:block/breaker",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=up": {
|
||||
"model": "actuallyadditions:block/breaker"
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "actuallyadditions:block/breaker",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,28 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"age=0": {
|
||||
"model": "actuallyadditions:block/canola_1"
|
||||
},
|
||||
"age=1": {
|
||||
"model": "actuallyadditions:block/canola_2"
|
||||
},
|
||||
"age=2": {
|
||||
"model": "actuallyadditions:block/canola_2"
|
||||
},
|
||||
"age=3": {
|
||||
"model": "actuallyadditions:block/canola_2"
|
||||
},
|
||||
"age=4": {
|
||||
"model": "actuallyadditions:block/canola_3"
|
||||
},
|
||||
"age=5": {
|
||||
"model": "actuallyadditions:block/canola_3"
|
||||
},
|
||||
"age=6": {
|
||||
"model": "actuallyadditions:block/canola_3"
|
||||
},
|
||||
"age=7": {
|
||||
"model": "actuallyadditions:block/canola_4"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "actuallyadditions:block/canola_press"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,13 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"type=bottom": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_slab"
|
||||
},
|
||||
"type=double": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_block"
|
||||
},
|
||||
"type=top": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_slab_top"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,209 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_stair",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,90 +0,0 @@
|
|||
{
|
||||
"multipart": [
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_wall_post"
|
||||
},
|
||||
"when": {
|
||||
"up": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_wall_side",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_wall_side_tall",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/chiseled_black_quartz_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "tall"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,19 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east": {
|
||||
"model": "actuallyadditions:block/coal_generator",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "actuallyadditions:block/coal_generator"
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "actuallyadditions:block/coal_generator",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "actuallyadditions:block/coal_generator",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,28 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"age=0": {
|
||||
"model": "actuallyadditions:block/coffee_1"
|
||||
},
|
||||
"age=1": {
|
||||
"model": "actuallyadditions:block/coffee_2"
|
||||
},
|
||||
"age=2": {
|
||||
"model": "actuallyadditions:block/coffee_2"
|
||||
},
|
||||
"age=3": {
|
||||
"model": "actuallyadditions:block/coffee_2"
|
||||
},
|
||||
"age=4": {
|
||||
"model": "actuallyadditions:block/coffee_3"
|
||||
},
|
||||
"age=5": {
|
||||
"model": "actuallyadditions:block/coffee_3"
|
||||
},
|
||||
"age=6": {
|
||||
"model": "actuallyadditions:block/coffee_3"
|
||||
},
|
||||
"age=7": {
|
||||
"model": "actuallyadditions:block/coffee_4"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,19 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east": {
|
||||
"model": "actuallyadditions:block/coffee_machine",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "actuallyadditions:block/coffee_machine"
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "actuallyadditions:block/coffee_machine",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "actuallyadditions:block/coffee_machine",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,34 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,lit=false": {
|
||||
"model": "actuallyadditions:block/crusher",
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,lit=true": {
|
||||
"model": "actuallyadditions:block/crusher",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north,lit=false": {
|
||||
"model": "actuallyadditions:block/crusher"
|
||||
},
|
||||
"facing=north,lit=true": {
|
||||
"model": "actuallyadditions:block/crusher"
|
||||
},
|
||||
"facing=south,lit=false": {
|
||||
"model": "actuallyadditions:block/crusher",
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,lit=true": {
|
||||
"model": "actuallyadditions:block/crusher",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,lit=false": {
|
||||
"model": "actuallyadditions:block/crusher",
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,lit=true": {
|
||||
"model": "actuallyadditions:block/crusher",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,34 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,lit=false": {
|
||||
"model": "actuallyadditions:block/crusher_double",
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,lit=true": {
|
||||
"model": "actuallyadditions:block/crusher_double",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north,lit=false": {
|
||||
"model": "actuallyadditions:block/crusher_double"
|
||||
},
|
||||
"facing=north,lit=true": {
|
||||
"model": "actuallyadditions:block/crusher_double"
|
||||
},
|
||||
"facing=south,lit=false": {
|
||||
"model": "actuallyadditions:block/crusher_double",
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,lit=true": {
|
||||
"model": "actuallyadditions:block/crusher_double",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,lit=false": {
|
||||
"model": "actuallyadditions:block/crusher_double",
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,lit=true": {
|
||||
"model": "actuallyadditions:block/crusher_double",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "actuallyadditions:block/diamatine_crystal_block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "actuallyadditions:block/diamatine_crystal_cluster"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "actuallyadditions:block/display_stand"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,30 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=down": {
|
||||
"model": "actuallyadditions:block/dropper",
|
||||
"x": 180
|
||||
},
|
||||
"facing=east": {
|
||||
"model": "actuallyadditions:block/dropper",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "actuallyadditions:block/dropper",
|
||||
"x": 90
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "actuallyadditions:block/dropper",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=up": {
|
||||
"model": "actuallyadditions:block/dropper"
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "actuallyadditions:block/dropper",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "actuallyadditions:block/emeradic_crystal_block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "actuallyadditions:block/emeradic_crystal_cluster"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "actuallyadditions:block/empowered_diamatine_crystal_block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "actuallyadditions:block/empowered_emeradic_crystal_block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "actuallyadditions:block/empowered_enori_crystal_block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "actuallyadditions:block/empowered_palis_crystal_block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "actuallyadditions:block/empowered_restonia_crystal_block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "actuallyadditions:block/empowered_void_crystal_block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "actuallyadditions:block/empowerer"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "actuallyadditions:block/ender_casing"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "actuallyadditions:block/energizer"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "actuallyadditions:block/enervator"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "actuallyadditions:block/enori_crystal_block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "actuallyadditions:block/enori_crystal_cluster"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "actuallyadditions:block/ethetic_green_block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,13 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"type=bottom": {
|
||||
"model": "actuallyadditions:block/ethetic_green_slab"
|
||||
},
|
||||
"type=double": {
|
||||
"model": "actuallyadditions:block/ethetic_green_block"
|
||||
},
|
||||
"type=top": {
|
||||
"model": "actuallyadditions:block/ethetic_green_slab_top"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,209 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "actuallyadditions:block/ethetic_green_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,90 +0,0 @@
|
|||
{
|
||||
"multipart": [
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/ethetic_green_wall_post"
|
||||
},
|
||||
"when": {
|
||||
"up": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/ethetic_green_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/ethetic_green_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/ethetic_green_wall_side",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/ethetic_green_wall_side_tall",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/ethetic_green_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/ethetic_green_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/ethetic_green_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/ethetic_green_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "tall"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "actuallyadditions:block/ethetic_white_block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,13 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"type=bottom": {
|
||||
"model": "actuallyadditions:block/ethetic_white_slab"
|
||||
},
|
||||
"type=double": {
|
||||
"model": "actuallyadditions:block/ethetic_white_block"
|
||||
},
|
||||
"type=top": {
|
||||
"model": "actuallyadditions:block/ethetic_white_slab_top"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,209 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "actuallyadditions:block/ethetic_white_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,90 +0,0 @@
|
|||
{
|
||||
"multipart": [
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/ethetic_white_wall_post"
|
||||
},
|
||||
"when": {
|
||||
"up": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/ethetic_white_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/ethetic_white_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/ethetic_white_wall_side",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/ethetic_white_wall_side_tall",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/ethetic_white_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/ethetic_white_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/ethetic_white_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "actuallyadditions:block/ethetic_white_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "tall"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,19 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east": {
|
||||
"model": "actuallyadditions:block/farmer",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "actuallyadditions:block/farmer"
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "actuallyadditions:block/farmer",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "actuallyadditions:block/farmer",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "actuallyadditions:block/feeder"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "actuallyadditions:block/fermenting_barrel"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "actuallyadditions:block/firework_box"
|
||||
}
|
||||
}
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue