Delete build directory
This commit is contained in:
@@ -1,79 +0,0 @@
|
||||
# This is an example mods.toml file. It contains the data relating to the loading mods.
|
||||
# There are several mandatory fields (#mandatory), and many more that are optional (#optional).
|
||||
# The overall format is standard TOML format, v0.5.0.
|
||||
# Note that there are a couple of TOML lists in this file.
|
||||
# Find more information on toml format here: https://github.com/toml-lang/toml
|
||||
# The name of the mod loader type to load - for regular FML @Mod mods it should be javafml
|
||||
modLoader = "javafml" #mandatory
|
||||
# A version range to match for said mod loader - for regular FML @Mod it will be the the FML version. This is currently 47.
|
||||
loaderVersion = "[4,)" #mandatory
|
||||
# The license for you mod. This is mandatory metadata and allows for easier comprehension of your redistributive properties.
|
||||
# Review your options at https://choosealicense.com/. All rights reserved is the default copyright stance, and is thus the default here.
|
||||
license = "MIT"
|
||||
# A URL to refer people to when problems occur with this mod
|
||||
#issueTrackerURL="https://change.me.to.your.issue.tracker.example.invalid/" #optional
|
||||
# A list of mods - how many allowed here is determined by the individual mod loader
|
||||
[[mods]] #mandatory
|
||||
# The modid of the mod
|
||||
modId = "tfmg" #mandatory
|
||||
# The version number of the mod
|
||||
version = "1.0.1" #mandatory
|
||||
# A display name for the mod
|
||||
displayName = "Create: The Factory Must Grow" #mandatory
|
||||
# A URL to query for updates for this mod. See the JSON update specification https://docs.neoforge.net/docs/misc/updatechecker/
|
||||
#updateJSONURL="https://change.me.example.invalid/updates.json" #optional
|
||||
# A URL for the "homepage" for this mod, displayed in the mod UI
|
||||
#displayURL="https://change.me.to.your.mods.homepage.example.invalid/" #optional
|
||||
# A file name (in the root of the mod JAR) containing a logo for display
|
||||
#logoFile="tfmg.png" #optional
|
||||
# A text field displayed in the mod UI
|
||||
#credits="" #optional
|
||||
# A text field displayed in the mod UI
|
||||
authors = "DrMangoTea, Pepa, Luna" #optional
|
||||
|
||||
# The description text for the mod (multi line!) (#mandatory)
|
||||
description = '''Create: The Factory Must Grow brings the age of steel, oil and electricity to the Create mod'''
|
||||
|
||||
# The [[mixins]] block allows you to declare your mixin config to FML so that it gets loaded.
|
||||
[[mixins]]
|
||||
config = "tfmg.mixins.json"
|
||||
|
||||
# The [[accessTransformers]] block allows you to declare where your AT file is.
|
||||
# If this block is omitted, a fallback attempt will be made to load an AT from META-INF/accesstransformer.cfg
|
||||
#[[accessTransformers]]
|
||||
#file="META-INF/accesstransformer.cfg"
|
||||
|
||||
# The coremods config file path is not configurable and is always loaded from META-INF/coremods.json
|
||||
|
||||
# A dependency - use the . to indicate dependency for a specific modid. Dependencies are optional.
|
||||
[[dependencies."tfmg"]] #optional
|
||||
# the modid of the dependency
|
||||
modId = "neoforge" #mandatory
|
||||
# The type of the dependency. Can be one of "required", "optional", "incompatible" or "discouraged" (case insensitive).
|
||||
# 'required' requires the mod to exist, 'optional' does not
|
||||
# 'incompatible' will prevent the game from loading when the mod exists, and 'discouraged' will show a warning
|
||||
type = "required" #mandatory
|
||||
# Optional field describing why the dependency is required or why it is incompatible
|
||||
# reason="..."
|
||||
# The version range of the dependency
|
||||
versionRange = "[21,)" #mandatory
|
||||
# An ordering relationship for the dependency.
|
||||
# BEFORE - This mod is loaded BEFORE the dependency
|
||||
# AFTER - This mod is loaded AFTER the dependency
|
||||
ordering = "NONE"
|
||||
# Side this dependency is applied on - BOTH, CLIENT, or SERVER
|
||||
side = "BOTH"
|
||||
# Here's another dependency
|
||||
[[dependencies."tfmg"]]
|
||||
modId = "minecraft"
|
||||
type = "required"
|
||||
# This version range declares a minimum of the current minecraft version up to but not including the next major version
|
||||
versionRange = "[1.21.1,1.22)"
|
||||
ordering = "NONE"
|
||||
side = "BOTH"
|
||||
|
||||
# Features are specific properties of the game environment, that you may want to declare you require. This example declares
|
||||
# that your mod requires GL version 3.2 or higher. Other features will be added. They are side aware so declaring this won't
|
||||
# stop your mod loading on the server for example.
|
||||
#[features."tfmg"]
|
||||
#openGLVersion="[3.2,)"
|
||||
Binary file not shown.
@@ -1,22 +0,0 @@
|
||||
-p
|
||||
C:\\Users\\adamn\\.gradle\\caches\\modules-2\\files-2.1\\net.neoforged\\JarJarFileSystems\\0.4.1\\78f59f89defcd032ed788b151ca6a0d40ace796a\\JarJarFileSystems-0.4.1.jar;C:\\Users\\adamn\\.gradle\\caches\\modules-2\\files-2.1\\cpw.mods\\bootstraplauncher\\2.0.2\\1a2d076cbc33b0520cbacd591224427b2a20047d\\bootstraplauncher-2.0.2.jar;C:\\Users\\adamn\\.gradle\\caches\\modules-2\\files-2.1\\cpw.mods\\securejarhandler\\3.0.8\\c0ef95cecd8699a0449053ac7d9c160748d902cd\\securejarhandler-3.0.8.jar;C:\\Users\\adamn\\.gradle\\caches\\modules-2\\files-2.1\\org.ow2.asm\\asm-commons\\9.7\\e86dda4696d3c185fcc95d8d311904e7ce38a53f\\asm-commons-9.7.jar;C:\\Users\\adamn\\.gradle\\caches\\modules-2\\files-2.1\\org.ow2.asm\\asm-util\\9.7\\c0655519f24d92af2202cb681cd7c1569df6ead6\\asm-util-9.7.jar;C:\\Users\\adamn\\.gradle\\caches\\modules-2\\files-2.1\\org.ow2.asm\\asm-analysis\\9.7\\e4a258b7eb96107106c0599f0061cfc1832fe07a\\asm-analysis-9.7.jar;C:\\Users\\adamn\\.gradle\\caches\\modules-2\\files-2.1\\org.ow2.asm\\asm-tree\\9.7\\e446a17b175bfb733b87c5c2560ccb4e57d69f1a\\asm-tree-9.7.jar;C:\\Users\\adamn\\.gradle\\caches\\modules-2\\files-2.1\\org.ow2.asm\\asm\\9.7\\73d7b3086e14beb604ced229c302feff6449723\\asm-9.7.jar
|
||||
--add-modules
|
||||
ALL-MODULE-PATH
|
||||
--add-opens
|
||||
java.base/java.util.jar=cpw.mods.securejarhandler
|
||||
--add-opens
|
||||
java.base/java.lang.invoke=cpw.mods.securejarhandler
|
||||
--add-exports
|
||||
java.base/sun.security.util=cpw.mods.securejarhandler
|
||||
--add-exports
|
||||
jdk.naming.dns/com.sun.jndi.dns=java.naming
|
||||
-Dlog4j2.configurationFile=C:\\Users\\adamn\\Documents\\minecraft\\mods\\TFMG\\Create-The_Factory_Must_Grow-1.21.1\\build\\moddev\\clientLog4j2.xml
|
||||
-Dneoforge.enableGameTest=true
|
||||
-DlegacyClassPath.file=C:\\Users\\adamn\\Documents\\minecraft\\mods\\TFMG\\Create-The_Factory_Must_Grow-1.21.1\\build\\moddev\\clientLegacyClasspath.txt
|
||||
-DignoreList=securejarhandler-3.0.8.jar,asm-9.7.jar,asm-commons-9.7.jar,asm-tree-9.7.jar,asm-util-9.7.jar,asm-analysis-9.7.jar,bootstraplauncher-2.0.2.jar,JarJarFileSystems-0.4.1.jar,mixinextras-neoforge-0.4.1.jar,client-extra,neoforge-
|
||||
-Dfml.gameLayerLibraries=
|
||||
-DmergeModules=jna-5.10.0.jar,jna-platform-5.10.0.jar
|
||||
-Djava.net.preferIPv6Addresses=system
|
||||
-Dfml.pluginLayerLibraries=
|
||||
-Dneoforge.enabledGameTestNamespaces=tfmg
|
||||
-Dforge.logging.markers=REGISTRIES
|
||||
@@ -1,20 +0,0 @@
|
||||
-p
|
||||
C:\\Users\\adamn\\.gradle\\caches\\modules-2\\files-2.1\\net.neoforged\\JarJarFileSystems\\0.4.1\\78f59f89defcd032ed788b151ca6a0d40ace796a\\JarJarFileSystems-0.4.1.jar;C:\\Users\\adamn\\.gradle\\caches\\modules-2\\files-2.1\\cpw.mods\\bootstraplauncher\\2.0.2\\1a2d076cbc33b0520cbacd591224427b2a20047d\\bootstraplauncher-2.0.2.jar;C:\\Users\\adamn\\.gradle\\caches\\modules-2\\files-2.1\\cpw.mods\\securejarhandler\\3.0.8\\c0ef95cecd8699a0449053ac7d9c160748d902cd\\securejarhandler-3.0.8.jar;C:\\Users\\adamn\\.gradle\\caches\\modules-2\\files-2.1\\org.ow2.asm\\asm-commons\\9.7\\e86dda4696d3c185fcc95d8d311904e7ce38a53f\\asm-commons-9.7.jar;C:\\Users\\adamn\\.gradle\\caches\\modules-2\\files-2.1\\org.ow2.asm\\asm-util\\9.7\\c0655519f24d92af2202cb681cd7c1569df6ead6\\asm-util-9.7.jar;C:\\Users\\adamn\\.gradle\\caches\\modules-2\\files-2.1\\org.ow2.asm\\asm-analysis\\9.7\\e4a258b7eb96107106c0599f0061cfc1832fe07a\\asm-analysis-9.7.jar;C:\\Users\\adamn\\.gradle\\caches\\modules-2\\files-2.1\\org.ow2.asm\\asm-tree\\9.7\\e446a17b175bfb733b87c5c2560ccb4e57d69f1a\\asm-tree-9.7.jar;C:\\Users\\adamn\\.gradle\\caches\\modules-2\\files-2.1\\org.ow2.asm\\asm\\9.7\\73d7b3086e14beb604ced229c302feff6449723\\asm-9.7.jar
|
||||
--add-modules
|
||||
ALL-MODULE-PATH
|
||||
--add-opens
|
||||
java.base/java.util.jar=cpw.mods.securejarhandler
|
||||
--add-opens
|
||||
java.base/java.lang.invoke=cpw.mods.securejarhandler
|
||||
--add-exports
|
||||
java.base/sun.security.util=cpw.mods.securejarhandler
|
||||
--add-exports
|
||||
jdk.naming.dns/com.sun.jndi.dns=java.naming
|
||||
-Dlog4j2.configurationFile=C:\\Users\\adamn\\Documents\\minecraft\\mods\\TFMG\\Create-The_Factory_Must_Grow-1.21.1\\build\\moddev\\dataLog4j2.xml
|
||||
-DlegacyClassPath.file=C:\\Users\\adamn\\Documents\\minecraft\\mods\\TFMG\\Create-The_Factory_Must_Grow-1.21.1\\build\\moddev\\dataLegacyClasspath.txt
|
||||
-DignoreList=securejarhandler-3.0.8.jar,asm-9.7.jar,asm-commons-9.7.jar,asm-tree-9.7.jar,asm-util-9.7.jar,asm-analysis-9.7.jar,bootstraplauncher-2.0.2.jar,JarJarFileSystems-0.4.1.jar,mixinextras-neoforge-0.4.1.jar,client-extra,neoforge-
|
||||
-Dfml.gameLayerLibraries=
|
||||
-DmergeModules=jna-5.10.0.jar,jna-platform-5.10.0.jar
|
||||
-Djava.net.preferIPv6Addresses=system
|
||||
-Dfml.pluginLayerLibraries=
|
||||
-Dforge.logging.markers=REGISTRIES
|
||||
@@ -1,78 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Configuration status="warn" shutdownHook="disable">
|
||||
<filters>
|
||||
<ThresholdFilter level="WARN" onMatch="ACCEPT" onMismatch="NEUTRAL"/>
|
||||
<MarkerFilter marker="NETWORK_PACKETS" onMatch="${sys:forge.logging.marker.networking:-DENY}" onMismatch="NEUTRAL"/>
|
||||
<MarkerFilter marker="CLASSLOADING" onMatch="${sys:forge.logging.marker.classloading:-DENY}" onMismatch="NEUTRAL"/>
|
||||
<MarkerFilter marker="LAUNCHPLUGIN" onMatch="${sys:forge.logging.marker.launchplugin:-DENY}" onMismatch="NEUTRAL"/>
|
||||
<MarkerFilter marker="CLASSDUMP" onMatch="${sys:forge.logging.marker.classdump:-DENY}" onMismatch="NEUTRAL"/>
|
||||
<MarkerFilter marker="AXFORM" onMatch="${sys:forge.logging.marker.axform:-DENY}" onMismatch="NEUTRAL"/>
|
||||
<MarkerFilter marker="EVENTBUS" onMatch="${sys:forge.logging.marker.eventbus:-DENY}" onMismatch="NEUTRAL"/>
|
||||
<MarkerFilter marker="DISTXFORM" onMatch="${sys:forge.logging.marker.distxform:-DENY}" onMismatch="NEUTRAL"/>
|
||||
<MarkerFilter marker="SCAN" onMatch="${sys:forge.logging.marker.scan:-DENY}" onMismatch="NEUTRAL"/>
|
||||
<MarkerFilter marker="REGISTRIES" onMatch="${sys:forge.logging.marker.registries:-DENY}" onMismatch="NEUTRAL"/>
|
||||
<MarkerFilter marker="REGISTRYDUMP" onMatch="${sys:forge.logging.marker.registrydump:-DENY}" onMismatch="NEUTRAL"/>
|
||||
<MarkerFilter marker="SPLASH" onMatch="${sys:forge.logging.marker.splash:-DENY}" onMismatch="NEUTRAL"/>
|
||||
<MarkerFilter marker="RESOURCE-CACHE" onMatch="${sys:forge.logging.marker.resource.cache:-DENY}" onMismatch="NEUTRAL"/>
|
||||
<MarkerFilter marker="FORGEMOD" onMatch="${sys:forge.logging.marker.forgemod:-NEUTRAL}" onMismatch="NEUTRAL"/>
|
||||
<MarkerFilter marker="LOADING" onMatch="${sys:forge.logging.marker.loading:-NEUTRAL}" onMismatch="NEUTRAL"/>
|
||||
<MarkerFilter marker="CORE" onMatch="${sys:forge.logging.marker.core:-NEUTRAL}" onMismatch="NEUTRAL"/>
|
||||
</filters>
|
||||
<Appenders>
|
||||
<Console name="Console">
|
||||
<PatternLayout>
|
||||
<LoggerNamePatternSelector defaultPattern="%highlightForge{[%d{HH:mm:ss}] [%t/%level] [%c{2.}/%markerSimpleName]: %minecraftFormatting{%msg{nolookup}}%n%tEx}">
|
||||
<!-- don't include the full logger name for Mojang's logs since they use full class names and it's very verbose -->
|
||||
<PatternMatch key="net.minecraft." pattern="%highlightForge{[%d{HH:mm:ss}] [%t/%level] [minecraft/%logger{1}]: %minecraftFormatting{%msg{nolookup}}%n%tEx}"/>
|
||||
<PatternMatch key="com.mojang." pattern="%highlightForge{[%d{HH:mm:ss}] [%t/%level] [mojang/%logger{1}]: %minecraftFormatting{%msg{nolookup}}%n%tEx}"/>
|
||||
</LoggerNamePatternSelector>
|
||||
</PatternLayout>
|
||||
</Console>
|
||||
<Queue name="ServerGuiConsole" ignoreExceptions="true">
|
||||
<PatternLayout>
|
||||
<LoggerNamePatternSelector defaultPattern="[%d{HH:mm:ss}] [%t/%level] [%c{2.}/%markerSimpleName]: %minecraftFormatting{%msg{nolookup}}{strip}%n">
|
||||
<!-- don't include the full logger name for Mojang's logs since they use full class names and it's very verbose -->
|
||||
<PatternMatch key="net.minecraft." pattern="[%d{HH:mm:ss}] [%t/%level] [minecraft/%logger{1}]: %minecraftFormatting{%msg{nolookup}}{strip}%n"/>
|
||||
<PatternMatch key="com.mojang." pattern="[%d{HH:mm:ss}] [%t/%level] [mojang/%logger{1}]: %minecraftFormatting{%msg{nolookup}}{strip}%n"/>
|
||||
</LoggerNamePatternSelector>
|
||||
</PatternLayout>
|
||||
</Queue>
|
||||
<RollingRandomAccessFile name="File" fileName="logs/latest.log" filePattern="logs/%d{yyyy-MM-dd}-%i.log.gz">
|
||||
<PatternLayout pattern="[%d{ddMMMyyyy HH:mm:ss.SSS}] [%t/%level] [%logger/%markerSimpleName]: %minecraftFormatting{%msg{nolookup}}{strip}%n%xEx"/>
|
||||
<Policies>
|
||||
<TimeBasedTriggeringPolicy/>
|
||||
<OnStartupTriggeringPolicy/>
|
||||
</Policies>
|
||||
<DefaultRolloverStrategy max="99" fileIndex="min"/>
|
||||
</RollingRandomAccessFile>
|
||||
<RollingRandomAccessFile name="DebugFile" fileName="logs/debug.log" filePattern="logs/debug-%i.log.gz">
|
||||
<PatternLayout pattern="[%d{ddMMMyyyy HH:mm:ss.SSS}] [%t/%level] [%logger/%markerSimpleName]: %minecraftFormatting{%msg{nolookup}}{strip}%n%xEx"/>
|
||||
<Policies>
|
||||
<OnStartupTriggeringPolicy/>
|
||||
<SizeBasedTriggeringPolicy size="200MB"/>
|
||||
</Policies>
|
||||
<DefaultRolloverStrategy max="5" fileIndex="min"/>
|
||||
</RollingRandomAccessFile>
|
||||
</Appenders>
|
||||
<Loggers>
|
||||
<!-- make sure mojang's logging is set to 'info' so that their LOGGER.isDebugEnabled() behavior isn't active -->
|
||||
<Logger level="${sys:forge.logging.mojang.level:-info}" name="com.mojang"/>
|
||||
<Logger level="${sys:forge.logging.mojang.level:-info}" name="net.minecraft"/>
|
||||
<Logger level="${sys:forge.logging.classtransformer.level:-info}" name="cpw.mods.modlauncher.ClassTransformer"/>
|
||||
|
||||
<!-- Netty reflects into JDK internals, and it's causing useless DEBUG-level error stacktraces. We just ignore them -->
|
||||
<Logger name="io.netty.util.internal.PlatformDependent0">
|
||||
<filters>
|
||||
<RegexFilter regex="^direct buffer constructor: unavailable$" onMatch="DENY" onMismatch="NEUTRAL" />
|
||||
<RegexFilter regex="^jdk\.internal\.misc\.Unsafe\.allocateUninitializedArray\(int\): unavailable$" onMatch="DENY" onMismatch="NEUTRAL" />
|
||||
</filters>
|
||||
</Logger>
|
||||
|
||||
<Root level="DEBUG">
|
||||
<AppenderRef ref="Console" />
|
||||
<AppenderRef ref="ServerGuiConsole" level="${sys:forge.logging.console.level:-info}"/>
|
||||
<AppenderRef ref="File" level="${sys:forge.logging.file.level:-info}"/>
|
||||
<AppenderRef ref="DebugFile" />
|
||||
</Root>
|
||||
</Loggers>
|
||||
</Configuration>
|
||||
@@ -1,23 +0,0 @@
|
||||
-p
|
||||
C:\\Users\\adamn\\.gradle\\caches\\modules-2\\files-2.1\\net.neoforged\\JarJarFileSystems\\0.4.1\\78f59f89defcd032ed788b151ca6a0d40ace796a\\JarJarFileSystems-0.4.1.jar;C:\\Users\\adamn\\.gradle\\caches\\modules-2\\files-2.1\\cpw.mods\\bootstraplauncher\\2.0.2\\1a2d076cbc33b0520cbacd591224427b2a20047d\\bootstraplauncher-2.0.2.jar;C:\\Users\\adamn\\.gradle\\caches\\modules-2\\files-2.1\\cpw.mods\\securejarhandler\\3.0.8\\c0ef95cecd8699a0449053ac7d9c160748d902cd\\securejarhandler-3.0.8.jar;C:\\Users\\adamn\\.gradle\\caches\\modules-2\\files-2.1\\org.ow2.asm\\asm-commons\\9.7\\e86dda4696d3c185fcc95d8d311904e7ce38a53f\\asm-commons-9.7.jar;C:\\Users\\adamn\\.gradle\\caches\\modules-2\\files-2.1\\org.ow2.asm\\asm-util\\9.7\\c0655519f24d92af2202cb681cd7c1569df6ead6\\asm-util-9.7.jar;C:\\Users\\adamn\\.gradle\\caches\\modules-2\\files-2.1\\org.ow2.asm\\asm-analysis\\9.7\\e4a258b7eb96107106c0599f0061cfc1832fe07a\\asm-analysis-9.7.jar;C:\\Users\\adamn\\.gradle\\caches\\modules-2\\files-2.1\\org.ow2.asm\\asm-tree\\9.7\\e446a17b175bfb733b87c5c2560ccb4e57d69f1a\\asm-tree-9.7.jar;C:\\Users\\adamn\\.gradle\\caches\\modules-2\\files-2.1\\org.ow2.asm\\asm\\9.7\\73d7b3086e14beb604ced229c302feff6449723\\asm-9.7.jar
|
||||
--add-modules
|
||||
ALL-MODULE-PATH
|
||||
--add-opens
|
||||
java.base/java.util.jar=cpw.mods.securejarhandler
|
||||
--add-opens
|
||||
java.base/java.lang.invoke=cpw.mods.securejarhandler
|
||||
--add-exports
|
||||
java.base/sun.security.util=cpw.mods.securejarhandler
|
||||
--add-exports
|
||||
jdk.naming.dns/com.sun.jndi.dns=java.naming
|
||||
-Dlog4j2.configurationFile=C:\\Users\\adamn\\Documents\\minecraft\\mods\\TFMG\\Create-The_Factory_Must_Grow-1.21.1\\build\\moddev\\gameTestServerLog4j2.xml
|
||||
-Dneoforge.enableGameTest=true
|
||||
-Dneoforge.gameTestServer=true
|
||||
-DlegacyClassPath.file=C:\\Users\\adamn\\Documents\\minecraft\\mods\\TFMG\\Create-The_Factory_Must_Grow-1.21.1\\build\\moddev\\gameTestServerLegacyClasspath.txt
|
||||
-DignoreList=securejarhandler-3.0.8.jar,asm-9.7.jar,asm-commons-9.7.jar,asm-tree-9.7.jar,asm-util-9.7.jar,asm-analysis-9.7.jar,bootstraplauncher-2.0.2.jar,JarJarFileSystems-0.4.1.jar,mixinextras-neoforge-0.4.1.jar,client-extra,neoforge-
|
||||
-Dfml.gameLayerLibraries=
|
||||
-DmergeModules=jna-5.10.0.jar,jna-platform-5.10.0.jar
|
||||
-Djava.net.preferIPv6Addresses=system
|
||||
-Dfml.pluginLayerLibraries=
|
||||
-Dneoforge.enabledGameTestNamespaces=tfmg
|
||||
-Dforge.logging.markers=REGISTRIES
|
||||
@@ -1,78 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Configuration status="warn" shutdownHook="disable">
|
||||
<filters>
|
||||
<ThresholdFilter level="WARN" onMatch="ACCEPT" onMismatch="NEUTRAL"/>
|
||||
<MarkerFilter marker="NETWORK_PACKETS" onMatch="${sys:forge.logging.marker.networking:-DENY}" onMismatch="NEUTRAL"/>
|
||||
<MarkerFilter marker="CLASSLOADING" onMatch="${sys:forge.logging.marker.classloading:-DENY}" onMismatch="NEUTRAL"/>
|
||||
<MarkerFilter marker="LAUNCHPLUGIN" onMatch="${sys:forge.logging.marker.launchplugin:-DENY}" onMismatch="NEUTRAL"/>
|
||||
<MarkerFilter marker="CLASSDUMP" onMatch="${sys:forge.logging.marker.classdump:-DENY}" onMismatch="NEUTRAL"/>
|
||||
<MarkerFilter marker="AXFORM" onMatch="${sys:forge.logging.marker.axform:-DENY}" onMismatch="NEUTRAL"/>
|
||||
<MarkerFilter marker="EVENTBUS" onMatch="${sys:forge.logging.marker.eventbus:-DENY}" onMismatch="NEUTRAL"/>
|
||||
<MarkerFilter marker="DISTXFORM" onMatch="${sys:forge.logging.marker.distxform:-DENY}" onMismatch="NEUTRAL"/>
|
||||
<MarkerFilter marker="SCAN" onMatch="${sys:forge.logging.marker.scan:-DENY}" onMismatch="NEUTRAL"/>
|
||||
<MarkerFilter marker="REGISTRIES" onMatch="${sys:forge.logging.marker.registries:-DENY}" onMismatch="NEUTRAL"/>
|
||||
<MarkerFilter marker="REGISTRYDUMP" onMatch="${sys:forge.logging.marker.registrydump:-DENY}" onMismatch="NEUTRAL"/>
|
||||
<MarkerFilter marker="SPLASH" onMatch="${sys:forge.logging.marker.splash:-DENY}" onMismatch="NEUTRAL"/>
|
||||
<MarkerFilter marker="RESOURCE-CACHE" onMatch="${sys:forge.logging.marker.resource.cache:-DENY}" onMismatch="NEUTRAL"/>
|
||||
<MarkerFilter marker="FORGEMOD" onMatch="${sys:forge.logging.marker.forgemod:-NEUTRAL}" onMismatch="NEUTRAL"/>
|
||||
<MarkerFilter marker="LOADING" onMatch="${sys:forge.logging.marker.loading:-NEUTRAL}" onMismatch="NEUTRAL"/>
|
||||
<MarkerFilter marker="CORE" onMatch="${sys:forge.logging.marker.core:-NEUTRAL}" onMismatch="NEUTRAL"/>
|
||||
</filters>
|
||||
<Appenders>
|
||||
<Console name="Console">
|
||||
<PatternLayout>
|
||||
<LoggerNamePatternSelector defaultPattern="%highlightForge{[%d{HH:mm:ss}] [%t/%level] [%c{2.}/%markerSimpleName]: %minecraftFormatting{%msg{nolookup}}%n%tEx}">
|
||||
<!-- don't include the full logger name for Mojang's logs since they use full class names and it's very verbose -->
|
||||
<PatternMatch key="net.minecraft." pattern="%highlightForge{[%d{HH:mm:ss}] [%t/%level] [minecraft/%logger{1}]: %minecraftFormatting{%msg{nolookup}}%n%tEx}"/>
|
||||
<PatternMatch key="com.mojang." pattern="%highlightForge{[%d{HH:mm:ss}] [%t/%level] [mojang/%logger{1}]: %minecraftFormatting{%msg{nolookup}}%n%tEx}"/>
|
||||
</LoggerNamePatternSelector>
|
||||
</PatternLayout>
|
||||
</Console>
|
||||
<Queue name="ServerGuiConsole" ignoreExceptions="true">
|
||||
<PatternLayout>
|
||||
<LoggerNamePatternSelector defaultPattern="[%d{HH:mm:ss}] [%t/%level] [%c{2.}/%markerSimpleName]: %minecraftFormatting{%msg{nolookup}}{strip}%n">
|
||||
<!-- don't include the full logger name for Mojang's logs since they use full class names and it's very verbose -->
|
||||
<PatternMatch key="net.minecraft." pattern="[%d{HH:mm:ss}] [%t/%level] [minecraft/%logger{1}]: %minecraftFormatting{%msg{nolookup}}{strip}%n"/>
|
||||
<PatternMatch key="com.mojang." pattern="[%d{HH:mm:ss}] [%t/%level] [mojang/%logger{1}]: %minecraftFormatting{%msg{nolookup}}{strip}%n"/>
|
||||
</LoggerNamePatternSelector>
|
||||
</PatternLayout>
|
||||
</Queue>
|
||||
<RollingRandomAccessFile name="File" fileName="logs/latest.log" filePattern="logs/%d{yyyy-MM-dd}-%i.log.gz">
|
||||
<PatternLayout pattern="[%d{ddMMMyyyy HH:mm:ss.SSS}] [%t/%level] [%logger/%markerSimpleName]: %minecraftFormatting{%msg{nolookup}}{strip}%n%xEx"/>
|
||||
<Policies>
|
||||
<TimeBasedTriggeringPolicy/>
|
||||
<OnStartupTriggeringPolicy/>
|
||||
</Policies>
|
||||
<DefaultRolloverStrategy max="99" fileIndex="min"/>
|
||||
</RollingRandomAccessFile>
|
||||
<RollingRandomAccessFile name="DebugFile" fileName="logs/debug.log" filePattern="logs/debug-%i.log.gz">
|
||||
<PatternLayout pattern="[%d{ddMMMyyyy HH:mm:ss.SSS}] [%t/%level] [%logger/%markerSimpleName]: %minecraftFormatting{%msg{nolookup}}{strip}%n%xEx"/>
|
||||
<Policies>
|
||||
<OnStartupTriggeringPolicy/>
|
||||
<SizeBasedTriggeringPolicy size="200MB"/>
|
||||
</Policies>
|
||||
<DefaultRolloverStrategy max="5" fileIndex="min"/>
|
||||
</RollingRandomAccessFile>
|
||||
</Appenders>
|
||||
<Loggers>
|
||||
<!-- make sure mojang's logging is set to 'info' so that their LOGGER.isDebugEnabled() behavior isn't active -->
|
||||
<Logger level="${sys:forge.logging.mojang.level:-info}" name="com.mojang"/>
|
||||
<Logger level="${sys:forge.logging.mojang.level:-info}" name="net.minecraft"/>
|
||||
<Logger level="${sys:forge.logging.classtransformer.level:-info}" name="cpw.mods.modlauncher.ClassTransformer"/>
|
||||
|
||||
<!-- Netty reflects into JDK internals, and it's causing useless DEBUG-level error stacktraces. We just ignore them -->
|
||||
<Logger name="io.netty.util.internal.PlatformDependent0">
|
||||
<filters>
|
||||
<RegexFilter regex="^direct buffer constructor: unavailable$" onMatch="DENY" onMismatch="NEUTRAL" />
|
||||
<RegexFilter regex="^jdk\.internal\.misc\.Unsafe\.allocateUninitializedArray\(int\): unavailable$" onMatch="DENY" onMismatch="NEUTRAL" />
|
||||
</filters>
|
||||
</Logger>
|
||||
|
||||
<Root level="DEBUG">
|
||||
<AppenderRef ref="Console" />
|
||||
<AppenderRef ref="ServerGuiConsole" level="${sys:forge.logging.console.level:-info}"/>
|
||||
<AppenderRef ref="File" level="${sys:forge.logging.file.level:-info}"/>
|
||||
<AppenderRef ref="DebugFile" />
|
||||
</Root>
|
||||
</Loggers>
|
||||
</Configuration>
|
||||
@@ -1,19 +0,0 @@
|
||||
# Main Class
|
||||
cpw.mods.bootstraplauncher.BootstrapLauncher
|
||||
|
||||
# NeoForge Run-Type Program Arguments
|
||||
--launchTarget
|
||||
forgeserveruserdev
|
||||
--gameDir
|
||||
.
|
||||
--fml.neoForgeVersion
|
||||
21.1.152
|
||||
--fml.fmlVersion
|
||||
4.0.38
|
||||
--fml.mcVersion
|
||||
1.21.1
|
||||
--fml.neoFormVersion
|
||||
20240808.144430
|
||||
|
||||
# User Supplied Program Arguments
|
||||
--nogui
|
||||
File diff suppressed because one or more lines are too long
@@ -1,515 +0,0 @@
|
||||
// 1.21.1 2025-06-30T15:04:10.6625255 TFMG'S Standard Recipes
|
||||
1ba4d033b7372e3e76f656e6d6f9eb1b8a2efe0a data/tfmg/advancement/recipes/misc/blasting/lead_ingot_blasting.json
|
||||
e83131f3f345326695a796d8dac58b0868861458 data/tfmg/advancement/recipes/misc/blasting/lead_ingot_from_crushed_blasting.json
|
||||
975643162ee77b2111d0bfebfb57da861544490a data/tfmg/advancement/recipes/misc/blasting/lithium_ingot_blasting.json
|
||||
341f3bf3c91447d6184207919fdd47885f34e41f data/tfmg/advancement/recipes/misc/blasting/nickel_ingot_blasting.json
|
||||
ae1d6b3f1f2569d0b18fad4d2c0af33cb349eca0 data/tfmg/advancement/recipes/misc/blasting/nickel_ingot_from_crushed_blasting.json
|
||||
10bd2bbd6d600c04da6c42992ffb0d846d9d3fb7 data/tfmg/advancement/recipes/misc/crafting/materials/accumulator.json
|
||||
6e055de56037e71377746a499ce3970fdc421d65 data/tfmg/advancement/recipes/misc/crafting/materials/accumulatorfrom_lithium.json
|
||||
6581c5c8a5ecbd4cf0099c151896cf7e1758eef6 data/tfmg/advancement/recipes/misc/crafting/materials/air_intake.json
|
||||
9ecf97839409e553a9d4062ed11785bdf0a4a500 data/tfmg/advancement/recipes/misc/crafting/materials/aluminum_axe.json
|
||||
66db94dc52ae41cec71a3a5e4e73b5f0ac28b06d data/tfmg/advancement/recipes/misc/crafting/materials/aluminum_block_from_compacting.json
|
||||
5fe96e63b033e5d2e949fa9d9366f3bc5680dd68 data/tfmg/advancement/recipes/misc/crafting/materials/aluminum_cable_hub.json
|
||||
819008864a677090daa4f945cc3094a401432656 data/tfmg/advancement/recipes/misc/crafting/materials/aluminum_cogwheel.json
|
||||
681e6d711fabdfa569d03b8655fd469c0078e1ae data/tfmg/advancement/recipes/misc/crafting/materials/aluminum_door.json
|
||||
a70723e2daaed99bb2f63b6d3d6b60b3c2abc3fe data/tfmg/advancement/recipes/misc/crafting/materials/aluminum_fluid_tank.json
|
||||
64222d3ce0beba6ab163f26846e8b24eead61a71 data/tfmg/advancement/recipes/misc/crafting/materials/aluminum_flywheel.json
|
||||
55f2186ff61067031e8ef9ffbec08e73cb496a6a data/tfmg/advancement/recipes/misc/crafting/materials/aluminum_frame.json
|
||||
15d10fa6dbdb2d7698f9e787d182eeb9417c571d data/tfmg/advancement/recipes/misc/crafting/materials/aluminum_hoe.json
|
||||
c5106fa02f73e852d1fa0cc7ab0de4ba51158b9a data/tfmg/advancement/recipes/misc/crafting/materials/aluminum_ingot_from_compacting.json
|
||||
0e87476a9f0c32d6725abd6a1b128217e0ee52f3 data/tfmg/advancement/recipes/misc/crafting/materials/aluminum_ingot_from_decompacting.json
|
||||
a7c4181e01134f321982a443410669884ccbd919 data/tfmg/advancement/recipes/misc/crafting/materials/aluminum_lamp.json
|
||||
192f2a0604bf014c9c38cbd7af837ad1e845da83 data/tfmg/advancement/recipes/misc/crafting/materials/aluminum_nugget_from_decompacting.json
|
||||
9c3ac62187020b7dbd5f8f1b0030007633c9ba07 data/tfmg/advancement/recipes/misc/crafting/materials/aluminum_pickaxe.json
|
||||
07f5c64345a0ce0894ae4b9dee87f463af067ab8 data/tfmg/advancement/recipes/misc/crafting/materials/aluminum_shovel.json
|
||||
9614368e6b4a3f833588bcf556508afca5014135 data/tfmg/advancement/recipes/misc/crafting/materials/aluminum_spool.json
|
||||
022368ea9eb516bfe32cb8cb6fdc14659ea226f7 data/tfmg/advancement/recipes/misc/crafting/materials/aluminum_sword.json
|
||||
20d65fd203a7172e3eb8119a3828fcb88200aab7 data/tfmg/advancement/recipes/misc/crafting/materials/aluminum_truss.json
|
||||
766b93e1a4fe05f100c1678cf3b01065c373c6a9 data/tfmg/advancement/recipes/misc/crafting/materials/black_concrete.json
|
||||
eed9387b9eb583355e575ddd72cbd5b1443cf36a data/tfmg/advancement/recipes/misc/crafting/materials/black_multimeter.json
|
||||
867e9a045a2117bfa453a2b7ed11ddad6868272d data/tfmg/advancement/recipes/misc/crafting/materials/black_rebar_concrete.json
|
||||
b0d05b322d49df8dcc35bc49ce69f841320995a0 data/tfmg/advancement/recipes/misc/crafting/materials/blast_furnace_hatch.json
|
||||
33a71456d2d779d14797427b837b7c278a952a8f data/tfmg/advancement/recipes/misc/crafting/materials/blast_furnace_output.json
|
||||
02d880b4edf4367681e54abea99df8d08f5d7b0d data/tfmg/advancement/recipes/misc/crafting/materials/blast_furnace_reinforcement.json
|
||||
282d0da4d486a1d1a95b7ff81fd2bb3d92ef1944 data/tfmg/advancement/recipes/misc/crafting/materials/blast_stove.json
|
||||
99b963c7eed6543f0f207c15dc45051c373dee91 data/tfmg/advancement/recipes/misc/crafting/materials/blue_concrete.json
|
||||
8514e65743850b4ea7a198fb8c293cc99cb3050b data/tfmg/advancement/recipes/misc/crafting/materials/blue_multimeter.json
|
||||
c69ff9dfca6f9e864621e36e0b71a2f36d8b0357 data/tfmg/advancement/recipes/misc/crafting/materials/blue_rebar_concrete.json
|
||||
b9a7cfce24712e56b393cd9fdcea49f2eddfa985 data/tfmg/advancement/recipes/misc/crafting/materials/brass_cable_hub.json
|
||||
23691b4e1ad2e2578a55bd0c774429fbb650953d data/tfmg/advancement/recipes/misc/crafting/materials/brass_frame.json
|
||||
2aac6c07c7c29f34f9b9a438b5813eee7efc8f6b data/tfmg/advancement/recipes/misc/crafting/materials/brass_truss.json
|
||||
fea4f2a75a40a71c322da022033a67a37264c276 data/tfmg/advancement/recipes/misc/crafting/materials/brick_smokestack.json
|
||||
c66fb2ea1cf956f53764aaaf5f28d70099b36b24 data/tfmg/advancement/recipes/misc/crafting/materials/brown_concrete.json
|
||||
6021c92d83a6e0c338d18cd41ab84f57609e7ac8 data/tfmg/advancement/recipes/misc/crafting/materials/brown_multimeter.json
|
||||
734de5893678b28aec289779ecdbee5981d40e35 data/tfmg/advancement/recipes/misc/crafting/materials/brown_rebar_concrete.json
|
||||
739a00cda189f72c1f4cd38898c0712bffb31f42 data/tfmg/advancement/recipes/misc/crafting/materials/cable_connector.json
|
||||
24914906f9d01e569ab83ccd37e7744674f8aece data/tfmg/advancement/recipes/misc/crafting/materials/cable_tube.json
|
||||
04e35e4b7457906935003e0a7651d3cd60005607 data/tfmg/advancement/recipes/misc/crafting/materials/casting_basin.json
|
||||
04febba3ad12a3ed6d802d76ed93f3200faedb3d data/tfmg/advancement/recipes/misc/crafting/materials/cast_iron_block_from_compacting.json
|
||||
05de7ce92c56492e36ccc00070782e4e42a72daf data/tfmg/advancement/recipes/misc/crafting/materials/cast_iron_chemical_vat.json
|
||||
4be640969f9200b0de32f20720d9fbdfcfab44f7 data/tfmg/advancement/recipes/misc/crafting/materials/cast_iron_fluid_tank.json
|
||||
30ba68537862b68b59af4deb23f4046566c388ea data/tfmg/advancement/recipes/misc/crafting/materials/cast_iron_flywheel.json
|
||||
718628af4fde3012865c3b9769940629fbd45bdb data/tfmg/advancement/recipes/misc/crafting/materials/cast_iron_frame.json
|
||||
fd3fd7562048ea5d7b4f5de3944e6f3fdbd01914 data/tfmg/advancement/recipes/misc/crafting/materials/cast_iron_ingot_from_compacting.json
|
||||
b0adfd6cf795d873f1bfc1732aca91fa02661f9f data/tfmg/advancement/recipes/misc/crafting/materials/cast_iron_ingot_from_decompacting.json
|
||||
c3eb6195e42a6b2b930bb267bae2abff334d7196 data/tfmg/advancement/recipes/misc/crafting/materials/cast_iron_nugget_from_decompacting.json
|
||||
5879584f09b67f4e83aa3cfe33a414699c5f52a2 data/tfmg/advancement/recipes/misc/crafting/materials/cast_iron_truss.json
|
||||
1751159e37c1d9cf3c392726d9ee2ccb25bd044a data/tfmg/advancement/recipes/misc/crafting/materials/centrifuge.json
|
||||
deb6ee513df35af15592b1f448b7b5da67c6d47b data/tfmg/advancement/recipes/misc/crafting/materials/cinderflour_block.json
|
||||
0e6ee66a203ad045ffd8064e677d23f16060ccfe data/tfmg/advancement/recipes/misc/crafting/materials/cinder_block.json
|
||||
6d3a1ea551b3388d226edc667eb445fffbf9eac3 data/tfmg/advancement/recipes/misc/crafting/materials/circular_light.json
|
||||
27bf3c9801770718566d07821818de76af3d0bf0 data/tfmg/advancement/recipes/misc/crafting/materials/coal_coke.json
|
||||
92e3306e1eb4c714f0e154aea29ed5f2958e21c6 data/tfmg/advancement/recipes/misc/crafting/materials/coal_coke_block.json
|
||||
0da79c216abc5da65281795395639f14474e8af8 data/tfmg/advancement/recipes/misc/crafting/materials/coke_oven.json
|
||||
8ac3434745d07283746318dcf04d8c706d87acd4 data/tfmg/advancement/recipes/misc/crafting/materials/concrete_hose.json
|
||||
41177c9f8e12c5352b4d8f6f4fc390b96bf305e2 data/tfmg/advancement/recipes/misc/crafting/materials/concrete_smokestack.json
|
||||
d80539f29b718d1c2ef51c44a08ce43b648219c3 data/tfmg/advancement/recipes/misc/crafting/materials/constantan_block_from_compacting.json
|
||||
8010276d114f6e4b5c810ae645ef5bcd75655bed data/tfmg/advancement/recipes/misc/crafting/materials/constantan_frame.json
|
||||
39058fbdea4a5675019f35938aaae7453e871bd5 data/tfmg/advancement/recipes/misc/crafting/materials/constantan_ingot_from_compacting.json
|
||||
8f7b51b57de3ba242462908c5297f651ff29be72 data/tfmg/advancement/recipes/misc/crafting/materials/constantan_ingot_from_decompacting.json
|
||||
bf2a101060dbfb52b3afd78fca24e1e496f71103 data/tfmg/advancement/recipes/misc/crafting/materials/constantan_nugget_from_decompacting.json
|
||||
9526d014d0b78485e0478643b40381c45910011d data/tfmg/advancement/recipes/misc/crafting/materials/constantan_spool.json
|
||||
0663d334a61948e61ee60229e65d21b75bddb7ac data/tfmg/advancement/recipes/misc/crafting/materials/constantan_truss.json
|
||||
4aa859d17c9d8a094189df700453e7347a5a516e data/tfmg/advancement/recipes/misc/crafting/materials/converter.json
|
||||
9f902c1897ab37214d3fc88a2bf37adc39438c8e data/tfmg/advancement/recipes/misc/crafting/materials/cooling_fluid_bottle.json
|
||||
637002d04dbabae9d9be444890ff801e79dfcd43 data/tfmg/advancement/recipes/misc/crafting/materials/copper_cable_hub.json
|
||||
e60311ef8f41384dc589fec4871ea4ae0fb70e0f data/tfmg/advancement/recipes/misc/crafting/materials/copper_frame.json
|
||||
dd71f52393218cf573043ff3a398d80463bad2d6 data/tfmg/advancement/recipes/misc/crafting/materials/copper_grenade.json
|
||||
ea1913c2461706ca54bc4354dea7962a70cb8afb data/tfmg/advancement/recipes/misc/crafting/materials/copper_spool.json
|
||||
aa160503040d4977b61ccb05f13098a24cc9df88 data/tfmg/advancement/recipes/misc/crafting/materials/copper_truss.json
|
||||
316dad2fc4a2aaba2a575109dd691fe093a2042f data/tfmg/advancement/recipes/misc/crafting/materials/copycat_cable_block.json
|
||||
e3fef1a13983c1a9b325a4c756957d7354929a9e data/tfmg/advancement/recipes/misc/crafting/materials/crankshaft.json
|
||||
fef9c0f151b60f49b774d4b51de4fa6240720e1c data/tfmg/advancement/recipes/misc/crafting/materials/cyan_concrete.json
|
||||
05b06795f2a5caa5c12ded0efe73ca77f79cbfa0 data/tfmg/advancement/recipes/misc/crafting/materials/cyan_multimeter.json
|
||||
f86f0b48bab60d04c8d78bf080480276f5489f06 data/tfmg/advancement/recipes/misc/crafting/materials/cyan_rebar_concrete.json
|
||||
9dfe2905cd7500a93af662f7b3c4092c5c187bad data/tfmg/advancement/recipes/misc/crafting/materials/diagonal_cable_block.json
|
||||
b206903e84dfa60d16a6538c5cf5471aad005fc7 data/tfmg/advancement/recipes/misc/crafting/materials/electrical_switch.json
|
||||
c6edec32f743f4237f82221ca5545f9f360ce9c0 data/tfmg/advancement/recipes/misc/crafting/materials/electricians_wrench.json
|
||||
87e2ceef418c504f75b207c7a67cc033ab4b48de data/tfmg/advancement/recipes/misc/crafting/materials/electric_diode.json
|
||||
c6299d55ad53f07fa881ce9d52d7431b8304dd33 data/tfmg/advancement/recipes/misc/crafting/materials/electric_post.json
|
||||
fec141af53a939b18f0c82adcae33dc6b8eb0d37 data/tfmg/advancement/recipes/misc/crafting/materials/electric_pump.json
|
||||
a4571766b188a07babf0f91b93b18aa15e29218f data/tfmg/advancement/recipes/misc/crafting/materials/electrode_holder.json
|
||||
0753a07d9908e21d4b036dbbdac366ece7658816 data/tfmg/advancement/recipes/misc/crafting/materials/empty_circuit_board.json
|
||||
1b25e33e402a7c2149742ba75d961dc920079835 data/tfmg/advancement/recipes/misc/crafting/materials/engine_gearbox.json
|
||||
c7cba29e6f7d2aa2b4fd2cdf34a71a17583d5450 data/tfmg/advancement/recipes/misc/crafting/materials/exhaust.json
|
||||
884395f8fc0702edfbc5f5a8dcd061d81a0d1f93 data/tfmg/advancement/recipes/misc/crafting/materials/firebox.json
|
||||
c65b18147b7b89fd505071f34a0d9f5bfff070ca data/tfmg/advancement/recipes/misc/crafting/materials/fireclay.json
|
||||
05e9bad955ee982ba3ae172aff5551bdc66f7594 data/tfmg/advancement/recipes/misc/crafting/materials/fireproof_bricks.json
|
||||
9e8c3b007ff62f37d5963a510837088e65a0b8e5 data/tfmg/advancement/recipes/misc/crafting/materials/fireproof_brick_reinforcement.json
|
||||
fbbe810e1208507b4d7e7f6ec51183ab8310605c data/tfmg/advancement/recipes/misc/crafting/materials/fireproof_chemical_vat.json
|
||||
c2a88b7d49ac16aaaabc5eb41ff44b81e448c2e7 data/tfmg/advancement/recipes/misc/crafting/materials/flarestack.json
|
||||
34f8c61a0662d74bc5f8868bcc252d1c5e8a3211 data/tfmg/advancement/recipes/misc/crafting/materials/glass_cable_insulator.json
|
||||
1c6d72c59241276ed97eb12028221af210a0837a data/tfmg/advancement/recipes/misc/crafting/materials/glass_insulator_segment.json
|
||||
621d720793c003cf0e66365bd33dbdafbac0e742 data/tfmg/advancement/recipes/misc/crafting/materials/gray_concrete.json
|
||||
afa4710298fcaa77660a93ce877c525474704e48 data/tfmg/advancement/recipes/misc/crafting/materials/gray_multimeter.json
|
||||
01b1951017fae118b0372e6100ca60d16a32459f data/tfmg/advancement/recipes/misc/crafting/materials/gray_rebar_concrete.json
|
||||
0c7ec9685284478c517f49b7d7ef08582b98837a data/tfmg/advancement/recipes/misc/crafting/materials/green_concrete.json
|
||||
22170ac52bcaa7e1f48da11e9e363e67ffb1cfb2 data/tfmg/advancement/recipes/misc/crafting/materials/green_multimeter.json
|
||||
ab67d5f0305a8188a0f8401cbf08e3154ce415ff data/tfmg/advancement/recipes/misc/crafting/materials/green_rebar_concrete.json
|
||||
91d27b5c3598954ba0f72ff218e01a8ea7b111ae data/tfmg/advancement/recipes/misc/crafting/materials/heavy_cable_hub.json
|
||||
7e039b604f1b897e1b94d0370bb5293a01e61486 data/tfmg/advancement/recipes/misc/crafting/materials/heavy_casing_door.json
|
||||
ec32d19e3bcdb9408a5c980531f644395adf2d6e data/tfmg/advancement/recipes/misc/crafting/materials/heavy_plated_door.json
|
||||
dd45a928d43f7558bde9bbbfff08991c137d36b2 data/tfmg/advancement/recipes/misc/crafting/materials/industrial_mixer.json
|
||||
aa4b0182e6132667ce3a8774be8609c76e83a4ec data/tfmg/advancement/recipes/misc/crafting/materials/large_aluminum_cogwheel.json
|
||||
8ce850d1d6892132c7b040af32e6376acbe0e9dd data/tfmg/advancement/recipes/misc/crafting/materials/large_pumpjack_hammer_connector.json
|
||||
72f870034c3b74e74b59f2e8972b033a00d5dfc7 data/tfmg/advancement/recipes/misc/crafting/materials/large_pumpjack_hammer_head.json
|
||||
c0bea63558a8afdea454500f2582f42c50e15f92 data/tfmg/advancement/recipes/misc/crafting/materials/large_steel_cogwheel.json
|
||||
f052642688690b03ab7ccaa8f0b3c380307d5e9c data/tfmg/advancement/recipes/misc/crafting/materials/lead_axe.json
|
||||
7737f4ec843701dda1a6205fc75cff8043f22210 data/tfmg/advancement/recipes/misc/crafting/materials/lead_block_from_compacting.json
|
||||
6a3deb508cb27be73e287fd8eb90402aa2fb3fd2 data/tfmg/advancement/recipes/misc/crafting/materials/lead_flywheel.json
|
||||
72a2bd6364a14d22d06a0e539cc06680b69e2f20 data/tfmg/advancement/recipes/misc/crafting/materials/lead_frame.json
|
||||
66ec4781863c9b0cfaf83519103e07893f468e56 data/tfmg/advancement/recipes/misc/crafting/materials/lead_hoe.json
|
||||
ad2263a7375a058567c68f3632c0734cc6acb256 data/tfmg/advancement/recipes/misc/crafting/materials/lead_ingot_from_compacting.json
|
||||
b3eeb0e694b0bad6e9909e3d1867b86e3679153a data/tfmg/advancement/recipes/misc/crafting/materials/lead_ingot_from_decompacting.json
|
||||
6a50e76176ca108e54ad03296487393323ba80cb data/tfmg/advancement/recipes/misc/crafting/materials/lead_nugget_from_decompacting.json
|
||||
2fb4d6df936bdc2cc3648df5f5eae9cf738397f9 data/tfmg/advancement/recipes/misc/crafting/materials/lead_pickaxe.json
|
||||
75cb8749fde2ee7e0348ffb3981c0a669ac6b30e data/tfmg/advancement/recipes/misc/crafting/materials/lead_shovel.json
|
||||
049b54fecf312ef5335e358f8385093f28d5a162 data/tfmg/advancement/recipes/misc/crafting/materials/lead_sword.json
|
||||
7ca39d780331bddaa59d21057ffe78d959f3df78 data/tfmg/advancement/recipes/misc/crafting/materials/lead_truss.json
|
||||
a159a885e35b451d3735c8587b132e7a5cc0baca data/tfmg/advancement/recipes/misc/crafting/materials/light_blue_concrete.json
|
||||
e0a703c7b2fbc72130fffd9e4d4d720217f7e622 data/tfmg/advancement/recipes/misc/crafting/materials/light_blue_multimeter.json
|
||||
da91a2dd07046cd0a5fc4d9cb2daad7c632ac7d8 data/tfmg/advancement/recipes/misc/crafting/materials/light_blue_rebar_concrete.json
|
||||
93ddae1b0eb5c6ffe9ff3c2f344727cc39e1f7cc data/tfmg/advancement/recipes/misc/crafting/materials/light_bulb.json
|
||||
ec555fbacadf85c1a59d18534b5c5749f80b66b3 data/tfmg/advancement/recipes/misc/crafting/materials/light_gray_concrete.json
|
||||
6949d2d02c0bf766039ef1e9253323c7fb29a8f8 data/tfmg/advancement/recipes/misc/crafting/materials/light_gray_multimeter.json
|
||||
7a8a4f22874bb0def372ccf31cb4ccbee6fa4a01 data/tfmg/advancement/recipes/misc/crafting/materials/light_gray_rebar_concrete.json
|
||||
1b4a051efdb330488bc5077e7511ebc88b983b53 data/tfmg/advancement/recipes/misc/crafting/materials/lime_concrete.json
|
||||
684472d428cf9c509c14028cd29e879ca2dfc5a7 data/tfmg/advancement/recipes/misc/crafting/materials/lime_multimeter.json
|
||||
6a742b9f97bfacf48517e5545d296059d227c3f8 data/tfmg/advancement/recipes/misc/crafting/materials/lime_rebar_concrete.json
|
||||
c1454df94da933c12c0876e43dc80f4fcb58638d data/tfmg/advancement/recipes/misc/crafting/materials/lithium_blade.json
|
||||
ed1deea39a9364f052c78d142e78b0967a133cc6 data/tfmg/advancement/recipes/misc/crafting/materials/lithium_block_from_compacting.json
|
||||
cbddb4295abe43f1dae30a989bb75750d4ac210d data/tfmg/advancement/recipes/misc/crafting/materials/lithium_charge.json
|
||||
762b3a31ad1cfbb4ae6d5114a8fa81332fee5c01 data/tfmg/advancement/recipes/misc/crafting/materials/lithium_ingot_from_compacting.json
|
||||
d2a5ad3c82a1b6f642c3d6e90d07b91e8e33eb0b data/tfmg/advancement/recipes/misc/crafting/materials/lithium_ingot_from_decompacting.json
|
||||
7f37da4673fb3cf9472365c38a3da91444a7df0b data/tfmg/advancement/recipes/misc/crafting/materials/lithium_nugget_from_decompacting.json
|
||||
26a2078c01f5f49aedce3f73f597eae2bc26d155 data/tfmg/advancement/recipes/misc/crafting/materials/lithium_torch.json
|
||||
4578f4ae380f28e6d2ce2d1c14980bc4b8f2c995 data/tfmg/advancement/recipes/misc/crafting/materials/machine_input.json
|
||||
38b3415de84bd4cdbfd3199f54aa5bc446695c0b data/tfmg/advancement/recipes/misc/crafting/materials/magenta_concrete.json
|
||||
4fb6e596001f2822c8b1b705ec76972064315f6c data/tfmg/advancement/recipes/misc/crafting/materials/magenta_multimeter.json
|
||||
0b4d160084dd099087205d50b043d7416b3c74bd data/tfmg/advancement/recipes/misc/crafting/materials/magenta_rebar_concrete.json
|
||||
a13bf24d8d13571ac6c7760f7f54bdcd5ae4e53f data/tfmg/advancement/recipes/misc/crafting/materials/metal_smokestack.json
|
||||
68d6fa1171334ea1be1caadfc70da920be034fd6 data/tfmg/advancement/recipes/misc/crafting/materials/mixer_blade.json
|
||||
80065730056b18fd579f8d7324157211bf9194c9 data/tfmg/advancement/recipes/misc/crafting/materials/modern_light.json
|
||||
87c2f538d678449112ee089d3aa6ae98ddf06eed data/tfmg/advancement/recipes/misc/crafting/materials/multimeter.json
|
||||
ae2ec065e1c5570e623c35c385eb260e0e69ad18 data/tfmg/advancement/recipes/misc/crafting/materials/napalm_bomb.json
|
||||
78bee77974c6664f17d83235cd0a42e50de649ec data/tfmg/advancement/recipes/misc/crafting/materials/neon_tube.json
|
||||
cd97138073edb2df282bda57f94b1e6dfd5acef6 data/tfmg/advancement/recipes/misc/crafting/materials/nickel_block_from_compacting.json
|
||||
cda957eb43c07f92f765b12afc15bf4b7ee69ad4 data/tfmg/advancement/recipes/misc/crafting/materials/nickel_flywheel.json
|
||||
5aeb6f6dd0d67044d08dd94edcd521d97b6eae89 data/tfmg/advancement/recipes/misc/crafting/materials/nickel_frame.json
|
||||
b5ff824a7d33c9d2161540e83d28d054c6a29880 data/tfmg/advancement/recipes/misc/crafting/materials/nickel_ingot_from_compacting.json
|
||||
6691caa72021eabd3b53bd1d2f5225ebc6973450 data/tfmg/advancement/recipes/misc/crafting/materials/nickel_ingot_from_decompacting.json
|
||||
595a1937399c3cc532151b618f5948f56e8122a9 data/tfmg/advancement/recipes/misc/crafting/materials/nickel_nugget_from_decompacting.json
|
||||
d7959c1f1d53d452c773ab0632f40abd3cc10dfb data/tfmg/advancement/recipes/misc/crafting/materials/nickel_truss.json
|
||||
d9694d0293cc699e468836e9f8f344f85481e5cb data/tfmg/advancement/recipes/misc/crafting/materials/oil_can.json
|
||||
b2384676e3745e58240363609dcf97c6713d10c0 data/tfmg/advancement/recipes/misc/crafting/materials/oil_hammer.json
|
||||
d6bf7b4bdf24c78d46d9bd2575543864b2257767 data/tfmg/advancement/recipes/misc/crafting/materials/orange_concrete.json
|
||||
73358283a2e2743e79b884ce05d1bca211ae55db data/tfmg/advancement/recipes/misc/crafting/materials/orange_multimeter.json
|
||||
6066be34dab1e14de24abb8179f3bdbae1c4826b data/tfmg/advancement/recipes/misc/crafting/materials/orange_rebar_concrete.json
|
||||
38bb95da15e27fb32565714608eed19b8e582c6e data/tfmg/advancement/recipes/misc/crafting/materials/pink_concrete.json
|
||||
85bc0371e278bd1046ddff0b1d0b6598b52b54f8 data/tfmg/advancement/recipes/misc/crafting/materials/pink_multimeter.json
|
||||
3b6457e6c6a123db48dacf11feadd16df253892a data/tfmg/advancement/recipes/misc/crafting/materials/pink_rebar_concrete.json
|
||||
c2c63f9fb303ed0cd7144a4becd56647678d9e17 data/tfmg/advancement/recipes/misc/crafting/materials/pipe_bomb.json
|
||||
d4aa0bf50dba392e0fb6eb0b0d21eb3deaec16ec data/tfmg/advancement/recipes/misc/crafting/materials/plastic_block.json
|
||||
119c3d1de8050659210b785d905eed7157af7117 data/tfmg/advancement/recipes/misc/crafting/materials/plastic_sheet.json
|
||||
e99c1b472d9467501e1ebbf8dc12437a1dcef5d5 data/tfmg/advancement/recipes/misc/crafting/materials/polarizer.json
|
||||
379cf185c2701bc07bfd722be0ba594b3dd62b04 data/tfmg/advancement/recipes/misc/crafting/materials/pumpjack_base.json
|
||||
bd22949da5dc31fef4c569f1b30ca16f038d9285 data/tfmg/advancement/recipes/misc/crafting/materials/pumpjack_crank.json
|
||||
0b59e2e7d3d579d1a61f0a0ca3ebb6260ced4b76 data/tfmg/advancement/recipes/misc/crafting/materials/pumpjack_hammer.json
|
||||
cdb93bb498da2b4f929c16b8941611ac9c4b67f8 data/tfmg/advancement/recipes/misc/crafting/materials/pumpjack_hammer_connector.json
|
||||
6308c342d54767577ec94ab2f1aa5da24bdf1808 data/tfmg/advancement/recipes/misc/crafting/materials/pumpjack_hammer_head.json
|
||||
8b93592849facfcdd255649c4829da450e85af0c data/tfmg/advancement/recipes/misc/crafting/materials/purple_concrete.json
|
||||
2ef74c6937951efab8c3686891ccccc154a3cc68 data/tfmg/advancement/recipes/misc/crafting/materials/purple_multimeter.json
|
||||
bd10fd39aef892b39f592e42656c110edc126377 data/tfmg/advancement/recipes/misc/crafting/materials/purple_rebar_concrete.json
|
||||
cd970d28e19289dfcdd5ff5bb4c7f4f5fc9b3bff data/tfmg/advancement/recipes/misc/crafting/materials/radial_engine.json
|
||||
e9476245b4a21f828626d8d22ed156226ed0a8d8 data/tfmg/advancement/recipes/misc/crafting/materials/raw_lead.json
|
||||
2d8f235d312dc979cba8243bef6c4a9170d3461e data/tfmg/advancement/recipes/misc/crafting/materials/raw_lead_block.json
|
||||
687906fbc87983c694dadf24bdb25650f8b2426c data/tfmg/advancement/recipes/misc/crafting/materials/raw_lithium.json
|
||||
4e5e886da80de0c13fab1c7046e3206408d31641 data/tfmg/advancement/recipes/misc/crafting/materials/raw_lithium_block.json
|
||||
161afa320e72f0c8bd0d3d1ac94479f4c1652c43 data/tfmg/advancement/recipes/misc/crafting/materials/raw_nickel.json
|
||||
eb470478956e99c952e650bffc37207cc0ce198e data/tfmg/advancement/recipes/misc/crafting/materials/raw_nickel_block.json
|
||||
3fb65e924a5b02cd103602ab65afa0aee350c92d data/tfmg/advancement/recipes/misc/crafting/materials/rebar.json
|
||||
0eec85efde58168501b9795d93f05c99ef3c0727 data/tfmg/advancement/recipes/misc/crafting/materials/rebar_block.json
|
||||
d6c4e3088ac4a3d3c36b8cd5a6ee0acb3da9883c data/tfmg/advancement/recipes/misc/crafting/materials/rebar_floor.json
|
||||
3cf168d83b6f98ab04191a1d02a7d2a379fb89ea data/tfmg/advancement/recipes/misc/crafting/materials/rebar_pile.json
|
||||
e48f497e37290566146a0be074694fddea2ca1e5 data/tfmg/advancement/recipes/misc/crafting/materials/rebar_pillar.json
|
||||
1c029151bd593c3f15e6e322b3fb1c2ea0ee8ed3 data/tfmg/advancement/recipes/misc/crafting/materials/rebar_stairs.json
|
||||
6a0453687fdfbc75cdeb10f3f2eede266b64ad3f data/tfmg/advancement/recipes/misc/crafting/materials/rebar_wall.json
|
||||
3ae4e10abba58937f04c6e822aa7ca75c43c32d8 data/tfmg/advancement/recipes/misc/crafting/materials/red_concrete.json
|
||||
404ac0e2485aa91e2f73114afe4a86cb43dd6552 data/tfmg/advancement/recipes/misc/crafting/materials/red_multimeter.json
|
||||
00f495b34745ab410ffce6c96b03fac2c3599920 data/tfmg/advancement/recipes/misc/crafting/materials/red_rebar_concrete.json
|
||||
7e336a7bfcdeabb8743194862f83f0a9ed06a6ae data/tfmg/advancement/recipes/misc/crafting/materials/regular_engine.json
|
||||
9ee5b4b6923fdbbaa4c608d9be82afba1819fab6 data/tfmg/advancement/recipes/misc/crafting/materials/rusted_blast_furnace_reinforcement.json
|
||||
1f5891a0392f48b0dc1eb5a213725d188837ec06 data/tfmg/advancement/recipes/misc/crafting/materials/screwdriver.json
|
||||
93970f6a3c33af9c8a4d3fe888e554de551ed35f data/tfmg/advancement/recipes/misc/crafting/materials/screwdriverfrom_brass.json
|
||||
d90e3ca22d1edc684c089a985b95a9573bf94dfd data/tfmg/advancement/recipes/misc/crafting/materials/segmented_display.json
|
||||
94ca5eed35ed4358b9c94f6fe120d06261c65dc3 data/tfmg/advancement/recipes/misc/crafting/materials/steel_axe.json
|
||||
a9709b109852fce282d3969f929e07b949d22567 data/tfmg/advancement/recipes/misc/crafting/materials/steel_block_from_compacting.json
|
||||
fbafe2a9474c759cea160489f8159850c32d3bfc data/tfmg/advancement/recipes/misc/crafting/materials/steel_cable_hub.json
|
||||
796883cc61bc9d620681039abea77f49f57a92ae data/tfmg/advancement/recipes/misc/crafting/materials/steel_casing_cable_hub.json
|
||||
fa6626a32aa4010c068f367e514c478e2857e903 data/tfmg/advancement/recipes/misc/crafting/materials/steel_chemical_vat.json
|
||||
e3bb2b6dfb06e384b056827b939c69ba8cbd86d1 data/tfmg/advancement/recipes/misc/crafting/materials/steel_cogwheel.json
|
||||
8f47e9b04e3186655b3e7e97e65d823d056413c4 data/tfmg/advancement/recipes/misc/crafting/materials/steel_distillation_controller.json
|
||||
567ecb9c0dd2e3c1d05d1fc0bd38faed0aab2fa3 data/tfmg/advancement/recipes/misc/crafting/materials/steel_distillation_output.json
|
||||
15071185aaeb0aff405630d0fb7a3ed1de388b9e data/tfmg/advancement/recipes/misc/crafting/materials/steel_door.json
|
||||
6f3d27529a79de118a613acc6331fd7ae5721913 data/tfmg/advancement/recipes/misc/crafting/materials/steel_fluid_tank.json
|
||||
1d91b1752d7fd3468303a357d6235ce6851c68cb data/tfmg/advancement/recipes/misc/crafting/materials/steel_flywheel.json
|
||||
0be679170b26160abe9524f3235138a41f7e7d78 data/tfmg/advancement/recipes/misc/crafting/materials/steel_frame.json
|
||||
a2fe8e7d942c300272a8f75556b7d3b4fe1fba67 data/tfmg/advancement/recipes/misc/crafting/materials/steel_gearbox.json
|
||||
2fde5da35c5bb54e97b5ea024f2a5a6e14fdc6bf data/tfmg/advancement/recipes/misc/crafting/materials/steel_hoe.json
|
||||
27db390d78185acbd1a5517896a26854cd0f4413 data/tfmg/advancement/recipes/misc/crafting/materials/steel_ingot_from_compacting.json
|
||||
bf96d3be6cbbc0c28b5d14f51a4cdcad7e6c1b10 data/tfmg/advancement/recipes/misc/crafting/materials/steel_ingot_from_decompacting.json
|
||||
95e4f90325a09c41d894a2b29126933df4a41c8a data/tfmg/advancement/recipes/misc/crafting/materials/steel_nugget_from_decompacting.json
|
||||
b716df5714af0dcb7b5e27245a108829b2f2d6d3 data/tfmg/advancement/recipes/misc/crafting/materials/steel_pickaxe.json
|
||||
e01da2c61fbf74c8ddd2fcc298c3dcea91e9b175 data/tfmg/advancement/recipes/misc/crafting/materials/steel_shovel.json
|
||||
885861f0b2275fda0a041b9fed2f7ccafe895f08 data/tfmg/advancement/recipes/misc/crafting/materials/steel_sword.json
|
||||
8ee691e06b6281c058a3abfa4f01c38ed1a034a4 data/tfmg/advancement/recipes/misc/crafting/materials/steel_trapdoor.json
|
||||
97bc8a978894f71fc0798ac432ad91f723d4a023 data/tfmg/advancement/recipes/misc/crafting/materials/steel_truss.json
|
||||
946f0230e73df8e14908a225e4ecc2d6fb50d7da data/tfmg/advancement/recipes/misc/crafting/materials/surface_scanner.json
|
||||
c9ce3253bed9ed63c89eb5449f719030c788e32e data/tfmg/advancement/recipes/misc/crafting/materials/thermite_grenade.json
|
||||
cc0912afd54ca449102420dcb86bedd4fa28466c data/tfmg/advancement/recipes/misc/crafting/materials/traffic_light.json
|
||||
1c6accdff145aeecedec5e8fcbf0f75322485212 data/tfmg/advancement/recipes/misc/crafting/materials/transformer.json
|
||||
de79bb6623b91d11aa41cebbcf7b7914ccce4546 data/tfmg/advancement/recipes/misc/crafting/materials/transmission.json
|
||||
aabfe2c1d21303278d0322183d3e7db901db1259 data/tfmg/advancement/recipes/misc/crafting/materials/turbine_engine.json
|
||||
f624be55db5ffeed17457c1a0dafb89898f26bc0 data/tfmg/advancement/recipes/misc/crafting/materials/turbo.json
|
||||
5aa3eccc945b3eab8c8b4d8f1c5ae85491351b94 data/tfmg/advancement/recipes/misc/crafting/materials/unfinished_electromagnetic_coil.json
|
||||
d6fb2554c98e1615be35a068c9f822af85035188 data/tfmg/advancement/recipes/misc/crafting/materials/unfinished_resistor.json
|
||||
239461226762283f3dd0b160714491828454f28e data/tfmg/advancement/recipes/misc/crafting/materials/unfinished_resistorfrom_slime.json
|
||||
2ab5b936a5c5eaaa9e87054c18e437cb2595a328 data/tfmg/advancement/recipes/misc/crafting/materials/voltage_observer.json
|
||||
1bacf66478df941bc649d6345b37329e8f041b97 data/tfmg/advancement/recipes/misc/crafting/materials/voltmeter.json
|
||||
eff2a5b8584f7a9fe8be9382388c84fa05aac891 data/tfmg/advancement/recipes/misc/crafting/materials/white_concrete.json
|
||||
489f84a45e46dd0c5d6ab6acb864d002e5c8440b data/tfmg/advancement/recipes/misc/crafting/materials/white_multimeter.json
|
||||
817f0b94d99d978233e7d279156c87861af7a0f7 data/tfmg/advancement/recipes/misc/crafting/materials/white_rebar_concrete.json
|
||||
56dfa5ec6e8d47ee5b968dc117caba998aa7f69e data/tfmg/advancement/recipes/misc/crafting/materials/winding_machine.json
|
||||
e7bcf14c5cf481d6b8fcbb8458684e8a34912211 data/tfmg/advancement/recipes/misc/crafting/materials/yellow_concrete.json
|
||||
b711ac0b4700990b1cb8b8839f7ee88730e8e588 data/tfmg/advancement/recipes/misc/crafting/materials/yellow_multimeter.json
|
||||
9560a15dc9c409730ed52ac71944117a065a7cce data/tfmg/advancement/recipes/misc/crafting/materials/yellow_rebar_concrete.json
|
||||
7155bc1ec5db4d990c88286650a9ff1a799f874f data/tfmg/advancement/recipes/misc/crafting/materials/zinc_frame.json
|
||||
d54db7ca65d852881fe4e8635a487146ef3ef153 data/tfmg/advancement/recipes/misc/crafting/materials/zinc_grenade.json
|
||||
002391cb592362488efbb7a01f82016212efd29c data/tfmg/advancement/recipes/misc/crafting/materials/zinc_truss.json
|
||||
fbe4387c69c1d35e797bda5fee5f166d27cfc823 data/tfmg/advancement/recipes/misc/smelting/fireproof_brick.json
|
||||
3507cd7119c6ccb08dbd9c2298bf55c9e674d0e9 data/tfmg/advancement/recipes/misc/smelting/lead_ingot.json
|
||||
01da5054374723da5de0db7935d3c9d097138e1d data/tfmg/advancement/recipes/misc/smelting/lead_ingot_blasting.json
|
||||
b697f184fcf580d1a2015d11bd992a76b7c218ec data/tfmg/advancement/recipes/misc/smelting/lead_ingot_from_crushed_blasting.json
|
||||
a6bf8200a0a352dc10bf9dd69809da7598be6436 data/tfmg/advancement/recipes/misc/smelting/lithium_ingot.json
|
||||
66c9f69eb27bfca2e4c8fde80d88bebbc024d38d data/tfmg/advancement/recipes/misc/smelting/lithium_ingot_blasting.json
|
||||
cef3238bbd0377fd70e42759ab896cee8533d2f2 data/tfmg/advancement/recipes/misc/smelting/nickel_ingot.json
|
||||
7b9e9d7087c3bb068f0f23b8be79c07b4ad4a9de data/tfmg/advancement/recipes/misc/smelting/nickel_ingot_blasting.json
|
||||
d37951c8cadc7171c7d76f3dccb940d63e081546 data/tfmg/advancement/recipes/misc/smelting/nickel_ingot_from_crushed_blasting.json
|
||||
8e64cc13455d9ac939c3b3779c176a7f0ac94c71 data/tfmg/advancement/recipes/misc/smelting/unfinished_insulator.json
|
||||
5fd4775deac479175db652d1d60848f30b950a9a data/tfmg/recipe/blasting/lead_ingot_blasting.json
|
||||
8236c6a98ad8b7c775c33f12dc5443a9814896ba data/tfmg/recipe/blasting/lead_ingot_from_crushed_blasting.json
|
||||
2875431d39bdec9424b3c1ff51a33d8b8f2838b7 data/tfmg/recipe/blasting/lithium_ingot_blasting.json
|
||||
8e00b06eda2399bcfdc71013ef1f060c99275f06 data/tfmg/recipe/blasting/nickel_ingot_blasting.json
|
||||
e8ce85caeb22bc0c54fbb9aeceeeb3f7ea8a1495 data/tfmg/recipe/blasting/nickel_ingot_from_crushed_blasting.json
|
||||
d106d48e609d7094b0bb707708512a55942d1c15 data/tfmg/recipe/crafting/materials/accumulator.json
|
||||
20d2cb1f6dd696e0acbdc740eed1932724460559 data/tfmg/recipe/crafting/materials/accumulatorfrom_lithium.json
|
||||
b23810c7693decbee3fa5ff712471a8abf078509 data/tfmg/recipe/crafting/materials/air_intake.json
|
||||
c79ce6d267134fe7757c60b99d500eba7fd5e3bd data/tfmg/recipe/crafting/materials/aluminum_axe.json
|
||||
5abf71eaf49ebde9d803d65692f8ce27c9fdde8b data/tfmg/recipe/crafting/materials/aluminum_block_from_compacting.json
|
||||
61a2e9d897aa5f58a8125f8f9fc239c59176989d data/tfmg/recipe/crafting/materials/aluminum_cable_hub.json
|
||||
3ce776d453a8793ee83457c9669fb34f1e5aa750 data/tfmg/recipe/crafting/materials/aluminum_cogwheel.json
|
||||
e7c8aad1d6c6d214ebbd90d20460c201328a9e0d data/tfmg/recipe/crafting/materials/aluminum_door.json
|
||||
85c44ae3b2c25483a93da282f2dbc489c943c4aa data/tfmg/recipe/crafting/materials/aluminum_fluid_tank.json
|
||||
3cba18f633557d792211cbb703a76a2a73cfc3a8 data/tfmg/recipe/crafting/materials/aluminum_flywheel.json
|
||||
448f2dbf1cb991d9d03ad38d3a7041094533a7ce data/tfmg/recipe/crafting/materials/aluminum_frame.json
|
||||
0f4a25f4187c3e503c7880c90efc7008e8c41431 data/tfmg/recipe/crafting/materials/aluminum_hoe.json
|
||||
16d88911e6ad8a9527478388020c3fcd6ed9aadd data/tfmg/recipe/crafting/materials/aluminum_ingot_from_compacting.json
|
||||
6cbe3b795122382451a65b2402ca90922855e1d0 data/tfmg/recipe/crafting/materials/aluminum_ingot_from_decompacting.json
|
||||
99828fb9105c78ca2c9a8fefc2076d9e4f0d7bef data/tfmg/recipe/crafting/materials/aluminum_lamp.json
|
||||
bdbe5170df749d96362887273b885f3dc892bcb7 data/tfmg/recipe/crafting/materials/aluminum_nugget_from_decompacting.json
|
||||
c4eb965d88eb501683a576ee8c0b80d61f7f92f5 data/tfmg/recipe/crafting/materials/aluminum_pickaxe.json
|
||||
076c585d13541c358fc4df29b0eb857eb6b51022 data/tfmg/recipe/crafting/materials/aluminum_shovel.json
|
||||
e5b684822100ee184d35a6129e71881420d4da9e data/tfmg/recipe/crafting/materials/aluminum_spool.json
|
||||
0ec1566f3714470b185df94ee83c1c84f1277a78 data/tfmg/recipe/crafting/materials/aluminum_sword.json
|
||||
c7314b55fc65dc3bad2c4d0d004a19a020516e44 data/tfmg/recipe/crafting/materials/aluminum_truss.json
|
||||
d175595ea677f486ce9a10debd8d3643328824ac data/tfmg/recipe/crafting/materials/black_concrete.json
|
||||
d2660859c561c4bd68813f400c03bad40e27d120 data/tfmg/recipe/crafting/materials/black_multimeter.json
|
||||
5ac9abddb8aa449ec5ea472df17986c71e883638 data/tfmg/recipe/crafting/materials/black_rebar_concrete.json
|
||||
1e2a794b2fba89002b53b1fb7983a447caf45c4a data/tfmg/recipe/crafting/materials/blast_furnace_hatch.json
|
||||
f1372bc1f490e7831c7b5d9cd45ba58eaa710f07 data/tfmg/recipe/crafting/materials/blast_furnace_output.json
|
||||
96487a711d26500380a1b7c9c67d72b3a1884af2 data/tfmg/recipe/crafting/materials/blast_furnace_reinforcement.json
|
||||
18ce4d0dff5f3d95b408638cf7fb4857dccc38b4 data/tfmg/recipe/crafting/materials/blast_stove.json
|
||||
7821f4885876f7445188a5c1f09c709d49d30409 data/tfmg/recipe/crafting/materials/blue_concrete.json
|
||||
8901995d191b4b1892480cde3c8c09d95149fd1e data/tfmg/recipe/crafting/materials/blue_multimeter.json
|
||||
014fa7939f6878f56e0331e2089d1e7b67a00692 data/tfmg/recipe/crafting/materials/blue_rebar_concrete.json
|
||||
e2c43925defaac733d7a9e28679acc45511734ed data/tfmg/recipe/crafting/materials/brass_cable_hub.json
|
||||
decd43dfe044ee6fdb1e6abfbac1e150bf61471f data/tfmg/recipe/crafting/materials/brass_frame.json
|
||||
4f8acc3174e6b4153e8f117c6df0f57cd7fc0970 data/tfmg/recipe/crafting/materials/brass_truss.json
|
||||
494e6c9b70eb5c992d5fdd19678c0bbc0037d088 data/tfmg/recipe/crafting/materials/brick_smokestack.json
|
||||
df251ad3fcd97250b3d5c3105f1c29d325df39aa data/tfmg/recipe/crafting/materials/brown_concrete.json
|
||||
ff2febdab0cca0421a0dd038100cfb6f8dc42faf data/tfmg/recipe/crafting/materials/brown_multimeter.json
|
||||
537344919a2cee36e64d9931a4030561fbaa6925 data/tfmg/recipe/crafting/materials/brown_rebar_concrete.json
|
||||
049e09b06c5d28a684a29605e9d1a50b8d8a3395 data/tfmg/recipe/crafting/materials/cable_connector.json
|
||||
d73bd8005058bd2896092fd213b79039f078cccb data/tfmg/recipe/crafting/materials/cable_tube.json
|
||||
54b1e6b3b1a0044a950241cadb39ee9bcc4f9933 data/tfmg/recipe/crafting/materials/casting_basin.json
|
||||
6477ed4f5debc7b645ed864b0f1168fcfd17a5d0 data/tfmg/recipe/crafting/materials/cast_iron_block_from_compacting.json
|
||||
20cf9808563515b5abbfc4907d88a45a47017938 data/tfmg/recipe/crafting/materials/cast_iron_chemical_vat.json
|
||||
385df8fd169bf139183a9784c08bec10c1217dc0 data/tfmg/recipe/crafting/materials/cast_iron_fluid_tank.json
|
||||
98acf8aa7e94ae8df5adb434d912bb690d1ae4dc data/tfmg/recipe/crafting/materials/cast_iron_flywheel.json
|
||||
705510773f20579136c8f65a579fecf4a39b9a5b data/tfmg/recipe/crafting/materials/cast_iron_frame.json
|
||||
6d70868e9a875b0eae0da514349e285db67e3661 data/tfmg/recipe/crafting/materials/cast_iron_ingot_from_compacting.json
|
||||
a7f91fe3b66258765110f7eb3651b3309e7f18d2 data/tfmg/recipe/crafting/materials/cast_iron_ingot_from_decompacting.json
|
||||
c5560b49308fd54211fd173fb48a3651e385f412 data/tfmg/recipe/crafting/materials/cast_iron_nugget_from_decompacting.json
|
||||
b5a76d18a47375bd9d6c214039fdccbf67c21063 data/tfmg/recipe/crafting/materials/cast_iron_truss.json
|
||||
d8049fae9b2c9c70547b97e62c56c7f7a9678cdd data/tfmg/recipe/crafting/materials/centrifuge.json
|
||||
7a4a6be2415cf4b60cfb72c5e42caa4d1ac2daef data/tfmg/recipe/crafting/materials/cinderflour_block.json
|
||||
52cefcfc28178016a82a07095669ceb76b35b125 data/tfmg/recipe/crafting/materials/cinder_block.json
|
||||
163373fb1e28e5595b59e7b9b7b1701df06f4d6a data/tfmg/recipe/crafting/materials/circular_light.json
|
||||
e69a1fa2ae46c128362c480dbeaa3dae46db9c1f data/tfmg/recipe/crafting/materials/coal_coke.json
|
||||
9f21479f2d99a4be59ec3746d961cc256b21146d data/tfmg/recipe/crafting/materials/coal_coke_block.json
|
||||
6e5ee4e853a86c20bd08cd00744df36e09ade6b2 data/tfmg/recipe/crafting/materials/coke_oven.json
|
||||
116835faa845c6577723cf826a67bbd85f608feb data/tfmg/recipe/crafting/materials/concrete_hose.json
|
||||
aa6119a180048584ddd7f8f396c8b865cdab0b04 data/tfmg/recipe/crafting/materials/concrete_smokestack.json
|
||||
cd8026d05aa11602093496f7bb540779eb4b921f data/tfmg/recipe/crafting/materials/constantan_block_from_compacting.json
|
||||
d102bbba5f703d9155dbfd89f3eeb53618c0c613 data/tfmg/recipe/crafting/materials/constantan_frame.json
|
||||
8f8eb1d64849c2a993a22414f33eb0b0ced5db95 data/tfmg/recipe/crafting/materials/constantan_ingot_from_compacting.json
|
||||
a283f9cc32d537b4bb91d7f277e2aa27e9e06ad1 data/tfmg/recipe/crafting/materials/constantan_ingot_from_decompacting.json
|
||||
10208b260c8590f4dea15949d627c2660dd5a6db data/tfmg/recipe/crafting/materials/constantan_nugget_from_decompacting.json
|
||||
576a88aa50473a462b05acde251d6941cf646eea data/tfmg/recipe/crafting/materials/constantan_spool.json
|
||||
ed3b9755ae75894fe5e81133b0b7a10b09142336 data/tfmg/recipe/crafting/materials/constantan_truss.json
|
||||
0cbf2af89469abe06f849a2d462d8616887ce81d data/tfmg/recipe/crafting/materials/converter.json
|
||||
a6b7df4a66559f0a57c0e2d4dee85ae49004f84d data/tfmg/recipe/crafting/materials/cooling_fluid_bottle.json
|
||||
8c981a9139ee9aec63647302eb9d604f84298ee4 data/tfmg/recipe/crafting/materials/copper_cable_hub.json
|
||||
3bc0af5e78e0a5c22ef4b6ca5050f493c435d5bd data/tfmg/recipe/crafting/materials/copper_frame.json
|
||||
e75f2251bcdf8cdb47d8de057735cf7efe1fb62f data/tfmg/recipe/crafting/materials/copper_grenade.json
|
||||
28a6bb6757e75d754b10c536083c5be3d5ca0745 data/tfmg/recipe/crafting/materials/copper_spool.json
|
||||
be689dc5df3bb0be1474c7b60d972eb9533d8868 data/tfmg/recipe/crafting/materials/copper_truss.json
|
||||
103bb487b1b53aae642b1df1919c6442dd0e7b3a data/tfmg/recipe/crafting/materials/copycat_cable_block.json
|
||||
f365d32e6c3f0f570e535b6fc083a640983b1541 data/tfmg/recipe/crafting/materials/crankshaft.json
|
||||
19cfed240c8dcc7163fd2dad23adf6a827ed2743 data/tfmg/recipe/crafting/materials/cyan_concrete.json
|
||||
6ae5384d34916efcf8af5825ca8a537dd9ed71fa data/tfmg/recipe/crafting/materials/cyan_multimeter.json
|
||||
2ad93375bef2e81366458ef4ac711f9670fd5b7d data/tfmg/recipe/crafting/materials/cyan_rebar_concrete.json
|
||||
ac7373fe6f7c2aa7e190d32950571029ebcf8dd2 data/tfmg/recipe/crafting/materials/diagonal_cable_block.json
|
||||
57fefddb8873f5b1227737c9bbb7a92f61d43c04 data/tfmg/recipe/crafting/materials/electrical_switch.json
|
||||
273a761fc931acb13b5dcc7e1ec89c142ee6d5c4 data/tfmg/recipe/crafting/materials/electricians_wrench.json
|
||||
f9e958dc22be2067aecb38b14fab807e2ec952d1 data/tfmg/recipe/crafting/materials/electric_diode.json
|
||||
81ed8e97c469a2c43aca94861f8ca81d3c41e6c7 data/tfmg/recipe/crafting/materials/electric_post.json
|
||||
401d36d81a832fb61fa6d03429551079c99f40ca data/tfmg/recipe/crafting/materials/electric_pump.json
|
||||
6792ed39b44236f2e5cd3236d952af259f1915f1 data/tfmg/recipe/crafting/materials/electrode_holder.json
|
||||
e6bcab69512584362e0b6647d653a0bb32145a1f data/tfmg/recipe/crafting/materials/empty_circuit_board.json
|
||||
e54ec249a95cdee71ac0fea1242bf6d8e28dbd24 data/tfmg/recipe/crafting/materials/engine_gearbox.json
|
||||
de62177fb0426844d7c481b69a8da8c60474c44b data/tfmg/recipe/crafting/materials/exhaust.json
|
||||
164ee58837512d583308bf1828f779a82e5df0f1 data/tfmg/recipe/crafting/materials/firebox.json
|
||||
58bb0c6aa51262ff91bc6a133592329f621271c7 data/tfmg/recipe/crafting/materials/fireclay.json
|
||||
2ed06fc71610f7d5ebe0a7ba05d0eadf4f8a41a6 data/tfmg/recipe/crafting/materials/fireproof_bricks.json
|
||||
75eae476980dcc22b61d472ba4f60d297a8f60aa data/tfmg/recipe/crafting/materials/fireproof_brick_reinforcement.json
|
||||
d09d2edeae31a276ea8c763c95df2aa119f40899 data/tfmg/recipe/crafting/materials/fireproof_chemical_vat.json
|
||||
9449860c915eff49f557fde951f7c7ca329a8d2e data/tfmg/recipe/crafting/materials/flarestack.json
|
||||
a9679bba91a9c4459dc12305eceea70c211ffe11 data/tfmg/recipe/crafting/materials/glass_cable_insulator.json
|
||||
4df43d6d3a37fafaddd71dcb7679103aaabfa0f3 data/tfmg/recipe/crafting/materials/glass_insulator_segment.json
|
||||
76f9c9a0de818ebf008156d50248fb6b34b145fd data/tfmg/recipe/crafting/materials/gray_concrete.json
|
||||
6e182fd1827243b25252a600fa02d2354a632dea data/tfmg/recipe/crafting/materials/gray_multimeter.json
|
||||
02d3990452037497731371ca87a0bdcb9994c62c data/tfmg/recipe/crafting/materials/gray_rebar_concrete.json
|
||||
49231ae62616e48b0d37ad7db5406bfefd5759ce data/tfmg/recipe/crafting/materials/green_concrete.json
|
||||
8996fd2ebdf1188a8bc262da95275ae6ffdbb04b data/tfmg/recipe/crafting/materials/green_multimeter.json
|
||||
4a649fa1e19b634299df35d3897cec642f994219 data/tfmg/recipe/crafting/materials/green_rebar_concrete.json
|
||||
d90f0635b9732cb6a036d4fcd90418c9ade73b3c data/tfmg/recipe/crafting/materials/heavy_cable_hub.json
|
||||
c0ab0292bffca8798fcd50bee97955dc4fbf1fd8 data/tfmg/recipe/crafting/materials/heavy_casing_door.json
|
||||
d02cba7d6e92651a7e5f7f4ebdc2511a085d7579 data/tfmg/recipe/crafting/materials/heavy_plated_door.json
|
||||
693b34df5f8f775eeef89c0157ebeb1498adc6e7 data/tfmg/recipe/crafting/materials/industrial_mixer.json
|
||||
76c8b00179d98204f3d4b66ee470ae6e7b631c70 data/tfmg/recipe/crafting/materials/large_aluminum_cogwheel.json
|
||||
f4a0b0f3aba7ac9d275d67480f8014bb938a14b3 data/tfmg/recipe/crafting/materials/large_pumpjack_hammer_connector.json
|
||||
96aeb5049913f5e5d933d6f89b8104ec85b27d92 data/tfmg/recipe/crafting/materials/large_pumpjack_hammer_head.json
|
||||
87a436e57580c73275ebb3caca577c06eadd0412 data/tfmg/recipe/crafting/materials/large_steel_cogwheel.json
|
||||
cdda82ae60bd65e3e022a2573ced6c86b4e75a17 data/tfmg/recipe/crafting/materials/lead_axe.json
|
||||
2e05132f93d01876e2dad728b1eb8812430f741d data/tfmg/recipe/crafting/materials/lead_block_from_compacting.json
|
||||
3f407cf9b54aed3b2d1cc034f57fe2300d48aa03 data/tfmg/recipe/crafting/materials/lead_flywheel.json
|
||||
99897d44dc47c52ef21a039d601d367559c48106 data/tfmg/recipe/crafting/materials/lead_frame.json
|
||||
cad7b01d5bf72e94182139d1215b8bab5accd1ba data/tfmg/recipe/crafting/materials/lead_hoe.json
|
||||
ee7833341651079b5e352917e3272967ab989ca4 data/tfmg/recipe/crafting/materials/lead_ingot_from_compacting.json
|
||||
9bf467d8c9b21f455afa381eee0e346729f61488 data/tfmg/recipe/crafting/materials/lead_ingot_from_decompacting.json
|
||||
46795e075fa8d2ee1a6ceca7f292e7992a562e24 data/tfmg/recipe/crafting/materials/lead_nugget_from_decompacting.json
|
||||
9f598a3243c78dcc7747c2e2865dc8754460ba34 data/tfmg/recipe/crafting/materials/lead_pickaxe.json
|
||||
0cad798f8fae18f8b15fbb5169dc89a904c73901 data/tfmg/recipe/crafting/materials/lead_shovel.json
|
||||
2e3359b4c70b84c529595555a3da11fe69468d91 data/tfmg/recipe/crafting/materials/lead_sword.json
|
||||
b4c1c457beb1c942fca62f1c951ebdb92ab95d9b data/tfmg/recipe/crafting/materials/lead_truss.json
|
||||
61f68ee5c58af91fb300c68e7a4b60ac6d1aafb6 data/tfmg/recipe/crafting/materials/light_blue_concrete.json
|
||||
7b7df6e12b4f3ca388aa0630d019d468de730214 data/tfmg/recipe/crafting/materials/light_blue_multimeter.json
|
||||
4a2c38de2745ced68ac15e162d76a2c5fe38bfd0 data/tfmg/recipe/crafting/materials/light_blue_rebar_concrete.json
|
||||
cab35ad2b85deb90c4ab35c1d4a4f914ad7ef649 data/tfmg/recipe/crafting/materials/light_bulb.json
|
||||
ef9e2b4530754aecbe4701ca33982333e08f0e87 data/tfmg/recipe/crafting/materials/light_gray_concrete.json
|
||||
3d88d33485d11d49c50c0dcc79072e4c929bc448 data/tfmg/recipe/crafting/materials/light_gray_multimeter.json
|
||||
4c3dbe871240aad96c21dcef317ebed78d2d6086 data/tfmg/recipe/crafting/materials/light_gray_rebar_concrete.json
|
||||
eab72d8c767a6d3daed71ff32ad7cfe8d1f5dafb data/tfmg/recipe/crafting/materials/lime_concrete.json
|
||||
fc37b695afdcc2370a903ac5e10b2feb14b326b3 data/tfmg/recipe/crafting/materials/lime_multimeter.json
|
||||
784f5101bb1fe0309b5275721d48f3d2a6a9d5ef data/tfmg/recipe/crafting/materials/lime_rebar_concrete.json
|
||||
699ce68a0cd7407d02a6bb27dce17caddab9127a data/tfmg/recipe/crafting/materials/lithium_blade.json
|
||||
55b5c5bf8026c4733a9624409ce145d4616f453e data/tfmg/recipe/crafting/materials/lithium_block_from_compacting.json
|
||||
a05ab5e201c2c4ded90ac916140a96d5fa6ed81f data/tfmg/recipe/crafting/materials/lithium_charge.json
|
||||
c7b8b14ab5c5c5a200be1c71eb7bdbc132b02aec data/tfmg/recipe/crafting/materials/lithium_ingot_from_compacting.json
|
||||
bd567c33469df6b8da6b6b5d93023312481ff084 data/tfmg/recipe/crafting/materials/lithium_ingot_from_decompacting.json
|
||||
65ae6d28e9aeb3d5ee378bbf0c63ff0e30c407fe data/tfmg/recipe/crafting/materials/lithium_nugget_from_decompacting.json
|
||||
432775d6bfa98688cea5de9c8f3bd88f9f9ea76e data/tfmg/recipe/crafting/materials/lithium_torch.json
|
||||
a222a4ab2eca7456c1858153bd46c442ff07b462 data/tfmg/recipe/crafting/materials/machine_input.json
|
||||
4b17d78379a67adccca6ee891138391e3263ff8c data/tfmg/recipe/crafting/materials/magenta_concrete.json
|
||||
c4553d9b30796bf59fb090c876fbf84cc90ba189 data/tfmg/recipe/crafting/materials/magenta_multimeter.json
|
||||
9defd369c8cae18d25c40be22360b91409653d4a data/tfmg/recipe/crafting/materials/magenta_rebar_concrete.json
|
||||
2792d5753a7e48f0cc27afb21aaeb84dae6f912c data/tfmg/recipe/crafting/materials/metal_smokestack.json
|
||||
f685194c17f83a02387a608a93c73676bb580bad data/tfmg/recipe/crafting/materials/mixer_blade.json
|
||||
70916e3db2a264e19b8e1aea4e8e2581fe00b42d data/tfmg/recipe/crafting/materials/modern_light.json
|
||||
67cb408efd2a8c30612c1502d94c9a01a470057c data/tfmg/recipe/crafting/materials/multimeter.json
|
||||
537c1782e33cd3d87c00bb82ae7931ccb22753c4 data/tfmg/recipe/crafting/materials/napalm_bomb.json
|
||||
6abb2c6f7c328843138f5366ee7094cd56c542dd data/tfmg/recipe/crafting/materials/neon_tube.json
|
||||
ca7929c5c97a8398faaaf95f66eb07bc50aecc4b data/tfmg/recipe/crafting/materials/nickel_block_from_compacting.json
|
||||
70bb0a2c65aa87bdbb9ddd0352975078d274f76f data/tfmg/recipe/crafting/materials/nickel_flywheel.json
|
||||
22437ca9008cda24b9c8e87d67ef909b6a353f87 data/tfmg/recipe/crafting/materials/nickel_frame.json
|
||||
df71480bb8b83e3ab70f479d16ad369a98b57674 data/tfmg/recipe/crafting/materials/nickel_ingot_from_compacting.json
|
||||
8edf81be373ba5620a2e39c4b6d70d7c43574bdd data/tfmg/recipe/crafting/materials/nickel_ingot_from_decompacting.json
|
||||
c7434ac1e9a5fc3d45ee5b6d2e642073526a1685 data/tfmg/recipe/crafting/materials/nickel_nugget_from_decompacting.json
|
||||
7638f3541fd022faa7fe55b3555889084acb6747 data/tfmg/recipe/crafting/materials/nickel_truss.json
|
||||
1fae93ad9217c404319fbbd3372a1bf5aa67a615 data/tfmg/recipe/crafting/materials/oil_can.json
|
||||
4ed8c5b277af83f9f0b4354220eafda8a864503f data/tfmg/recipe/crafting/materials/oil_hammer.json
|
||||
79a0ffb9bc675a34d85109b2ca5812f93a84d189 data/tfmg/recipe/crafting/materials/orange_concrete.json
|
||||
10d9904e8ee9210ac18cd67c4f2823b18aa0c79a data/tfmg/recipe/crafting/materials/orange_multimeter.json
|
||||
48e5a6aec7962ba79a86decbae82b174d7ac6f12 data/tfmg/recipe/crafting/materials/orange_rebar_concrete.json
|
||||
c2c9d2c53acdcc582ca075b173f8ca8a4fc8e6d9 data/tfmg/recipe/crafting/materials/pink_concrete.json
|
||||
fd22d270c7e925a6ae7b01e7b87866a9dc898fd2 data/tfmg/recipe/crafting/materials/pink_multimeter.json
|
||||
9c74c0ffc2f71d6c599286b371266d136904c21e data/tfmg/recipe/crafting/materials/pink_rebar_concrete.json
|
||||
a0490b8a3557edbdd87c3e4650313cd8ad1265b2 data/tfmg/recipe/crafting/materials/pipe_bomb.json
|
||||
205a133cc1c17dd7246aa4728b0e542aae42ca15 data/tfmg/recipe/crafting/materials/plastic_block.json
|
||||
1f5aa2449853410d91b81a93eb242990b6a1fc42 data/tfmg/recipe/crafting/materials/plastic_sheet.json
|
||||
bd9ec3c0903940cbe06c140378177b99f1fd9a33 data/tfmg/recipe/crafting/materials/polarizer.json
|
||||
64fa6fe41ff6e6c71fd31f9464b3a4a728a525ac data/tfmg/recipe/crafting/materials/pumpjack_base.json
|
||||
a3cbf7c3a0c1743e032ab03803504870fd067aa7 data/tfmg/recipe/crafting/materials/pumpjack_crank.json
|
||||
b5136197f8cd6d84bf8c11bff9b09f783445f55d data/tfmg/recipe/crafting/materials/pumpjack_hammer.json
|
||||
6f6e0ff50309763bd742744ee89ea66616390c38 data/tfmg/recipe/crafting/materials/pumpjack_hammer_connector.json
|
||||
784b8fd8de0aa669536c4b57d866e48f2c64c940 data/tfmg/recipe/crafting/materials/pumpjack_hammer_head.json
|
||||
71af9f516cecbb600a99fa5fe039affe08b8a376 data/tfmg/recipe/crafting/materials/purple_concrete.json
|
||||
a65c4ddb22a682aedd6422a07b19a2daef486589 data/tfmg/recipe/crafting/materials/purple_multimeter.json
|
||||
599e1f5996961901edc9bbbff89c61b21a1a7c6f data/tfmg/recipe/crafting/materials/purple_rebar_concrete.json
|
||||
bcd45743b40b24b7b2a265ecd63631e101d8410e data/tfmg/recipe/crafting/materials/radial_engine.json
|
||||
f0d28622e3a7c48d6e9293e28449f0bcd5a63216 data/tfmg/recipe/crafting/materials/raw_lead.json
|
||||
6d4407efb37ab8e7cfae1b01ec01f5afd94b9505 data/tfmg/recipe/crafting/materials/raw_lead_block.json
|
||||
76258d776f3074d5141ae2ef995230ac7ce9a83c data/tfmg/recipe/crafting/materials/raw_lithium.json
|
||||
39a74b20017afbe44d6a034be114abbd4abcf688 data/tfmg/recipe/crafting/materials/raw_lithium_block.json
|
||||
e267154237a0370f1ec5e3334d624bf96cb7bcb5 data/tfmg/recipe/crafting/materials/raw_nickel.json
|
||||
43ad9810bff66a3af6eabf436f427b43de7feb8a data/tfmg/recipe/crafting/materials/raw_nickel_block.json
|
||||
14b50cd2dc1f3bab20cd5bce5c785922a5eb8b59 data/tfmg/recipe/crafting/materials/rebar.json
|
||||
2aceadebd06de865ed5f87ca059cf567158bfbd0 data/tfmg/recipe/crafting/materials/rebar_block.json
|
||||
2117d420a3f5a2d2d83b98cc2f0e3b8c02a45316 data/tfmg/recipe/crafting/materials/rebar_floor.json
|
||||
48bacb1e0351e98afa0171514ea883bf9a046f62 data/tfmg/recipe/crafting/materials/rebar_pile.json
|
||||
797023f6b87ed40745d3d57b19717c29af2263fb data/tfmg/recipe/crafting/materials/rebar_pillar.json
|
||||
958dc1e2647b53af576b87e25cf7c61f18921489 data/tfmg/recipe/crafting/materials/rebar_stairs.json
|
||||
982a511f2c976523b22fc80655c8b6ffde1cf8b7 data/tfmg/recipe/crafting/materials/rebar_wall.json
|
||||
75bc2b21d2a6bd24ab0f5840a00dbbce7c7b8285 data/tfmg/recipe/crafting/materials/red_concrete.json
|
||||
8949d0c95ce2bf17913fc442b2f780e7ad8f319d data/tfmg/recipe/crafting/materials/red_multimeter.json
|
||||
077c3c2caeedcfbca8cfb40d4b199fc5bc918d3d data/tfmg/recipe/crafting/materials/red_rebar_concrete.json
|
||||
f5d3c70ee7ec9092b7a522a82575a9e8fc43bc4f data/tfmg/recipe/crafting/materials/regular_engine.json
|
||||
889f7c90ccee8555c6aa44d514ede05ccf269950 data/tfmg/recipe/crafting/materials/rusted_blast_furnace_reinforcement.json
|
||||
0a34a712cabc2de13adaaa2065afa7bd2ae9156b data/tfmg/recipe/crafting/materials/screwdriver.json
|
||||
7d9e4373134de097f74b364471551e3e44a1cab9 data/tfmg/recipe/crafting/materials/screwdriverfrom_brass.json
|
||||
5843df447531f1f232c5bb4f874e1a3e64d2fc2d data/tfmg/recipe/crafting/materials/segmented_display.json
|
||||
aab890f5bbfe58690b55e64411a91c4e9f4fba12 data/tfmg/recipe/crafting/materials/steel_axe.json
|
||||
cce73975d317457949828490a420c52383bc7a44 data/tfmg/recipe/crafting/materials/steel_block_from_compacting.json
|
||||
6b0add358b22efaf8d6ae2ac26e260f6bd7b982b data/tfmg/recipe/crafting/materials/steel_cable_hub.json
|
||||
87920c01cf41a8e5b09ec19a54a48baf5e040a06 data/tfmg/recipe/crafting/materials/steel_casing_cable_hub.json
|
||||
b46ba3dda18d6d7a29be504bd9dbbf7fee8e8281 data/tfmg/recipe/crafting/materials/steel_chemical_vat.json
|
||||
4689e7d7b92724a49ce6dc3781a1b12df277633a data/tfmg/recipe/crafting/materials/steel_cogwheel.json
|
||||
cb47257d448ada80339267b3f60d19ca014ca947 data/tfmg/recipe/crafting/materials/steel_distillation_controller.json
|
||||
1311dd0176040bbeb89d1ffecccf3c53d85c91b9 data/tfmg/recipe/crafting/materials/steel_distillation_output.json
|
||||
49a6d60e27d43c1e5b0e49576d24fbaa25816e8d data/tfmg/recipe/crafting/materials/steel_door.json
|
||||
8b04967a63326d6882bfe2ced45ea95fa06f2a13 data/tfmg/recipe/crafting/materials/steel_fluid_tank.json
|
||||
a5a51de643646781c968d15ac8ea2ab8011b0d68 data/tfmg/recipe/crafting/materials/steel_flywheel.json
|
||||
1da2269c9760de28df984114fe6bd93a76141806 data/tfmg/recipe/crafting/materials/steel_frame.json
|
||||
7dd88acebf3ec59809c58c207bad6c859920bde3 data/tfmg/recipe/crafting/materials/steel_gearbox.json
|
||||
2eea444590ef1ff3ba042c0505afde174c722540 data/tfmg/recipe/crafting/materials/steel_hoe.json
|
||||
a7bc08368aa212d6752b07996c0770b86bda627b data/tfmg/recipe/crafting/materials/steel_ingot_from_compacting.json
|
||||
e9f0a4281209f8b93e6813b878df388b6cf244db data/tfmg/recipe/crafting/materials/steel_ingot_from_decompacting.json
|
||||
4f740d7416ab3402e90a545a4c5f9a9fabbc1fd5 data/tfmg/recipe/crafting/materials/steel_nugget_from_decompacting.json
|
||||
525675a63ef58fb3d18c9c9f057dedbeabc2337d data/tfmg/recipe/crafting/materials/steel_pickaxe.json
|
||||
b476a375c8d50679e97aadfa1b06422555f5e5de data/tfmg/recipe/crafting/materials/steel_shovel.json
|
||||
fd3bbbc39fdc8fdbbba3b25455aaf1750ee60bf4 data/tfmg/recipe/crafting/materials/steel_sword.json
|
||||
766986efb85631549d4bd1c87a086b2402a2245e data/tfmg/recipe/crafting/materials/steel_trapdoor.json
|
||||
628348980a4d38ce6f74f8d3ecfb510b94bb2bc6 data/tfmg/recipe/crafting/materials/steel_truss.json
|
||||
26efee6aa8ae5a87421ce94816ec679fb8b45b97 data/tfmg/recipe/crafting/materials/surface_scanner.json
|
||||
d0a83ed4d0e3ef511fffa88b739a00e8ac3f27e8 data/tfmg/recipe/crafting/materials/thermite_grenade.json
|
||||
51873c54d7b434616fdff4f495c811f6b0db4050 data/tfmg/recipe/crafting/materials/traffic_light.json
|
||||
6a0b9fd463d44658bf018eee535a47fefe4ce80b data/tfmg/recipe/crafting/materials/transformer.json
|
||||
18c5229e5df52f4e26cb018af948b6dcb02170b9 data/tfmg/recipe/crafting/materials/transmission.json
|
||||
a4d5490aef122658c1a10fbdc1fea617ee81ec2c data/tfmg/recipe/crafting/materials/turbine_engine.json
|
||||
a24ee2a009886c77f180d051c64f4cca5c09744f data/tfmg/recipe/crafting/materials/turbo.json
|
||||
f1551819f3bc0560de5222a74df0a89c42cf3895 data/tfmg/recipe/crafting/materials/unfinished_electromagnetic_coil.json
|
||||
7490f3a38c94bcf8205aefd4cfd98876644d8552 data/tfmg/recipe/crafting/materials/unfinished_resistor.json
|
||||
eb01cd90e9cac40c67f444458cfaad7781fc7771 data/tfmg/recipe/crafting/materials/unfinished_resistorfrom_slime.json
|
||||
a12273269fd0687008dfc79bb1ca174b65fdd67f data/tfmg/recipe/crafting/materials/voltage_observer.json
|
||||
4d57095e90fb9544069af4cefbc420ecb56512e4 data/tfmg/recipe/crafting/materials/voltmeter.json
|
||||
b147baaf165d978f7ae4751cbc69358181ba4994 data/tfmg/recipe/crafting/materials/white_concrete.json
|
||||
907938c0001639c6bf6b999778bf1b27acc3eace data/tfmg/recipe/crafting/materials/white_multimeter.json
|
||||
ba5f8bf741f8bd7770d7b1335695521dc3cd7920 data/tfmg/recipe/crafting/materials/white_rebar_concrete.json
|
||||
95c2c4c95731b032f3b85e399772c90dc89cf667 data/tfmg/recipe/crafting/materials/winding_machine.json
|
||||
f94eeb4703090b7df927a8247de04dd17f424ccc data/tfmg/recipe/crafting/materials/yellow_concrete.json
|
||||
34fc462fceb88c36765ab2cd5382480fe3c77938 data/tfmg/recipe/crafting/materials/yellow_multimeter.json
|
||||
ba40667157de76d5d65dc0259b50c91fc3934a7d data/tfmg/recipe/crafting/materials/yellow_rebar_concrete.json
|
||||
a26c1895e13e570f50d289254ba2e9776c6bf66e data/tfmg/recipe/crafting/materials/zinc_frame.json
|
||||
ace7e758ed0c85515233a31a363f1790e12dd0b9 data/tfmg/recipe/crafting/materials/zinc_grenade.json
|
||||
4d115edcb1461d5028f467c81741b078ad11783b data/tfmg/recipe/crafting/materials/zinc_truss.json
|
||||
2a1b94d55a3a9d713cf5dc752e688ea05f4b99d3 data/tfmg/recipe/smelting/fireproof_brick.json
|
||||
76d648e7a227a2461eb2c4a74b42887bad2704b0 data/tfmg/recipe/smelting/lead_ingot.json
|
||||
76d648e7a227a2461eb2c4a74b42887bad2704b0 data/tfmg/recipe/smelting/lead_ingot_blasting.json
|
||||
eceb059d38a4e2a6c555cea2edd88045e5569efc data/tfmg/recipe/smelting/lead_ingot_from_crushed_blasting.json
|
||||
9224b8efd174aff56ac137cf1a174110c20399d3 data/tfmg/recipe/smelting/lithium_ingot.json
|
||||
9224b8efd174aff56ac137cf1a174110c20399d3 data/tfmg/recipe/smelting/lithium_ingot_blasting.json
|
||||
00a2f106e8a399c5f64829312665e4b11383bed7 data/tfmg/recipe/smelting/nickel_ingot.json
|
||||
00a2f106e8a399c5f64829312665e4b11383bed7 data/tfmg/recipe/smelting/nickel_ingot_blasting.json
|
||||
e1e3cf099b19f5796da3e04a144ecf8dc733663e data/tfmg/recipe/smelting/nickel_ingot_from_crushed_blasting.json
|
||||
90472e03445b95da996c802bc449ad55898e8755 data/tfmg/recipe/smelting/unfinished_insulator.json
|
||||
@@ -1,79 +0,0 @@
|
||||
# This is an example mods.toml file. It contains the data relating to the loading mods.
|
||||
# There are several mandatory fields (#mandatory), and many more that are optional (#optional).
|
||||
# The overall format is standard TOML format, v0.5.0.
|
||||
# Note that there are a couple of TOML lists in this file.
|
||||
# Find more information on toml format here: https://github.com/toml-lang/toml
|
||||
# The name of the mod loader type to load - for regular FML @Mod mods it should be javafml
|
||||
modLoader = "javafml" #mandatory
|
||||
# A version range to match for said mod loader - for regular FML @Mod it will be the the FML version. This is currently 47.
|
||||
loaderVersion = "[4,)" #mandatory
|
||||
# The license for you mod. This is mandatory metadata and allows for easier comprehension of your redistributive properties.
|
||||
# Review your options at https://choosealicense.com/. All rights reserved is the default copyright stance, and is thus the default here.
|
||||
license = "MIT"
|
||||
# A URL to refer people to when problems occur with this mod
|
||||
#issueTrackerURL="https://change.me.to.your.issue.tracker.example.invalid/" #optional
|
||||
# A list of mods - how many allowed here is determined by the individual mod loader
|
||||
[[mods]] #mandatory
|
||||
# The modid of the mod
|
||||
modId = "tfmg" #mandatory
|
||||
# The version number of the mod
|
||||
version = "1.0.1" #mandatory
|
||||
# A display name for the mod
|
||||
displayName = "Create: The Factory Must Grow" #mandatory
|
||||
# A URL to query for updates for this mod. See the JSON update specification https://docs.neoforge.net/docs/misc/updatechecker/
|
||||
#updateJSONURL="https://change.me.example.invalid/updates.json" #optional
|
||||
# A URL for the "homepage" for this mod, displayed in the mod UI
|
||||
#displayURL="https://change.me.to.your.mods.homepage.example.invalid/" #optional
|
||||
# A file name (in the root of the mod JAR) containing a logo for display
|
||||
#logoFile="tfmg.png" #optional
|
||||
# A text field displayed in the mod UI
|
||||
#credits="" #optional
|
||||
# A text field displayed in the mod UI
|
||||
authors = "DrMangoTea, Pepa, Luna" #optional
|
||||
|
||||
# The description text for the mod (multi line!) (#mandatory)
|
||||
description = '''Create: The Factory Must Grow brings the age of steel, oil and electricity to the Create mod'''
|
||||
|
||||
# The [[mixins]] block allows you to declare your mixin config to FML so that it gets loaded.
|
||||
[[mixins]]
|
||||
config = "tfmg.mixins.json"
|
||||
|
||||
# The [[accessTransformers]] block allows you to declare where your AT file is.
|
||||
# If this block is omitted, a fallback attempt will be made to load an AT from META-INF/accesstransformer.cfg
|
||||
#[[accessTransformers]]
|
||||
#file="META-INF/accesstransformer.cfg"
|
||||
|
||||
# The coremods config file path is not configurable and is always loaded from META-INF/coremods.json
|
||||
|
||||
# A dependency - use the . to indicate dependency for a specific modid. Dependencies are optional.
|
||||
[[dependencies."tfmg"]] #optional
|
||||
# the modid of the dependency
|
||||
modId = "neoforge" #mandatory
|
||||
# The type of the dependency. Can be one of "required", "optional", "incompatible" or "discouraged" (case insensitive).
|
||||
# 'required' requires the mod to exist, 'optional' does not
|
||||
# 'incompatible' will prevent the game from loading when the mod exists, and 'discouraged' will show a warning
|
||||
type = "required" #mandatory
|
||||
# Optional field describing why the dependency is required or why it is incompatible
|
||||
# reason="..."
|
||||
# The version range of the dependency
|
||||
versionRange = "[21,)" #mandatory
|
||||
# An ordering relationship for the dependency.
|
||||
# BEFORE - This mod is loaded BEFORE the dependency
|
||||
# AFTER - This mod is loaded AFTER the dependency
|
||||
ordering = "NONE"
|
||||
# Side this dependency is applied on - BOTH, CLIENT, or SERVER
|
||||
side = "BOTH"
|
||||
# Here's another dependency
|
||||
[[dependencies."tfmg"]]
|
||||
modId = "minecraft"
|
||||
type = "required"
|
||||
# This version range declares a minimum of the current minecraft version up to but not including the next major version
|
||||
versionRange = "[1.21.1,1.22)"
|
||||
ordering = "NONE"
|
||||
side = "BOTH"
|
||||
|
||||
# Features are specific properties of the game environment, that you may want to declare you require. This example declares
|
||||
# that your mod requires GL version 3.2 or higher. Other features will be added. They are side aware so declaring this won't
|
||||
# stop your mod loading on the server for example.
|
||||
#[features."tfmg"]
|
||||
#openGLVersion="[3.2,)"
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"animation": {
|
||||
"frametime": 2
|
||||
}
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"animation": {
|
||||
"frametime": 2
|
||||
}
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"animation": {
|
||||
"frametime": 2
|
||||
}
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"animation": {
|
||||
"frametime": 2
|
||||
}
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"animation": {
|
||||
"frametime": 2
|
||||
}
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"animation": {
|
||||
"frametime": 2
|
||||
}
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"animation": {
|
||||
"frametime": 2
|
||||
}
|
||||
}
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 214 B |
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"animation": {
|
||||
"frametime": 2
|
||||
}
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"animation": {
|
||||
"frametime": 2
|
||||
}
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"animation": {
|
||||
"frametime": 2
|
||||
}
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"animation": {
|
||||
"frametime": 2
|
||||
}
|
||||
}
|
||||
@@ -1,47 +0,0 @@
|
||||
{
|
||||
"sources": [
|
||||
{"type": "single", "resource": "tfmg:fluid/crude_oil_flow"},
|
||||
{"type": "single", "resource": "tfmg:fluid/crude_oil_still"},
|
||||
{"type": "single", "resource": "tfmg:fluid/air"},
|
||||
{"type": "single", "resource": "tfmg:fluid/butane"},
|
||||
{"type": "single", "resource": "tfmg:fluid/carbon_dioxide"},
|
||||
{"type": "single", "resource": "tfmg:fluid/cooling_fluid_flow"},
|
||||
{"type": "single", "resource": "tfmg:fluid/cooling_fluid_still"},
|
||||
{"type": "single", "resource": "tfmg:fluid/creosote_flow"},
|
||||
{"type": "single", "resource": "tfmg:fluid/creosote_still"},
|
||||
{"type": "single", "resource": "tfmg:fluid/diesel_flow"},
|
||||
{"type": "single", "resource": "tfmg:fluid/diesel_still"},
|
||||
{"type": "single", "resource": "tfmg:fluid/gasoline_flow"},
|
||||
{"type": "single", "resource": "tfmg:fluid/gasoline_still"},
|
||||
{"type": "single", "resource": "tfmg:fluid/ethylene"},
|
||||
{"type": "single", "resource": "tfmg:fluid/propylene"},
|
||||
{"type": "single", "resource": "tfmg:fluid/heavy_oil_flow"},
|
||||
{"type": "single", "resource": "tfmg:fluid/heavy_oil_still"},
|
||||
{"type": "single", "resource": "tfmg:fluid/kerosene_flow"},
|
||||
{"type": "single", "resource": "tfmg:fluid/kerosene_still"},
|
||||
{"type": "single", "resource": "tfmg:fluid/liquid_asphalt_still"},
|
||||
{"type": "single", "resource": "tfmg:fluid/liquid_asphalt_flow"},
|
||||
{"type": "single", "resource": "tfmg:fluid/liquid_concrete_still"},
|
||||
{"type": "single", "resource": "tfmg:fluid/liquid_concrete_flow"},
|
||||
{"type": "single", "resource": "tfmg:fluid/molten_plastic_flow"},
|
||||
{"type": "single", "resource": "tfmg:fluid/molten_plastic_still"},
|
||||
{"type": "single", "resource": "tfmg:fluid/lubrication_oil_flow"},
|
||||
{"type": "single", "resource": "tfmg:fluid/lubrication_oil_still"},
|
||||
{"type": "single", "resource": "tfmg:fluid/molten_slag_flow"},
|
||||
{"type": "single", "resource": "tfmg:fluid/molten_slag_still"},
|
||||
{"type": "single", "resource": "tfmg:fluid/molten_steel_flow"},
|
||||
{"type": "single", "resource": "tfmg:fluid/molten_steel_still"},
|
||||
{"type": "single", "resource": "tfmg:fluid/napalm_flow"},
|
||||
{"type": "single", "resource": "tfmg:fluid/napalm_still"},
|
||||
{"type": "single", "resource": "tfmg:fluid/liquid_silicon_flow"},
|
||||
{"type": "single", "resource": "tfmg:fluid/liquid_silicon_still"},
|
||||
{"type": "single", "resource": "tfmg:fluid/naphtha_flow"},
|
||||
{"type": "single", "resource": "tfmg:fluid/naphtha_still"},
|
||||
{"type": "single", "resource": "tfmg:fluid/sulfuric_acid_flow"},
|
||||
{"type": "single", "resource": "tfmg:fluid/sulfuric_acid_still"},
|
||||
{"type": "single", "resource": "tfmg:fluid/propane"},
|
||||
{"type": "single", "resource": "tfmg:fluid/lpg"},
|
||||
{"type": "single", "resource": "tfmg:fluid/neon"},
|
||||
{"type": "single", "resource": "tfmg:fluid/gas_texture"}
|
||||
]
|
||||
}
|
||||
@@ -1,100 +0,0 @@
|
||||
{
|
||||
"multipart": [
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/aluminum_post_ends"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/aluminum_post"
|
||||
},
|
||||
"when": {
|
||||
"east": "false",
|
||||
"north": "false",
|
||||
"south": "false",
|
||||
"west": "false"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/aluminum_cap"
|
||||
},
|
||||
"when": {
|
||||
"east": "false",
|
||||
"north": "true",
|
||||
"south": "false",
|
||||
"west": "false"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/aluminum_cap",
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "true",
|
||||
"north": "false",
|
||||
"south": "false",
|
||||
"west": "false"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/aluminum_cap_alt"
|
||||
},
|
||||
"when": {
|
||||
"east": "false",
|
||||
"north": "false",
|
||||
"south": "true",
|
||||
"west": "false"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/aluminum_cap_alt",
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "false",
|
||||
"north": "false",
|
||||
"south": "false",
|
||||
"west": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/aluminum_side"
|
||||
},
|
||||
"when": {
|
||||
"north": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/aluminum_side",
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/aluminum_side_alt"
|
||||
},
|
||||
"when": {
|
||||
"south": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/aluminum_side_alt",
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"west": "true"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,836 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=down,level=0,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=0,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=1,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=1,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=10,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=10,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=11,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=11,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=12,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=12,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=13,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=13,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=14,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=14,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=15,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=15,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=2,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=2,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=3,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=3,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=4,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=4,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=5,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=5,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=6,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=6,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=7,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=7,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=8,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=8,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=9,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=9,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,level=0,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=0,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=1,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=1,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=10,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=10,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=11,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=11,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=12,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=12,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=13,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=13,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=14,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=14,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=15,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=15,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=2,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=2,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=3,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=3,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=4,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=4,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=5,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=5,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=6,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=6,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=7,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=7,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=8,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=8,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=9,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=9,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=north,level=0,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=0,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=1,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=1,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=10,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=10,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=11,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=11,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=12,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=12,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=13,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=13,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=14,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=14,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=15,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=15,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=2,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=2,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=3,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=3,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=4,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=4,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=5,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=5,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=6,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=6,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=7,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=7,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=8,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=8,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=9,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=9,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90
|
||||
},
|
||||
"facing=south,level=0,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=0,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=1,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=1,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=10,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=10,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=11,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=11,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=12,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=12,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=13,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=13,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=14,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=14,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=15,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=15,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=2,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=2,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=3,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=3,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=4,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=4,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=5,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=5,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=6,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=6,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=7,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=7,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=8,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=8,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=9,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=9,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=up,level=0,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block"
|
||||
},
|
||||
"facing=up,level=0,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block"
|
||||
},
|
||||
"facing=up,level=1,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered"
|
||||
},
|
||||
"facing=up,level=1,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered"
|
||||
},
|
||||
"facing=up,level=10,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered"
|
||||
},
|
||||
"facing=up,level=10,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered"
|
||||
},
|
||||
"facing=up,level=11,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered"
|
||||
},
|
||||
"facing=up,level=11,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered"
|
||||
},
|
||||
"facing=up,level=12,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered"
|
||||
},
|
||||
"facing=up,level=12,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered"
|
||||
},
|
||||
"facing=up,level=13,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered"
|
||||
},
|
||||
"facing=up,level=13,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered"
|
||||
},
|
||||
"facing=up,level=14,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered"
|
||||
},
|
||||
"facing=up,level=14,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered"
|
||||
},
|
||||
"facing=up,level=15,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered"
|
||||
},
|
||||
"facing=up,level=15,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered"
|
||||
},
|
||||
"facing=up,level=2,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered"
|
||||
},
|
||||
"facing=up,level=2,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered"
|
||||
},
|
||||
"facing=up,level=3,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered"
|
||||
},
|
||||
"facing=up,level=3,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered"
|
||||
},
|
||||
"facing=up,level=4,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered"
|
||||
},
|
||||
"facing=up,level=4,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered"
|
||||
},
|
||||
"facing=up,level=5,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered"
|
||||
},
|
||||
"facing=up,level=5,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered"
|
||||
},
|
||||
"facing=up,level=6,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered"
|
||||
},
|
||||
"facing=up,level=6,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered"
|
||||
},
|
||||
"facing=up,level=7,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered"
|
||||
},
|
||||
"facing=up,level=7,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered"
|
||||
},
|
||||
"facing=up,level=8,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered"
|
||||
},
|
||||
"facing=up,level=8,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered"
|
||||
},
|
||||
"facing=up,level=9,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered"
|
||||
},
|
||||
"facing=up,level=9,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered"
|
||||
},
|
||||
"facing=west,level=0,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=0,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=1,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=1,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=10,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=10,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=11,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=11,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=12,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=12,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=13,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=13,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=14,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=14,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=15,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=15,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=2,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=2,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=3,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=3,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=4,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=4,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=5,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=5,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=6,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=6,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=7,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=7,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=8,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=8,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=9,waterlogged=false": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=9,waterlogged=true": {
|
||||
"model": "tfmg:block/aluminum_lamp/block_powered",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,17 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=x": {
|
||||
"model": "tfmg:block/aluminum_truss",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=y": {
|
||||
"model": "tfmg:block/aluminum_truss"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "tfmg:block/aluminum_truss",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "tfmg:block/asphalt"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,209 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "tfmg:block/asphalt_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "tfmg:block/asphalt_stairs_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "tfmg:block/asphalt_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "tfmg:block/asphalt_stairs_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "tfmg:block/asphalt_stairs"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "tfmg:block/asphalt_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "tfmg:block/asphalt_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "tfmg:block/asphalt_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "tfmg:block/asphalt_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "tfmg:block/asphalt_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "tfmg:block/asphalt_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "tfmg:block/asphalt_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "tfmg:block/asphalt_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "tfmg:block/asphalt_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "tfmg:block/asphalt_stairs",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "tfmg:block/asphalt_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "tfmg:block/asphalt_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "tfmg:block/asphalt_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "tfmg:block/asphalt_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "tfmg:block/asphalt_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "tfmg:block/asphalt_stairs_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "tfmg:block/asphalt_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "tfmg:block/asphalt_stairs_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "tfmg:block/asphalt_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "tfmg:block/asphalt_stairs",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "tfmg:block/asphalt_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "tfmg:block/asphalt_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "tfmg:block/asphalt_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "tfmg:block/asphalt_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "tfmg:block/asphalt_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "tfmg:block/asphalt_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "tfmg:block/asphalt_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "tfmg:block/asphalt_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "tfmg:block/asphalt_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "tfmg:block/asphalt_stairs",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "tfmg:block/asphalt_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "tfmg:block/asphalt_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "tfmg:block/asphalt_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "tfmg:block/asphalt_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "tfmg:block/asphalt_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,90 +0,0 @@
|
||||
{
|
||||
"multipart": [
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/asphalt_wall_post"
|
||||
},
|
||||
"when": {
|
||||
"up": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/asphalt_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/asphalt_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/asphalt_wall_side",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/asphalt_wall_side_tall",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/asphalt_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/asphalt_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/asphalt_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/asphalt_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "tall"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=x": {
|
||||
"model": "tfmg:block/bauxite_pillar_horizontal",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=y": {
|
||||
"model": "tfmg:block/bauxite_pillar"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "tfmg:block/bauxite_pillar_horizontal",
|
||||
"x": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,209 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "tfmg:block/black_concrete_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "tfmg:block/black_concrete_stairs_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "tfmg:block/black_concrete_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "tfmg:block/black_concrete_stairs_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "tfmg:block/black_concrete_stairs"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "tfmg:block/black_concrete_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "tfmg:block/black_concrete_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "tfmg:block/black_concrete_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "tfmg:block/black_concrete_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "tfmg:block/black_concrete_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "tfmg:block/black_concrete_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "tfmg:block/black_concrete_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "tfmg:block/black_concrete_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "tfmg:block/black_concrete_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "tfmg:block/black_concrete_stairs",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "tfmg:block/black_concrete_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "tfmg:block/black_concrete_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "tfmg:block/black_concrete_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "tfmg:block/black_concrete_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "tfmg:block/black_concrete_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "tfmg:block/black_concrete_stairs_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "tfmg:block/black_concrete_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "tfmg:block/black_concrete_stairs_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "tfmg:block/black_concrete_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "tfmg:block/black_concrete_stairs",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "tfmg:block/black_concrete_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "tfmg:block/black_concrete_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "tfmg:block/black_concrete_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "tfmg:block/black_concrete_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "tfmg:block/black_concrete_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "tfmg:block/black_concrete_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "tfmg:block/black_concrete_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "tfmg:block/black_concrete_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "tfmg:block/black_concrete_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "tfmg:block/black_concrete_stairs",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "tfmg:block/black_concrete_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "tfmg:block/black_concrete_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "tfmg:block/black_concrete_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "tfmg:block/black_concrete_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "tfmg:block/black_concrete_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,90 +0,0 @@
|
||||
{
|
||||
"multipart": [
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/black_concrete_wall_post"
|
||||
},
|
||||
"when": {
|
||||
"up": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/black_concrete_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/black_concrete_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/black_concrete_wall_side",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/black_concrete_wall_side_tall",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/black_concrete_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/black_concrete_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/black_concrete_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/black_concrete_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "tall"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "tfmg:block/blast_furnace_reinforcement"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,19 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=east": {
|
||||
"model": "tfmg:block/blue_caution_block",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "tfmg:block/blue_caution_block"
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "tfmg:block/blue_caution_block",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "tfmg:block/blue_caution_block",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,90 +0,0 @@
|
||||
{
|
||||
"multipart": [
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/blue_concrete_wall_post"
|
||||
},
|
||||
"when": {
|
||||
"up": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/blue_concrete_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/blue_concrete_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/blue_concrete_wall_side",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/blue_concrete_wall_side_tall",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/blue_concrete_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/blue_concrete_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/blue_concrete_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/blue_concrete_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "tall"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,110 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"face=ceiling,facing=east,waterlogged=false": {
|
||||
"model": "tfmg:block/brass_smart_fluid_pipe/block",
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"face=ceiling,facing=east,waterlogged=true": {
|
||||
"model": "tfmg:block/brass_smart_fluid_pipe/block",
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"face=ceiling,facing=north,waterlogged=false": {
|
||||
"model": "tfmg:block/brass_smart_fluid_pipe/block",
|
||||
"x": 180
|
||||
},
|
||||
"face=ceiling,facing=north,waterlogged=true": {
|
||||
"model": "tfmg:block/brass_smart_fluid_pipe/block",
|
||||
"x": 180
|
||||
},
|
||||
"face=ceiling,facing=south,waterlogged=false": {
|
||||
"model": "tfmg:block/brass_smart_fluid_pipe/block",
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"face=ceiling,facing=south,waterlogged=true": {
|
||||
"model": "tfmg:block/brass_smart_fluid_pipe/block",
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"face=ceiling,facing=west,waterlogged=false": {
|
||||
"model": "tfmg:block/brass_smart_fluid_pipe/block",
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"face=ceiling,facing=west,waterlogged=true": {
|
||||
"model": "tfmg:block/brass_smart_fluid_pipe/block",
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"face=floor,facing=east,waterlogged=false": {
|
||||
"model": "tfmg:block/brass_smart_fluid_pipe/block",
|
||||
"y": 270
|
||||
},
|
||||
"face=floor,facing=east,waterlogged=true": {
|
||||
"model": "tfmg:block/brass_smart_fluid_pipe/block",
|
||||
"y": 270
|
||||
},
|
||||
"face=floor,facing=north,waterlogged=false": {
|
||||
"model": "tfmg:block/brass_smart_fluid_pipe/block",
|
||||
"y": 180
|
||||
},
|
||||
"face=floor,facing=north,waterlogged=true": {
|
||||
"model": "tfmg:block/brass_smart_fluid_pipe/block",
|
||||
"y": 180
|
||||
},
|
||||
"face=floor,facing=south,waterlogged=false": {
|
||||
"model": "tfmg:block/brass_smart_fluid_pipe/block"
|
||||
},
|
||||
"face=floor,facing=south,waterlogged=true": {
|
||||
"model": "tfmg:block/brass_smart_fluid_pipe/block"
|
||||
},
|
||||
"face=floor,facing=west,waterlogged=false": {
|
||||
"model": "tfmg:block/brass_smart_fluid_pipe/block",
|
||||
"y": 90
|
||||
},
|
||||
"face=floor,facing=west,waterlogged=true": {
|
||||
"model": "tfmg:block/brass_smart_fluid_pipe/block",
|
||||
"y": 90
|
||||
},
|
||||
"face=wall,facing=east,waterlogged=false": {
|
||||
"model": "tfmg:block/brass_smart_fluid_pipe/block",
|
||||
"x": 270,
|
||||
"y": 270
|
||||
},
|
||||
"face=wall,facing=east,waterlogged=true": {
|
||||
"model": "tfmg:block/brass_smart_fluid_pipe/block",
|
||||
"x": 270,
|
||||
"y": 270
|
||||
},
|
||||
"face=wall,facing=north,waterlogged=false": {
|
||||
"model": "tfmg:block/brass_smart_fluid_pipe/block",
|
||||
"x": 270,
|
||||
"y": 180
|
||||
},
|
||||
"face=wall,facing=north,waterlogged=true": {
|
||||
"model": "tfmg:block/brass_smart_fluid_pipe/block",
|
||||
"x": 270,
|
||||
"y": 180
|
||||
},
|
||||
"face=wall,facing=south,waterlogged=false": {
|
||||
"model": "tfmg:block/brass_smart_fluid_pipe/block",
|
||||
"x": 270
|
||||
},
|
||||
"face=wall,facing=south,waterlogged=true": {
|
||||
"model": "tfmg:block/brass_smart_fluid_pipe/block",
|
||||
"x": 270
|
||||
},
|
||||
"face=wall,facing=west,waterlogged=false": {
|
||||
"model": "tfmg:block/brass_smart_fluid_pipe/block",
|
||||
"x": 270,
|
||||
"y": 90
|
||||
},
|
||||
"face=wall,facing=west,waterlogged=true": {
|
||||
"model": "tfmg:block/brass_smart_fluid_pipe/block",
|
||||
"x": 270,
|
||||
"y": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"top=false": {
|
||||
"model": "tfmg:block/brick_smokestack/block"
|
||||
},
|
||||
"top=true": {
|
||||
"model": "tfmg:block/brick_smokestack/block_top"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,19 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=east": {
|
||||
"model": "tfmg:block/brown_caution_block",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "tfmg:block/brown_caution_block"
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "tfmg:block/brown_caution_block",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "tfmg:block/brown_caution_block",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,90 +0,0 @@
|
||||
{
|
||||
"multipart": [
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/brown_concrete_wall_post"
|
||||
},
|
||||
"when": {
|
||||
"up": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/brown_concrete_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/brown_concrete_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/brown_concrete_wall_side",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/brown_concrete_wall_side_tall",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/brown_concrete_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/brown_concrete_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/brown_concrete_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/brown_concrete_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "tall"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"type=bottom": {
|
||||
"model": "tfmg:block/brown_concrete_bottom"
|
||||
},
|
||||
"type=double": {
|
||||
"model": "tfmg:block/brown_concrete"
|
||||
},
|
||||
"type=top": {
|
||||
"model": "tfmg:block/brown_concrete_top"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,56 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"extension=false,facing=down": {
|
||||
"model": "tfmg:block/cable_connector/block",
|
||||
"x": 180
|
||||
},
|
||||
"extension=false,facing=east": {
|
||||
"model": "tfmg:block/cable_connector/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"extension=false,facing=north": {
|
||||
"model": "tfmg:block/cable_connector/block",
|
||||
"x": 90
|
||||
},
|
||||
"extension=false,facing=south": {
|
||||
"model": "tfmg:block/cable_connector/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"extension=false,facing=up": {
|
||||
"model": "tfmg:block/cable_connector/block"
|
||||
},
|
||||
"extension=false,facing=west": {
|
||||
"model": "tfmg:block/cable_connector/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"extension=true,facing=down": {
|
||||
"model": "tfmg:block/cable_connector/block_extension",
|
||||
"x": 180
|
||||
},
|
||||
"extension=true,facing=east": {
|
||||
"model": "tfmg:block/cable_connector/block_extension",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"extension=true,facing=north": {
|
||||
"model": "tfmg:block/cable_connector/block_extension",
|
||||
"x": 90
|
||||
},
|
||||
"extension=true,facing=south": {
|
||||
"model": "tfmg:block/cable_connector/block_extension",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"extension=true,facing=up": {
|
||||
"model": "tfmg:block/cable_connector/block_extension"
|
||||
},
|
||||
"extension=true,facing=west": {
|
||||
"model": "tfmg:block/cable_connector/block_extension",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,17 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=x": {
|
||||
"model": "tfmg:block/cast_iron_flywheel/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=y": {
|
||||
"model": "tfmg:block/cast_iron_flywheel/block"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "tfmg:block/cast_iron_flywheel/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,17 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=x": {
|
||||
"model": "tfmg:block/cast_iron_truss",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=y": {
|
||||
"model": "tfmg:block/cast_iron_truss"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "tfmg:block/cast_iron_truss",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "tfmg:block/coal_coke_block"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,64 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"controller_type=bottom_on,facing=east": {
|
||||
"model": "tfmg:block/coke_oven/block_bottom_on",
|
||||
"y": 270
|
||||
},
|
||||
"controller_type=bottom_on,facing=north": {
|
||||
"model": "tfmg:block/coke_oven/block_bottom_on",
|
||||
"y": 180
|
||||
},
|
||||
"controller_type=bottom_on,facing=south": {
|
||||
"model": "tfmg:block/coke_oven/block_bottom_on"
|
||||
},
|
||||
"controller_type=bottom_on,facing=west": {
|
||||
"model": "tfmg:block/coke_oven/block_bottom_on",
|
||||
"y": 90
|
||||
},
|
||||
"controller_type=casual,facing=east": {
|
||||
"model": "tfmg:block/coke_oven/block_casual",
|
||||
"y": 270
|
||||
},
|
||||
"controller_type=casual,facing=north": {
|
||||
"model": "tfmg:block/coke_oven/block_casual",
|
||||
"y": 180
|
||||
},
|
||||
"controller_type=casual,facing=south": {
|
||||
"model": "tfmg:block/coke_oven/block_casual"
|
||||
},
|
||||
"controller_type=casual,facing=west": {
|
||||
"model": "tfmg:block/coke_oven/block_casual",
|
||||
"y": 90
|
||||
},
|
||||
"controller_type=middle_on,facing=east": {
|
||||
"model": "tfmg:block/coke_oven/block_middle_on",
|
||||
"y": 270
|
||||
},
|
||||
"controller_type=middle_on,facing=north": {
|
||||
"model": "tfmg:block/coke_oven/block_middle_on",
|
||||
"y": 180
|
||||
},
|
||||
"controller_type=middle_on,facing=south": {
|
||||
"model": "tfmg:block/coke_oven/block_middle_on"
|
||||
},
|
||||
"controller_type=middle_on,facing=west": {
|
||||
"model": "tfmg:block/coke_oven/block_middle_on",
|
||||
"y": 90
|
||||
},
|
||||
"controller_type=top_on,facing=east": {
|
||||
"model": "tfmg:block/coke_oven/block_top_on",
|
||||
"y": 270
|
||||
},
|
||||
"controller_type=top_on,facing=north": {
|
||||
"model": "tfmg:block/coke_oven/block_top_on",
|
||||
"y": 180
|
||||
},
|
||||
"controller_type=top_on,facing=south": {
|
||||
"model": "tfmg:block/coke_oven/block_top_on"
|
||||
},
|
||||
"controller_type=top_on,facing=west": {
|
||||
"model": "tfmg:block/coke_oven/block_top_on",
|
||||
"y": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,30 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=x,concretelogged=false": {
|
||||
"model": "tfmg:block/concrete_encased_electric_post",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=x,concretelogged=true": {
|
||||
"model": "tfmg:block/concrete_encased_electric_post",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=y,concretelogged=false": {
|
||||
"model": "tfmg:block/concrete_encased_electric_post"
|
||||
},
|
||||
"axis=y,concretelogged=true": {
|
||||
"model": "tfmg:block/concrete_encased_electric_post"
|
||||
},
|
||||
"axis=z,concretelogged=false": {
|
||||
"model": "tfmg:block/concrete_encased_electric_post",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=z,concretelogged=true": {
|
||||
"model": "tfmg:block/concrete_encased_electric_post",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "tfmg:block/constantan_block"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "tfmg:block/cooling_fluid"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "tfmg:block/copper_cable_hub"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,110 +0,0 @@
|
||||
{
|
||||
"multipart": [
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/copper_encased_cast_iron_pipe/block_flat",
|
||||
"x": -90
|
||||
},
|
||||
"when": {
|
||||
"down": "false"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/copper_encased_cast_iron_pipe/block_flat",
|
||||
"x": 90
|
||||
},
|
||||
"when": {
|
||||
"up": "false"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/copper_encased_cast_iron_pipe/block_flat",
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"north": "false"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/copper_encased_cast_iron_pipe/block_flat"
|
||||
},
|
||||
"when": {
|
||||
"south": "false"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/copper_encased_cast_iron_pipe/block_flat",
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"west": "false"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/copper_encased_cast_iron_pipe/block_flat",
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"east": "false"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/copper_encased_cast_iron_pipe/block_open",
|
||||
"x": -90
|
||||
},
|
||||
"when": {
|
||||
"down": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/copper_encased_cast_iron_pipe/block_open",
|
||||
"x": 90
|
||||
},
|
||||
"when": {
|
||||
"up": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/copper_encased_cast_iron_pipe/block_open",
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"north": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/copper_encased_cast_iron_pipe/block_open"
|
||||
},
|
||||
"when": {
|
||||
"south": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/copper_encased_cast_iron_pipe/block_open",
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"west": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/copper_encased_cast_iron_pipe/block_open",
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"east": "true"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,110 +0,0 @@
|
||||
{
|
||||
"multipart": [
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/copper_encased_plastic_pipe/block_flat",
|
||||
"x": -90
|
||||
},
|
||||
"when": {
|
||||
"down": "false"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/copper_encased_plastic_pipe/block_flat",
|
||||
"x": 90
|
||||
},
|
||||
"when": {
|
||||
"up": "false"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/copper_encased_plastic_pipe/block_flat",
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"north": "false"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/copper_encased_plastic_pipe/block_flat"
|
||||
},
|
||||
"when": {
|
||||
"south": "false"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/copper_encased_plastic_pipe/block_flat",
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"west": "false"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/copper_encased_plastic_pipe/block_flat",
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"east": "false"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/copper_encased_plastic_pipe/block_open",
|
||||
"x": -90
|
||||
},
|
||||
"when": {
|
||||
"down": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/copper_encased_plastic_pipe/block_open",
|
||||
"x": 90
|
||||
},
|
||||
"when": {
|
||||
"up": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/copper_encased_plastic_pipe/block_open",
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"north": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/copper_encased_plastic_pipe/block_open"
|
||||
},
|
||||
"when": {
|
||||
"south": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/copper_encased_plastic_pipe/block_open",
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"west": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/copper_encased_plastic_pipe/block_open",
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"east": "true"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "minecraft:block/air"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "tfmg:block/creative_generator"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "tfmg:block/creosote"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,209 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "tfmg:block/cut_bauxite_brick_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "tfmg:block/cut_galena"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"type=bottom": {
|
||||
"model": "tfmg:block/cut_galena_brick_slab"
|
||||
},
|
||||
"type=double": {
|
||||
"model": "tfmg:block/cut_galena_bricks"
|
||||
},
|
||||
"type=top": {
|
||||
"model": "tfmg:block/cut_galena_brick_slab_top"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,90 +0,0 @@
|
||||
{
|
||||
"multipart": [
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/cut_galena_bricks_wall_post"
|
||||
},
|
||||
"when": {
|
||||
"up": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/cut_galena_bricks_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/cut_galena_bricks_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/cut_galena_bricks_wall_side",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/cut_galena_bricks_wall_side_tall",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/cut_galena_bricks_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/cut_galena_bricks_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/cut_galena_bricks_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/cut_galena_bricks_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "tall"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"type=bottom": {
|
||||
"model": "tfmg:block/cut_galena_slab"
|
||||
},
|
||||
"type=double": {
|
||||
"model": "tfmg:block/cut_galena"
|
||||
},
|
||||
"type=top": {
|
||||
"model": "tfmg:block/cut_galena_slab_top"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,90 +0,0 @@
|
||||
{
|
||||
"multipart": [
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/cut_galena_wall_post"
|
||||
},
|
||||
"when": {
|
||||
"up": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/cut_galena_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/cut_galena_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/cut_galena_wall_side",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/cut_galena_wall_side_tall",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/cut_galena_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/cut_galena_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/cut_galena_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/cut_galena_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "tall"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,19 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=east": {
|
||||
"model": "tfmg:block/cyan_caution_block",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "tfmg:block/cyan_caution_block"
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "tfmg:block/cyan_caution_block",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "tfmg:block/cyan_caution_block",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "tfmg:block/cyan_concrete"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,209 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "tfmg:block/cyan_concrete_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"type=bottom": {
|
||||
"model": "tfmg:block/cyan_concrete_bottom"
|
||||
},
|
||||
"type=double": {
|
||||
"model": "tfmg:block/cyan_concrete"
|
||||
},
|
||||
"type=top": {
|
||||
"model": "tfmg:block/cyan_concrete_top"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,26 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=down": {
|
||||
"model": "tfmg:block/electric_motor/block_vertical",
|
||||
"x": 180
|
||||
},
|
||||
"facing=east": {
|
||||
"model": "tfmg:block/electric_motor/block",
|
||||
"y": 270
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "tfmg:block/electric_motor/block",
|
||||
"y": 180
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "tfmg:block/electric_motor/block"
|
||||
},
|
||||
"facing=up": {
|
||||
"model": "tfmg:block/electric_motor/block_vertical"
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "tfmg:block/electric_motor/block",
|
||||
"y": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "tfmg:block/electrode_holder/block"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,19 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=east": {
|
||||
"model": "tfmg:block/engine_gearbox/block",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "tfmg:block/engine_gearbox/block"
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "tfmg:block/engine_gearbox/block",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "tfmg:block/engine_gearbox/block",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "tfmg:block/fireclay"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,90 +0,0 @@
|
||||
{
|
||||
"multipart": [
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/fireproof_brick_reinforcement_wall_post"
|
||||
},
|
||||
"when": {
|
||||
"up": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/fireproof_brick_reinforcement_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/fireproof_brick_reinforcement_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/fireproof_brick_reinforcement_wall_side",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/fireproof_brick_reinforcement_wall_side_tall",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/fireproof_brick_reinforcement_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/fireproof_brick_reinforcement_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/fireproof_brick_reinforcement_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/fireproof_brick_reinforcement_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "tall"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,76 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"bottom=false,shape=plain,top=false": {
|
||||
"model": "tfmg:block/fireproof_chemical_vat/block_middle"
|
||||
},
|
||||
"bottom=false,shape=plain,top=true": {
|
||||
"model": "tfmg:block/fireproof_chemical_vat/block_top"
|
||||
},
|
||||
"bottom=false,shape=window,top=false": {
|
||||
"model": "tfmg:block/fireproof_chemical_vat/block_middle_window"
|
||||
},
|
||||
"bottom=false,shape=window,top=true": {
|
||||
"model": "tfmg:block/fireproof_chemical_vat/block_top_window"
|
||||
},
|
||||
"bottom=false,shape=window_ne,top=false": {
|
||||
"model": "tfmg:block/fireproof_chemical_vat/block_middle_window_ne"
|
||||
},
|
||||
"bottom=false,shape=window_ne,top=true": {
|
||||
"model": "tfmg:block/fireproof_chemical_vat/block_top_window_ne"
|
||||
},
|
||||
"bottom=false,shape=window_nw,top=false": {
|
||||
"model": "tfmg:block/fireproof_chemical_vat/block_middle_window_nw"
|
||||
},
|
||||
"bottom=false,shape=window_nw,top=true": {
|
||||
"model": "tfmg:block/fireproof_chemical_vat/block_top_window_nw"
|
||||
},
|
||||
"bottom=false,shape=window_se,top=false": {
|
||||
"model": "tfmg:block/fireproof_chemical_vat/block_middle_window_se"
|
||||
},
|
||||
"bottom=false,shape=window_se,top=true": {
|
||||
"model": "tfmg:block/fireproof_chemical_vat/block_top_window_se"
|
||||
},
|
||||
"bottom=false,shape=window_sw,top=false": {
|
||||
"model": "tfmg:block/fireproof_chemical_vat/block_middle_window_sw"
|
||||
},
|
||||
"bottom=false,shape=window_sw,top=true": {
|
||||
"model": "tfmg:block/fireproof_chemical_vat/block_top_window_sw"
|
||||
},
|
||||
"bottom=true,shape=plain,top=false": {
|
||||
"model": "tfmg:block/fireproof_chemical_vat/block_bottom"
|
||||
},
|
||||
"bottom=true,shape=plain,top=true": {
|
||||
"model": "tfmg:block/fireproof_chemical_vat/block_single"
|
||||
},
|
||||
"bottom=true,shape=window,top=false": {
|
||||
"model": "tfmg:block/fireproof_chemical_vat/block_bottom_window"
|
||||
},
|
||||
"bottom=true,shape=window,top=true": {
|
||||
"model": "tfmg:block/fireproof_chemical_vat/block_single_window"
|
||||
},
|
||||
"bottom=true,shape=window_ne,top=false": {
|
||||
"model": "tfmg:block/fireproof_chemical_vat/block_bottom_window_ne"
|
||||
},
|
||||
"bottom=true,shape=window_ne,top=true": {
|
||||
"model": "tfmg:block/fireproof_chemical_vat/block_single_window_ne"
|
||||
},
|
||||
"bottom=true,shape=window_nw,top=false": {
|
||||
"model": "tfmg:block/fireproof_chemical_vat/block_bottom_window_nw"
|
||||
},
|
||||
"bottom=true,shape=window_nw,top=true": {
|
||||
"model": "tfmg:block/fireproof_chemical_vat/block_single_window_nw"
|
||||
},
|
||||
"bottom=true,shape=window_se,top=false": {
|
||||
"model": "tfmg:block/fireproof_chemical_vat/block_bottom_window_se"
|
||||
},
|
||||
"bottom=true,shape=window_se,top=true": {
|
||||
"model": "tfmg:block/fireproof_chemical_vat/block_single_window_se"
|
||||
},
|
||||
"bottom=true,shape=window_sw,top=false": {
|
||||
"model": "tfmg:block/fireproof_chemical_vat/block_bottom_window_sw"
|
||||
},
|
||||
"bottom=true,shape=window_sw,top=true": {
|
||||
"model": "tfmg:block/fireproof_chemical_vat/block_single_window_sw"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=x": {
|
||||
"model": "tfmg:block/galena_pillar_horizontal",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=y": {
|
||||
"model": "tfmg:block/galena_pillar"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "tfmg:block/galena_pillar_horizontal",
|
||||
"x": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,28 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"alt=false,axis=x": {
|
||||
"model": "tfmg:block/brass_pipe/window",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"alt=false,axis=y": {
|
||||
"model": "tfmg:block/brass_pipe/window"
|
||||
},
|
||||
"alt=false,axis=z": {
|
||||
"model": "tfmg:block/brass_pipe/window",
|
||||
"x": 90
|
||||
},
|
||||
"alt=true,axis=x": {
|
||||
"model": "tfmg:block/brass_pipe/window",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"alt=true,axis=y": {
|
||||
"model": "tfmg:block/brass_pipe/window"
|
||||
},
|
||||
"alt=true,axis=z": {
|
||||
"model": "tfmg:block/brass_pipe/window",
|
||||
"x": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,56 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"extension=false,facing=down": {
|
||||
"model": "tfmg:block/glass_cable_insulator/block",
|
||||
"x": 180
|
||||
},
|
||||
"extension=false,facing=east": {
|
||||
"model": "tfmg:block/glass_cable_insulator/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"extension=false,facing=north": {
|
||||
"model": "tfmg:block/glass_cable_insulator/block",
|
||||
"x": 90
|
||||
},
|
||||
"extension=false,facing=south": {
|
||||
"model": "tfmg:block/glass_cable_insulator/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"extension=false,facing=up": {
|
||||
"model": "tfmg:block/glass_cable_insulator/block"
|
||||
},
|
||||
"extension=false,facing=west": {
|
||||
"model": "tfmg:block/glass_cable_insulator/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"extension=true,facing=down": {
|
||||
"model": "tfmg:block/glass_cable_insulator/block_extension",
|
||||
"x": 180
|
||||
},
|
||||
"extension=true,facing=east": {
|
||||
"model": "tfmg:block/glass_cable_insulator/block_extension",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"extension=true,facing=north": {
|
||||
"model": "tfmg:block/glass_cable_insulator/block_extension",
|
||||
"x": 90
|
||||
},
|
||||
"extension=true,facing=south": {
|
||||
"model": "tfmg:block/glass_cable_insulator/block_extension",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"extension=true,facing=up": {
|
||||
"model": "tfmg:block/glass_cable_insulator/block_extension"
|
||||
},
|
||||
"extension=true,facing=west": {
|
||||
"model": "tfmg:block/glass_cable_insulator/block_extension",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "tfmg:block/gray_concrete"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,90 +0,0 @@
|
||||
{
|
||||
"multipart": [
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/gray_concrete_wall_post"
|
||||
},
|
||||
"when": {
|
||||
"up": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/gray_concrete_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/gray_concrete_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/gray_concrete_wall_side",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/gray_concrete_wall_side_tall",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/gray_concrete_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/gray_concrete_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/gray_concrete_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/gray_concrete_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "tall"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"type=bottom": {
|
||||
"model": "tfmg:block/gray_concrete_bottom"
|
||||
},
|
||||
"type=double": {
|
||||
"model": "tfmg:block/gray_concrete"
|
||||
},
|
||||
"type=top": {
|
||||
"model": "tfmg:block/gray_concrete_top"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,90 +0,0 @@
|
||||
{
|
||||
"multipart": [
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/gray_concrete_wall_post"
|
||||
},
|
||||
"when": {
|
||||
"up": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/gray_concrete_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/gray_concrete_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/gray_concrete_wall_side",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/gray_concrete_wall_side_tall",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/gray_concrete_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/gray_concrete_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/gray_concrete_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/gray_concrete_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "tall"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "tfmg:block/hardened_planks"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,56 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=x,bottom_shaft=false,top_shaft=false": {
|
||||
"model": "tfmg:block/heavy_casing_encased_large_aluminum_cogwheel",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=x,bottom_shaft=false,top_shaft=true": {
|
||||
"model": "tfmg:block/heavy_casing_encased_large_aluminum_cogwheel_top",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=x,bottom_shaft=true,top_shaft=false": {
|
||||
"model": "tfmg:block/heavy_casing_encased_large_aluminum_cogwheel_bottom",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=x,bottom_shaft=true,top_shaft=true": {
|
||||
"model": "tfmg:block/heavy_casing_encased_large_aluminum_cogwheel_top_bottom",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=y,bottom_shaft=false,top_shaft=false": {
|
||||
"model": "tfmg:block/heavy_casing_encased_large_aluminum_cogwheel"
|
||||
},
|
||||
"axis=y,bottom_shaft=false,top_shaft=true": {
|
||||
"model": "tfmg:block/heavy_casing_encased_large_aluminum_cogwheel_top"
|
||||
},
|
||||
"axis=y,bottom_shaft=true,top_shaft=false": {
|
||||
"model": "tfmg:block/heavy_casing_encased_large_aluminum_cogwheel_bottom"
|
||||
},
|
||||
"axis=y,bottom_shaft=true,top_shaft=true": {
|
||||
"model": "tfmg:block/heavy_casing_encased_large_aluminum_cogwheel_top_bottom"
|
||||
},
|
||||
"axis=z,bottom_shaft=false,top_shaft=false": {
|
||||
"model": "tfmg:block/heavy_casing_encased_large_aluminum_cogwheel",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=z,bottom_shaft=false,top_shaft=true": {
|
||||
"model": "tfmg:block/heavy_casing_encased_large_aluminum_cogwheel_top",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=z,bottom_shaft=true,top_shaft=false": {
|
||||
"model": "tfmg:block/heavy_casing_encased_large_aluminum_cogwheel_bottom",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=z,bottom_shaft=true,top_shaft=true": {
|
||||
"model": "tfmg:block/heavy_casing_encased_large_aluminum_cogwheel_top_bottom",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,20 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=x": {
|
||||
"model": "tfmg:block/encased_shaft/block_heavy_casing",
|
||||
"uvlock": true,
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=y": {
|
||||
"model": "tfmg:block/encased_shaft/block_heavy_casing",
|
||||
"uvlock": true
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "tfmg:block/encased_shaft/block_heavy_casing",
|
||||
"uvlock": true,
|
||||
"x": 90,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "tfmg:block/heavy_machinery_casing"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,17 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=x": {
|
||||
"model": "tfmg:block/large_aluminum_cogwheel",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=y": {
|
||||
"model": "tfmg:block/large_aluminum_cogwheel"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "tfmg:block/large_aluminum_cogwheel",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,110 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"face=ceiling,facing=east,waterlogged=false": {
|
||||
"model": "tfmg:block/large_engine/block",
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"face=ceiling,facing=east,waterlogged=true": {
|
||||
"model": "tfmg:block/large_engine/block",
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"face=ceiling,facing=north,waterlogged=false": {
|
||||
"model": "tfmg:block/large_engine/block",
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"face=ceiling,facing=north,waterlogged=true": {
|
||||
"model": "tfmg:block/large_engine/block",
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"face=ceiling,facing=south,waterlogged=false": {
|
||||
"model": "tfmg:block/large_engine/block",
|
||||
"x": 180
|
||||
},
|
||||
"face=ceiling,facing=south,waterlogged=true": {
|
||||
"model": "tfmg:block/large_engine/block",
|
||||
"x": 180
|
||||
},
|
||||
"face=ceiling,facing=west,waterlogged=false": {
|
||||
"model": "tfmg:block/large_engine/block",
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"face=ceiling,facing=west,waterlogged=true": {
|
||||
"model": "tfmg:block/large_engine/block",
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"face=floor,facing=east,waterlogged=false": {
|
||||
"model": "tfmg:block/large_engine/block",
|
||||
"y": 90
|
||||
},
|
||||
"face=floor,facing=east,waterlogged=true": {
|
||||
"model": "tfmg:block/large_engine/block",
|
||||
"y": 90
|
||||
},
|
||||
"face=floor,facing=north,waterlogged=false": {
|
||||
"model": "tfmg:block/large_engine/block"
|
||||
},
|
||||
"face=floor,facing=north,waterlogged=true": {
|
||||
"model": "tfmg:block/large_engine/block"
|
||||
},
|
||||
"face=floor,facing=south,waterlogged=false": {
|
||||
"model": "tfmg:block/large_engine/block",
|
||||
"y": 180
|
||||
},
|
||||
"face=floor,facing=south,waterlogged=true": {
|
||||
"model": "tfmg:block/large_engine/block",
|
||||
"y": 180
|
||||
},
|
||||
"face=floor,facing=west,waterlogged=false": {
|
||||
"model": "tfmg:block/large_engine/block",
|
||||
"y": 270
|
||||
},
|
||||
"face=floor,facing=west,waterlogged=true": {
|
||||
"model": "tfmg:block/large_engine/block",
|
||||
"y": 270
|
||||
},
|
||||
"face=wall,facing=east,waterlogged=false": {
|
||||
"model": "tfmg:block/large_engine/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"face=wall,facing=east,waterlogged=true": {
|
||||
"model": "tfmg:block/large_engine/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"face=wall,facing=north,waterlogged=false": {
|
||||
"model": "tfmg:block/large_engine/block",
|
||||
"x": 90
|
||||
},
|
||||
"face=wall,facing=north,waterlogged=true": {
|
||||
"model": "tfmg:block/large_engine/block",
|
||||
"x": 90
|
||||
},
|
||||
"face=wall,facing=south,waterlogged=false": {
|
||||
"model": "tfmg:block/large_engine/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"face=wall,facing=south,waterlogged=true": {
|
||||
"model": "tfmg:block/large_engine/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"face=wall,facing=west,waterlogged=false": {
|
||||
"model": "tfmg:block/large_engine/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"face=wall,facing=west,waterlogged=true": {
|
||||
"model": "tfmg:block/large_engine/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,19 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=east": {
|
||||
"model": "tfmg:block/large_pumpjack_hammer_connector",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "tfmg:block/large_pumpjack_hammer_connector"
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "tfmg:block/large_pumpjack_hammer_connector",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "tfmg:block/large_pumpjack_hammer_connector",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,17 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=x": {
|
||||
"model": "tfmg:block/large_steel_cogwheel",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=y": {
|
||||
"model": "tfmg:block/large_steel_cogwheel"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "tfmg:block/large_steel_cogwheel",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,100 +0,0 @@
|
||||
{
|
||||
"multipart": [
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/lead_post_ends"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/lead_post"
|
||||
},
|
||||
"when": {
|
||||
"east": "false",
|
||||
"north": "false",
|
||||
"south": "false",
|
||||
"west": "false"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/lead_cap"
|
||||
},
|
||||
"when": {
|
||||
"east": "false",
|
||||
"north": "true",
|
||||
"south": "false",
|
||||
"west": "false"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/lead_cap",
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "true",
|
||||
"north": "false",
|
||||
"south": "false",
|
||||
"west": "false"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/lead_cap_alt"
|
||||
},
|
||||
"when": {
|
||||
"east": "false",
|
||||
"north": "false",
|
||||
"south": "true",
|
||||
"west": "false"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/lead_cap_alt",
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "false",
|
||||
"north": "false",
|
||||
"south": "false",
|
||||
"west": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/lead_side"
|
||||
},
|
||||
"when": {
|
||||
"north": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/lead_side",
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/lead_side_alt"
|
||||
},
|
||||
"when": {
|
||||
"south": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "tfmg:block/lead_side_alt",
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"west": "true"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=east,waterlogged=false": {
|
||||
"model": "tfmg:block/lead_ladder",
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,waterlogged=true": {
|
||||
"model": "tfmg:block/lead_ladder",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north,waterlogged=false": {
|
||||
"model": "tfmg:block/lead_ladder"
|
||||
},
|
||||
"facing=north,waterlogged=true": {
|
||||
"model": "tfmg:block/lead_ladder"
|
||||
},
|
||||
"facing=south,waterlogged=false": {
|
||||
"model": "tfmg:block/lead_ladder",
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,waterlogged=true": {
|
||||
"model": "tfmg:block/lead_ladder",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,waterlogged=false": {
|
||||
"model": "tfmg:block/lead_ladder",
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,waterlogged=true": {
|
||||
"model": "tfmg:block/lead_ladder",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user