Add latest revisions after getting it functional
This commit is contained in:
parent
9653e273e4
commit
ffcecb8e8e
1443 changed files with 258988 additions and 6046 deletions
|
@ -1,71 +1,38 @@
|
|||
# This is an example mods.toml file. It contains the data relating to the loading mods.
|
||||
# There are several mandatory fields (#mandatory), and many more that are optional (#optional).
|
||||
# The overall format is standard TOML format, v0.5.0.
|
||||
# Note that there are a couple of TOML lists in this file.
|
||||
# Find more information on toml format here: https://github.com/toml-lang/toml
|
||||
# The name of the mod loader type to load - for regular FML @Mod mods it should be javafml
|
||||
modLoader="javafml" #mandatory
|
||||
# A version range to match for said mod loader - for regular FML @Mod it will be the forge version
|
||||
loaderVersion="${loader_version_range}" #mandatory This is typically bumped every Minecraft version by Forge. See our download page for lists of versions.
|
||||
# The license for you mod. This is mandatory metadata and allows for easier comprehension of your redistributive properties.
|
||||
# Review your options at https://choosealicense.com/. All rights reserved is the default copyright stance, and is thus the default here.
|
||||
license="${mod_license}"
|
||||
# A URL to refer people to when problems occur with this mod
|
||||
#issueTrackerURL="https://change.me.to.your.issue.tracker.example.invalid/" #optional
|
||||
# A list of mods - how many allowed here is determined by the individual mod loader
|
||||
[[mods]] #mandatory
|
||||
# The modid of the mod
|
||||
modId="${mod_id}" #mandatory
|
||||
# The version number of the mod
|
||||
version="${mod_version}" #mandatory
|
||||
# A display name for the mod
|
||||
displayName="${mod_name}" #mandatory
|
||||
# A URL to query for updates for this mod. See the JSON update specification https://docs.minecraftforge.net/en/latest/misc/updatechecker/
|
||||
#updateJSONURL="https://change.me.example.invalid/updates.json" #optional
|
||||
# A URL for the "homepage" for this mod, displayed in the mod UI
|
||||
#displayURL="https://change.me.to.your.mods.homepage.example.invalid/" #optional
|
||||
# A file name (in the root of the mod JAR) containing a logo for display
|
||||
#logoFile="examplemod.png" #optional
|
||||
# A text field displayed in the mod UI
|
||||
#credits="" #optional
|
||||
# A text field displayed in the mod UI
|
||||
authors="${mod_authors}" #optional
|
||||
# Display Test controls the display for your mod in the server connection screen
|
||||
# MATCH_VERSION means that your mod will cause a red X if the versions on client and server differ. This is the default behaviour and should be what you choose if you have server and client elements to your mod.
|
||||
# IGNORE_SERVER_VERSION means that your mod will not cause a red X if it's present on the server but not on the client. This is what you should use if you're a server only mod.
|
||||
# IGNORE_ALL_VERSION means that your mod will not cause a red X if it's present on the client or the server. This is a special case and should only be used if your mod has no server component.
|
||||
# NONE means that no display test is set on your mod. You need to do this yourself, see IExtensionPoint.DisplayTest for more information. You can define any scheme you wish with this value.
|
||||
# IMPORTANT NOTE: this is NOT an instruction as to which environments (CLIENT or DEDICATED SERVER) your mod loads on. Your mod should load (and maybe do nothing!) whereever it finds itself.
|
||||
#displayTest="MATCH_VERSION" # MATCH_VERSION is the default if nothing is specified (#optional)
|
||||
modLoader = "javafml"
|
||||
loaderVersion = "[43,)"
|
||||
#issueTrackerURL = ""
|
||||
license = "GPLv3"
|
||||
|
||||
# The description text for the mod (multi line!) (#mandatory)
|
||||
description='''${mod_description}'''
|
||||
# A dependency - use the . to indicate dependency for a specific modid. Dependencies are optional.
|
||||
[[dependencies.${mod_id}]] #optional
|
||||
# the modid of the dependency
|
||||
modId="forge" #mandatory
|
||||
# Does this dependency have to exist - if not, ordering below must be specified
|
||||
mandatory=true #mandatory
|
||||
# The version range of the dependency
|
||||
versionRange="${forge_version_range}" #mandatory
|
||||
# An ordering relationship for the dependency - BEFORE or AFTER required if the dependency is not mandatory
|
||||
# BEFORE - This mod is loaded BEFORE the dependency
|
||||
# AFTER - This mod is loaded AFTER the dependency
|
||||
ordering="NONE"
|
||||
# Side this dependency is applied on - BOTH, CLIENT, or SERVER
|
||||
side="BOTH"
|
||||
# Here's another dependency
|
||||
[[dependencies.${libzontreck_id}]]
|
||||
modId="${libzontreck_id}"
|
||||
mandatory=true
|
||||
versionRange="${libzontreck_range}"
|
||||
ordering="NONE"
|
||||
side="BOTH"
|
||||
[[mods]]
|
||||
modId = "ariasessentials"
|
||||
version = "${version}"
|
||||
displayName = "Aria's Essentials"
|
||||
authors = "Me!"
|
||||
description = '''
|
||||
A mod including features and functions to enhance the game.
|
||||
'''
|
||||
#logoFile = ""
|
||||
|
||||
[[dependencies.${mod_id}]]
|
||||
modId="minecraft"
|
||||
mandatory=true
|
||||
# This version range declares a minimum of the current minecraft version up to but not including the next major version
|
||||
versionRange="${minecraft_version_range}"
|
||||
ordering="NONE"
|
||||
side="BOTH"
|
||||
[[mods]]
|
||||
modId = "libzontreck"
|
||||
version = "${version}"
|
||||
displayName = "Aria's Library"
|
||||
authors = "Me!"
|
||||
description = '''
|
||||
A mod including features and functions to enhance the game.
|
||||
'''
|
||||
#logoFile = ""
|
||||
|
||||
[[dependencies.ariasessentials]]
|
||||
modId = "forge"
|
||||
mandatory = true
|
||||
versionRange = "[43,)"
|
||||
ordering = "NONE"
|
||||
side = "BOTH"
|
||||
|
||||
[[dependencies.ariasessentials]]
|
||||
modId = "minecraft"
|
||||
mandatory = true
|
||||
versionRange = "[1.19.2,1.20)"
|
||||
ordering = "NONE"
|
||||
side = "BOTH"
|
||||
|
|
13
src/main/resources/ariasessentials.mixins.json
Normal file
13
src/main/resources/ariasessentials.mixins.json
Normal file
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"required": true,
|
||||
"package": "com.zontreck.mixin",
|
||||
"compatibilityLevel": "JAVA_17",
|
||||
"minVersion": "0.8",
|
||||
"client": [
|
||||
],
|
||||
"mixins": [
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 1
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/blood_red"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/blue_pool_light"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/blue_pool_tile"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"variants": {
|
||||
"type=bottom": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_slab"
|
||||
},
|
||||
"type=double": {
|
||||
"model": "ariasessentials:block/blue_pool_tile"
|
||||
},
|
||||
"type=top": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_slab_top"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,209 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,90 @@
|
|||
{
|
||||
"multipart": [
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_wall_post"
|
||||
},
|
||||
"when": {
|
||||
"up": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_wall_side",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_wall_side_tall",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/blue_pool_tile_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "tall"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/deprecated"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"variants": {
|
||||
"": [
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_block_model0"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_block_model1"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_block_model2"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_block_model3"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_block_model4"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_block_model5"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_block_model6"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_block_model7"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
|
@ -1,19 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=north": {
|
||||
"model": "ariasessentials:block/engineersdecor/brick/clinker_brick_recessed_model"
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "ariasessentials:block/engineersdecor/brick/clinker_brick_recessed_model",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "ariasessentials:block/engineersdecor/brick/clinker_brick_recessed_model",
|
||||
"y": 270
|
||||
},
|
||||
"facing=east": {
|
||||
"model": "ariasessentials:block/engineersdecor/brick/clinker_brick_recessed_model",
|
||||
"y": 90
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,25 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=north": {
|
||||
"model": "ariasessentials:block/engineersdecor/brick/clinker_brick_sastor_corner_model"
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "ariasessentials:block/engineersdecor/brick/clinker_brick_sastor_corner_model",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "ariasessentials:block/engineersdecor/brick/clinker_brick_sastor_corner_model",
|
||||
"y": 270
|
||||
},
|
||||
"facing=east": {
|
||||
"model": "ariasessentials:block/engineersdecor/brick/clinker_brick_sastor_corner_model",
|
||||
"y": 90
|
||||
},
|
||||
"facing=up": {
|
||||
"model": "ariasessentials:block/engineersdecor/brick/clinker_brick_sastor_up_model"
|
||||
},
|
||||
"facing=down": {
|
||||
"model": "ariasessentials:block/engineersdecor/brick/clinker_brick_sastor_down_model"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,160 @@
|
|||
{
|
||||
"variants": {
|
||||
"type=bottom,waterlogged=false": [
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model0_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model1_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model2_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model3_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model4_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model5_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model6_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model7_bottom"
|
||||
}
|
||||
],
|
||||
"type=bottom,waterlogged=true": [
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model0_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model1_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model2_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model3_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model4_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model5_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model6_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model7_bottom"
|
||||
}
|
||||
],
|
||||
"type=double,waterlogged=false": [
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model0_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model1_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model2_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model3_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model4_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model5_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model6_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model7_double"
|
||||
}
|
||||
],
|
||||
"type=double,waterlogged=true": [
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model0_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model1_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model2_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model3_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model4_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model5_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model6_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model7_double"
|
||||
}
|
||||
],
|
||||
"type=top,waterlogged=false": [
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model0_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model1_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model2_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model3_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model4_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model5_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model6_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model7_top"
|
||||
}
|
||||
],
|
||||
"type=top,waterlogged=true": [
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model0_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model1_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model2_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model3_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model4_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model5_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model6_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_slab_model7_top"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"variants": {
|
||||
"": [
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_block_model0"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_block_model1"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_block_model2"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_block_model3"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_block_model4"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_block_model5"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_block_model6"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_block_model7"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
|
@ -0,0 +1,160 @@
|
|||
{
|
||||
"variants": {
|
||||
"type=bottom,waterlogged=false": [
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model0_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model1_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model2_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model3_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model4_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model5_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model6_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model7_bottom"
|
||||
}
|
||||
],
|
||||
"type=bottom,waterlogged=true": [
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model0_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model1_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model2_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model3_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model4_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model5_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model6_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model7_bottom"
|
||||
}
|
||||
],
|
||||
"type=double,waterlogged=false": [
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model0_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model1_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model2_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model3_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model4_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model5_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model6_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model7_double"
|
||||
}
|
||||
],
|
||||
"type=double,waterlogged=true": [
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model0_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model1_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model2_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model3_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model4_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model5_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model6_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model7_double"
|
||||
}
|
||||
],
|
||||
"type=top,waterlogged=false": [
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model0_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model1_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model2_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model3_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model4_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model5_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model6_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model7_top"
|
||||
}
|
||||
],
|
||||
"type=top,waterlogged=true": [
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model0_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model1_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model2_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model3_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model4_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model5_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model6_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/clinker_brick_stained_slab_model7_top"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -1,19 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=north": {
|
||||
"model": "ariasessentials:block/engineersdecor/brick/clinker_brick_vertically_slit_model"
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "ariasessentials:block/engineersdecor/brick/clinker_brick_vertically_slit_model",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "ariasessentials:block/engineersdecor/brick/clinker_brick_vertically_slit_model",
|
||||
"y": 270
|
||||
},
|
||||
"facing=east": {
|
||||
"model": "ariasessentials:block/engineersdecor/brick/clinker_brick_vertically_slit_model",
|
||||
"y": 90
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,90 @@
|
|||
{
|
||||
"multipart": [
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/clinker_brick_wall_post"
|
||||
},
|
||||
"when": {
|
||||
"up": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/clinker_brick_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/clinker_brick_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/clinker_brick_wall_side",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/clinker_brick_wall_side_tall",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/clinker_brick_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/clinker_brick_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/clinker_brick_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/clinker_brick_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "tall"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/cobalt_block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/cobalt_ore"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/compressed_obsidian_block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=north": {
|
||||
"model": "ariasessentials:block/compression_chamber"
|
||||
},
|
||||
"facing=east": {
|
||||
"model": "ariasessentials:block/compression_chamber",
|
||||
"y": 90
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "ariasessentials:block/compression_chamber",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "ariasessentials:block/compression_chamber",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/cyan"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,209 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/cyan_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/cyan_stairs_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/cyan_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/cyan_stairs_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/cyan_stairs"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/cyan_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/cyan_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/cyan_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/cyan_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/cyan_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/cyan_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/cyan_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/cyan_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/cyan_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/cyan_stairs",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/cyan_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/cyan_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/cyan_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/cyan_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/cyan_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/cyan_stairs_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/cyan_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/cyan_stairs_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/cyan_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/cyan_stairs",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/cyan_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/cyan_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/cyan_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/cyan_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/cyan_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/cyan_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/cyan_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/cyan_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/cyan_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/cyan_stairs",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/cyan_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/cyan_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/cyan_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/cyan_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/cyan_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/cyan_tile"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east": {
|
||||
"model": "ariasessentials:block/cyan_tile_br",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "ariasessentials:block/cyan_tile_br"
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "ariasessentials:block/cyan_tile_br",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "ariasessentials:block/cyan_tile_br",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/cyan_tile_to_wall"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/cyan_wall_variant_1"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/cyan_wall_variant_2"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/dark_pool_light"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/dark_pool_tile"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"variants": {
|
||||
"type=bottom": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_slab"
|
||||
},
|
||||
"type=double": {
|
||||
"model": "ariasessentials:block/dark_pool_tile"
|
||||
},
|
||||
"type=top": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_slab_top"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,209 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/dark_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "minecraft:block/bed"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/dark_red_carpet"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/dark_red_shulker_box"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/dark_red_wool"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/deepslate_eternium_ore_block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/deprecated"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_light"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"variants": {
|
||||
"type=bottom": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_slab"
|
||||
},
|
||||
"type=double": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile"
|
||||
},
|
||||
"type=top": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_slab_top"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,209 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,90 @@
|
|||
{
|
||||
"multipart": [
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_wall_post"
|
||||
},
|
||||
"when": {
|
||||
"up": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_wall_side",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_wall_side_tall",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "tall"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_light"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"variants": {
|
||||
"type=bottom": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_slab"
|
||||
},
|
||||
"type=double": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile"
|
||||
},
|
||||
"type=top": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_slab_top"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,209 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,90 @@
|
|||
{
|
||||
"multipart": [
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_wall_post"
|
||||
},
|
||||
"when": {
|
||||
"up": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_wall_side",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_wall_side_tall",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_green_pool_tile_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "tall"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/dirty_pool_light"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"variants": {
|
||||
"type=bottom": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_slab"
|
||||
},
|
||||
"type=double": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile"
|
||||
},
|
||||
"type=top": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_slab_top"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,209 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,90 @@
|
|||
{
|
||||
"multipart": [
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_wall_post"
|
||||
},
|
||||
"when": {
|
||||
"up": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_wall_side",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_wall_side_tall",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_pool_tile_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "tall"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_light"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"variants": {
|
||||
"type=bottom": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_slab"
|
||||
},
|
||||
"type=double": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile"
|
||||
},
|
||||
"type=top": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_slab_top"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,209 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,90 @@
|
|||
{
|
||||
"multipart": [
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_wall_post"
|
||||
},
|
||||
"when": {
|
||||
"up": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_wall_side",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_wall_side_tall",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_red_pool_tile_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "tall"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/eternium_block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/eternium_ore_block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/filthy_blue_pool_light"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/filthy_green_pool_light"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/filthy_pool_light"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/filthy_red_pool_light"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/green_pool_light"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/green_pool_tile"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"variants": {
|
||||
"type=bottom": {
|
||||
"model": "ariasessentials:block/green_pool_tile_slab"
|
||||
},
|
||||
"type=double": {
|
||||
"model": "ariasessentials:block/green_pool_tile"
|
||||
},
|
||||
"type=top": {
|
||||
"model": "ariasessentials:block/green_pool_tile_slab_top"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,209 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/green_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,90 @@
|
|||
{
|
||||
"multipart": [
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/green_pool_tile_wall_post"
|
||||
},
|
||||
"when": {
|
||||
"up": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/green_pool_tile_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/green_pool_tile_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/green_pool_tile_wall_side",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/green_pool_tile_wall_side_tall",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/green_pool_tile_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/green_pool_tile_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/green_pool_tile_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/green_pool_tile_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "tall"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/nether_vault_steel_ore_block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,124 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=lower,hinge=left,open=false": {
|
||||
"model": "ariasessentials:block/old_industrial_wood_door_bottom_left"
|
||||
},
|
||||
"facing=east,half=lower,hinge=left,open=true": {
|
||||
"model": "ariasessentials:block/old_industrial_wood_door_bottom_left_open",
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=lower,hinge=right,open=false": {
|
||||
"model": "ariasessentials:block/old_industrial_wood_door_bottom_right"
|
||||
},
|
||||
"facing=east,half=lower,hinge=right,open=true": {
|
||||
"model": "ariasessentials:block/old_industrial_wood_door_bottom_right_open",
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=upper,hinge=left,open=false": {
|
||||
"model": "ariasessentials:block/old_industrial_wood_door_top_left"
|
||||
},
|
||||
"facing=east,half=upper,hinge=left,open=true": {
|
||||
"model": "ariasessentials:block/old_industrial_wood_door_top_left_open",
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=upper,hinge=right,open=false": {
|
||||
"model": "ariasessentials:block/old_industrial_wood_door_top_right"
|
||||
},
|
||||
"facing=east,half=upper,hinge=right,open=true": {
|
||||
"model": "ariasessentials:block/old_industrial_wood_door_top_right_open",
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=lower,hinge=left,open=false": {
|
||||
"model": "ariasessentials:block/old_industrial_wood_door_bottom_left",
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=lower,hinge=left,open=true": {
|
||||
"model": "ariasessentials:block/old_industrial_wood_door_bottom_left_open"
|
||||
},
|
||||
"facing=north,half=lower,hinge=right,open=false": {
|
||||
"model": "ariasessentials:block/old_industrial_wood_door_bottom_right",
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=lower,hinge=right,open=true": {
|
||||
"model": "ariasessentials:block/old_industrial_wood_door_bottom_right_open",
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=upper,hinge=left,open=false": {
|
||||
"model": "ariasessentials:block/old_industrial_wood_door_top_left",
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=upper,hinge=left,open=true": {
|
||||
"model": "ariasessentials:block/old_industrial_wood_door_top_left_open"
|
||||
},
|
||||
"facing=north,half=upper,hinge=right,open=false": {
|
||||
"model": "ariasessentials:block/old_industrial_wood_door_top_right",
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=upper,hinge=right,open=true": {
|
||||
"model": "ariasessentials:block/old_industrial_wood_door_top_right_open",
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=lower,hinge=left,open=false": {
|
||||
"model": "ariasessentials:block/old_industrial_wood_door_bottom_left",
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=lower,hinge=left,open=true": {
|
||||
"model": "ariasessentials:block/old_industrial_wood_door_bottom_left_open",
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=lower,hinge=right,open=false": {
|
||||
"model": "ariasessentials:block/old_industrial_wood_door_bottom_right",
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=lower,hinge=right,open=true": {
|
||||
"model": "ariasessentials:block/old_industrial_wood_door_bottom_right_open"
|
||||
},
|
||||
"facing=south,half=upper,hinge=left,open=false": {
|
||||
"model": "ariasessentials:block/old_industrial_wood_door_top_left",
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=upper,hinge=left,open=true": {
|
||||
"model": "ariasessentials:block/old_industrial_wood_door_top_left_open",
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=upper,hinge=right,open=false": {
|
||||
"model": "ariasessentials:block/old_industrial_wood_door_top_right",
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=upper,hinge=right,open=true": {
|
||||
"model": "ariasessentials:block/old_industrial_wood_door_top_right_open"
|
||||
},
|
||||
"facing=west,half=lower,hinge=left,open=false": {
|
||||
"model": "ariasessentials:block/old_industrial_wood_door_bottom_left",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=lower,hinge=left,open=true": {
|
||||
"model": "ariasessentials:block/old_industrial_wood_door_bottom_left_open",
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=lower,hinge=right,open=false": {
|
||||
"model": "ariasessentials:block/old_industrial_wood_door_bottom_right",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=lower,hinge=right,open=true": {
|
||||
"model": "ariasessentials:block/old_industrial_wood_door_bottom_right_open",
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=upper,hinge=left,open=false": {
|
||||
"model": "ariasessentials:block/old_industrial_wood_door_top_left",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=upper,hinge=left,open=true": {
|
||||
"model": "ariasessentials:block/old_industrial_wood_door_top_left_open",
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=upper,hinge=right,open=false": {
|
||||
"model": "ariasessentials:block/old_industrial_wood_door_top_right",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=upper,hinge=right,open=true": {
|
||||
"model": "ariasessentials:block/old_industrial_wood_door_top_right_open",
|
||||
"y": 90
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"variants": {
|
||||
"": [
|
||||
{
|
||||
"model": "ariasessentials:block/old_industrial_wood_planks_model0"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/old_industrial_wood_planks_model1"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/old_industrial_wood_planks_model2"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/old_industrial_wood_planks_model3"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
|
@ -0,0 +1,88 @@
|
|||
{
|
||||
"variants": {
|
||||
"type=bottom,waterlogged=false": [
|
||||
{
|
||||
"model": "ariasessentials:block/old_industrial_wood_slab_model0_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/old_industrial_wood_slab_model1_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/old_industrial_wood_slab_model2_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/old_industrial_wood_slab_model3_bottom"
|
||||
}
|
||||
],
|
||||
"type=bottom,waterlogged=true": [
|
||||
{
|
||||
"model": "ariasessentials:block/old_industrial_wood_slab_model0_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/old_industrial_wood_slab_model1_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/old_industrial_wood_slab_model2_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/old_industrial_wood_slab_model3_bottom"
|
||||
}
|
||||
],
|
||||
"type=double,waterlogged=false": [
|
||||
{
|
||||
"model": "ariasessentials:block/old_industrial_wood_slab_model0_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/old_industrial_wood_slab_model1_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/old_industrial_wood_slab_model2_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/old_industrial_wood_slab_model3_double"
|
||||
}
|
||||
],
|
||||
"type=double,waterlogged=true": [
|
||||
{
|
||||
"model": "ariasessentials:block/old_industrial_wood_slab_model0_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/old_industrial_wood_slab_model1_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/old_industrial_wood_slab_model2_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/old_industrial_wood_slab_model3_double"
|
||||
}
|
||||
],
|
||||
"type=top,waterlogged=false": [
|
||||
{
|
||||
"model": "ariasessentials:block/old_industrial_wood_slab_model0_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/old_industrial_wood_slab_model1_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/old_industrial_wood_slab_model2_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/old_industrial_wood_slab_model3_top"
|
||||
}
|
||||
],
|
||||
"type=top,waterlogged=true": [
|
||||
{
|
||||
"model": "ariasessentials:block/old_industrial_wood_slab_model0_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/old_industrial_wood_slab_model1_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/old_industrial_wood_slab_model2_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/old_industrial_wood_slab_model3_top"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
File diff suppressed because it is too large
Load diff
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"variants": {
|
||||
"": [
|
||||
{
|
||||
"model": "ariasessentials:block/panzerglass_block_model0"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/panzerglass_block_model1"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/panzerglass_block_model2"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/panzerglass_block_model3"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
|
@ -0,0 +1,88 @@
|
|||
{
|
||||
"variants": {
|
||||
"type=bottom,waterlogged=false": [
|
||||
{
|
||||
"model": "ariasessentials:block/panzerglass_slab_model0_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/panzerglass_slab_model1_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/panzerglass_slab_model2_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/panzerglass_slab_model3_bottom"
|
||||
}
|
||||
],
|
||||
"type=bottom,waterlogged=true": [
|
||||
{
|
||||
"model": "ariasessentials:block/panzerglass_slab_model0_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/panzerglass_slab_model1_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/panzerglass_slab_model2_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/panzerglass_slab_model3_bottom"
|
||||
}
|
||||
],
|
||||
"type=double,waterlogged=false": [
|
||||
{
|
||||
"model": "ariasessentials:block/panzerglass_slab_model0_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/panzerglass_slab_model1_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/panzerglass_slab_model2_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/panzerglass_slab_model3_double"
|
||||
}
|
||||
],
|
||||
"type=double,waterlogged=true": [
|
||||
{
|
||||
"model": "ariasessentials:block/panzerglass_slab_model0_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/panzerglass_slab_model1_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/panzerglass_slab_model2_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/panzerglass_slab_model3_double"
|
||||
}
|
||||
],
|
||||
"type=top,waterlogged=false": [
|
||||
{
|
||||
"model": "ariasessentials:block/panzerglass_slab_model0_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/panzerglass_slab_model1_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/panzerglass_slab_model2_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/panzerglass_slab_model3_top"
|
||||
}
|
||||
],
|
||||
"type=top,waterlogged=true": [
|
||||
{
|
||||
"model": "ariasessentials:block/panzerglass_slab_model0_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/panzerglass_slab_model1_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/panzerglass_slab_model2_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/panzerglass_slab_model3_top"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/pool_light"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/pool_tile"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"variants": {
|
||||
"type=bottom": {
|
||||
"model": "ariasessentials:block/pool_tile_slab"
|
||||
},
|
||||
"type=double": {
|
||||
"model": "ariasessentials:block/pool_tile"
|
||||
},
|
||||
"type=top": {
|
||||
"model": "ariasessentials:block/pool_tile_slab_top"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,209 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,90 @@
|
|||
{
|
||||
"multipart": [
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/pool_tile_wall_post"
|
||||
},
|
||||
"when": {
|
||||
"up": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/pool_tile_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/pool_tile_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/pool_tile_wall_side",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/pool_tile_wall_side_tall",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/pool_tile_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/pool_tile_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/pool_tile_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/pool_tile_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "tall"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/raw_cobalt_ore"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"variants": {
|
||||
"": [
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_model0"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_model1"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_model2"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_model3"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_model4"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_model5"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_model6"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_model7"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
|
@ -0,0 +1,160 @@
|
|||
{
|
||||
"variants": {
|
||||
"type=bottom,waterlogged=false": [
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model0_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model1_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model2_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model3_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model4_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model5_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model6_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model7_bottom"
|
||||
}
|
||||
],
|
||||
"type=bottom,waterlogged=true": [
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model0_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model1_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model2_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model3_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model4_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model5_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model6_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model7_bottom"
|
||||
}
|
||||
],
|
||||
"type=double,waterlogged=false": [
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model0_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model1_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model2_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model3_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model4_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model5_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model6_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model7_double"
|
||||
}
|
||||
],
|
||||
"type=double,waterlogged=true": [
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model0_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model1_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model2_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model3_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model4_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model5_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model6_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model7_double"
|
||||
}
|
||||
],
|
||||
"type=top,waterlogged=false": [
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model0_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model1_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model2_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model3_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model4_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model5_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model6_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model7_top"
|
||||
}
|
||||
],
|
||||
"type=top,waterlogged=true": [
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model0_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model1_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model2_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model3_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model4_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model5_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model6_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_slab_model7_top"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
File diff suppressed because it is too large
Load diff
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"variants": {
|
||||
"": [
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_model0"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_model1"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_model2"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_model3"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_model4"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_model5"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_model6"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_model7"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
|
@ -0,0 +1,160 @@
|
|||
{
|
||||
"variants": {
|
||||
"type=bottom,waterlogged=false": [
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model0_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model1_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model2_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model3_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model4_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model5_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model6_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model7_bottom"
|
||||
}
|
||||
],
|
||||
"type=bottom,waterlogged=true": [
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model0_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model1_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model2_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model3_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model4_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model5_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model6_bottom"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model7_bottom"
|
||||
}
|
||||
],
|
||||
"type=double,waterlogged=false": [
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model0_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model1_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model2_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model3_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model4_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model5_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model6_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model7_double"
|
||||
}
|
||||
],
|
||||
"type=double,waterlogged=true": [
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model0_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model1_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model2_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model3_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model4_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model5_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model6_double"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model7_double"
|
||||
}
|
||||
],
|
||||
"type=top,waterlogged=false": [
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model0_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model1_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model2_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model3_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model4_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model5_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model6_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model7_top"
|
||||
}
|
||||
],
|
||||
"type=top,waterlogged=true": [
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model0_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model1_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model2_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model3_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model4_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model5_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model6_top"
|
||||
},
|
||||
{
|
||||
"model": "ariasessentials:block/rebar_concrete_tile_slab_model7_top"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
File diff suppressed because it is too large
Load diff
|
@ -0,0 +1,90 @@
|
|||
{
|
||||
"multipart": [
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/rebar_concrete_wall_post"
|
||||
},
|
||||
"when": {
|
||||
"up": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/rebar_concrete_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/rebar_concrete_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/rebar_concrete_wall_side",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/rebar_concrete_wall_side_tall",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/rebar_concrete_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/rebar_concrete_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/rebar_concrete_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/rebar_concrete_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "tall"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/red_pool_light"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/red_pool_tile"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"variants": {
|
||||
"type=bottom": {
|
||||
"model": "ariasessentials:block/red_pool_tile_slab"
|
||||
},
|
||||
"type=double": {
|
||||
"model": "ariasessentials:block/red_pool_tile"
|
||||
},
|
||||
"type=top": {
|
||||
"model": "ariasessentials:block/red_pool_tile_slab_top"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,209 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/red_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,90 @@
|
|||
{
|
||||
"multipart": [
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/red_pool_tile_wall_post"
|
||||
},
|
||||
"when": {
|
||||
"up": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/red_pool_tile_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/red_pool_tile_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/red_pool_tile_wall_side",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/red_pool_tile_wall_side_tall",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/red_pool_tile_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/red_pool_tile_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/red_pool_tile_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/red_pool_tile_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "tall"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,209 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/red_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/red_stairs_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/red_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/red_stairs_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/red_stairs"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/red_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/red_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/red_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/red_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/red_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/red_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/red_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/red_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/red_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/red_stairs",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/red_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/red_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/red_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/red_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/red_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/red_stairs_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/red_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/red_stairs_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/red_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/red_stairs",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/red_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/red_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/red_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/red_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/red_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/red_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/red_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/red_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/red_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/red_stairs",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/red_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/red_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/red_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/red_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/red_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/red_tile"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east": {
|
||||
"model": "ariasessentials:block/red_tile_br",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "ariasessentials:block/red_tile_br"
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "ariasessentials:block/red_tile_br",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "ariasessentials:block/red_tile_br",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue