Merge branch 'dev' of https://github.com/TerraFirmaGreg-Team/Modpack-Modern into dev
1
.github/workflows/build.yml
vendored
|
|
@ -304,6 +304,7 @@ jobs:
|
|||
|
||||
|
||||
sed -i -e "s/DEV/${VERSION}/g" pakku.json
|
||||
sed -i -e "s/DEV/${VERSION}/g" config/mod-director/modpack.json
|
||||
sed -i -e "s/DEV/${VERSION}/g" config/fancymenu/customization/gui_main_menu.txt
|
||||
|
||||
sed -i -e "s/DEV/${VERSION}/g" .pakku/multimc-overrides/instance.cfg
|
||||
|
|
|
|||
|
|
@ -5,5 +5,6 @@
|
|||
"width": 32,
|
||||
"height": 32
|
||||
},
|
||||
"localVersion": "0.10.12"
|
||||
"localVersion": "DEV",
|
||||
"requiresRestart": true
|
||||
}
|
||||
|
|
@ -15,6 +15,8 @@
|
|||
"block.gtceu.moon_dust_harvester": "Moon Dust Harvester",
|
||||
"block.gtceu.ostrum_linear_accelerator": "Ostrum Linear Accelerator",
|
||||
"block.tfg.bioreactor": "Bioreactor",
|
||||
"block.tfg.growth_chamber": "Growth Chamber",
|
||||
"block.tfg.single_itemstack_bus": "Limiting Input Bus",
|
||||
"block.gtceu.red_granite_cobblestone": "Red Granite Cobble",
|
||||
"block.gtceu.mossy_red_granite_cobblestone": "Mossy Red Granite Cobble",
|
||||
"block.gtceu.copper_crate": "Copper Crate",
|
||||
|
|
@ -41,6 +43,7 @@
|
|||
"gtceu.moon_dust_harvester": "Moon Dust Harvester",
|
||||
"gtceu.ostrum_linear_accelerator": "Ostrum Linear Accelerator",
|
||||
"gtceu.bioreactor": "Bioreactor",
|
||||
"gtceu.growth_chamber": "Growth Chamber",
|
||||
"item.gtceu.tiny_wood_dust": "Tiny Pile of Softwood Pulp",
|
||||
"item.gtceu.small_wood_dust": "Small Pile of Softwood Pulp",
|
||||
"item.gtceu.wood_dust": "Softwood Pulp",
|
||||
|
|
|
|||
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"variants": {
|
||||
"active=false,facing=north": [
|
||||
{ "model": "tfg:block/casings/bioculture_rotor_primary" }
|
||||
],
|
||||
"active=false,facing=south": [
|
||||
{ "model": "tfg:block/casings/bioculture_rotor_primary", "y": 180 }
|
||||
],
|
||||
"active=false,facing=west": [
|
||||
{ "model": "tfg:block/casings/bioculture_rotor_primary", "y": 270 }
|
||||
],
|
||||
"active=false,facing=east": [
|
||||
{ "model": "tfg:block/casings/bioculture_rotor_primary", "y": 90 }
|
||||
],
|
||||
"active=true,facing=north": [
|
||||
{ "model": "tfg:block/casings/bioculture_rotor_primary_active" }
|
||||
],
|
||||
"active=true,facing=south": [
|
||||
{ "model": "tfg:block/casings/bioculture_rotor_primary_active", "y": 180 }
|
||||
],
|
||||
"active=true,facing=west": [
|
||||
{ "model": "tfg:block/casings/bioculture_rotor_primary_active", "y": 270 }
|
||||
],
|
||||
"active=true,facing=east": [
|
||||
{ "model": "tfg:block/casings/bioculture_rotor_primary_active", "y": 90 }
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
"variants": {
|
||||
"active=false,facing=north": [
|
||||
{ "model": "tfg:block/casings/machine_casing_sterilizing_pipes" }
|
||||
],
|
||||
"active=false,facing=south": [
|
||||
{ "model": "tfg:block/casings/machine_casing_sterilizing_pipes", "y": 180 }
|
||||
],
|
||||
"active=false,facing=west": [
|
||||
{ "model": "tfg:block/casings/machine_casing_sterilizing_pipes", "y": 270 }
|
||||
],
|
||||
"active=false,facing=east": [
|
||||
{ "model": "tfg:block/casings/machine_casing_sterilizing_pipes", "y": 90 }
|
||||
],
|
||||
|
||||
"active=true,facing=north": [
|
||||
{ "model": "tfg:block/casings/machine_casing_sterilizing_pipes_active" }
|
||||
],
|
||||
"active=true,facing=south": [
|
||||
{ "model": "tfg:block/casings/machine_casing_sterilizing_pipes_active", "y": 180 }
|
||||
],
|
||||
"active=true,facing=west": [
|
||||
{ "model": "tfg:block/casings/machine_casing_sterilizing_pipes_active", "y": 270 }
|
||||
],
|
||||
"active=true,facing=east": [
|
||||
{ "model": "tfg:block/casings/machine_casing_sterilizing_pipes_active", "y": 90 }
|
||||
]
|
||||
}
|
||||
}
|
||||
19
kubejs/assets/tfg/blockstates/growth_chamber.json
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east": {
|
||||
"model": "tfg:block/machines/growth_chamber",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "tfg:block/machines/growth_chamber"
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "tfg:block/machines/growth_chamber",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "tfg:block/machines/growth_chamber",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
||||
45
kubejs/assets/tfg/blockstates/growth_monitor.json
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
{
|
||||
"variants": {
|
||||
"active=false,facing=north": [
|
||||
{ "model": "tfg:block/machines/growth_monitors/growth_monitor"}
|
||||
],
|
||||
"active=false,facing=south": [
|
||||
{ "model": "tfg:block/machines/growth_monitors/growth_monitor", "y": 180 }
|
||||
],
|
||||
"active=false,facing=west": [
|
||||
{ "model": "tfg:block/machines/growth_monitors/growth_monitor", "y": 270 }
|
||||
],
|
||||
"active=false,facing=east": [
|
||||
{ "model": "tfg:block/machines/growth_monitors/growth_monitor", "y": 90 }
|
||||
],
|
||||
|
||||
"active=true,facing=north": [
|
||||
{ "model": "tfg:block/machines/growth_monitors/growth_monitor_v1_active" },
|
||||
{ "model": "tfg:block/machines/growth_monitors/growth_monitor_v2_active" },
|
||||
{ "model": "tfg:block/machines/growth_monitors/growth_monitor_v3_active" },
|
||||
{ "model": "tfg:block/machines/growth_monitors/growth_monitor_v4_active" },
|
||||
{ "model": "tfg:block/machines/growth_monitors/growth_monitor_v5_active" }
|
||||
],
|
||||
"active=true,facing=south": [
|
||||
{ "model": "tfg:block/machines/growth_monitors/growth_monitor_v1_active", "y": 180 },
|
||||
{ "model": "tfg:block/machines/growth_monitors/growth_monitor_v2_active", "y": 180 },
|
||||
{ "model": "tfg:block/machines/growth_monitors/growth_monitor_v3_active", "y": 180 },
|
||||
{ "model": "tfg:block/machines/growth_monitors/growth_monitor_v4_active", "y": 180 },
|
||||
{ "model": "tfg:block/machines/growth_monitors/growth_monitor_v5_active", "y": 180 }
|
||||
],
|
||||
"active=true,facing=west": [
|
||||
{ "model": "tfg:block/machines/growth_monitors/growth_monitor_v1_active", "y": 270 },
|
||||
{ "model": "tfg:block/machines/growth_monitors/growth_monitor_v2_active", "y": 270 },
|
||||
{ "model": "tfg:block/machines/growth_monitors/growth_monitor_v3_active", "y": 270 },
|
||||
{ "model": "tfg:block/machines/growth_monitors/growth_monitor_v4_active", "y": 270 },
|
||||
{ "model": "tfg:block/machines/growth_monitors/growth_monitor_v5_active", "y": 270 }
|
||||
],
|
||||
"active=true,facing=east": [
|
||||
{ "model": "tfg:block/machines/growth_monitors/growth_monitor_v1_active", "y": 90 },
|
||||
{ "model": "tfg:block/machines/growth_monitors/growth_monitor_v2_active", "y": 90 },
|
||||
{ "model": "tfg:block/machines/growth_monitors/growth_monitor_v3_active", "y": 90 },
|
||||
{ "model": "tfg:block/machines/growth_monitors/growth_monitor_v4_active", "y": 90 },
|
||||
{ "model": "tfg:block/machines/growth_monitors/growth_monitor_v5_active", "y": 90 }
|
||||
]
|
||||
}
|
||||
}
|
||||
61
kubejs/assets/tfg/blockstates/sample_rack.json
Normal file
|
|
@ -0,0 +1,61 @@
|
|||
{
|
||||
"variants": {
|
||||
"active=false,facing=north": [
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v1", "y": 180 },
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v2", "y": 180 },
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v3", "y": 180 },
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v4", "y": 180 },
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v5", "y": 180 }
|
||||
],
|
||||
"active=false,facing=south": [
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v1" },
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v2" },
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v3" },
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v4" },
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v5" }
|
||||
],
|
||||
"active=false,facing=west": [
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v1", "y": 90 },
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v2", "y": 90 },
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v3", "y": 90 },
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v4", "y": 90 },
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v5", "y": 90 }
|
||||
],
|
||||
"active=false,facing=east": [
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v1", "y": 270 },
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v2", "y": 270 },
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v3", "y": 270 },
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v4", "y": 270 },
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v5", "y": 270 }
|
||||
],
|
||||
|
||||
"active=true,facing=north": [
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v1_active", "y": 180 },
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v2_active", "y": 180 },
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v3_active", "y": 180 },
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v4_active", "y": 180 },
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v5_active", "y": 180 }
|
||||
],
|
||||
"active=true,facing=south": [
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v1_active" },
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v2_active" },
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v3_active" },
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v4_active" },
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v5_active" }
|
||||
],
|
||||
"active=true,facing=west": [
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v1_active", "y": 90 },
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v2_active", "y": 90 },
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v3_active", "y": 90 },
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v4_active", "y": 90 },
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v5_active", "y": 90 }
|
||||
],
|
||||
"active=true,facing=east": [
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v1_active", "y": 270 },
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v2_active", "y": 270 },
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v3_active", "y": 270 },
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v4_active", "y": 270 },
|
||||
{ "model": "tfg:block/machines/sample_racks/sample_rack_v5_active", "y": 270 }
|
||||
]
|
||||
}
|
||||
}
|
||||
28
kubejs/assets/tfg/blockstates/single_itemstack_bus.json
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east": {
|
||||
"model": "tfg:block/machines/ports/single_itemstack_bus",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "tfg:block/machines/ports/single_itemstack_bus"
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "tfg:block/machines/ports/single_itemstack_bus",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "tfg:block/machines/ports/single_itemstack_bus",
|
||||
"y": 270
|
||||
},
|
||||
"facing=up": {
|
||||
"gtceu:z": 180,
|
||||
"model": "tfg:block/machines/ports/single_itemstack_bus",
|
||||
"x": 270
|
||||
},
|
||||
"facing=down": {
|
||||
"model": "tfg:block/machines/ports/single_itemstack_bus",
|
||||
"x": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -623,8 +623,16 @@
|
|||
"block.tfg.large_nest_box_warped": "Large Warped Nest",
|
||||
"block.tfg.titanium_concrete": "Titanium-Rebar Concrete",
|
||||
"block.tfg.polished_titanium_concrete": "Polished Titanium-Rebar Concrete",
|
||||
"block.tfg.titanium_concrete_tile": "Titanium-Rebar Concrete Tile",
|
||||
"block.tfg.titanium_concrete_tile_small": "Small Titanium-Rebar Concrete Tile",
|
||||
"block.tfg.titanium_concrete_bricks": "Titanium-Rebar Concrete Bricks",
|
||||
"block.tfg.titanium_concrete_bricks_small": "Small Titanium-Rebar Concrete Bricks",
|
||||
"block.tfg.titanium_concrete_bricks_square": "Square Titanium-Rebar Concrete Bricks",
|
||||
"block.tfg.nuclear_turbine": "Nuclear Steam Turbine",
|
||||
"block.tfg.evaporation_tower": "Evaporation Tower",
|
||||
"block.tfg.growth_monitor": "Growth Monitor",
|
||||
"block.tfg.sample_rack": "Sample Rack",
|
||||
"block.tfg.casings.machine_casing_sterilizing_pipes": "Sterilizing Pipes",
|
||||
"fluid.tfg.nether_slurry": "Nether Slurry",
|
||||
"fluid.tfg.enriched_nether_slurry": "Enriched Nether Slurry",
|
||||
"fluid.tfg.ender_slurry": "Ender Slurry",
|
||||
|
|
@ -907,6 +915,14 @@
|
|||
"item.tfg.clean_dna_syringe": "Clean Syringe",
|
||||
"item.tfg.stainless_steel_needle": "Stainless Steel Needle",
|
||||
"item.tfg.empty_rod": "Empty Fissile Fuel Rod",
|
||||
"item.tfg.beaker": "Beaker",
|
||||
"item.tfg.beaker.filled": "Beaker of %s",
|
||||
"item.tfg.flask": "Flask",
|
||||
"item.tfg.flask.filled": "Flask of %s",
|
||||
"item.tfg.vial": "Vial",
|
||||
"item.tfg.vial.filled": "Vial of %s",
|
||||
"item.tfg.lab_equipment": "Lab Equipment",
|
||||
"item.tfg.dirty_lab_equipment": "Dirty Lab Equipment",
|
||||
"material.tfg.latex": "Latex",
|
||||
"material.tfg.vulcanized_latex": "Vulcanized Latex",
|
||||
"material.tfg.fluix": "Fluix",
|
||||
|
|
@ -1229,6 +1245,7 @@
|
|||
"tfg.tooltip.obsolete.fridge": "§4Obsolete§f: Replaced by the TFG Refrigerator, you can craft it from this one by placing this in a crafting table!",
|
||||
"tfg.tooltip.blaze_burner": "§cSuperheat§r §7with Coke, Anthracite, or Flawless and Exquisite coal gems.",
|
||||
"tfg.tooltip.machine.perfect_overclock": "This machine has §2Perfect Overclocking§r!",
|
||||
"tfg.tooltip.machine.parallel": "Can parallelize with Parallel Control Hatches.",
|
||||
"tfg.tooltip.machine.customize_interior": "§7The interior is customizable! Check the multiblock preview in JEI.",
|
||||
"tfg.tooltip.armor.copper_diving_suit_warmth": "§7Warmth: -1",
|
||||
"tfg.tooltip.armor.copper_diving_suit_insulation": "§7Insulation: +1",
|
||||
|
|
@ -1268,6 +1285,12 @@
|
|||
"tfg.tooltip.dna_syringe.full": "DNA sample: ",
|
||||
"tfg.tooltip.dna_syringe.explain": "Right-click on a mob to obtain a DNA sample. Place in a crafting grid to clear contents.",
|
||||
"tfg.tooltip.shift_hint": "[Hold-Shift]",
|
||||
"tfg.tooltip.lab_equipment.part": "§7Precisely Holds: ",
|
||||
"tfg.tooltip.lab_equipment.set": "\"§7Does not contain a 5000mB round bottom flask.\"",
|
||||
"tfg.tooltip.lab_equipment.set_dirty": "\"§7Soon you might discover penicillin if you dont clean this.\"",
|
||||
"tfg.tooltip.single_itemstack_bus.0": "§6Item Slots: §f1",
|
||||
"tfg.tooltip.single_itemstack_bus.1": "§6Stack Size: §f1",
|
||||
"tfg.tooltip.growth_chamber": "This machine can run more recipes at once by increasing the number of layers.",
|
||||
"tfc.jei.flint_knapping": "Flint Knapping",
|
||||
"tfc.jei.straw_knapping": "Straw Knapping",
|
||||
"tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.black": "Dyeing",
|
||||
|
|
|
|||
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"parent": "gtceu:block/cube_2_layer/all",
|
||||
"textures": {
|
||||
"bot_all": "#active",
|
||||
"top_all": "#active_overlay"
|
||||
}
|
||||
}
|
||||
|
|
@ -28,7 +28,7 @@
|
|||
"to": [31.9, 15, 31.9],
|
||||
"faces": {
|
||||
"north": {"uv": [16, 5.33333, 0, 10.66667], "texture": "#0"},
|
||||
"east": {"uv": [0, 5.33333, 16, 10.66667], "texture": "#0"},
|
||||
"east": {"uv": [16, 5.33333, 0, 10.66667], "texture": "#0"},
|
||||
"south": {"uv": [16, 5.33333, 0, 10.66667], "texture": "#0"},
|
||||
"west": {"uv": [16, 5.33333, 0, 10.66667], "texture": "#0"},
|
||||
"up": {"uv": [16, 0, 0, 16], "texture": "#1"},
|
||||
|
|
|
|||
|
|
@ -0,0 +1 @@
|
|||
{"parent":"minecraft:block/cube_all","textures":{"all":"tfg:block/casings/heat_pipe_casing"}}
|
||||
|
|
@ -0,0 +1 @@
|
|||
{"parent":"minecraft:block/cube_all","textures":{"all":"tfg:block/casings/machine_casing_sterilizing_pipes"}}
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"parent": "tfg:block/casings/active_casing",
|
||||
"textures": {
|
||||
"active": "tfg:block/casings/machine_casing_sterilizing_pipes_active",
|
||||
"active_overlay": "tfg:block/casings/machine_casing_sterilizing_pipes_active_emissive"
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1 @@
|
|||
{"parent":"minecraft:block/cube_all","textures":{"all":"tfg:block/casings/machine_casing_ultraviolet"}}
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"parent": "tfg:block/casings/active_casing",
|
||||
"textures": {
|
||||
"active": "tfg:block/casings/machine_casing_ultraviolet_active",
|
||||
"active_overlay": "tfg:block/casings/machine_casing_ultraviolet_active_emissive"
|
||||
}
|
||||
}
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_all",
|
||||
"textures": {
|
||||
"all": "tfg:block/polished_titanium_concrete"
|
||||
"all": "tfg:block/concrete/polished_titanium_concrete"
|
||||
}
|
||||
}
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_all",
|
||||
"textures": {
|
||||
"all": "tfg:block/titanium_concrete"
|
||||
"all": "tfg:block/concrete/titanium_concrete"
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_all",
|
||||
"textures": {
|
||||
"all": "tfg:block/concrete/titanium_concrete_bricks"
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_all",
|
||||
"textures": {
|
||||
"all": "tfg:block/concrete/titanium_concrete_bricks_small"
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_all",
|
||||
"textures": {
|
||||
"all": "tfg:block/concrete/titanium_concrete_bricks_square"
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_all",
|
||||
"textures": {
|
||||
"all": "tfg:block/concrete/titanium_concrete_tile"
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_all",
|
||||
"textures": {
|
||||
"all": "tfg:block/concrete/titanium_concrete_tile_small"
|
||||
}
|
||||
}
|
||||
90
kubejs/assets/tfg/models/block/machines/growth_chamber.json
Normal file
|
|
@ -0,0 +1,90 @@
|
|||
{
|
||||
"parent": "minecraft:block/block",
|
||||
"loader": "gtceu:machine",
|
||||
"machine": "tfg:growth_chamber",
|
||||
"texture_overrides": {
|
||||
"all": "tfg:block/casings/machine_casing_bioculture"
|
||||
},
|
||||
"variants": {
|
||||
"is_formed=false,recipe_logic_status=idle": {
|
||||
"model": {
|
||||
"parent": "gtceu:block/machine/template/cube_all/sided",
|
||||
"textures": {
|
||||
"all": "tfg:block/casings/machine_casing_bioculture",
|
||||
"overlay_front": "tfg:block/machines/growth_chamber/overlay_front",
|
||||
"overlay_front_emissive": "tfg:block/machines/growth_chamber/overlay_front_emissive"
|
||||
}
|
||||
}
|
||||
},
|
||||
"is_formed=false,recipe_logic_status=suspend": {
|
||||
"model": {
|
||||
"parent": "gtceu:block/machine/template/cube_all/sided",
|
||||
"textures": {
|
||||
"all": "tfg:block/casings/machine_casing_bioculture",
|
||||
"overlay_front": "tfg:block/machines/growth_chamber/overlay_front",
|
||||
"overlay_front_emissive": "tfg:block/machines/growth_chamber/overlay_front_emissive"
|
||||
}
|
||||
}
|
||||
},
|
||||
"is_formed=false,recipe_logic_status=waiting": {
|
||||
"model": {
|
||||
"parent": "gtceu:block/machine/template/cube_all/sided",
|
||||
"textures": {
|
||||
"all": "tfg:block/casings/machine_casing_bioculture",
|
||||
"overlay_front": "tfg:block/machines/growth_chamber/overlay_front_active",
|
||||
"overlay_front_emissive": "tfg:block/machines/growth_chamber/overlay_front_active_emissive"
|
||||
}
|
||||
}
|
||||
},
|
||||
"is_formed=false,recipe_logic_status=working": {
|
||||
"model": {
|
||||
"parent": "gtceu:block/machine/template/cube_all/sided",
|
||||
"textures": {
|
||||
"all": "tfg:block/casings/machine_casing_bioculture",
|
||||
"overlay_front": "tfg:block/machines/growth_chamber/overlay_front_active",
|
||||
"overlay_front_emissive": "tfg:block/machines/growth_chamber/overlay_front_active_emissive"
|
||||
}
|
||||
}
|
||||
},
|
||||
"is_formed=true,recipe_logic_status=idle": {
|
||||
"model": {
|
||||
"parent": "gtceu:block/machine/template/cube_all/sided",
|
||||
"textures": {
|
||||
"all": "tfg:block/casings/machine_casing_bioculture",
|
||||
"overlay_front": "tfg:block/machines/growth_chamber/overlay_front",
|
||||
"overlay_front_emissive": "tfg:block/machines/growth_chamber/overlay_front_emissive"
|
||||
}
|
||||
}
|
||||
},
|
||||
"is_formed=true,recipe_logic_status=suspend": {
|
||||
"model": {
|
||||
"parent": "gtceu:block/machine/template/cube_all/sided",
|
||||
"textures": {
|
||||
"all": "tfg:block/casings/machine_casing_bioculture",
|
||||
"overlay_front": "tfg:block/machines/growth_chamber/overlay_front",
|
||||
"overlay_front_emissive": "tfg:block/machines/growth_chamber/overlay_front_emissive"
|
||||
}
|
||||
}
|
||||
},
|
||||
"is_formed=true,recipe_logic_status=waiting": {
|
||||
"model": {
|
||||
"parent": "gtceu:block/machine/template/cube_all/sided",
|
||||
"textures": {
|
||||
"all": "tfg:block/casings/machine_casing_bioculture",
|
||||
"overlay_front": "tfg:block/machines/growth_chamber/overlay_front_active",
|
||||
"overlay_front_emissive": "tfg:block/machines/growth_chamber/overlay_front_active_emissive"
|
||||
}
|
||||
}
|
||||
},
|
||||
"is_formed=true,recipe_logic_status=working": {
|
||||
"model": {
|
||||
"parent": "gtceu:block/machine/template/cube_all/sided",
|
||||
"textures": {
|
||||
"all": "tfg:block/casings/machine_casing_bioculture",
|
||||
"overlay_front": "tfg:block/machines/growth_chamber/overlay_front_active",
|
||||
"overlay_front_emissive": "tfg:block/machines/growth_chamber/overlay_front_active_emissive"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,204 @@
|
|||
{
|
||||
"format_version": "1.9.0",
|
||||
"credit": "Made with Blockbench",
|
||||
"ambientocclusion": false,
|
||||
"texture_size": [64, 64],
|
||||
"textures": {
|
||||
"0": "tfg:block/machines/growth_monitors/growth_monitor_base",
|
||||
"1": "tfg:block/machines/growth_monitors/growth_monitor_display_inactive",
|
||||
"particle": "tfg:block/machines/growth_monitors/growth_monitor_base"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "monitor",
|
||||
"from": [-16, -3.83853, -2.39104],
|
||||
"to": [32, 28.16147, -1.39104],
|
||||
"rotation": {"angle": 22.5, "axis": "x", "origin": [6.5, 16.06147, 0.60896]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 5.33889, 8, 10.66667], "rotation": 180, "texture": "#0"},
|
||||
"east": {"uv": [15.83333, 5.33333, 16, 10.66667], "texture": "#0"},
|
||||
"south": {"uv": [8, 5.33333, 16, 10.66667], "texture": "#0"},
|
||||
"west": {"uv": [8, 5.33333, 8.16667, 10.66667], "texture": "#0"},
|
||||
"up": {"uv": [8, 10.5, 16, 10.66667], "texture": "#0"},
|
||||
"down": {"uv": [8, 5.33333, 16, 5.5], "rotation": 180, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "base1",
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 7, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [5.33333, 4.16667, 8, 5.33333], "texture": "#0"},
|
||||
"east": {"uv": [2.66667, 4.16667, 0, 5.33333], "texture": "#0"},
|
||||
"south": {"uv": [8, 1.16667, 5.33333, 0], "texture": "#0"},
|
||||
"west": {"uv": [0, 4.16667, 2.66667, 5.33333], "texture": "#0"},
|
||||
"up": {"uv": [2.66667, 2.66667, 5.33333, 5.33333], "texture": "#0"},
|
||||
"down": {"uv": [5.33333, 0, 8, 2.66667], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "base2",
|
||||
"from": [0, 7, 9],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [0, 5, 0]},
|
||||
"faces": {
|
||||
"north": {"uv": [2.66667, 2.66667, 5.33333, 4.16667], "texture": "#0"},
|
||||
"east": {"uv": [2.66667, 2.66667, 1.5, 4.16667], "texture": "#0"},
|
||||
"south": {"uv": [8, 2.66667, 5.33333, 1.16667], "texture": "#0"},
|
||||
"west": {"uv": [1.5, 2.66667, 2.66667, 4.16667], "texture": "#0"},
|
||||
"up": {"uv": [8, 5.33333, 5.33333, 4.16667], "texture": "#0"},
|
||||
"down": {"uv": [5.33333, 4.16667, 8, 5.33333], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "web1",
|
||||
"from": [0.01, 7.05, 0.05],
|
||||
"to": [2.01, 19.77, 7.05],
|
||||
"rotation": {"angle": 45, "axis": "x", "origin": [0.1, 7, 0]},
|
||||
"faces": {
|
||||
"north": {"uv": [1.16667, 0, 1.5, 2.16667], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 1.16667, 2.16667], "texture": "#0"},
|
||||
"south": {"uv": [1.16667, 0, 1.5, 2.16667], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 1.16667, 2.16667], "texture": "#0"},
|
||||
"up": {"uv": [1.5, 1.16667, 1.16667, 0], "texture": "#0"},
|
||||
"down": {"uv": [1.5, 0, 1.16667, 1.16667], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "web2",
|
||||
"from": [13.99, 7.05, 0.05],
|
||||
"to": [15.99, 19.77, 7.05],
|
||||
"rotation": {"angle": 45, "axis": "x", "origin": [15.9, 7, 0]},
|
||||
"faces": {
|
||||
"north": {"uv": [1.5, 0, 1.16667, 2.16667], "texture": "#0"},
|
||||
"east": {"uv": [1.16667, 0, 0, 2.16667], "texture": "#0"},
|
||||
"south": {"uv": [1.5, 0, 1.16667, 2.16667], "texture": "#0"},
|
||||
"west": {"uv": [1.16667, 0, 0, 2.16667], "texture": "#0"},
|
||||
"up": {"uv": [1.16667, 1.16667, 1.5, 0], "texture": "#0"},
|
||||
"down": {"uv": [1.16667, 0, 1.5, 1.16667], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "mount1",
|
||||
"from": [5, 7, 2],
|
||||
"to": [7, 14, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [6, 7, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [2.5, 0.33333, 2.83333, 1.5], "texture": "#0"},
|
||||
"east": {"uv": [1.5, 0.33333, 2.66667, 1.5], "texture": "#0"},
|
||||
"south": {"uv": [2.5, 0.33333, 2.83333, 1.5], "texture": "#0"},
|
||||
"west": {"uv": [1.5, 0.33333, 2.66667, 1.5], "texture": "#0"},
|
||||
"up": {"uv": [2.5, 0.33333, 2.83333, 1.5], "texture": "#0"},
|
||||
"down": {"uv": [2.5, 0.33333, 2.83333, 1.5], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "mount2",
|
||||
"from": [9, 7, 2],
|
||||
"to": [11, 14, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 7, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [2.83333, 0.33333, 2.5, 1.5], "texture": "#0"},
|
||||
"east": {"uv": [2.66667, 0.33333, 1.5, 1.5], "texture": "#0"},
|
||||
"south": {"uv": [2.83333, 0.33333, 2.5, 1.5], "texture": "#0"},
|
||||
"west": {"uv": [2.66667, 0.33333, 1.5, 1.5], "texture": "#0"},
|
||||
"up": {"uv": [2.83333, 0.33333, 2.5, 1.5], "texture": "#0"},
|
||||
"down": {"uv": [2.83333, 0.33333, 2.5, 1.5], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "arm",
|
||||
"from": [7, 8, -2],
|
||||
"to": [9, 12, 9],
|
||||
"rotation": {"angle": 22.5, "axis": "x", "origin": [7, 13, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [3.66667, 0, 3, 0.33333], "rotation": 90, "texture": "#0"},
|
||||
"east": {"uv": [3.66667, 0, 3, 1.5], "rotation": 90, "texture": "#0"},
|
||||
"south": {"uv": [3.66667, 1.5, 3, 1.83333], "rotation": 90, "texture": "#0"},
|
||||
"west": {"uv": [3, 0, 3.66667, 1.83333], "rotation": 270, "texture": "#0"},
|
||||
"up": {"uv": [3.5, 0, 3.83333, 1.83333], "texture": "#0"},
|
||||
"down": {"uv": [2.83333, 0, 3.16667, 1.83333], "rotation": 180, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "bolt",
|
||||
"from": [4, 10.6, 4.1],
|
||||
"to": [12, 12.6, 6.1],
|
||||
"rotation": {"angle": 45, "axis": "x", "origin": [4, 10.6, 4.1]},
|
||||
"faces": {
|
||||
"north": {"uv": [1.5, 0, 2.83333, 0.33333], "texture": "#0"},
|
||||
"east": {"uv": [1.66667, 0, 2, 0.33333], "texture": "#0"},
|
||||
"south": {"uv": [2.83333, 0, 1.5, 0.33333], "texture": "#0"},
|
||||
"west": {"uv": [2.33333, 0, 2.66667, 0.33333], "texture": "#0"},
|
||||
"up": {"uv": [1.5, 0, 2.83333, 0.33333], "texture": "#0"},
|
||||
"down": {"uv": [1.5, 0.33333, 2.83333, 0], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "screen",
|
||||
"from": [-15, -2.83853, -2.49104],
|
||||
"to": [31, 27.16147, -2.49104],
|
||||
"forge_data": { "block_light": 13, "sky_light": 13 },
|
||||
"shade": false,
|
||||
"rotation": {"angle": 22.5, "axis": "x", "origin": [6.5, 16.06147, 0.60896]},
|
||||
"faces": {
|
||||
"north": {"uv": [16, 12, 0, 0], "rotation": 180, "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 10, 0], "rotation": 90, "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 16, 12], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 10, 0], "rotation": 270, "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 15.33333, 0], "texture": "#1"},
|
||||
"down": {"uv": [0, 0, 15.33333, 0], "rotation": 180, "texture": "#1"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"display": {
|
||||
"thirdperson_righthand": {
|
||||
"rotation": [75, 0, 0],
|
||||
"translation": [0, 1.5, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"thirdperson_lefthand": {
|
||||
"rotation": [75, 0, 0],
|
||||
"translation": [0, 1.5, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"firstperson_righthand": {
|
||||
"rotation": [-3, 28, -8],
|
||||
"translation": [-1.25, 0, 0.5],
|
||||
"scale": [0.3, 0.3, 0.3]
|
||||
},
|
||||
"firstperson_lefthand": {
|
||||
"rotation": [-3, 28, -8],
|
||||
"translation": [-1.25, 0, 0.5],
|
||||
"scale": [0.3, 0.3, 0.3]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 3, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
"rotation": [27, 127, 0],
|
||||
"translation": [1.5, -0.25, 0],
|
||||
"scale": [0.25, 0.25, 0.25]
|
||||
},
|
||||
"head": {
|
||||
"rotation": [-23, 0, 0],
|
||||
"translation": [0, 0, -1.5],
|
||||
"scale": [0.5, 0.5, 0.5]
|
||||
},
|
||||
"fixed": {
|
||||
"rotation": [-22, 0, 0],
|
||||
"translation": [0, 0, 2.5],
|
||||
"scale": [0.4, 0.4, 0.4]
|
||||
}
|
||||
},
|
||||
"groups": [
|
||||
{
|
||||
"name": "base",
|
||||
"origin": [6.5, 16.06147, 0.60896],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8]
|
||||
},
|
||||
9
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,204 @@
|
|||
{
|
||||
"format_version": "1.9.0",
|
||||
"credit": "Made with Blockbench",
|
||||
"ambientocclusion": false,
|
||||
"texture_size": [64, 64],
|
||||
"textures": {
|
||||
"0": "tfg:block/machines/growth_monitors/growth_monitor_base",
|
||||
"1": "tfg:block/machines/growth_monitors/growth_monitor_display_1",
|
||||
"particle": "tfg:block/machines/growth_monitors/growth_monitor_base"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "monitor",
|
||||
"from": [-16, -3.83853, -2.39104],
|
||||
"to": [32, 28.16147, -1.39104],
|
||||
"rotation": {"angle": 22.5, "axis": "x", "origin": [6.5, 16.06147, 0.60896]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 5.33889, 8, 10.66667], "rotation": 180, "texture": "#0"},
|
||||
"east": {"uv": [15.83333, 5.33333, 16, 10.66667], "texture": "#0"},
|
||||
"south": {"uv": [8, 5.33333, 16, 10.66667], "texture": "#0"},
|
||||
"west": {"uv": [8, 5.33333, 8.16667, 10.66667], "texture": "#0"},
|
||||
"up": {"uv": [8, 10.5, 16, 10.66667], "texture": "#0"},
|
||||
"down": {"uv": [8, 5.33333, 16, 5.5], "rotation": 180, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "base1",
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 7, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [5.33333, 4.16667, 8, 5.33333], "texture": "#0"},
|
||||
"east": {"uv": [2.66667, 4.16667, 0, 5.33333], "texture": "#0"},
|
||||
"south": {"uv": [8, 1.16667, 5.33333, 0], "texture": "#0"},
|
||||
"west": {"uv": [0, 4.16667, 2.66667, 5.33333], "texture": "#0"},
|
||||
"up": {"uv": [2.66667, 2.66667, 5.33333, 5.33333], "texture": "#0"},
|
||||
"down": {"uv": [5.33333, 0, 8, 2.66667], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "base2",
|
||||
"from": [0, 7, 9],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [0, 5, 0]},
|
||||
"faces": {
|
||||
"north": {"uv": [2.66667, 2.66667, 5.33333, 4.16667], "texture": "#0"},
|
||||
"east": {"uv": [2.66667, 2.66667, 1.5, 4.16667], "texture": "#0"},
|
||||
"south": {"uv": [8, 2.66667, 5.33333, 1.16667], "texture": "#0"},
|
||||
"west": {"uv": [1.5, 2.66667, 2.66667, 4.16667], "texture": "#0"},
|
||||
"up": {"uv": [8, 5.33333, 5.33333, 4.16667], "texture": "#0"},
|
||||
"down": {"uv": [5.33333, 4.16667, 8, 5.33333], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "web1",
|
||||
"from": [0.01, 7.05, 0.05],
|
||||
"to": [2.01, 19.77, 7.05],
|
||||
"rotation": {"angle": 45, "axis": "x", "origin": [0.1, 7, 0]},
|
||||
"faces": {
|
||||
"north": {"uv": [1.16667, 0, 1.5, 2.16667], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 1.16667, 2.16667], "texture": "#0"},
|
||||
"south": {"uv": [1.16667, 0, 1.5, 2.16667], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 1.16667, 2.16667], "texture": "#0"},
|
||||
"up": {"uv": [1.5, 1.16667, 1.16667, 0], "texture": "#0"},
|
||||
"down": {"uv": [1.5, 0, 1.16667, 1.16667], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "web2",
|
||||
"from": [13.99, 7.05, 0.05],
|
||||
"to": [15.99, 19.77, 7.05],
|
||||
"rotation": {"angle": 45, "axis": "x", "origin": [15.9, 7, 0]},
|
||||
"faces": {
|
||||
"north": {"uv": [1.5, 0, 1.16667, 2.16667], "texture": "#0"},
|
||||
"east": {"uv": [1.16667, 0, 0, 2.16667], "texture": "#0"},
|
||||
"south": {"uv": [1.5, 0, 1.16667, 2.16667], "texture": "#0"},
|
||||
"west": {"uv": [1.16667, 0, 0, 2.16667], "texture": "#0"},
|
||||
"up": {"uv": [1.16667, 1.16667, 1.5, 0], "texture": "#0"},
|
||||
"down": {"uv": [1.16667, 0, 1.5, 1.16667], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "mount1",
|
||||
"from": [5, 7, 2],
|
||||
"to": [7, 14, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [6, 7, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [2.5, 0.33333, 2.83333, 1.5], "texture": "#0"},
|
||||
"east": {"uv": [1.5, 0.33333, 2.66667, 1.5], "texture": "#0"},
|
||||
"south": {"uv": [2.5, 0.33333, 2.83333, 1.5], "texture": "#0"},
|
||||
"west": {"uv": [1.5, 0.33333, 2.66667, 1.5], "texture": "#0"},
|
||||
"up": {"uv": [2.5, 0.33333, 2.83333, 1.5], "texture": "#0"},
|
||||
"down": {"uv": [2.5, 0.33333, 2.83333, 1.5], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "mount2",
|
||||
"from": [9, 7, 2],
|
||||
"to": [11, 14, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 7, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [2.83333, 0.33333, 2.5, 1.5], "texture": "#0"},
|
||||
"east": {"uv": [2.66667, 0.33333, 1.5, 1.5], "texture": "#0"},
|
||||
"south": {"uv": [2.83333, 0.33333, 2.5, 1.5], "texture": "#0"},
|
||||
"west": {"uv": [2.66667, 0.33333, 1.5, 1.5], "texture": "#0"},
|
||||
"up": {"uv": [2.83333, 0.33333, 2.5, 1.5], "texture": "#0"},
|
||||
"down": {"uv": [2.83333, 0.33333, 2.5, 1.5], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "arm",
|
||||
"from": [7, 8, -2],
|
||||
"to": [9, 12, 9],
|
||||
"rotation": {"angle": 22.5, "axis": "x", "origin": [7, 13, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [3.66667, 0, 3, 0.33333], "rotation": 90, "texture": "#0"},
|
||||
"east": {"uv": [3.66667, 0, 3, 1.5], "rotation": 90, "texture": "#0"},
|
||||
"south": {"uv": [3.66667, 1.5, 3, 1.83333], "rotation": 90, "texture": "#0"},
|
||||
"west": {"uv": [3, 0, 3.66667, 1.83333], "rotation": 270, "texture": "#0"},
|
||||
"up": {"uv": [3.5, 0, 3.83333, 1.83333], "texture": "#0"},
|
||||
"down": {"uv": [2.83333, 0, 3.16667, 1.83333], "rotation": 180, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "bolt",
|
||||
"from": [4, 10.6, 4.1],
|
||||
"to": [12, 12.6, 6.1],
|
||||
"rotation": {"angle": 45, "axis": "x", "origin": [4, 10.6, 4.1]},
|
||||
"faces": {
|
||||
"north": {"uv": [1.5, 0, 2.83333, 0.33333], "texture": "#0"},
|
||||
"east": {"uv": [1.66667, 0, 2, 0.33333], "texture": "#0"},
|
||||
"south": {"uv": [2.83333, 0, 1.5, 0.33333], "texture": "#0"},
|
||||
"west": {"uv": [2.33333, 0, 2.66667, 0.33333], "texture": "#0"},
|
||||
"up": {"uv": [1.5, 0, 2.83333, 0.33333], "texture": "#0"},
|
||||
"down": {"uv": [1.5, 0.33333, 2.83333, 0], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "screen",
|
||||
"from": [-15, -2.83853, -2.49104],
|
||||
"to": [31, 27.16147, -2.49104],
|
||||
"forge_data": { "block_light": 13, "sky_light": 13 },
|
||||
"shade": false,
|
||||
"rotation": {"angle": 22.5, "axis": "x", "origin": [6.5, 16.06147, 0.60896]},
|
||||
"faces": {
|
||||
"north": {"uv": [16, 12, 0, 0], "rotation": 180, "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 10, 0], "rotation": 90, "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 16, 12], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 10, 0], "rotation": 270, "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 15.33333, 0], "texture": "#1"},
|
||||
"down": {"uv": [0, 0, 15.33333, 0], "rotation": 180, "texture": "#1"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"display": {
|
||||
"thirdperson_righthand": {
|
||||
"rotation": [75, 0, 0],
|
||||
"translation": [0, 1.5, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"thirdperson_lefthand": {
|
||||
"rotation": [75, 0, 0],
|
||||
"translation": [0, 1.5, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"firstperson_righthand": {
|
||||
"rotation": [-3, 28, -8],
|
||||
"translation": [-1.25, 0, 0.5],
|
||||
"scale": [0.3, 0.3, 0.3]
|
||||
},
|
||||
"firstperson_lefthand": {
|
||||
"rotation": [-3, 28, -8],
|
||||
"translation": [-1.25, 0, 0.5],
|
||||
"scale": [0.3, 0.3, 0.3]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 3, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
"rotation": [27, 127, 0],
|
||||
"translation": [1.5, -0.25, 0],
|
||||
"scale": [0.25, 0.25, 0.25]
|
||||
},
|
||||
"head": {
|
||||
"rotation": [-23, 0, 0],
|
||||
"translation": [0, 0, -1.5],
|
||||
"scale": [0.5, 0.5, 0.5]
|
||||
},
|
||||
"fixed": {
|
||||
"rotation": [-22, 0, 0],
|
||||
"translation": [0, 0, 2.5],
|
||||
"scale": [0.4, 0.4, 0.4]
|
||||
}
|
||||
},
|
||||
"groups": [
|
||||
{
|
||||
"name": "base",
|
||||
"origin": [6.5, 16.06147, 0.60896],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8]
|
||||
},
|
||||
9
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,204 @@
|
|||
{
|
||||
"format_version": "1.9.0",
|
||||
"credit": "Made with Blockbench",
|
||||
"ambientocclusion": false,
|
||||
"texture_size": [64, 64],
|
||||
"textures": {
|
||||
"0": "tfg:block/machines/growth_monitors/growth_monitor_base",
|
||||
"1": "tfg:block/machines/growth_monitors/growth_monitor_display_2",
|
||||
"particle": "tfg:block/machines/growth_monitors/growth_monitor_base"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "monitor",
|
||||
"from": [-16, -3.83853, -2.39104],
|
||||
"to": [32, 28.16147, -1.39104],
|
||||
"rotation": {"angle": 22.5, "axis": "x", "origin": [6.5, 16.06147, 0.60896]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 5.33889, 8, 10.66667], "rotation": 180, "texture": "#0"},
|
||||
"east": {"uv": [15.83333, 5.33333, 16, 10.66667], "texture": "#0"},
|
||||
"south": {"uv": [8, 5.33333, 16, 10.66667], "texture": "#0"},
|
||||
"west": {"uv": [8, 5.33333, 8.16667, 10.66667], "texture": "#0"},
|
||||
"up": {"uv": [8, 10.5, 16, 10.66667], "texture": "#0"},
|
||||
"down": {"uv": [8, 5.33333, 16, 5.5], "rotation": 180, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "base1",
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 7, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [5.33333, 4.16667, 8, 5.33333], "texture": "#0"},
|
||||
"east": {"uv": [2.66667, 4.16667, 0, 5.33333], "texture": "#0"},
|
||||
"south": {"uv": [8, 1.16667, 5.33333, 0], "texture": "#0"},
|
||||
"west": {"uv": [0, 4.16667, 2.66667, 5.33333], "texture": "#0"},
|
||||
"up": {"uv": [2.66667, 2.66667, 5.33333, 5.33333], "texture": "#0"},
|
||||
"down": {"uv": [5.33333, 0, 8, 2.66667], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "base2",
|
||||
"from": [0, 7, 9],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [0, 5, 0]},
|
||||
"faces": {
|
||||
"north": {"uv": [2.66667, 2.66667, 5.33333, 4.16667], "texture": "#0"},
|
||||
"east": {"uv": [2.66667, 2.66667, 1.5, 4.16667], "texture": "#0"},
|
||||
"south": {"uv": [8, 2.66667, 5.33333, 1.16667], "texture": "#0"},
|
||||
"west": {"uv": [1.5, 2.66667, 2.66667, 4.16667], "texture": "#0"},
|
||||
"up": {"uv": [8, 5.33333, 5.33333, 4.16667], "texture": "#0"},
|
||||
"down": {"uv": [5.33333, 4.16667, 8, 5.33333], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "web1",
|
||||
"from": [0.01, 7.05, 0.05],
|
||||
"to": [2.01, 19.77, 7.05],
|
||||
"rotation": {"angle": 45, "axis": "x", "origin": [0.1, 7, 0]},
|
||||
"faces": {
|
||||
"north": {"uv": [1.16667, 0, 1.5, 2.16667], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 1.16667, 2.16667], "texture": "#0"},
|
||||
"south": {"uv": [1.16667, 0, 1.5, 2.16667], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 1.16667, 2.16667], "texture": "#0"},
|
||||
"up": {"uv": [1.5, 1.16667, 1.16667, 0], "texture": "#0"},
|
||||
"down": {"uv": [1.5, 0, 1.16667, 1.16667], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "web2",
|
||||
"from": [13.99, 7.05, 0.05],
|
||||
"to": [15.99, 19.77, 7.05],
|
||||
"rotation": {"angle": 45, "axis": "x", "origin": [15.9, 7, 0]},
|
||||
"faces": {
|
||||
"north": {"uv": [1.5, 0, 1.16667, 2.16667], "texture": "#0"},
|
||||
"east": {"uv": [1.16667, 0, 0, 2.16667], "texture": "#0"},
|
||||
"south": {"uv": [1.5, 0, 1.16667, 2.16667], "texture": "#0"},
|
||||
"west": {"uv": [1.16667, 0, 0, 2.16667], "texture": "#0"},
|
||||
"up": {"uv": [1.16667, 1.16667, 1.5, 0], "texture": "#0"},
|
||||
"down": {"uv": [1.16667, 0, 1.5, 1.16667], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "mount1",
|
||||
"from": [5, 7, 2],
|
||||
"to": [7, 14, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [6, 7, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [2.5, 0.33333, 2.83333, 1.5], "texture": "#0"},
|
||||
"east": {"uv": [1.5, 0.33333, 2.66667, 1.5], "texture": "#0"},
|
||||
"south": {"uv": [2.5, 0.33333, 2.83333, 1.5], "texture": "#0"},
|
||||
"west": {"uv": [1.5, 0.33333, 2.66667, 1.5], "texture": "#0"},
|
||||
"up": {"uv": [2.5, 0.33333, 2.83333, 1.5], "texture": "#0"},
|
||||
"down": {"uv": [2.5, 0.33333, 2.83333, 1.5], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "mount2",
|
||||
"from": [9, 7, 2],
|
||||
"to": [11, 14, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 7, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [2.83333, 0.33333, 2.5, 1.5], "texture": "#0"},
|
||||
"east": {"uv": [2.66667, 0.33333, 1.5, 1.5], "texture": "#0"},
|
||||
"south": {"uv": [2.83333, 0.33333, 2.5, 1.5], "texture": "#0"},
|
||||
"west": {"uv": [2.66667, 0.33333, 1.5, 1.5], "texture": "#0"},
|
||||
"up": {"uv": [2.83333, 0.33333, 2.5, 1.5], "texture": "#0"},
|
||||
"down": {"uv": [2.83333, 0.33333, 2.5, 1.5], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "arm",
|
||||
"from": [7, 8, -2],
|
||||
"to": [9, 12, 9],
|
||||
"rotation": {"angle": 22.5, "axis": "x", "origin": [7, 13, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [3.66667, 0, 3, 0.33333], "rotation": 90, "texture": "#0"},
|
||||
"east": {"uv": [3.66667, 0, 3, 1.5], "rotation": 90, "texture": "#0"},
|
||||
"south": {"uv": [3.66667, 1.5, 3, 1.83333], "rotation": 90, "texture": "#0"},
|
||||
"west": {"uv": [3, 0, 3.66667, 1.83333], "rotation": 270, "texture": "#0"},
|
||||
"up": {"uv": [3.5, 0, 3.83333, 1.83333], "texture": "#0"},
|
||||
"down": {"uv": [2.83333, 0, 3.16667, 1.83333], "rotation": 180, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "bolt",
|
||||
"from": [4, 10.6, 4.1],
|
||||
"to": [12, 12.6, 6.1],
|
||||
"rotation": {"angle": 45, "axis": "x", "origin": [4, 10.6, 4.1]},
|
||||
"faces": {
|
||||
"north": {"uv": [1.5, 0, 2.83333, 0.33333], "texture": "#0"},
|
||||
"east": {"uv": [1.66667, 0, 2, 0.33333], "texture": "#0"},
|
||||
"south": {"uv": [2.83333, 0, 1.5, 0.33333], "texture": "#0"},
|
||||
"west": {"uv": [2.33333, 0, 2.66667, 0.33333], "texture": "#0"},
|
||||
"up": {"uv": [1.5, 0, 2.83333, 0.33333], "texture": "#0"},
|
||||
"down": {"uv": [1.5, 0.33333, 2.83333, 0], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "screen",
|
||||
"from": [-15, -2.83853, -2.49104],
|
||||
"to": [31, 27.16147, -2.49104],
|
||||
"forge_data": { "block_light": 13, "sky_light": 13 },
|
||||
"shade": false,
|
||||
"rotation": {"angle": 22.5, "axis": "x", "origin": [6.5, 16.06147, 0.60896]},
|
||||
"faces": {
|
||||
"north": {"uv": [16, 12, 0, 0], "rotation": 180, "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 10, 0], "rotation": 90, "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 16, 12], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 10, 0], "rotation": 270, "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 15.33333, 0], "texture": "#1"},
|
||||
"down": {"uv": [0, 0, 15.33333, 0], "rotation": 180, "texture": "#1"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"display": {
|
||||
"thirdperson_righthand": {
|
||||
"rotation": [75, 0, 0],
|
||||
"translation": [0, 1.5, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"thirdperson_lefthand": {
|
||||
"rotation": [75, 0, 0],
|
||||
"translation": [0, 1.5, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"firstperson_righthand": {
|
||||
"rotation": [-3, 28, -8],
|
||||
"translation": [-1.25, 0, 0.5],
|
||||
"scale": [0.3, 0.3, 0.3]
|
||||
},
|
||||
"firstperson_lefthand": {
|
||||
"rotation": [-3, 28, -8],
|
||||
"translation": [-1.25, 0, 0.5],
|
||||
"scale": [0.3, 0.3, 0.3]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 3, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
"rotation": [27, 127, 0],
|
||||
"translation": [1.5, -0.25, 0],
|
||||
"scale": [0.25, 0.25, 0.25]
|
||||
},
|
||||
"head": {
|
||||
"rotation": [-23, 0, 0],
|
||||
"translation": [0, 0, -1.5],
|
||||
"scale": [0.5, 0.5, 0.5]
|
||||
},
|
||||
"fixed": {
|
||||
"rotation": [-22, 0, 0],
|
||||
"translation": [0, 0, 2.5],
|
||||
"scale": [0.4, 0.4, 0.4]
|
||||
}
|
||||
},
|
||||
"groups": [
|
||||
{
|
||||
"name": "base",
|
||||
"origin": [6.5, 16.06147, 0.60896],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8]
|
||||
},
|
||||
9
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,204 @@
|
|||
{
|
||||
"format_version": "1.9.0",
|
||||
"credit": "Made with Blockbench",
|
||||
"ambientocclusion": false,
|
||||
"texture_size": [64, 64],
|
||||
"textures": {
|
||||
"0": "tfg:block/machines/growth_monitors/growth_monitor_base",
|
||||
"1": "tfg:block/machines/growth_monitors/growth_monitor_display_2",
|
||||
"particle": "tfg:block/machines/growth_monitors/growth_monitor_base"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "monitor",
|
||||
"from": [-16, -3.83853, -2.39104],
|
||||
"to": [32, 28.16147, -1.39104],
|
||||
"rotation": {"angle": 22.5, "axis": "x", "origin": [6.5, 16.06147, 0.60896]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 5.33889, 8, 10.66667], "rotation": 180, "texture": "#0"},
|
||||
"east": {"uv": [15.83333, 5.33333, 16, 10.66667], "texture": "#0"},
|
||||
"south": {"uv": [8, 5.33333, 16, 10.66667], "texture": "#0"},
|
||||
"west": {"uv": [8, 5.33333, 8.16667, 10.66667], "texture": "#0"},
|
||||
"up": {"uv": [8, 10.5, 16, 10.66667], "texture": "#0"},
|
||||
"down": {"uv": [8, 5.33333, 16, 5.5], "rotation": 180, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "base1",
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 7, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [5.33333, 4.16667, 8, 5.33333], "texture": "#0"},
|
||||
"east": {"uv": [2.66667, 4.16667, 0, 5.33333], "texture": "#0"},
|
||||
"south": {"uv": [8, 1.16667, 5.33333, 0], "texture": "#0"},
|
||||
"west": {"uv": [0, 4.16667, 2.66667, 5.33333], "texture": "#0"},
|
||||
"up": {"uv": [2.66667, 2.66667, 5.33333, 5.33333], "texture": "#0"},
|
||||
"down": {"uv": [5.33333, 0, 8, 2.66667], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "base2",
|
||||
"from": [0, 7, 9],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [0, 5, 0]},
|
||||
"faces": {
|
||||
"north": {"uv": [2.66667, 2.66667, 5.33333, 4.16667], "texture": "#0"},
|
||||
"east": {"uv": [2.66667, 2.66667, 1.5, 4.16667], "texture": "#0"},
|
||||
"south": {"uv": [8, 2.66667, 5.33333, 1.16667], "texture": "#0"},
|
||||
"west": {"uv": [1.5, 2.66667, 2.66667, 4.16667], "texture": "#0"},
|
||||
"up": {"uv": [8, 5.33333, 5.33333, 4.16667], "texture": "#0"},
|
||||
"down": {"uv": [5.33333, 4.16667, 8, 5.33333], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "web1",
|
||||
"from": [0.01, 7.05, 0.05],
|
||||
"to": [2.01, 19.77, 7.05],
|
||||
"rotation": {"angle": 45, "axis": "x", "origin": [0.1, 7, 0]},
|
||||
"faces": {
|
||||
"north": {"uv": [1.16667, 0, 1.5, 2.16667], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 1.16667, 2.16667], "texture": "#0"},
|
||||
"south": {"uv": [1.16667, 0, 1.5, 2.16667], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 1.16667, 2.16667], "texture": "#0"},
|
||||
"up": {"uv": [1.5, 1.16667, 1.16667, 0], "texture": "#0"},
|
||||
"down": {"uv": [1.5, 0, 1.16667, 1.16667], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "web2",
|
||||
"from": [13.99, 7.05, 0.05],
|
||||
"to": [15.99, 19.77, 7.05],
|
||||
"rotation": {"angle": 45, "axis": "x", "origin": [15.9, 7, 0]},
|
||||
"faces": {
|
||||
"north": {"uv": [1.5, 0, 1.16667, 2.16667], "texture": "#0"},
|
||||
"east": {"uv": [1.16667, 0, 0, 2.16667], "texture": "#0"},
|
||||
"south": {"uv": [1.5, 0, 1.16667, 2.16667], "texture": "#0"},
|
||||
"west": {"uv": [1.16667, 0, 0, 2.16667], "texture": "#0"},
|
||||
"up": {"uv": [1.16667, 1.16667, 1.5, 0], "texture": "#0"},
|
||||
"down": {"uv": [1.16667, 0, 1.5, 1.16667], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "mount1",
|
||||
"from": [5, 7, 2],
|
||||
"to": [7, 14, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [6, 7, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [2.5, 0.33333, 2.83333, 1.5], "texture": "#0"},
|
||||
"east": {"uv": [1.5, 0.33333, 2.66667, 1.5], "texture": "#0"},
|
||||
"south": {"uv": [2.5, 0.33333, 2.83333, 1.5], "texture": "#0"},
|
||||
"west": {"uv": [1.5, 0.33333, 2.66667, 1.5], "texture": "#0"},
|
||||
"up": {"uv": [2.5, 0.33333, 2.83333, 1.5], "texture": "#0"},
|
||||
"down": {"uv": [2.5, 0.33333, 2.83333, 1.5], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "mount2",
|
||||
"from": [9, 7, 2],
|
||||
"to": [11, 14, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 7, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [2.83333, 0.33333, 2.5, 1.5], "texture": "#0"},
|
||||
"east": {"uv": [2.66667, 0.33333, 1.5, 1.5], "texture": "#0"},
|
||||
"south": {"uv": [2.83333, 0.33333, 2.5, 1.5], "texture": "#0"},
|
||||
"west": {"uv": [2.66667, 0.33333, 1.5, 1.5], "texture": "#0"},
|
||||
"up": {"uv": [2.83333, 0.33333, 2.5, 1.5], "texture": "#0"},
|
||||
"down": {"uv": [2.83333, 0.33333, 2.5, 1.5], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "arm",
|
||||
"from": [7, 8, -2],
|
||||
"to": [9, 12, 9],
|
||||
"rotation": {"angle": 22.5, "axis": "x", "origin": [7, 13, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [3.66667, 0, 3, 0.33333], "rotation": 90, "texture": "#0"},
|
||||
"east": {"uv": [3.66667, 0, 3, 1.5], "rotation": 90, "texture": "#0"},
|
||||
"south": {"uv": [3.66667, 1.5, 3, 1.83333], "rotation": 90, "texture": "#0"},
|
||||
"west": {"uv": [3, 0, 3.66667, 1.83333], "rotation": 270, "texture": "#0"},
|
||||
"up": {"uv": [3.5, 0, 3.83333, 1.83333], "texture": "#0"},
|
||||
"down": {"uv": [2.83333, 0, 3.16667, 1.83333], "rotation": 180, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "bolt",
|
||||
"from": [4, 10.6, 4.1],
|
||||
"to": [12, 12.6, 6.1],
|
||||
"rotation": {"angle": 45, "axis": "x", "origin": [4, 10.6, 4.1]},
|
||||
"faces": {
|
||||
"north": {"uv": [1.5, 0, 2.83333, 0.33333], "texture": "#0"},
|
||||
"east": {"uv": [1.66667, 0, 2, 0.33333], "texture": "#0"},
|
||||
"south": {"uv": [2.83333, 0, 1.5, 0.33333], "texture": "#0"},
|
||||
"west": {"uv": [2.33333, 0, 2.66667, 0.33333], "texture": "#0"},
|
||||
"up": {"uv": [1.5, 0, 2.83333, 0.33333], "texture": "#0"},
|
||||
"down": {"uv": [1.5, 0.33333, 2.83333, 0], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "screen",
|
||||
"from": [-15, -2.83853, -2.49104],
|
||||
"to": [31, 27.16147, -2.49104],
|
||||
"forge_data": { "block_light": 13, "sky_light": 13 },
|
||||
"shade": false,
|
||||
"rotation": {"angle": 22.5, "axis": "x", "origin": [6.5, 16.06147, 0.60896]},
|
||||
"faces": {
|
||||
"north": {"uv": [16, 12, 0, 0], "rotation": 180, "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 10, 0], "rotation": 90, "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 16, 12], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 10, 0], "rotation": 270, "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 15.33333, 0], "texture": "#1"},
|
||||
"down": {"uv": [0, 0, 15.33333, 0], "rotation": 180, "texture": "#1"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"display": {
|
||||
"thirdperson_righthand": {
|
||||
"rotation": [75, 0, 0],
|
||||
"translation": [0, 1.5, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"thirdperson_lefthand": {
|
||||
"rotation": [75, 0, 0],
|
||||
"translation": [0, 1.5, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"firstperson_righthand": {
|
||||
"rotation": [-3, 28, -8],
|
||||
"translation": [-1.25, 0, 0.5],
|
||||
"scale": [0.3, 0.3, 0.3]
|
||||
},
|
||||
"firstperson_lefthand": {
|
||||
"rotation": [-3, 28, -8],
|
||||
"translation": [-1.25, 0, 0.5],
|
||||
"scale": [0.3, 0.3, 0.3]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 3, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
"rotation": [27, 127, 0],
|
||||
"translation": [1.5, -0.25, 0],
|
||||
"scale": [0.25, 0.25, 0.25]
|
||||
},
|
||||
"head": {
|
||||
"rotation": [-23, 0, 0],
|
||||
"translation": [0, 0, -1.5],
|
||||
"scale": [0.5, 0.5, 0.5]
|
||||
},
|
||||
"fixed": {
|
||||
"rotation": [-22, 0, 0],
|
||||
"translation": [0, 0, 2.5],
|
||||
"scale": [0.4, 0.4, 0.4]
|
||||
}
|
||||
},
|
||||
"groups": [
|
||||
{
|
||||
"name": "base",
|
||||
"origin": [6.5, 16.06147, 0.60896],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8]
|
||||
},
|
||||
9
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,204 @@
|
|||
{
|
||||
"format_version": "1.9.0",
|
||||
"credit": "Made with Blockbench",
|
||||
"ambientocclusion": false,
|
||||
"texture_size": [64, 64],
|
||||
"textures": {
|
||||
"0": "tfg:block/machines/growth_monitors/growth_monitor_base",
|
||||
"1": "tfg:block/machines/growth_monitors/growth_monitor_display_4",
|
||||
"particle": "tfg:block/machines/growth_monitors/growth_monitor_base"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "monitor",
|
||||
"from": [-16, -3.83853, -2.39104],
|
||||
"to": [32, 28.16147, -1.39104],
|
||||
"rotation": {"angle": 22.5, "axis": "x", "origin": [6.5, 16.06147, 0.60896]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 5.33889, 8, 10.66667], "rotation": 180, "texture": "#0"},
|
||||
"east": {"uv": [15.83333, 5.33333, 16, 10.66667], "texture": "#0"},
|
||||
"south": {"uv": [8, 5.33333, 16, 10.66667], "texture": "#0"},
|
||||
"west": {"uv": [8, 5.33333, 8.16667, 10.66667], "texture": "#0"},
|
||||
"up": {"uv": [8, 10.5, 16, 10.66667], "texture": "#0"},
|
||||
"down": {"uv": [8, 5.33333, 16, 5.5], "rotation": 180, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "base1",
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 7, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [5.33333, 4.16667, 8, 5.33333], "texture": "#0"},
|
||||
"east": {"uv": [2.66667, 4.16667, 0, 5.33333], "texture": "#0"},
|
||||
"south": {"uv": [8, 1.16667, 5.33333, 0], "texture": "#0"},
|
||||
"west": {"uv": [0, 4.16667, 2.66667, 5.33333], "texture": "#0"},
|
||||
"up": {"uv": [2.66667, 2.66667, 5.33333, 5.33333], "texture": "#0"},
|
||||
"down": {"uv": [5.33333, 0, 8, 2.66667], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "base2",
|
||||
"from": [0, 7, 9],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [0, 5, 0]},
|
||||
"faces": {
|
||||
"north": {"uv": [2.66667, 2.66667, 5.33333, 4.16667], "texture": "#0"},
|
||||
"east": {"uv": [2.66667, 2.66667, 1.5, 4.16667], "texture": "#0"},
|
||||
"south": {"uv": [8, 2.66667, 5.33333, 1.16667], "texture": "#0"},
|
||||
"west": {"uv": [1.5, 2.66667, 2.66667, 4.16667], "texture": "#0"},
|
||||
"up": {"uv": [8, 5.33333, 5.33333, 4.16667], "texture": "#0"},
|
||||
"down": {"uv": [5.33333, 4.16667, 8, 5.33333], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "web1",
|
||||
"from": [0.01, 7.05, 0.05],
|
||||
"to": [2.01, 19.77, 7.05],
|
||||
"rotation": {"angle": 45, "axis": "x", "origin": [0.1, 7, 0]},
|
||||
"faces": {
|
||||
"north": {"uv": [1.16667, 0, 1.5, 2.16667], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 1.16667, 2.16667], "texture": "#0"},
|
||||
"south": {"uv": [1.16667, 0, 1.5, 2.16667], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 1.16667, 2.16667], "texture": "#0"},
|
||||
"up": {"uv": [1.5, 1.16667, 1.16667, 0], "texture": "#0"},
|
||||
"down": {"uv": [1.5, 0, 1.16667, 1.16667], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "web2",
|
||||
"from": [13.99, 7.05, 0.05],
|
||||
"to": [15.99, 19.77, 7.05],
|
||||
"rotation": {"angle": 45, "axis": "x", "origin": [15.9, 7, 0]},
|
||||
"faces": {
|
||||
"north": {"uv": [1.5, 0, 1.16667, 2.16667], "texture": "#0"},
|
||||
"east": {"uv": [1.16667, 0, 0, 2.16667], "texture": "#0"},
|
||||
"south": {"uv": [1.5, 0, 1.16667, 2.16667], "texture": "#0"},
|
||||
"west": {"uv": [1.16667, 0, 0, 2.16667], "texture": "#0"},
|
||||
"up": {"uv": [1.16667, 1.16667, 1.5, 0], "texture": "#0"},
|
||||
"down": {"uv": [1.16667, 0, 1.5, 1.16667], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "mount1",
|
||||
"from": [5, 7, 2],
|
||||
"to": [7, 14, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [6, 7, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [2.5, 0.33333, 2.83333, 1.5], "texture": "#0"},
|
||||
"east": {"uv": [1.5, 0.33333, 2.66667, 1.5], "texture": "#0"},
|
||||
"south": {"uv": [2.5, 0.33333, 2.83333, 1.5], "texture": "#0"},
|
||||
"west": {"uv": [1.5, 0.33333, 2.66667, 1.5], "texture": "#0"},
|
||||
"up": {"uv": [2.5, 0.33333, 2.83333, 1.5], "texture": "#0"},
|
||||
"down": {"uv": [2.5, 0.33333, 2.83333, 1.5], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "mount2",
|
||||
"from": [9, 7, 2],
|
||||
"to": [11, 14, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 7, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [2.83333, 0.33333, 2.5, 1.5], "texture": "#0"},
|
||||
"east": {"uv": [2.66667, 0.33333, 1.5, 1.5], "texture": "#0"},
|
||||
"south": {"uv": [2.83333, 0.33333, 2.5, 1.5], "texture": "#0"},
|
||||
"west": {"uv": [2.66667, 0.33333, 1.5, 1.5], "texture": "#0"},
|
||||
"up": {"uv": [2.83333, 0.33333, 2.5, 1.5], "texture": "#0"},
|
||||
"down": {"uv": [2.83333, 0.33333, 2.5, 1.5], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "arm",
|
||||
"from": [7, 8, -2],
|
||||
"to": [9, 12, 9],
|
||||
"rotation": {"angle": 22.5, "axis": "x", "origin": [7, 13, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [3.66667, 0, 3, 0.33333], "rotation": 90, "texture": "#0"},
|
||||
"east": {"uv": [3.66667, 0, 3, 1.5], "rotation": 90, "texture": "#0"},
|
||||
"south": {"uv": [3.66667, 1.5, 3, 1.83333], "rotation": 90, "texture": "#0"},
|
||||
"west": {"uv": [3, 0, 3.66667, 1.83333], "rotation": 270, "texture": "#0"},
|
||||
"up": {"uv": [3.5, 0, 3.83333, 1.83333], "texture": "#0"},
|
||||
"down": {"uv": [2.83333, 0, 3.16667, 1.83333], "rotation": 180, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "bolt",
|
||||
"from": [4, 10.6, 4.1],
|
||||
"to": [12, 12.6, 6.1],
|
||||
"rotation": {"angle": 45, "axis": "x", "origin": [4, 10.6, 4.1]},
|
||||
"faces": {
|
||||
"north": {"uv": [1.5, 0, 2.83333, 0.33333], "texture": "#0"},
|
||||
"east": {"uv": [1.66667, 0, 2, 0.33333], "texture": "#0"},
|
||||
"south": {"uv": [2.83333, 0, 1.5, 0.33333], "texture": "#0"},
|
||||
"west": {"uv": [2.33333, 0, 2.66667, 0.33333], "texture": "#0"},
|
||||
"up": {"uv": [1.5, 0, 2.83333, 0.33333], "texture": "#0"},
|
||||
"down": {"uv": [1.5, 0.33333, 2.83333, 0], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "screen",
|
||||
"from": [-15, -2.83853, -2.49104],
|
||||
"to": [31, 27.16147, -2.49104],
|
||||
"forge_data": { "block_light": 13, "sky_light": 13 },
|
||||
"shade": false,
|
||||
"rotation": {"angle": 22.5, "axis": "x", "origin": [6.5, 16.06147, 0.60896]},
|
||||
"faces": {
|
||||
"north": {"uv": [16, 12, 0, 0], "rotation": 180, "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 10, 0], "rotation": 90, "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 16, 12], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 10, 0], "rotation": 270, "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 15.33333, 0], "texture": "#1"},
|
||||
"down": {"uv": [0, 0, 15.33333, 0], "rotation": 180, "texture": "#1"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"display": {
|
||||
"thirdperson_righthand": {
|
||||
"rotation": [75, 0, 0],
|
||||
"translation": [0, 1.5, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"thirdperson_lefthand": {
|
||||
"rotation": [75, 0, 0],
|
||||
"translation": [0, 1.5, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"firstperson_righthand": {
|
||||
"rotation": [-3, 28, -8],
|
||||
"translation": [-1.25, 0, 0.5],
|
||||
"scale": [0.3, 0.3, 0.3]
|
||||
},
|
||||
"firstperson_lefthand": {
|
||||
"rotation": [-3, 28, -8],
|
||||
"translation": [-1.25, 0, 0.5],
|
||||
"scale": [0.3, 0.3, 0.3]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 3, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
"rotation": [27, 127, 0],
|
||||
"translation": [1.5, -0.25, 0],
|
||||
"scale": [0.25, 0.25, 0.25]
|
||||
},
|
||||
"head": {
|
||||
"rotation": [-23, 0, 0],
|
||||
"translation": [0, 0, -1.5],
|
||||
"scale": [0.5, 0.5, 0.5]
|
||||
},
|
||||
"fixed": {
|
||||
"rotation": [-22, 0, 0],
|
||||
"translation": [0, 0, 2.5],
|
||||
"scale": [0.4, 0.4, 0.4]
|
||||
}
|
||||
},
|
||||
"groups": [
|
||||
{
|
||||
"name": "base",
|
||||
"origin": [6.5, 16.06147, 0.60896],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8]
|
||||
},
|
||||
9
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,204 @@
|
|||
{
|
||||
"format_version": "1.9.0",
|
||||
"credit": "Made with Blockbench",
|
||||
"ambientocclusion": false,
|
||||
"texture_size": [64, 64],
|
||||
"textures": {
|
||||
"0": "tfg:block/machines/growth_monitors/growth_monitor_base",
|
||||
"1": "tfg:block/machines/growth_monitors/growth_monitor_display_5",
|
||||
"particle": "tfg:block/machines/growth_monitors/growth_monitor_base"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "monitor",
|
||||
"from": [-16, -3.83853, -2.39104],
|
||||
"to": [32, 28.16147, -1.39104],
|
||||
"rotation": {"angle": 22.5, "axis": "x", "origin": [6.5, 16.06147, 0.60896]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 5.33889, 8, 10.66667], "rotation": 180, "texture": "#0"},
|
||||
"east": {"uv": [15.83333, 5.33333, 16, 10.66667], "texture": "#0"},
|
||||
"south": {"uv": [8, 5.33333, 16, 10.66667], "texture": "#0"},
|
||||
"west": {"uv": [8, 5.33333, 8.16667, 10.66667], "texture": "#0"},
|
||||
"up": {"uv": [8, 10.5, 16, 10.66667], "texture": "#0"},
|
||||
"down": {"uv": [8, 5.33333, 16, 5.5], "rotation": 180, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "base1",
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 7, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [5.33333, 4.16667, 8, 5.33333], "texture": "#0"},
|
||||
"east": {"uv": [2.66667, 4.16667, 0, 5.33333], "texture": "#0"},
|
||||
"south": {"uv": [8, 1.16667, 5.33333, 0], "texture": "#0"},
|
||||
"west": {"uv": [0, 4.16667, 2.66667, 5.33333], "texture": "#0"},
|
||||
"up": {"uv": [2.66667, 2.66667, 5.33333, 5.33333], "texture": "#0"},
|
||||
"down": {"uv": [5.33333, 0, 8, 2.66667], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "base2",
|
||||
"from": [0, 7, 9],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [0, 5, 0]},
|
||||
"faces": {
|
||||
"north": {"uv": [2.66667, 2.66667, 5.33333, 4.16667], "texture": "#0"},
|
||||
"east": {"uv": [2.66667, 2.66667, 1.5, 4.16667], "texture": "#0"},
|
||||
"south": {"uv": [8, 2.66667, 5.33333, 1.16667], "texture": "#0"},
|
||||
"west": {"uv": [1.5, 2.66667, 2.66667, 4.16667], "texture": "#0"},
|
||||
"up": {"uv": [8, 5.33333, 5.33333, 4.16667], "texture": "#0"},
|
||||
"down": {"uv": [5.33333, 4.16667, 8, 5.33333], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "web1",
|
||||
"from": [0.01, 7.05, 0.05],
|
||||
"to": [2.01, 19.77, 7.05],
|
||||
"rotation": {"angle": 45, "axis": "x", "origin": [0.1, 7, 0]},
|
||||
"faces": {
|
||||
"north": {"uv": [1.16667, 0, 1.5, 2.16667], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 1.16667, 2.16667], "texture": "#0"},
|
||||
"south": {"uv": [1.16667, 0, 1.5, 2.16667], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 1.16667, 2.16667], "texture": "#0"},
|
||||
"up": {"uv": [1.5, 1.16667, 1.16667, 0], "texture": "#0"},
|
||||
"down": {"uv": [1.5, 0, 1.16667, 1.16667], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "web2",
|
||||
"from": [13.99, 7.05, 0.05],
|
||||
"to": [15.99, 19.77, 7.05],
|
||||
"rotation": {"angle": 45, "axis": "x", "origin": [15.9, 7, 0]},
|
||||
"faces": {
|
||||
"north": {"uv": [1.5, 0, 1.16667, 2.16667], "texture": "#0"},
|
||||
"east": {"uv": [1.16667, 0, 0, 2.16667], "texture": "#0"},
|
||||
"south": {"uv": [1.5, 0, 1.16667, 2.16667], "texture": "#0"},
|
||||
"west": {"uv": [1.16667, 0, 0, 2.16667], "texture": "#0"},
|
||||
"up": {"uv": [1.16667, 1.16667, 1.5, 0], "texture": "#0"},
|
||||
"down": {"uv": [1.16667, 0, 1.5, 1.16667], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "mount1",
|
||||
"from": [5, 7, 2],
|
||||
"to": [7, 14, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [6, 7, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [2.5, 0.33333, 2.83333, 1.5], "texture": "#0"},
|
||||
"east": {"uv": [1.5, 0.33333, 2.66667, 1.5], "texture": "#0"},
|
||||
"south": {"uv": [2.5, 0.33333, 2.83333, 1.5], "texture": "#0"},
|
||||
"west": {"uv": [1.5, 0.33333, 2.66667, 1.5], "texture": "#0"},
|
||||
"up": {"uv": [2.5, 0.33333, 2.83333, 1.5], "texture": "#0"},
|
||||
"down": {"uv": [2.5, 0.33333, 2.83333, 1.5], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "mount2",
|
||||
"from": [9, 7, 2],
|
||||
"to": [11, 14, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 7, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [2.83333, 0.33333, 2.5, 1.5], "texture": "#0"},
|
||||
"east": {"uv": [2.66667, 0.33333, 1.5, 1.5], "texture": "#0"},
|
||||
"south": {"uv": [2.83333, 0.33333, 2.5, 1.5], "texture": "#0"},
|
||||
"west": {"uv": [2.66667, 0.33333, 1.5, 1.5], "texture": "#0"},
|
||||
"up": {"uv": [2.83333, 0.33333, 2.5, 1.5], "texture": "#0"},
|
||||
"down": {"uv": [2.83333, 0.33333, 2.5, 1.5], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "arm",
|
||||
"from": [7, 8, -2],
|
||||
"to": [9, 12, 9],
|
||||
"rotation": {"angle": 22.5, "axis": "x", "origin": [7, 13, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [3.66667, 0, 3, 0.33333], "rotation": 90, "texture": "#0"},
|
||||
"east": {"uv": [3.66667, 0, 3, 1.5], "rotation": 90, "texture": "#0"},
|
||||
"south": {"uv": [3.66667, 1.5, 3, 1.83333], "rotation": 90, "texture": "#0"},
|
||||
"west": {"uv": [3, 0, 3.66667, 1.83333], "rotation": 270, "texture": "#0"},
|
||||
"up": {"uv": [3.5, 0, 3.83333, 1.83333], "texture": "#0"},
|
||||
"down": {"uv": [2.83333, 0, 3.16667, 1.83333], "rotation": 180, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "bolt",
|
||||
"from": [4, 10.6, 4.1],
|
||||
"to": [12, 12.6, 6.1],
|
||||
"rotation": {"angle": 45, "axis": "x", "origin": [4, 10.6, 4.1]},
|
||||
"faces": {
|
||||
"north": {"uv": [1.5, 0, 2.83333, 0.33333], "texture": "#0"},
|
||||
"east": {"uv": [1.66667, 0, 2, 0.33333], "texture": "#0"},
|
||||
"south": {"uv": [2.83333, 0, 1.5, 0.33333], "texture": "#0"},
|
||||
"west": {"uv": [2.33333, 0, 2.66667, 0.33333], "texture": "#0"},
|
||||
"up": {"uv": [1.5, 0, 2.83333, 0.33333], "texture": "#0"},
|
||||
"down": {"uv": [1.5, 0.33333, 2.83333, 0], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "screen",
|
||||
"from": [-15, -2.83853, -2.49104],
|
||||
"to": [31, 27.16147, -2.49104],
|
||||
"forge_data": { "block_light": 13, "sky_light": 13 },
|
||||
"shade": false,
|
||||
"rotation": {"angle": 22.5, "axis": "x", "origin": [6.5, 16.06147, 0.60896]},
|
||||
"faces": {
|
||||
"north": {"uv": [16, 12, 0, 0], "rotation": 180, "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 10, 0], "rotation": 90, "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 16, 12], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 10, 0], "rotation": 270, "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 15.33333, 0], "texture": "#1"},
|
||||
"down": {"uv": [0, 0, 15.33333, 0], "rotation": 180, "texture": "#1"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"display": {
|
||||
"thirdperson_righthand": {
|
||||
"rotation": [75, 0, 0],
|
||||
"translation": [0, 1.5, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"thirdperson_lefthand": {
|
||||
"rotation": [75, 0, 0],
|
||||
"translation": [0, 1.5, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"firstperson_righthand": {
|
||||
"rotation": [-3, 28, -8],
|
||||
"translation": [-1.25, 0, 0.5],
|
||||
"scale": [0.3, 0.3, 0.3]
|
||||
},
|
||||
"firstperson_lefthand": {
|
||||
"rotation": [-3, 28, -8],
|
||||
"translation": [-1.25, 0, 0.5],
|
||||
"scale": [0.3, 0.3, 0.3]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 3, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
"rotation": [27, 127, 0],
|
||||
"translation": [1.5, -0.25, 0],
|
||||
"scale": [0.25, 0.25, 0.25]
|
||||
},
|
||||
"head": {
|
||||
"rotation": [-23, 0, 0],
|
||||
"translation": [0, 0, -1.5],
|
||||
"scale": [0.5, 0.5, 0.5]
|
||||
},
|
||||
"fixed": {
|
||||
"rotation": [-22, 0, 0],
|
||||
"translation": [0, 0, 2.5],
|
||||
"scale": [0.4, 0.4, 0.4]
|
||||
}
|
||||
},
|
||||
"groups": [
|
||||
{
|
||||
"name": "base",
|
||||
"origin": [6.5, 16.06147, 0.60896],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8]
|
||||
},
|
||||
9
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"parent": "minecraft:block/block",
|
||||
"loader": "gtceu:machine",
|
||||
"machine": "tfg:single_itemstack_bus",
|
||||
"replaceable_textures": [
|
||||
"all"
|
||||
],
|
||||
"variants": {
|
||||
"": {
|
||||
"model": {
|
||||
"parent": "gtceu:block/machine/template/cube_all/sided",
|
||||
"textures": {
|
||||
"all": "tfg:block/casings/machine_casing_bioculture",
|
||||
"overlay_front": "tfg:block/machines/single_itemstack_bus/overlay_front",
|
||||
"overlay_front_emissive": "tfg:block/machines/single_itemstack_bus/overlay_front_emissive"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,667 @@
|
|||
{
|
||||
"format_version": "1.9.0",
|
||||
"credit": "Made with Blockbench",
|
||||
"textures": {
|
||||
"0": "tfg:block/machines/sample_racks/sample_rack_base",
|
||||
"1": "tfg:block/machines/sample_racks/sample_rack_overlay",
|
||||
"particle": "tfg:block/machines/sample_racks/sample_rack_base"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "shelf1",
|
||||
"from": [0, 7, 0],
|
||||
"to": [16, 8, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [0, 7, 0]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"up": {"uv": [8, 8, 0, 0], "texture": "#0"},
|
||||
"down": {"uv": [8, 0, 0, 8], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "shelf2",
|
||||
"from": [0, 15, 0],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [0, 15, 0]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"up": {"uv": [8, 8, 0, 0], "texture": "#0"},
|
||||
"down": {"uv": [8, 0, 0, 8], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [-0.01, 0, 14.01],
|
||||
"to": [-0.01, 16, 16.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [0.08, 0, 16.01]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"east": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"south": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"west": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"up": {"uv": [8.5, 0, 8, 0.5], "rotation": 90, "texture": "#0"},
|
||||
"down": {"uv": [8.5, 7.5, 8, 8], "rotation": 270, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [-0.01, 0, 16.01],
|
||||
"to": [1.99, 16, 16.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [-0.1, 0, 16.1]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"east": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"south": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"west": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"up": {"uv": [8, 0.5, 8.5, 0], "texture": "#0"},
|
||||
"down": {"uv": [8, 8, 8.5, 7.5], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [-0.01, 0, -0.01],
|
||||
"to": [-0.01, 16, 1.99],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [0.08, 0, -0.01]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"east": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"south": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"west": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"up": {"uv": [8, 0, 8.5, 0.5], "rotation": 90, "texture": "#0"},
|
||||
"down": {"uv": [8, 7.5, 8.5, 8], "rotation": 270, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [-0.01, 0, -0.01],
|
||||
"to": [1.99, 16, -0.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [-0.1, 0, -0.1]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"east": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"south": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"west": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"up": {"uv": [8, 0, 8.5, 0.5], "texture": "#0"},
|
||||
"down": {"uv": [8, 7.5, 8.5, 8], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [16.01, 0, -0.01],
|
||||
"to": [16.01, 16, 1.99],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15.92, 0, -0.01]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"east": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"south": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"west": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"up": {"uv": [8, 0.5, 8.5, 0], "rotation": 90, "texture": "#0"},
|
||||
"down": {"uv": [8, 8, 8.5, 7.5], "rotation": 270, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14.01, 0, -0.01],
|
||||
"to": [16.01, 16, -0.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [16.1, 0, -0.1]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"east": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"south": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"west": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"up": {"uv": [8.5, 0, 8, 0.5], "texture": "#0"},
|
||||
"down": {"uv": [8.5, 7.5, 8, 8], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [16.01, 0, 14.01],
|
||||
"to": [16.01, 16, 16.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15.92, 0, 16.01]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"east": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"south": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"west": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"up": {"uv": [8.5, 0.5, 8, 0], "rotation": 90, "texture": "#0"},
|
||||
"down": {"uv": [8.5, 8, 8, 7.5], "rotation": 270, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14.01, 0, 16.01],
|
||||
"to": [16.01, 16, 16.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [16.1, 0, 16.1]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"east": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"south": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"west": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"up": {"uv": [8.5, 0.5, 8, 0], "texture": "#0"},
|
||||
"down": {"uv": [8.5, 8, 8, 7.5], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 10, 2.5],
|
||||
"to": [15, 10, 5.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [6, 8, 3.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 7, 0], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 1.5, 0], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 7, 0], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 1.5, 0], "texture": "#1"},
|
||||
"up": {"uv": [7, 1.5, 0, 0], "texture": "#1"},
|
||||
"down": {"uv": [7, 0, 0, 1.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 8.01, 2.5],
|
||||
"to": [15, 8.01, 5.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [6, 6, 3.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 7, 0], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 1.5, 0], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 7, 0], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 1.5, 0], "texture": "#1"},
|
||||
"up": {"uv": [7, 3, 0, 1.5], "texture": "#1"},
|
||||
"down": {"uv": [7, 1.5, 0, 3], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 8, 2.5],
|
||||
"to": [1, 10, 5.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [1, 8, 2.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0, 2], "texture": "#1"},
|
||||
"east": {"uv": [5, 2, 6.5, 3], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0, 2], "texture": "#1"},
|
||||
"west": {"uv": [6.5, 2, 5, 3], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0, 3], "texture": "#1"},
|
||||
"down": {"uv": [0, 0, 0, 3], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [15, 8, 2.5],
|
||||
"to": [15, 10, 5.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15, 8, 2.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0, 2], "texture": "#1"},
|
||||
"east": {"uv": [5, 2, 6.5, 3], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0, 2], "texture": "#1"},
|
||||
"west": {"uv": [6.5, 2, 5, 3], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0, 3], "texture": "#1"},
|
||||
"down": {"uv": [0, 0, 0, 3], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [4, 13.1, 4.5],
|
||||
"to": [3, 8.1, 3.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [4, 13.1, 4.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7, 2.5, 7.5, 3], "texture": "#1"},
|
||||
"down": {"uv": [0.5, 0.5, 1, 1], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [3, 13.1, 3.5],
|
||||
"to": [4, 14.1, 4.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [3, 13.1, 3.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"down": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [6, 13.1, 4.5],
|
||||
"to": [5, 8.1, 3.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [6, 13.1, 4.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7, 2.5, 7.5, 3], "texture": "#1"},
|
||||
"down": {"uv": [0.5, 0.5, 1, 1], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [5, 13.1, 3.5],
|
||||
"to": [6, 14.1, 4.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [5, 13.1, 3.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"down": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [8, 13.1, 4.5],
|
||||
"to": [7, 8.1, 3.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 13.1, 4.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7, 2.5, 7.5, 3], "texture": "#1"},
|
||||
"down": {"uv": [0.5, 0.5, 1, 1], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [7, 13.1, 3.5],
|
||||
"to": [8, 14.1, 4.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 13.1, 3.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"down": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [10, 13.1, 4.5],
|
||||
"to": [9, 8.1, 3.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 13.1, 4.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 5.5, 7.5, 3], "texture": "#1"},
|
||||
"east": {"uv": [7, 5.5, 7.5, 3], "texture": "#1"},
|
||||
"south": {"uv": [7, 5.5, 7.5, 3], "texture": "#1"},
|
||||
"west": {"uv": [7, 5.5, 7.5, 3], "texture": "#1"},
|
||||
"up": {"uv": [7, 5, 7.5, 5.5], "texture": "#1"},
|
||||
"down": {"uv": [0.5, 0.5, 1, 1], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [9, 13.1, 3.5],
|
||||
"to": [10, 14.1, 4.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 13.1, 3.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"down": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [12, 13.1, 4.5],
|
||||
"to": [11, 8.1, 3.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 13.1, 4.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7, 2.5, 7.5, 3], "texture": "#1"},
|
||||
"down": {"uv": [0.5, 0.5, 1, 1], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [11, 13.1, 3.5],
|
||||
"to": [12, 14.1, 4.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 13.1, 3.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"down": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [14, 13.1, 4.5],
|
||||
"to": [13, 8.1, 3.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [14, 13.1, 4.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7, 2.5, 7.5, 3], "texture": "#1"},
|
||||
"down": {"uv": [0.5, 0.5, 1, 1], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [13, 13.1, 3.5],
|
||||
"to": [14, 14.1, 4.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 13.1, 3.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"down": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "label_maker",
|
||||
"from": [3, 8, 7],
|
||||
"to": [11, 12, 13],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [4, 8, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 3, 4, 5], "texture": "#1"},
|
||||
"east": {"uv": [4, 3, 7, 5], "texture": "#1"},
|
||||
"south": {"uv": [0, 3, 4, 5], "texture": "#1"},
|
||||
"west": {"uv": [4, 5, 7, 7], "texture": "#1"},
|
||||
"up": {"uv": [0, 5, 4, 8], "texture": "#1"},
|
||||
"down": {"uv": [0, 5, 4, 8], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "label1",
|
||||
"from": [14.59379, 8.15124, 8.5],
|
||||
"to": [16.59379, 8.15124, 11.5],
|
||||
"rotation": {"angle": 0, "axis": "z", "origin": [14.59379, 8.15124, 8.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0, 2], "rotation": 270, "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 0, 3], "rotation": 90, "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0, 2], "rotation": 90, "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 0, 3], "rotation": 90, "texture": "#1"},
|
||||
"up": {"uv": [4, 7, 5.5, 8], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [4, 7, 5.5, 8], "rotation": 90, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "label2",
|
||||
"from": [13.17887, 7.56575, 8.5],
|
||||
"to": [13.17887, 9.56575, 11.5],
|
||||
"rotation": {"angle": 45, "axis": "z", "origin": [13.17887, 9.56575, 8.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0, 2], "rotation": 180, "texture": "#1"},
|
||||
"east": {"uv": [4, 7, 5.5, 8], "rotation": 180, "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0, 2], "rotation": 180, "texture": "#1"},
|
||||
"west": {"uv": [4, 7, 5.5, 8], "rotation": 180, "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0, 3], "rotation": 180, "texture": "#1"},
|
||||
"down": {"uv": [0, 0, 0, 3], "rotation": 180, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "label3",
|
||||
"from": [12.41329, 9.41383, 8.5],
|
||||
"to": [12.41329, 11.41383, 11.5],
|
||||
"rotation": {"angle": 22.5, "axis": "z", "origin": [12.41329, 11.41383, 8.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0, 2], "rotation": 180, "texture": "#1"},
|
||||
"east": {"uv": [4, 7, 5.5, 8], "rotation": 180, "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0, 2], "rotation": 180, "texture": "#1"},
|
||||
"west": {"uv": [4, 7, 5.5, 8], "rotation": 180, "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0, 3], "rotation": 180, "texture": "#1"},
|
||||
"down": {"uv": [0, 0, 0, 3], "rotation": 180, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "label4",
|
||||
"from": [11, 10, 8.5],
|
||||
"to": [11, 12, 11.5],
|
||||
"rotation": {"angle": -45, "axis": "z", "origin": [11, 10, 8.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0, 2], "texture": "#1"},
|
||||
"east": {"uv": [4, 7, 5.5, 8], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0, 2], "texture": "#1"},
|
||||
"west": {"uv": [4, 7, 5.5, 8], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0, 3], "texture": "#1"},
|
||||
"down": {"uv": [0, 0, 0, 3], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "mat1",
|
||||
"from": [4.8, 0.01, 0.2],
|
||||
"to": [16.8, 0.01, 12.2],
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [4.8, 0, 0.2]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 0], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 12, 0], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 12, 0], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 12, 0], "texture": "#1"},
|
||||
"up": {"uv": [0, 8, 6, 14], "texture": "#1"},
|
||||
"down": {"uv": [0, 14, 6, 8], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "beaker",
|
||||
"from": [6, 5.2, 10],
|
||||
"to": [3, 0.2, 7],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [6, 5.2, 10]},
|
||||
"faces": {
|
||||
"north": {"uv": [14.5, 0, 13, 2.5], "texture": "#1"},
|
||||
"east": {"uv": [13, 0, 14.5, 2.5], "texture": "#1"},
|
||||
"south": {"uv": [14.5, 0, 13, 2.5], "texture": "#1"},
|
||||
"west": {"uv": [13, 0, 14.5, 2.5], "texture": "#1"},
|
||||
"up": {"uv": [14.5, 3, 16, 4.5], "texture": "#1"},
|
||||
"down": {"uv": [14.5, 0, 16, 1.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "beaker",
|
||||
"from": [12.1, 5.2, 11.8],
|
||||
"to": [9.1, 0.2, 8.8],
|
||||
"rotation": {"angle": 22.5, "axis": "y", "origin": [9.1, 5.2, 11.8]},
|
||||
"faces": {
|
||||
"north": {"uv": [13, 0, 14.5, 2.5], "texture": "#1"},
|
||||
"east": {"uv": [14.5, 0, 13, 2.5], "texture": "#1"},
|
||||
"south": {"uv": [13, 0, 14.5, 2.5], "texture": "#1"},
|
||||
"west": {"uv": [14.5, 0, 13, 2.5], "texture": "#1"},
|
||||
"up": {"uv": [14.5, 3, 16, 4.5], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [14.5, 0, 16, 1.5], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "pipette1",
|
||||
"from": [12, 1.2, 8],
|
||||
"to": [6, 0.2, 7],
|
||||
"rotation": {"angle": -45, "axis": "y", "origin": [12, 1.2, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [13, 4.5, 16, 5], "texture": "#1"},
|
||||
"east": {"uv": [13, 4.5, 13.5, 5], "texture": "#1"},
|
||||
"south": {"uv": [16, 4.5, 13, 5], "texture": "#1"},
|
||||
"west": {"uv": [15.5, 4.5, 16, 5], "texture": "#1"},
|
||||
"up": {"uv": [16, 4.5, 13, 5], "texture": "#1"},
|
||||
"down": {"uv": [16, 4.5, 13, 5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "stir_rod1",
|
||||
"from": [9, 0.2, 9.4],
|
||||
"to": [11, 1.2, 10.4],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 0.2, 9.4]},
|
||||
"faces": {
|
||||
"north": {"uv": [12, 4.5, 13, 5], "texture": "#1"},
|
||||
"east": {"uv": [12, 4.5, 12.5, 5], "texture": "#1"},
|
||||
"south": {"uv": [13, 4.5, 12, 5], "texture": "#1"},
|
||||
"west": {"uv": [12.5, 4.5, 13, 5], "texture": "#1"},
|
||||
"up": {"uv": [13, 4.5, 12, 5], "texture": "#1"},
|
||||
"down": {"uv": [12, 4.5, 13, 5], "texture": "#1"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"display": {
|
||||
"thirdperson_righthand": {
|
||||
"rotation": [75, 45, 0],
|
||||
"translation": [0, 2.5, 0],
|
||||
"scale": [0.375, 0.375, 0.375]
|
||||
},
|
||||
"thirdperson_lefthand": {
|
||||
"rotation": [75, 45, 0],
|
||||
"translation": [0, 2.5, 0],
|
||||
"scale": [0.375, 0.375, 0.375]
|
||||
},
|
||||
"firstperson_righthand": {
|
||||
"rotation": [0, 45, 0],
|
||||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"firstperson_lefthand": {
|
||||
"rotation": [0, -135, 0],
|
||||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 3, 0],
|
||||
"scale": [0.25, 0.25, 0.25]
|
||||
},
|
||||
"gui": {
|
||||
"rotation": [30, -135, 0],
|
||||
"scale": [0.625, 0.625, 0.625]
|
||||
},
|
||||
"head": {
|
||||
"translation": [0, 8, 0]
|
||||
},
|
||||
"fixed": {
|
||||
"scale": [0.5, 0.5, 0.5]
|
||||
}
|
||||
},
|
||||
"groups": [
|
||||
{
|
||||
"name": "base",
|
||||
"origin": [0, 7, 0],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "shelves",
|
||||
"origin": [0, 7, 0],
|
||||
"color": 0,
|
||||
"children": [0, 1]
|
||||
},
|
||||
{
|
||||
"name": "legs",
|
||||
"origin": [0.08, 0, -0.01],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "leg4",
|
||||
"origin": [0.08, 0, -0.01],
|
||||
"color": 0,
|
||||
"children": [2, 3]
|
||||
},
|
||||
{
|
||||
"name": "leg1",
|
||||
"origin": [0.08, 0, -0.01],
|
||||
"color": 0,
|
||||
"children": [4, 5]
|
||||
},
|
||||
{
|
||||
"name": "leg2",
|
||||
"origin": [0.08, 0, -0.01],
|
||||
"color": 0,
|
||||
"children": [6, 7]
|
||||
},
|
||||
{
|
||||
"name": "leg3",
|
||||
"origin": [0.08, 0, -0.01],
|
||||
"color": 0,
|
||||
"children": [8, 9]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "vial_sets",
|
||||
"origin": [6, 8, 4],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "vial_set1",
|
||||
"origin": [6, 8, 4],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "vial_rack1",
|
||||
"origin": [6, 8, 4],
|
||||
"color": 0,
|
||||
"children": [10, 11, 12, 13]
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [14, 15]
|
||||
},
|
||||
{
|
||||
"name": "tube2",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [16, 17]
|
||||
},
|
||||
{
|
||||
"name": "tube3",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [18, 19]
|
||||
},
|
||||
{
|
||||
"name": "tube4",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [20, 21]
|
||||
},
|
||||
{
|
||||
"name": "tube5",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [22, 23]
|
||||
},
|
||||
{
|
||||
"name": "tube6",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [24, 25]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "label_maker1",
|
||||
"origin": [4, 8, 7],
|
||||
"color": 0,
|
||||
"children": [26, 27, 28, 29, 30]
|
||||
},
|
||||
31,
|
||||
{
|
||||
"name": "beakers",
|
||||
"origin": [7, 5.2, 7],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "beaker1",
|
||||
"origin": [7, 5.2, 7],
|
||||
"color": 0,
|
||||
"children": [32]
|
||||
},
|
||||
{
|
||||
"name": "beaker2",
|
||||
"origin": [7, 5.2, 7],
|
||||
"color": 0,
|
||||
"children": [33]
|
||||
}
|
||||
]
|
||||
},
|
||||
34,
|
||||
35
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,718 @@
|
|||
{
|
||||
"format_version": "1.9.0",
|
||||
"credit": "Made with Blockbench",
|
||||
"ambientocclusion": false,
|
||||
"textures": {
|
||||
"0": "tfg:block/machines/sample_racks/sample_rack_base",
|
||||
"1": "tfg:block/machines/sample_racks/sample_rack_overlay_active",
|
||||
"particle": "tfg:block/machines/sample_racks/sample_rack_base"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "shelf1",
|
||||
"from": [0, 7, 0],
|
||||
"to": [16, 8, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [0, 7, 0]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"up": {"uv": [8, 8, 0, 0], "texture": "#0"},
|
||||
"down": {"uv": [8, 0, 0, 8], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "shelf2",
|
||||
"from": [0, 15, 0],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [0, 15, 0]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"up": {"uv": [8, 8, 0, 0], "texture": "#0"},
|
||||
"down": {"uv": [8, 0, 0, 8], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [-0.01, 0, 14.01],
|
||||
"to": [-0.01, 16, 16.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [0.08, 0, 16.01]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"east": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"south": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"west": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"up": {"uv": [8.5, 0, 8, 0.5], "rotation": 90, "texture": "#0"},
|
||||
"down": {"uv": [8.5, 7.5, 8, 8], "rotation": 270, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [-0.01, 0, 16.01],
|
||||
"to": [1.99, 16, 16.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [-0.1, 0, 16.1]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"east": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"south": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"west": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"up": {"uv": [8, 0.5, 8.5, 0], "texture": "#0"},
|
||||
"down": {"uv": [8, 8, 8.5, 7.5], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [-0.01, 0, -0.01],
|
||||
"to": [-0.01, 16, 1.99],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [0.08, 0, -0.01]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"east": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"south": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"west": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"up": {"uv": [8, 0, 8.5, 0.5], "rotation": 90, "texture": "#0"},
|
||||
"down": {"uv": [8, 7.5, 8.5, 8], "rotation": 270, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [-0.01, 0, -0.01],
|
||||
"to": [1.99, 16, -0.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [-0.1, 0, -0.1]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"east": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"south": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"west": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"up": {"uv": [8, 0, 8.5, 0.5], "texture": "#0"},
|
||||
"down": {"uv": [8, 7.5, 8.5, 8], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [16.01, 0, -0.01],
|
||||
"to": [16.01, 16, 1.99],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15.92, 0, -0.01]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"east": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"south": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"west": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"up": {"uv": [8, 0.5, 8.5, 0], "rotation": 90, "texture": "#0"},
|
||||
"down": {"uv": [8, 8, 8.5, 7.5], "rotation": 270, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14.01, 0, -0.01],
|
||||
"to": [16.01, 16, -0.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [16.1, 0, -0.1]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"east": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"south": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"west": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"up": {"uv": [8.5, 0, 8, 0.5], "texture": "#0"},
|
||||
"down": {"uv": [8.5, 7.5, 8, 8], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [16.01, 0, 14.01],
|
||||
"to": [16.01, 16, 16.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15.92, 0, 16.01]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"east": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"south": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"west": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"up": {"uv": [8.5, 0.5, 8, 0], "rotation": 90, "texture": "#0"},
|
||||
"down": {"uv": [8.5, 8, 8, 7.5], "rotation": 270, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14.01, 0, 16.01],
|
||||
"to": [16.01, 16, 16.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [16.1, 0, 16.1]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"east": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"south": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"west": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"up": {"uv": [8.5, 0.5, 8, 0], "texture": "#0"},
|
||||
"down": {"uv": [8.5, 8, 8, 7.5], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 10, 2.5],
|
||||
"to": [15, 10, 5.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [6, 8, 3.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 7, 0], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 1.5, 0], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 7, 0], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 1.5, 0], "texture": "#1"},
|
||||
"up": {"uv": [7, 1.5, 0, 0], "texture": "#1"},
|
||||
"down": {"uv": [7, 0, 0, 1.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 8.01, 2.5],
|
||||
"to": [15, 8.01, 5.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [6, 6, 3.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 7, 0], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 1.5, 0], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 7, 0], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 1.5, 0], "texture": "#1"},
|
||||
"up": {"uv": [7, 3, 0, 1.5], "texture": "#1"},
|
||||
"down": {"uv": [7, 1.5, 0, 3], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 8, 2.5],
|
||||
"to": [1, 10, 5.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [1, 8, 2.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0, 2], "texture": "#1"},
|
||||
"east": {"uv": [5, 2, 6.5, 3], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0, 2], "texture": "#1"},
|
||||
"west": {"uv": [6.5, 2, 5, 3], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0, 3], "texture": "#1"},
|
||||
"down": {"uv": [0, 0, 0, 3], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [15, 8, 2.5],
|
||||
"to": [15, 10, 5.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15, 8, 2.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0, 2], "texture": "#1"},
|
||||
"east": {"uv": [5, 2, 6.5, 3], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0, 2], "texture": "#1"},
|
||||
"west": {"uv": [6.5, 2, 5, 3], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0, 3], "texture": "#1"},
|
||||
"down": {"uv": [0, 0, 0, 3], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [4, 13.1, 4.5],
|
||||
"to": [3, 8.1, 3.5],
|
||||
"forge_data": { "block_light": 15, "sky_light": 15 },
|
||||
"shade": false,
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [4, 13.1, 4.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7, 2.5, 7.5, 3], "texture": "#1"},
|
||||
"down": {"uv": [0.5, 0.5, 1, 1], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [3, 13.1, 3.5],
|
||||
"to": [4, 14.1, 4.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [3, 13.1, 3.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"down": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [6, 13.1, 4.5],
|
||||
"to": [5, 8.1, 3.5],
|
||||
"forge_data": { "block_light": 15, "sky_light": 15 },
|
||||
"shade": false,
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [6, 13.1, 4.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7, 2.5, 7.5, 3], "texture": "#1"},
|
||||
"down": {"uv": [0.5, 0.5, 1, 1], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [5, 13.1, 3.5],
|
||||
"to": [6, 14.1, 4.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [5, 13.1, 3.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"down": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [8, 13.1, 4.5],
|
||||
"to": [7, 8.1, 3.5],
|
||||
"forge_data": { "block_light": 15, "sky_light": 15 },
|
||||
"shade": false,
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 13.1, 4.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7, 2.5, 7.5, 3], "texture": "#1"},
|
||||
"down": {"uv": [0.5, 0.5, 1, 1], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [7, 13.1, 3.5],
|
||||
"to": [8, 14.1, 4.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 13.1, 3.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"down": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [10, 13.1, 4.5],
|
||||
"to": [9, 8.1, 3.5],
|
||||
"forge_data": { "block_light": 15, "sky_light": 15 },
|
||||
"shade": false,
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 13.1, 4.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 5.5, 7.5, 3], "texture": "#1"},
|
||||
"east": {"uv": [7, 5.5, 7.5, 3], "texture": "#1"},
|
||||
"south": {"uv": [7, 5.5, 7.5, 3], "texture": "#1"},
|
||||
"west": {"uv": [7, 5.5, 7.5, 3], "texture": "#1"},
|
||||
"up": {"uv": [7, 5, 7.5, 5.5], "texture": "#1"},
|
||||
"down": {"uv": [0.5, 0.5, 1, 1], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [9, 13.1, 3.5],
|
||||
"to": [10, 14.1, 4.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 13.1, 3.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"down": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [12, 13.1, 4.5],
|
||||
"to": [11, 8.1, 3.5],
|
||||
"forge_data": { "block_light": 15, "sky_light": 15 },
|
||||
"shade": false,
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 13.1, 4.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7, 2.5, 7.5, 3], "texture": "#1"},
|
||||
"down": {"uv": [0.5, 0.5, 1, 1], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [11, 13.1, 3.5],
|
||||
"to": [12, 14.1, 4.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 13.1, 3.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"down": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [14, 13.1, 4.5],
|
||||
"to": [13, 8.1, 3.5],
|
||||
"forge_data": { "block_light": 15, "sky_light": 15 },
|
||||
"shade": false,
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [14, 13.1, 4.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 7.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7, 2.5, 7.5, 3], "texture": "#1"},
|
||||
"down": {"uv": [0.5, 0.5, 1, 1], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [13, 13.1, 3.5],
|
||||
"to": [14, 14.1, 4.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 13.1, 3.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"},
|
||||
"down": {"uv": [7, 0, 7.5, 0.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "label_maker",
|
||||
"from": [3, 8, 7],
|
||||
"to": [11, 12, 13],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [4, 8, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 3, 4, 5], "texture": "#1"},
|
||||
"east": {"uv": [4, 3, 7, 5], "texture": "#1"},
|
||||
"south": {"uv": [0, 3, 4, 5], "texture": "#1"},
|
||||
"west": {"uv": [4, 5, 7, 7], "texture": "#1"},
|
||||
"up": {"uv": [0, 5, 4, 8], "texture": "#1"},
|
||||
"down": {"uv": [0, 5, 4, 8], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "label1",
|
||||
"from": [14.59379, 8.15124, 8.5],
|
||||
"to": [16.59379, 8.15124, 11.5],
|
||||
"rotation": {"angle": 0, "axis": "z", "origin": [14.59379, 8.15124, 8.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0, 2], "rotation": 270, "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 0, 3], "rotation": 90, "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0, 2], "rotation": 90, "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 0, 3], "rotation": 90, "texture": "#1"},
|
||||
"up": {"uv": [4, 7, 5.5, 8], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [4, 7, 5.5, 8], "rotation": 90, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "label2",
|
||||
"from": [13.17887, 7.56575, 8.5],
|
||||
"to": [13.17887, 9.56575, 11.5],
|
||||
"rotation": {"angle": 45, "axis": "z", "origin": [13.17887, 9.56575, 8.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0, 2], "rotation": 180, "texture": "#1"},
|
||||
"east": {"uv": [4, 7, 5.5, 8], "rotation": 180, "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0, 2], "rotation": 180, "texture": "#1"},
|
||||
"west": {"uv": [4, 7, 5.5, 8], "rotation": 180, "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0, 3], "rotation": 180, "texture": "#1"},
|
||||
"down": {"uv": [0, 0, 0, 3], "rotation": 180, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "label3",
|
||||
"from": [12.41329, 9.41383, 8.5],
|
||||
"to": [12.41329, 11.41383, 11.5],
|
||||
"rotation": {"angle": 22.5, "axis": "z", "origin": [12.41329, 11.41383, 8.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0, 2], "rotation": 180, "texture": "#1"},
|
||||
"east": {"uv": [4, 7, 5.5, 8], "rotation": 180, "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0, 2], "rotation": 180, "texture": "#1"},
|
||||
"west": {"uv": [4, 7, 5.5, 8], "rotation": 180, "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0, 3], "rotation": 180, "texture": "#1"},
|
||||
"down": {"uv": [0, 0, 0, 3], "rotation": 180, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "label4",
|
||||
"from": [11, 10, 8.5],
|
||||
"to": [11, 12, 11.5],
|
||||
"rotation": {"angle": -45, "axis": "z", "origin": [11, 10, 8.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0, 2], "texture": "#1"},
|
||||
"east": {"uv": [4, 7, 5.5, 8], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0, 2], "texture": "#1"},
|
||||
"west": {"uv": [4, 7, 5.5, 8], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0, 3], "texture": "#1"},
|
||||
"down": {"uv": [0, 0, 0, 3], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "mat1",
|
||||
"from": [4.8, 0.01, 0.2],
|
||||
"to": [16.8, 0.01, 12.2],
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [4.8, 0, 0.2]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 0], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 12, 0], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 12, 0], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 12, 0], "texture": "#1"},
|
||||
"up": {"uv": [0, 8, 6, 14], "texture": "#1"},
|
||||
"down": {"uv": [0, 14, 6, 8], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "beaker",
|
||||
"from": [6, 5.2, 10],
|
||||
"to": [3, 0.2, 7],
|
||||
"forge_data": { "block_light": 15, "sky_light": 15 },
|
||||
"shade": false,
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [6, 5.2, 10]},
|
||||
"faces": {
|
||||
"north": {"uv": [14.5, 0, 13, 2.5], "texture": "#1"},
|
||||
"east": {"uv": [13, 0, 14.5, 2.5], "texture": "#1"},
|
||||
"south": {"uv": [14.5, 0, 13, 2.5], "texture": "#1"},
|
||||
"west": {"uv": [13, 0, 14.5, 2.5], "texture": "#1"},
|
||||
"up": {"uv": [14.5, 3, 16, 4.5], "texture": "#1"},
|
||||
"down": {"uv": [14.5, 0, 16, 1.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "fluid",
|
||||
"from": [6, 3.2, 10],
|
||||
"to": [3, 3.2, 7],
|
||||
"forge_data": { "block_light": 15, "sky_light": 15 },
|
||||
"shade": false,
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [6, 3.2, 10]},
|
||||
"faces": {
|
||||
"north": {"uv": [14.5, 0, 13, 2.5], "texture": "#1"},
|
||||
"east": {"uv": [13, 0, 14.5, 2.5], "texture": "#1"},
|
||||
"south": {"uv": [14.5, 0, 13, 2.5], "texture": "#1"},
|
||||
"west": {"uv": [13, 0, 14.5, 2.5], "texture": "#1"},
|
||||
"up": {"uv": [14.5, 1.5, 16, 3], "texture": "#1"},
|
||||
"down": {"uv": [14.5, 1.5, 16, 3], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "beaker",
|
||||
"from": [12.1, 5.2, 11.8],
|
||||
"to": [9.1, 0.2, 8.8],
|
||||
"forge_data": { "block_light": 15, "sky_light": 15 },
|
||||
"shade": false,
|
||||
"rotation": {"angle": 22.5, "axis": "y", "origin": [9.1, 5.2, 11.8]},
|
||||
"faces": {
|
||||
"north": {"uv": [13, 0, 14.5, 2.5], "texture": "#1"},
|
||||
"east": {"uv": [14.5, 0, 13, 2.5], "texture": "#1"},
|
||||
"south": {"uv": [13, 0, 14.5, 2.5], "texture": "#1"},
|
||||
"west": {"uv": [14.5, 0, 13, 2.5], "texture": "#1"},
|
||||
"up": {"uv": [14.5, 3, 16, 4.5], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [14.5, 0, 16, 1.5], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "fluid",
|
||||
"from": [12.1, 3.2, 11.8],
|
||||
"to": [9.1, 3.2, 8.8],
|
||||
"forge_data": { "block_light": 15, "sky_light": 15 },
|
||||
"shade": false,
|
||||
"rotation": {"angle": 22.5, "axis": "y", "origin": [9.1, 3.2, 11.8]},
|
||||
"faces": {
|
||||
"north": {"uv": [13, 0, 14.5, 2.5], "texture": "#1"},
|
||||
"east": {"uv": [14.5, 0, 13, 2.5], "texture": "#1"},
|
||||
"south": {"uv": [13, 0, 14.5, 2.5], "texture": "#1"},
|
||||
"west": {"uv": [14.5, 0, 13, 2.5], "texture": "#1"},
|
||||
"up": {"uv": [14.5, 1.5, 16, 3], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [14.5, 1.5, 16, 3], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "pipette1",
|
||||
"from": [12, 1.2, 8],
|
||||
"to": [6, 0.2, 7],
|
||||
"rotation": {"angle": -45, "axis": "y", "origin": [12, 1.2, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [13, 4.5, 16, 5], "texture": "#1"},
|
||||
"east": {"uv": [13, 4.5, 13.5, 5], "texture": "#1"},
|
||||
"south": {"uv": [16, 4.5, 13, 5], "texture": "#1"},
|
||||
"west": {"uv": [15.5, 4.5, 16, 5], "texture": "#1"},
|
||||
"up": {"uv": [16, 4.5, 13, 5], "texture": "#1"},
|
||||
"down": {"uv": [16, 4.5, 13, 5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "stir_rod1",
|
||||
"from": [9, 0.2, 9.4],
|
||||
"to": [11, 1.2, 10.4],
|
||||
"forge_data": { "block_light": 15, "sky_light": 15 },
|
||||
"shade": false,
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 0.2, 9.4]},
|
||||
"faces": {
|
||||
"north": {"uv": [12, 4.5, 13, 5], "texture": "#1"},
|
||||
"east": {"uv": [12, 4.5, 12.5, 5], "texture": "#1"},
|
||||
"south": {"uv": [13, 4.5, 12, 5], "texture": "#1"},
|
||||
"west": {"uv": [12.5, 4.5, 13, 5], "texture": "#1"},
|
||||
"up": {"uv": [13, 4.5, 12, 5], "texture": "#1"},
|
||||
"down": {"uv": [12, 4.5, 13, 5], "texture": "#1"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"display": {
|
||||
"thirdperson_righthand": {
|
||||
"rotation": [75, 45, 0],
|
||||
"translation": [0, 2.5, 0],
|
||||
"scale": [0.375, 0.375, 0.375]
|
||||
},
|
||||
"thirdperson_lefthand": {
|
||||
"rotation": [75, 45, 0],
|
||||
"translation": [0, 2.5, 0],
|
||||
"scale": [0.375, 0.375, 0.375]
|
||||
},
|
||||
"firstperson_righthand": {
|
||||
"rotation": [0, 45, 0],
|
||||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"firstperson_lefthand": {
|
||||
"rotation": [0, -135, 0],
|
||||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 3, 0],
|
||||
"scale": [0.25, 0.25, 0.25]
|
||||
},
|
||||
"gui": {
|
||||
"rotation": [30, -135, 0],
|
||||
"scale": [0.625, 0.625, 0.625]
|
||||
},
|
||||
"head": {
|
||||
"translation": [0, 8, 0]
|
||||
},
|
||||
"fixed": {
|
||||
"scale": [0.5, 0.5, 0.5]
|
||||
}
|
||||
},
|
||||
"groups": [
|
||||
{
|
||||
"name": "base",
|
||||
"origin": [0, 7, 0],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "shelves",
|
||||
"origin": [0, 7, 0],
|
||||
"color": 0,
|
||||
"children": [0, 1]
|
||||
},
|
||||
{
|
||||
"name": "legs",
|
||||
"origin": [0.08, 0, -0.01],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "leg4",
|
||||
"origin": [0.08, 0, -0.01],
|
||||
"color": 0,
|
||||
"children": [2, 3]
|
||||
},
|
||||
{
|
||||
"name": "leg1",
|
||||
"origin": [0.08, 0, -0.01],
|
||||
"color": 0,
|
||||
"children": [4, 5]
|
||||
},
|
||||
{
|
||||
"name": "leg2",
|
||||
"origin": [0.08, 0, -0.01],
|
||||
"color": 0,
|
||||
"children": [6, 7]
|
||||
},
|
||||
{
|
||||
"name": "leg3",
|
||||
"origin": [0.08, 0, -0.01],
|
||||
"color": 0,
|
||||
"children": [8, 9]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "vial_sets",
|
||||
"origin": [6, 8, 4],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "vial_set1",
|
||||
"origin": [6, 8, 4],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "vial_rack1",
|
||||
"origin": [6, 8, 4],
|
||||
"color": 0,
|
||||
"children": [10, 11, 12, 13]
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [14, 15]
|
||||
},
|
||||
{
|
||||
"name": "tube2",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [16, 17]
|
||||
},
|
||||
{
|
||||
"name": "tube3",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [18, 19]
|
||||
},
|
||||
{
|
||||
"name": "tube4",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [20, 21]
|
||||
},
|
||||
{
|
||||
"name": "tube5",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [22, 23]
|
||||
},
|
||||
{
|
||||
"name": "tube6",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [24, 25]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "label_maker1",
|
||||
"origin": [4, 8, 7],
|
||||
"color": 0,
|
||||
"children": [26, 27, 28, 29, 30]
|
||||
},
|
||||
31,
|
||||
{
|
||||
"name": "beakers",
|
||||
"origin": [7, 5.2, 7],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "beaker1",
|
||||
"origin": [7, 5.2, 7],
|
||||
"color": 0,
|
||||
"children": [32, 33]
|
||||
},
|
||||
{
|
||||
"name": "beaker2",
|
||||
"origin": [7, 5.2, 7],
|
||||
"color": 0,
|
||||
"children": [34, 35]
|
||||
}
|
||||
]
|
||||
},
|
||||
36,
|
||||
37
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,598 @@
|
|||
{
|
||||
"format_version": "1.9.0",
|
||||
"credit": "Made with Blockbench",
|
||||
"textures": {
|
||||
"0": "tfg:block/machines/sample_racks/sample_rack_base",
|
||||
"1": "tfg:block/machines/sample_racks/sample_rack_overlay",
|
||||
"particle": "tfg:block/machines/sample_racks/sample_rack_base"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "shelf1",
|
||||
"from": [0, 7, 0],
|
||||
"to": [16, 8, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [0, 7, 0]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"up": {"uv": [8, 8, 0, 0], "texture": "#0"},
|
||||
"down": {"uv": [8, 0, 0, 8], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "shelf2",
|
||||
"from": [0, 15, 0],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [0, 15, 0]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"up": {"uv": [8, 8, 0, 0], "texture": "#0"},
|
||||
"down": {"uv": [8, 0, 0, 8], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [-0.01, 0, 14.01],
|
||||
"to": [-0.01, 16, 16.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [0.08, 0, 16.01]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"east": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"south": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"west": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"up": {"uv": [8.5, 0, 8, 0.5], "rotation": 90, "texture": "#0"},
|
||||
"down": {"uv": [8.5, 7.5, 8, 8], "rotation": 270, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [-0.01, 0, 16.01],
|
||||
"to": [1.99, 16, 16.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [-0.1, 0, 16.1]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"east": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"south": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"west": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"up": {"uv": [8, 0.5, 8.5, 0], "texture": "#0"},
|
||||
"down": {"uv": [8, 8, 8.5, 7.5], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [-0.01, 0, -0.01],
|
||||
"to": [-0.01, 16, 1.99],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [0.08, 0, -0.01]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"east": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"south": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"west": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"up": {"uv": [8, 0, 8.5, 0.5], "rotation": 90, "texture": "#0"},
|
||||
"down": {"uv": [8, 7.5, 8.5, 8], "rotation": 270, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [-0.01, 0, -0.01],
|
||||
"to": [1.99, 16, -0.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [-0.1, 0, -0.1]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"east": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"south": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"west": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"up": {"uv": [8, 0, 8.5, 0.5], "texture": "#0"},
|
||||
"down": {"uv": [8, 7.5, 8.5, 8], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [16.01, 0, -0.01],
|
||||
"to": [16.01, 16, 1.99],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15.92, 0, -0.01]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"east": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"south": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"west": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"up": {"uv": [8, 0.5, 8.5, 0], "rotation": 90, "texture": "#0"},
|
||||
"down": {"uv": [8, 8, 8.5, 7.5], "rotation": 270, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14.01, 0, -0.01],
|
||||
"to": [16.01, 16, -0.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [16.1, 0, -0.1]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"east": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"south": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"west": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"up": {"uv": [8.5, 0, 8, 0.5], "texture": "#0"},
|
||||
"down": {"uv": [8.5, 7.5, 8, 8], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [16.01, 0, 14.01],
|
||||
"to": [16.01, 16, 16.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15.92, 0, 16.01]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"east": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"south": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"west": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"up": {"uv": [8.5, 0.5, 8, 0], "rotation": 90, "texture": "#0"},
|
||||
"down": {"uv": [8.5, 8, 8, 7.5], "rotation": 270, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14.01, 0, 16.01],
|
||||
"to": [16.01, 16, 16.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [16.1, 0, 16.1]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"east": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"south": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"west": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"up": {"uv": [8.5, 0.5, 8, 0], "texture": "#0"},
|
||||
"down": {"uv": [8.5, 8, 8, 7.5], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 10, 6.5],
|
||||
"to": [15, 10, 9.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 8, 7.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 0, 0, 0], "texture": "#1"},
|
||||
"east": {"uv": [1.5, 0, 0, 0], "texture": "#1"},
|
||||
"south": {"uv": [7, 0, 0, 0], "texture": "#1"},
|
||||
"west": {"uv": [1.5, 0, 0, 0], "texture": "#1"},
|
||||
"up": {"uv": [0, 1.5, 7, 0], "texture": "#1"},
|
||||
"down": {"uv": [0, 0, 7, 1.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 8.01, 6.5],
|
||||
"to": [15, 8.01, 9.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 6, 7.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 0, 0, 0], "texture": "#1"},
|
||||
"east": {"uv": [1.5, 0, 0, 0], "texture": "#1"},
|
||||
"south": {"uv": [7, 0, 0, 0], "texture": "#1"},
|
||||
"west": {"uv": [1.5, 0, 0, 0], "texture": "#1"},
|
||||
"up": {"uv": [0, 3, 7, 1.5], "texture": "#1"},
|
||||
"down": {"uv": [0, 1.5, 7, 3], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [15, 8, 6.5],
|
||||
"to": [15, 10, 9.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15, 8, 6.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0, 2], "texture": "#1"},
|
||||
"east": {"uv": [5, 2, 6.5, 3], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0, 2], "texture": "#1"},
|
||||
"west": {"uv": [6.5, 2, 5, 3], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0, 3], "texture": "#1"},
|
||||
"down": {"uv": [0, 0, 0, 3], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 8, 6.5],
|
||||
"to": [1, 10, 9.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [1, 8, 6.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0, 2], "texture": "#1"},
|
||||
"east": {"uv": [5, 2, 6.5, 3], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0, 2], "texture": "#1"},
|
||||
"west": {"uv": [6.5, 2, 5, 3], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0, 3], "texture": "#1"},
|
||||
"down": {"uv": [0, 0, 0, 3], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [13, 13.1, 8.5],
|
||||
"to": [12, 8.1, 7.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 13.1, 8.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 2.5, 7, 3], "texture": "#1"},
|
||||
"down": {"uv": [1, 0.5, 0.5, 1], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [12, 13.1, 7.5],
|
||||
"to": [13, 14.1, 8.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 13.1, 7.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"down": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [11, 13.1, 8.5],
|
||||
"to": [10, 8.1, 7.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 13.1, 8.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 2.5, 7, 3], "texture": "#1"},
|
||||
"down": {"uv": [1, 0.5, 0.5, 1], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [10, 13.1, 7.5],
|
||||
"to": [11, 14.1, 8.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 13.1, 7.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"down": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [9, 13.1, 8.5],
|
||||
"to": [8, 8.1, 7.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 13.1, 8.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 5, 7, 5.5], "texture": "#1"},
|
||||
"down": {"uv": [1, 0.5, 0.5, 1], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [8, 13.1, 7.5],
|
||||
"to": [9, 14.1, 8.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 13.1, 7.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"down": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [7, 13.1, 8.5],
|
||||
"to": [6, 8.1, 7.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [6, 13.1, 8.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 2.5, 7, 3], "texture": "#1"},
|
||||
"down": {"uv": [1, 0.5, 0.5, 1], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [6, 13.1, 7.5],
|
||||
"to": [7, 14.1, 8.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 13.1, 7.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"down": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [5, 13.1, 8.5],
|
||||
"to": [4, 8.1, 7.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [4, 13.1, 8.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 5, 7, 5.5], "texture": "#1"},
|
||||
"down": {"uv": [1, 0.5, 0.5, 1], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [4, 13.1, 7.5],
|
||||
"to": [5, 14.1, 8.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [5, 13.1, 7.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"down": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [3, 13.1, 8.5],
|
||||
"to": [2, 8.1, 7.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [2, 13.1, 8.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 2.5, 7, 3], "texture": "#1"},
|
||||
"down": {"uv": [1, 0.5, 0.5, 1], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [2, 13.1, 7.5],
|
||||
"to": [3, 14.1, 8.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [3, 13.1, 7.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"down": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "beaker",
|
||||
"from": [6, 13.01, 6],
|
||||
"to": [3, 8.01, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [6, 13, 6]},
|
||||
"faces": {
|
||||
"north": {"uv": [14.5, 0, 13, 2.5], "texture": "#1"},
|
||||
"east": {"uv": [13, 0, 14.5, 2.5], "texture": "#1"},
|
||||
"south": {"uv": [14.5, 0, 13, 2.5], "texture": "#1"},
|
||||
"west": {"uv": [13, 0, 14.5, 2.5], "texture": "#1"},
|
||||
"up": {"uv": [14.5, 3, 16, 4.5], "texture": "#1"},
|
||||
"down": {"uv": [14.5, 0, 16, 1.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "beaker",
|
||||
"from": [9, 13.01, 14],
|
||||
"to": [6, 8.01, 11],
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [9, 13, 14]},
|
||||
"faces": {
|
||||
"north": {"uv": [14.5, 0, 13, 2.5], "texture": "#1"},
|
||||
"east": {"uv": [13, 0, 14.5, 2.5], "texture": "#1"},
|
||||
"south": {"uv": [14.5, 0, 13, 2.5], "texture": "#1"},
|
||||
"west": {"uv": [13, 0, 14.5, 2.5], "texture": "#1"},
|
||||
"up": {"uv": [14.5, 3, 16, 4.5], "texture": "#1"},
|
||||
"down": {"uv": [14.5, 0, 16, 1.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "grad_cylin1",
|
||||
"from": [10, 14.01, 7],
|
||||
"to": [8, 8.01, 5],
|
||||
"rotation": {"angle": -45, "axis": "y", "origin": [12, 14, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [15, 5, 16, 8], "texture": "#1"},
|
||||
"east": {"uv": [15, 5, 16, 8], "texture": "#1"},
|
||||
"south": {"uv": [15, 5, 16, 8], "texture": "#1"},
|
||||
"west": {"uv": [15, 5, 16, 8], "texture": "#1"},
|
||||
"up": {"uv": [15, 5, 16, 6], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [15, 0, 16, 1], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3.5, 0, 3.5],
|
||||
"to": [12.5, 4, 12.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10.5, 0, 9.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 7, 10.5, 9], "texture": "#1"},
|
||||
"east": {"uv": [6, 7, 10.5, 9], "texture": "#1"},
|
||||
"south": {"uv": [6, 7, 10.5, 9], "texture": "#1"},
|
||||
"west": {"uv": [6, 7, 10.5, 9], "texture": "#1"},
|
||||
"up": {"uv": [6, 7, 10.5, 11.5], "texture": "#1"},
|
||||
"down": {"uv": [6, 7, 10.5, 11.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3.5, 0.1, 3.5],
|
||||
"to": [12.5, 3.1, 12.5],
|
||||
"rotation": {"angle": -45, "axis": "y", "origin": [8, 0.1, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 11.5, 10.5, 13], "texture": "#1"},
|
||||
"east": {"uv": [6, 11.5, 10.5, 13], "texture": "#1"},
|
||||
"south": {"uv": [6, 11.5, 10.5, 13], "texture": "#1"},
|
||||
"west": {"uv": [6, 11.5, 10.5, 13], "texture": "#1"},
|
||||
"up": {"uv": [6, 11.5, 10.5, 16], "texture": "#1"},
|
||||
"down": {"uv": [6, 11.5, 10.5, 16], "texture": "#1"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"display": {
|
||||
"thirdperson_righthand": {
|
||||
"rotation": [75, 45, 0],
|
||||
"translation": [0, 2.5, 0],
|
||||
"scale": [0.375, 0.375, 0.375]
|
||||
},
|
||||
"thirdperson_lefthand": {
|
||||
"rotation": [75, 45, 0],
|
||||
"translation": [0, 2.5, 0],
|
||||
"scale": [0.375, 0.375, 0.375]
|
||||
},
|
||||
"firstperson_righthand": {
|
||||
"rotation": [0, 45, 0],
|
||||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"firstperson_lefthand": {
|
||||
"rotation": [0, -135, 0],
|
||||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 3, 0],
|
||||
"scale": [0.25, 0.25, 0.25]
|
||||
},
|
||||
"gui": {
|
||||
"rotation": [30, -135, 0],
|
||||
"scale": [0.625, 0.625, 0.625]
|
||||
},
|
||||
"head": {
|
||||
"translation": [0, 8, 0]
|
||||
},
|
||||
"fixed": {
|
||||
"scale": [0.5, 0.5, 0.5]
|
||||
}
|
||||
},
|
||||
"groups": [
|
||||
{
|
||||
"name": "base",
|
||||
"origin": [0, 7, 0],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "shelves",
|
||||
"origin": [0, 7, 0],
|
||||
"color": 0,
|
||||
"children": [0, 1]
|
||||
},
|
||||
{
|
||||
"name": "legs",
|
||||
"origin": [0.08, 0, -0.01],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "leg4",
|
||||
"origin": [0.08, 0, -0.01],
|
||||
"color": 0,
|
||||
"children": [2, 3]
|
||||
},
|
||||
{
|
||||
"name": "leg1",
|
||||
"origin": [0.08, 0, -0.01],
|
||||
"color": 0,
|
||||
"children": [4, 5]
|
||||
},
|
||||
{
|
||||
"name": "leg2",
|
||||
"origin": [0.08, 0, -0.01],
|
||||
"color": 0,
|
||||
"children": [6, 7]
|
||||
},
|
||||
{
|
||||
"name": "leg3",
|
||||
"origin": [0.08, 0, -0.01],
|
||||
"color": 0,
|
||||
"children": [8, 9]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "vial_sets",
|
||||
"origin": [6, 8, 4],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "vial_set2",
|
||||
"origin": [6, 8, 4],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "vial_rack1",
|
||||
"origin": [6, 8, 4],
|
||||
"color": 0,
|
||||
"children": [10, 11, 12, 13]
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [14, 15]
|
||||
},
|
||||
{
|
||||
"name": "tube2",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [16, 17]
|
||||
},
|
||||
{
|
||||
"name": "tube3",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [18, 19]
|
||||
},
|
||||
{
|
||||
"name": "tube4",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [20, 21]
|
||||
},
|
||||
{
|
||||
"name": "tube5",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [22, 23]
|
||||
},
|
||||
{
|
||||
"name": "tube6",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [24, 25]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "beakers",
|
||||
"origin": [7, 5.2, 7],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "beaker3",
|
||||
"origin": [7, 5.2, 7],
|
||||
"color": 0,
|
||||
"children": [26]
|
||||
},
|
||||
{
|
||||
"name": "beaker4",
|
||||
"origin": [7, 5.2, 7],
|
||||
"color": 0,
|
||||
"children": [27]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "grad_cylin1",
|
||||
"origin": [12, 19, 7],
|
||||
"color": 0,
|
||||
"children": [28]
|
||||
},
|
||||
{
|
||||
"name": "centrifuge1",
|
||||
"origin": [10.5, 0, 9.5],
|
||||
"color": 0,
|
||||
"children": [29, 30]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,665 @@
|
|||
{
|
||||
"format_version": "1.9.0",
|
||||
"credit": "Made with Blockbench",
|
||||
"ambientocclusion": false,
|
||||
"textures": {
|
||||
"0": "tfg:block/machines/sample_racks/sample_rack_base",
|
||||
"1": "tfg:block/machines/sample_racks/sample_rack_overlay_active",
|
||||
"particle": "tfg:block/machines/sample_racks/sample_rack_base"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "shelf1",
|
||||
"from": [0, 7, 0],
|
||||
"to": [16, 8, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [0, 7, 0]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"up": {"uv": [8, 8, 0, 0], "texture": "#0"},
|
||||
"down": {"uv": [8, 0, 0, 8], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "shelf2",
|
||||
"from": [0, 15, 0],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [0, 15, 0]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"up": {"uv": [8, 8, 0, 0], "texture": "#0"},
|
||||
"down": {"uv": [8, 0, 0, 8], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [-0.01, 0, 14.01],
|
||||
"to": [-0.01, 16, 16.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [0.08, 0, 16.01]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"east": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"south": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"west": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"up": {"uv": [8.5, 0, 8, 0.5], "rotation": 90, "texture": "#0"},
|
||||
"down": {"uv": [8.5, 7.5, 8, 8], "rotation": 270, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [-0.01, 0, 16.01],
|
||||
"to": [1.99, 16, 16.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [-0.1, 0, 16.1]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"east": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"south": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"west": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"up": {"uv": [8, 0.5, 8.5, 0], "texture": "#0"},
|
||||
"down": {"uv": [8, 8, 8.5, 7.5], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [-0.01, 0, -0.01],
|
||||
"to": [-0.01, 16, 1.99],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [0.08, 0, -0.01]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"east": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"south": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"west": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"up": {"uv": [8, 0, 8.5, 0.5], "rotation": 90, "texture": "#0"},
|
||||
"down": {"uv": [8, 7.5, 8.5, 8], "rotation": 270, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [-0.01, 0, -0.01],
|
||||
"to": [1.99, 16, -0.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [-0.1, 0, -0.1]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"east": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"south": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"west": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"up": {"uv": [8, 0, 8.5, 0.5], "texture": "#0"},
|
||||
"down": {"uv": [8, 7.5, 8.5, 8], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [16.01, 0, -0.01],
|
||||
"to": [16.01, 16, 1.99],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15.92, 0, -0.01]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"east": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"south": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"west": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"up": {"uv": [8, 0.5, 8.5, 0], "rotation": 90, "texture": "#0"},
|
||||
"down": {"uv": [8, 8, 8.5, 7.5], "rotation": 270, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14.01, 0, -0.01],
|
||||
"to": [16.01, 16, -0.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [16.1, 0, -0.1]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"east": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"south": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"west": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"up": {"uv": [8.5, 0, 8, 0.5], "texture": "#0"},
|
||||
"down": {"uv": [8.5, 7.5, 8, 8], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [16.01, 0, 14.01],
|
||||
"to": [16.01, 16, 16.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15.92, 0, 16.01]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"east": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"south": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"west": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"up": {"uv": [8.5, 0.5, 8, 0], "rotation": 90, "texture": "#0"},
|
||||
"down": {"uv": [8.5, 8, 8, 7.5], "rotation": 270, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14.01, 0, 16.01],
|
||||
"to": [16.01, 16, 16.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [16.1, 0, 16.1]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"east": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"south": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"west": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"up": {"uv": [8.5, 0.5, 8, 0], "texture": "#0"},
|
||||
"down": {"uv": [8.5, 8, 8, 7.5], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 10, 6.5],
|
||||
"to": [15, 10, 9.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 8, 7.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 0, 0, 0], "texture": "#1"},
|
||||
"east": {"uv": [1.5, 0, 0, 0], "texture": "#1"},
|
||||
"south": {"uv": [7, 0, 0, 0], "texture": "#1"},
|
||||
"west": {"uv": [1.5, 0, 0, 0], "texture": "#1"},
|
||||
"up": {"uv": [0, 1.5, 7, 0], "texture": "#1"},
|
||||
"down": {"uv": [0, 0, 7, 1.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 8.01, 6.5],
|
||||
"to": [15, 8.01, 9.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 6, 7.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 0, 0, 0], "texture": "#1"},
|
||||
"east": {"uv": [1.5, 0, 0, 0], "texture": "#1"},
|
||||
"south": {"uv": [7, 0, 0, 0], "texture": "#1"},
|
||||
"west": {"uv": [1.5, 0, 0, 0], "texture": "#1"},
|
||||
"up": {"uv": [0, 3, 7, 1.5], "texture": "#1"},
|
||||
"down": {"uv": [0, 1.5, 7, 3], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [15, 8, 6.5],
|
||||
"to": [15, 10, 9.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15, 8, 6.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0, 2], "texture": "#1"},
|
||||
"east": {"uv": [5, 2, 6.5, 3], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0, 2], "texture": "#1"},
|
||||
"west": {"uv": [6.5, 2, 5, 3], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0, 3], "texture": "#1"},
|
||||
"down": {"uv": [0, 0, 0, 3], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 8, 6.5],
|
||||
"to": [1, 10, 9.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [1, 8, 6.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0, 2], "texture": "#1"},
|
||||
"east": {"uv": [5, 2, 6.5, 3], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0, 2], "texture": "#1"},
|
||||
"west": {"uv": [6.5, 2, 5, 3], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0, 3], "texture": "#1"},
|
||||
"down": {"uv": [0, 0, 0, 3], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [13, 13.1, 8.5],
|
||||
"to": [12, 8.1, 7.5],
|
||||
"forge_data": { "block_light": 15, "sky_light": 15 },
|
||||
"shade": false,
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 13.1, 8.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 2.5, 7, 3], "texture": "#1"},
|
||||
"down": {"uv": [1, 0.5, 0.5, 1], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [12, 13.1, 7.5],
|
||||
"to": [13, 14.1, 8.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 13.1, 7.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"down": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [11, 13.1, 8.5],
|
||||
"to": [10, 8.1, 7.5],
|
||||
"forge_data": { "block_light": 15, "sky_light": 15 },
|
||||
"shade": false,
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 13.1, 8.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 2.5, 7, 3], "texture": "#1"},
|
||||
"down": {"uv": [1, 0.5, 0.5, 1], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [10, 13.1, 7.5],
|
||||
"to": [11, 14.1, 8.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 13.1, 7.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"down": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [9, 13.1, 8.5],
|
||||
"to": [8, 8.1, 7.5],
|
||||
"forge_data": { "block_light": 15, "sky_light": 15 },
|
||||
"shade": false,
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 13.1, 8.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 5, 7, 5.5], "texture": "#1"},
|
||||
"down": {"uv": [1, 0.5, 0.5, 1], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [8, 13.1, 7.5],
|
||||
"to": [9, 14.1, 8.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 13.1, 7.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"down": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [7, 13.1, 8.5],
|
||||
"to": [6, 8.1, 7.5],
|
||||
"forge_data": { "block_light": 15, "sky_light": 15 },
|
||||
"shade": false,
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [6, 13.1, 8.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 2.5, 7, 3], "texture": "#1"},
|
||||
"down": {"uv": [1, 0.5, 0.5, 1], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [6, 13.1, 7.5],
|
||||
"to": [7, 14.1, 8.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 13.1, 7.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"down": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [5, 13.1, 8.5],
|
||||
"to": [4, 8.1, 7.5],
|
||||
"forge_data": { "block_light": 15, "sky_light": 15 },
|
||||
"shade": false,
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [4, 13.1, 8.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 5, 7, 5.5], "texture": "#1"},
|
||||
"down": {"uv": [1, 0.5, 0.5, 1], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [4, 13.1, 7.5],
|
||||
"to": [5, 14.1, 8.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [5, 13.1, 7.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"down": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [3, 13.1, 8.5],
|
||||
"to": [2, 8.1, 7.5],
|
||||
"forge_data": { "block_light": 15, "sky_light": 15 },
|
||||
"shade": false,
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [2, 13.1, 8.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 2.5, 7, 3], "texture": "#1"},
|
||||
"down": {"uv": [1, 0.5, 0.5, 1], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [2, 13.1, 7.5],
|
||||
"to": [3, 14.1, 8.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [3, 13.1, 7.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"down": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "beaker",
|
||||
"from": [6, 13.01, 6],
|
||||
"to": [3, 8.01, 3],
|
||||
"forge_data": { "block_light": 15, "sky_light": 15 },
|
||||
"shade": false,
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [6, 13, 6]},
|
||||
"faces": {
|
||||
"north": {"uv": [14.5, 0, 13, 2.5], "texture": "#1"},
|
||||
"east": {"uv": [13, 0, 14.5, 2.5], "texture": "#1"},
|
||||
"south": {"uv": [14.5, 0, 13, 2.5], "texture": "#1"},
|
||||
"west": {"uv": [13, 0, 14.5, 2.5], "texture": "#1"},
|
||||
"up": {"uv": [14.5, 3, 16, 4.5], "texture": "#1"},
|
||||
"down": {"uv": [14.5, 0, 16, 1.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "fluid",
|
||||
"from": [6, 11.01, 6],
|
||||
"to": [3, 11.01, 3],
|
||||
"forge_data": { "block_light": 15, "sky_light": 15 },
|
||||
"shade": false,
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [6, 9, 6]},
|
||||
"faces": {
|
||||
"north": {"uv": [14.5, 0, 13, 2.5], "texture": "#1"},
|
||||
"east": {"uv": [13, 0, 14.5, 2.5], "texture": "#1"},
|
||||
"south": {"uv": [14.5, 0, 13, 2.5], "texture": "#1"},
|
||||
"west": {"uv": [13, 0, 14.5, 2.5], "texture": "#1"},
|
||||
"up": {"uv": [14.5, 1.5, 16, 3], "texture": "#1"},
|
||||
"down": {"uv": [14.5, 1.5, 16, 3], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "beaker",
|
||||
"from": [9, 13.01, 14],
|
||||
"to": [6, 8.01, 11],
|
||||
"forge_data": { "block_light": 15, "sky_light": 15 },
|
||||
"shade": false,
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [9, 13, 14]},
|
||||
"faces": {
|
||||
"north": {"uv": [14.5, 0, 13, 2.5], "texture": "#1"},
|
||||
"east": {"uv": [13, 0, 14.5, 2.5], "texture": "#1"},
|
||||
"south": {"uv": [14.5, 0, 13, 2.5], "texture": "#1"},
|
||||
"west": {"uv": [13, 0, 14.5, 2.5], "texture": "#1"},
|
||||
"up": {"uv": [14.5, 3, 16, 4.5], "texture": "#1"},
|
||||
"down": {"uv": [14.5, 0, 16, 1.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "fluid",
|
||||
"from": [9, 11.01, 14],
|
||||
"to": [6, 11.01, 11],
|
||||
"forge_data": { "block_light": 15, "sky_light": 15 },
|
||||
"shade": false,
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [9, 9, 14]},
|
||||
"faces": {
|
||||
"north": {"uv": [14.5, 0, 13, 2.5], "texture": "#1"},
|
||||
"east": {"uv": [13, 0, 14.5, 2.5], "texture": "#1"},
|
||||
"south": {"uv": [14.5, 0, 13, 2.5], "texture": "#1"},
|
||||
"west": {"uv": [13, 0, 14.5, 2.5], "texture": "#1"},
|
||||
"up": {"uv": [14.5, 1.5, 16, 3], "texture": "#1"},
|
||||
"down": {"uv": [14.5, 1.5, 16, 3], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "fluid",
|
||||
"from": [10, 13.01, 7],
|
||||
"to": [8, 13.01, 5],
|
||||
"forge_data": { "block_light": 15, "sky_light": 15 },
|
||||
"shade": false,
|
||||
"rotation": {"angle": -45, "axis": "y", "origin": [12, 19, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [15, 5, 16, 8], "texture": "#1"},
|
||||
"east": {"uv": [15, 5, 16, 8], "texture": "#1"},
|
||||
"south": {"uv": [15, 5, 16, 8], "texture": "#1"},
|
||||
"west": {"uv": [15, 5, 16, 8], "texture": "#1"},
|
||||
"up": {"uv": [11, 4.5, 12, 5.5], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [11, 4.5, 12, 5.5], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "grad_cylin1",
|
||||
"from": [10, 14.01, 7],
|
||||
"to": [8, 8.01, 5],
|
||||
"forge_data": { "block_light": 15, "sky_light": 15 },
|
||||
"shade": false,
|
||||
"rotation": {"angle": -45, "axis": "y", "origin": [12, 14, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [15, 5, 16, 8], "texture": "#1"},
|
||||
"east": {"uv": [15, 5, 16, 8], "texture": "#1"},
|
||||
"south": {"uv": [15, 5, 16, 8], "texture": "#1"},
|
||||
"west": {"uv": [15, 5, 16, 8], "texture": "#1"},
|
||||
"up": {"uv": [15, 5, 16, 6], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [15, 0, 16, 1], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3.5, 0, 3.5],
|
||||
"to": [12.5, 4, 12.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10.5, 0, 9.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 7, 10.5, 9], "texture": "#1"},
|
||||
"east": {"uv": [6, 7, 10.5, 9], "texture": "#1"},
|
||||
"south": {"uv": [6, 7, 10.5, 9], "texture": "#1"},
|
||||
"west": {"uv": [6, 7, 10.5, 9], "texture": "#1"},
|
||||
"up": {"uv": [6, 7, 10.5, 11.5], "texture": "#1"},
|
||||
"down": {"uv": [6, 7, 10.5, 11.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3.5, 0.1, 3.5],
|
||||
"to": [12.5, 3.1, 12.5],
|
||||
"rotation": {"angle": -45, "axis": "y", "origin": [8, 0.1, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 11.5, 10.5, 13], "texture": "#1"},
|
||||
"east": {"uv": [6, 11.5, 10.5, 13], "texture": "#1"},
|
||||
"south": {"uv": [6, 11.5, 10.5, 13], "texture": "#1"},
|
||||
"west": {"uv": [6, 11.5, 10.5, 13], "texture": "#1"},
|
||||
"up": {"uv": [6, 11.5, 10.5, 16], "texture": "#1"},
|
||||
"down": {"uv": [6, 11.5, 10.5, 16], "texture": "#1"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"display": {
|
||||
"thirdperson_righthand": {
|
||||
"rotation": [75, 45, 0],
|
||||
"translation": [0, 2.5, 0],
|
||||
"scale": [0.375, 0.375, 0.375]
|
||||
},
|
||||
"thirdperson_lefthand": {
|
||||
"rotation": [75, 45, 0],
|
||||
"translation": [0, 2.5, 0],
|
||||
"scale": [0.375, 0.375, 0.375]
|
||||
},
|
||||
"firstperson_righthand": {
|
||||
"rotation": [0, 45, 0],
|
||||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"firstperson_lefthand": {
|
||||
"rotation": [0, -135, 0],
|
||||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 3, 0],
|
||||
"scale": [0.25, 0.25, 0.25]
|
||||
},
|
||||
"gui": {
|
||||
"rotation": [30, -135, 0],
|
||||
"scale": [0.625, 0.625, 0.625]
|
||||
},
|
||||
"head": {
|
||||
"translation": [0, 8, 0]
|
||||
},
|
||||
"fixed": {
|
||||
"scale": [0.5, 0.5, 0.5]
|
||||
}
|
||||
},
|
||||
"groups": [
|
||||
{
|
||||
"name": "base",
|
||||
"origin": [0, 7, 0],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "shelves",
|
||||
"origin": [0, 7, 0],
|
||||
"color": 0,
|
||||
"children": [0, 1]
|
||||
},
|
||||
{
|
||||
"name": "legs",
|
||||
"origin": [0.08, 0, -0.01],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "leg4",
|
||||
"origin": [0.08, 0, -0.01],
|
||||
"color": 0,
|
||||
"children": [2, 3]
|
||||
},
|
||||
{
|
||||
"name": "leg1",
|
||||
"origin": [0.08, 0, -0.01],
|
||||
"color": 0,
|
||||
"children": [4, 5]
|
||||
},
|
||||
{
|
||||
"name": "leg2",
|
||||
"origin": [0.08, 0, -0.01],
|
||||
"color": 0,
|
||||
"children": [6, 7]
|
||||
},
|
||||
{
|
||||
"name": "leg3",
|
||||
"origin": [0.08, 0, -0.01],
|
||||
"color": 0,
|
||||
"children": [8, 9]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "vial_sets",
|
||||
"origin": [6, 8, 4],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "vial_set2",
|
||||
"origin": [6, 8, 4],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "vial_rack1",
|
||||
"origin": [6, 8, 4],
|
||||
"color": 0,
|
||||
"children": [10, 11, 12, 13]
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [14, 15]
|
||||
},
|
||||
{
|
||||
"name": "tube2",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [16, 17]
|
||||
},
|
||||
{
|
||||
"name": "tube3",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [18, 19]
|
||||
},
|
||||
{
|
||||
"name": "tube4",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [20, 21]
|
||||
},
|
||||
{
|
||||
"name": "tube5",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [22, 23]
|
||||
},
|
||||
{
|
||||
"name": "tube6",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [24, 25]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "beakers",
|
||||
"origin": [7, 5.2, 7],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "beaker3",
|
||||
"origin": [7, 5.2, 7],
|
||||
"color": 0,
|
||||
"children": [26, 27]
|
||||
},
|
||||
{
|
||||
"name": "beaker4",
|
||||
"origin": [7, 5.2, 7],
|
||||
"color": 0,
|
||||
"children": [28, 29]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "grad_cylin1",
|
||||
"origin": [12, 19, 7],
|
||||
"color": 0,
|
||||
"children": [30, 31]
|
||||
},
|
||||
{
|
||||
"name": "centrifuge1",
|
||||
"origin": [10.5, 0, 9.5],
|
||||
"color": 0,
|
||||
"children": [32, 33]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,644 @@
|
|||
{
|
||||
"format_version": "1.9.0",
|
||||
"credit": "Made with Blockbench",
|
||||
"textures": {
|
||||
"0": "tfg:block/machines/sample_racks/sample_rack_base",
|
||||
"1": "tfg:block/machines/sample_racks/sample_rack_overlay",
|
||||
"particle": "tfg:block/machines/sample_racks/sample_rack_base"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "shelf1",
|
||||
"from": [0, 7, 0],
|
||||
"to": [16, 8, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [0, 7, 0]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"up": {"uv": [8, 8, 0, 0], "texture": "#0"},
|
||||
"down": {"uv": [8, 0, 0, 8], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "shelf2",
|
||||
"from": [0, 15, 0],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [0, 15, 0]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"up": {"uv": [8, 8, 0, 0], "texture": "#0"},
|
||||
"down": {"uv": [8, 0, 0, 8], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [-0.01, 0, 14.01],
|
||||
"to": [-0.01, 16, 16.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [0.08, 0, 16.01]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"east": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"south": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"west": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"up": {"uv": [8.5, 0, 8, 0.5], "rotation": 90, "texture": "#0"},
|
||||
"down": {"uv": [8.5, 7.5, 8, 8], "rotation": 270, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [-0.01, 0, 16.01],
|
||||
"to": [1.99, 16, 16.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [-0.1, 0, 16.1]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"east": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"south": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"west": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"up": {"uv": [8, 0.5, 8.5, 0], "texture": "#0"},
|
||||
"down": {"uv": [8, 8, 8.5, 7.5], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [-0.01, 0, -0.01],
|
||||
"to": [-0.01, 16, 1.99],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [0.08, 0, -0.01]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"east": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"south": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"west": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"up": {"uv": [8, 0, 8.5, 0.5], "rotation": 90, "texture": "#0"},
|
||||
"down": {"uv": [8, 7.5, 8.5, 8], "rotation": 270, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [-0.01, 0, -0.01],
|
||||
"to": [1.99, 16, -0.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [-0.1, 0, -0.1]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"east": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"south": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"west": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"up": {"uv": [8, 0, 8.5, 0.5], "texture": "#0"},
|
||||
"down": {"uv": [8, 7.5, 8.5, 8], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [16.01, 0, -0.01],
|
||||
"to": [16.01, 16, 1.99],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15.92, 0, -0.01]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"east": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"south": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"west": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"up": {"uv": [8, 0.5, 8.5, 0], "rotation": 90, "texture": "#0"},
|
||||
"down": {"uv": [8, 8, 8.5, 7.5], "rotation": 270, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14.01, 0, -0.01],
|
||||
"to": [16.01, 16, -0.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [16.1, 0, -0.1]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"east": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"south": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"west": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"up": {"uv": [8.5, 0, 8, 0.5], "texture": "#0"},
|
||||
"down": {"uv": [8.5, 7.5, 8, 8], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [16.01, 0, 14.01],
|
||||
"to": [16.01, 16, 16.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15.92, 0, 16.01]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"east": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"south": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"west": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"up": {"uv": [8.5, 0.5, 8, 0], "rotation": 90, "texture": "#0"},
|
||||
"down": {"uv": [8.5, 8, 8, 7.5], "rotation": 270, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14.01, 0, 16.01],
|
||||
"to": [16.01, 16, 16.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [16.1, 0, 16.1]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"east": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"south": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"west": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"up": {"uv": [8.5, 0.5, 8, 0], "texture": "#0"},
|
||||
"down": {"uv": [8.5, 8, 8, 7.5], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3.5, 8, 1],
|
||||
"to": [12.5, 12, 8],
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [4.5, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [11, 0, 13, 4.5], "rotation": 90, "texture": "#1"},
|
||||
"east": {"uv": [7.5, 4.5, 11, 6.5], "texture": "#1"},
|
||||
"south": {"uv": [11, 0, 13, 4.5], "rotation": 90, "texture": "#1"},
|
||||
"west": {"uv": [7.5, 4.5, 11, 6.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 0, 11, 4.5], "rotation": 270, "texture": "#1"},
|
||||
"down": {"uv": [7.5, 4.5, 11, 0], "rotation": 90, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4.5, 12.1, -0.7],
|
||||
"to": [13.5, 12.1, 6.3],
|
||||
"rotation": {"angle": -45, "axis": "y", "origin": [5.5, 8.1, 6.3]},
|
||||
"faces": {
|
||||
"north": {"uv": [11, 0, 13, 4.5], "rotation": 90, "texture": "#1"},
|
||||
"east": {"uv": [7.5, 4.5, 11, 6.5], "texture": "#1"},
|
||||
"south": {"uv": [11, 0, 13, 4.5], "rotation": 90, "texture": "#1"},
|
||||
"west": {"uv": [7.5, 4.5, 11, 6.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 0, 11, 4.5], "rotation": 270, "texture": "#1"},
|
||||
"down": {"uv": [7.5, 4.5, 11, 0], "rotation": 90, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2.9, 10.1, 2.9],
|
||||
"to": [11.9, 10.1, 9.9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [3.9, 6.1, 9.9]},
|
||||
"faces": {
|
||||
"north": {"uv": [11, 0, 13, 4.5], "rotation": 90, "texture": "#1"},
|
||||
"east": {"uv": [7.5, 4.5, 11, 6.5], "texture": "#1"},
|
||||
"south": {"uv": [11, 0, 13, 4.5], "rotation": 90, "texture": "#1"},
|
||||
"west": {"uv": [7.5, 4.5, 11, 6.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 0, 11, 4.5], "rotation": 270, "texture": "#1"},
|
||||
"down": {"uv": [7.5, 4.5, 11, 0], "rotation": 90, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "beaker",
|
||||
"from": [9, 13.01, 14],
|
||||
"to": [6, 8.01, 11],
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [9, 13, 14]},
|
||||
"faces": {
|
||||
"north": {"uv": [14.5, 0, 13, 2.5], "texture": "#1"},
|
||||
"east": {"uv": [13, 0, 14.5, 2.5], "texture": "#1"},
|
||||
"south": {"uv": [14.5, 0, 13, 2.5], "texture": "#1"},
|
||||
"west": {"uv": [13, 0, 14.5, 2.5], "texture": "#1"},
|
||||
"up": {"uv": [14.5, 3, 16, 4.5], "texture": "#1"},
|
||||
"down": {"uv": [14.5, 0, 16, 1.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "fluid",
|
||||
"from": [9, 11.01, 14],
|
||||
"to": [6, 11.01, 11],
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [9, 9, 14]},
|
||||
"faces": {
|
||||
"north": {"uv": [14.5, 0, 13, 2.5], "texture": "#1"},
|
||||
"east": {"uv": [13, 0, 14.5, 2.5], "texture": "#1"},
|
||||
"south": {"uv": [14.5, 0, 13, 2.5], "texture": "#1"},
|
||||
"west": {"uv": [13, 0, 14.5, 2.5], "texture": "#1"},
|
||||
"up": {"uv": [14.5, 1.5, 16, 3], "texture": "#1"},
|
||||
"down": {"uv": [14.5, 1.5, 16, 3], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3.5, 0.1, 3.5],
|
||||
"to": [12.5, 0.1, 12.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [6.5, -1.9, 5.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 9, 0], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 9, 0], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 9, 0], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 9, 0], "texture": "#1"},
|
||||
"up": {"uv": [10.5, 11.5, 15, 16], "texture": "#1"},
|
||||
"down": {"uv": [10.5, 11.5, 15, 16], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3.5, 2.1, 3.5],
|
||||
"to": [12.5, 2.1, 12.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [6.5, 0.1, 5.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 9, 0], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 9, 0], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 9, 0], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 9, 0], "texture": "#1"},
|
||||
"up": {"uv": [10.5, 7, 15, 11.5], "texture": "#1"},
|
||||
"down": {"uv": [10.5, 7, 15, 11.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7.5, 0.1, 7.5],
|
||||
"to": [8.5, 3.1, 8.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7.5, 0.1, 7.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [14.5, 13, 15, 14.5], "texture": "#1"},
|
||||
"east": {"uv": [14.5, 13, 15, 14.5], "texture": "#1"},
|
||||
"south": {"uv": [14.5, 13, 15, 14.5], "texture": "#1"},
|
||||
"west": {"uv": [14.5, 13, 15, 14.5], "texture": "#1"},
|
||||
"up": {"uv": [14.5, 13, 15, 13.5], "texture": "#1"},
|
||||
"down": {"uv": [14.5, 14, 15, 14.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 0.1, 5],
|
||||
"to": [4, 5.1, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [2, -0.9, 11]},
|
||||
"faces": {
|
||||
"north": {"uv": [1.5, 3, 2.5, 5.5], "texture": "#1"},
|
||||
"east": {"uv": [4, 5.5, 7, 3], "texture": "#1"},
|
||||
"south": {"uv": [1.5, 3, 2.5, 5.5], "texture": "#1"},
|
||||
"west": {"uv": [0.5, 3, 3.5, 5.5], "texture": "#1"},
|
||||
"up": {"uv": [0.5, 4.5, 3.5, 5.5], "rotation": 270, "texture": "#1"},
|
||||
"down": {"uv": [0.5, 4.5, 3.5, 5.5], "rotation": 90, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [6.5, 5.11, 6.5],
|
||||
"to": [5.5, 0.11, 5.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [5.5, 5.1, 5.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 2.5, 7, 3], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [1, 0.5, 0.5, 1], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [5.5, 5.11, 5.5],
|
||||
"to": [6.5, 6.11, 6.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [6.5, 5.1, 6.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 0, 7, 0.5], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [7.5, 0, 7, 0.5], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [8.5, 5.11, 11.5],
|
||||
"to": [7.5, 0.11, 10.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7.5, 5.1, 10.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 5, 7, 5.5], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [1, 0.5, 0.5, 1], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [7.5, 5.11, 10.5],
|
||||
"to": [8.5, 6.11, 11.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8.5, 5.1, 11.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 0, 7, 0.5], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [7.5, 0, 7, 0.5], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [10.5, 5.11, 6.5],
|
||||
"to": [9.5, 0.11, 5.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9.5, 5.1, 5.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 5, 7, 5.5], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [1, 0.5, 0.5, 1], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [9.5, 5.11, 5.5],
|
||||
"to": [10.5, 6.11, 6.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10.5, 5.1, 6.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 0, 7, 0.5], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [7.5, 0, 7, 0.5], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [8.5, 5.11, 5.5],
|
||||
"to": [7.5, 0.11, 4.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7.5, 5.1, 4.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 5, 7, 5.5], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [1, 0.5, 0.5, 1], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [7.5, 5.11, 4.5],
|
||||
"to": [8.5, 6.11, 5.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8.5, 5.1, 5.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 0, 7, 0.5], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [7.5, 0, 7, 0.5], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [11.5, 5.11, 8.5],
|
||||
"to": [10.5, 0.11, 7.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10.5, 5.1, 7.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 2.5, 7, 3], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [1, 0.5, 0.5, 1], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [10.5, 5.11, 7.5],
|
||||
"to": [11.5, 6.11, 8.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11.5, 5.1, 8.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 0, 7, 0.5], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [7.5, 0, 7, 0.5], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [10.5, 5.11, 10.5],
|
||||
"to": [9.5, 0.11, 9.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9.5, 5.1, 9.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 2.5, 7, 3], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [1, 0.5, 0.5, 1], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [9.5, 5.11, 9.5],
|
||||
"to": [10.5, 6.11, 10.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10.5, 5.1, 10.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 0, 7, 0.5], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [7.5, 0, 7, 0.5], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [6.5, 5.11, 10.5],
|
||||
"to": [5.5, 0.11, 9.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [5.5, 5.1, 9.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 2.5, 7, 3], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [1, 0.5, 0.5, 1], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [5.5, 5.11, 9.5],
|
||||
"to": [6.5, 6.11, 10.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [6.5, 5.1, 10.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 0, 7, 0.5], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [7.5, 0, 7, 0.5], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [5.5, 5.11, 8.5],
|
||||
"to": [4.5, 0.11, 7.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [4.5, 5.1, 7.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 2.5, 7, 3], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [1, 0.5, 0.5, 1], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [4.5, 5.11, 7.5],
|
||||
"to": [5.5, 6.11, 8.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [5.5, 5.1, 8.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 0, 7, 0.5], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [7.5, 0, 7, 0.5], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"display": {
|
||||
"thirdperson_righthand": {
|
||||
"rotation": [75, 45, 0],
|
||||
"translation": [0, 2.5, 0],
|
||||
"scale": [0.375, 0.375, 0.375]
|
||||
},
|
||||
"thirdperson_lefthand": {
|
||||
"rotation": [75, 45, 0],
|
||||
"translation": [0, 2.5, 0],
|
||||
"scale": [0.375, 0.375, 0.375]
|
||||
},
|
||||
"firstperson_righthand": {
|
||||
"rotation": [0, 45, 0],
|
||||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"firstperson_lefthand": {
|
||||
"rotation": [0, -135, 0],
|
||||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 3, 0],
|
||||
"scale": [0.25, 0.25, 0.25]
|
||||
},
|
||||
"gui": {
|
||||
"rotation": [30, -135, 0],
|
||||
"scale": [0.625, 0.625, 0.625]
|
||||
},
|
||||
"head": {
|
||||
"translation": [0, 8, 0]
|
||||
},
|
||||
"fixed": {
|
||||
"scale": [0.5, 0.5, 0.5]
|
||||
}
|
||||
},
|
||||
"groups": [
|
||||
{
|
||||
"name": "base",
|
||||
"origin": [0, 7, 0],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "shelves",
|
||||
"origin": [0, 7, 0],
|
||||
"color": 0,
|
||||
"children": [0, 1]
|
||||
},
|
||||
{
|
||||
"name": "legs",
|
||||
"origin": [0.08, 0, -0.01],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "leg4",
|
||||
"origin": [0.08, 0, -0.01],
|
||||
"color": 0,
|
||||
"children": [2, 3]
|
||||
},
|
||||
{
|
||||
"name": "leg1",
|
||||
"origin": [0.08, 0, -0.01],
|
||||
"color": 0,
|
||||
"children": [4, 5]
|
||||
},
|
||||
{
|
||||
"name": "leg2",
|
||||
"origin": [0.08, 0, -0.01],
|
||||
"color": 0,
|
||||
"children": [6, 7]
|
||||
},
|
||||
{
|
||||
"name": "leg3",
|
||||
"origin": [0.08, 0, -0.01],
|
||||
"color": 0,
|
||||
"children": [8, 9]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "paper_stack2",
|
||||
"origin": [3.5, 0, 6],
|
||||
"color": 0,
|
||||
"children": [10, 11, 12]
|
||||
},
|
||||
{
|
||||
"name": "beakers",
|
||||
"origin": [7, 5.2, 7],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "beaker4",
|
||||
"origin": [7, 5.2, 7],
|
||||
"color": 0,
|
||||
"children": [13, 14]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tester2",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [
|
||||
15,
|
||||
16,
|
||||
17,
|
||||
18,
|
||||
{
|
||||
"name": "tube8",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [19, 20]
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [21, 22]
|
||||
},
|
||||
{
|
||||
"name": "tube2",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [23, 24]
|
||||
},
|
||||
{
|
||||
"name": "tube3",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [25, 26]
|
||||
},
|
||||
{
|
||||
"name": "tube4",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [27, 28]
|
||||
},
|
||||
{
|
||||
"name": "tube5",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [29, 30]
|
||||
},
|
||||
{
|
||||
"name": "tube6",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [31, 32]
|
||||
},
|
||||
{
|
||||
"name": "tube7",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [33, 34]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,663 @@
|
|||
{
|
||||
"format_version": "1.9.0",
|
||||
"credit": "Made with Blockbench",
|
||||
"ambientocclusion": false,
|
||||
"textures": {
|
||||
"0": "tfg:block/machines/sample_racks/sample_rack_base",
|
||||
"1": "tfg:block/machines/sample_racks/sample_rack_overlay_active",
|
||||
"particle": "tfg:block/machines/sample_racks/sample_rack_base"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "shelf1",
|
||||
"from": [0, 7, 0],
|
||||
"to": [16, 8, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [0, 7, 0]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"up": {"uv": [8, 8, 0, 0], "texture": "#0"},
|
||||
"down": {"uv": [8, 0, 0, 8], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "shelf2",
|
||||
"from": [0, 15, 0],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [0, 15, 0]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"up": {"uv": [8, 8, 0, 0], "texture": "#0"},
|
||||
"down": {"uv": [8, 0, 0, 8], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [-0.01, 0, 14.01],
|
||||
"to": [-0.01, 16, 16.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [0.08, 0, 16.01]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"east": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"south": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"west": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"up": {"uv": [8.5, 0, 8, 0.5], "rotation": 90, "texture": "#0"},
|
||||
"down": {"uv": [8.5, 7.5, 8, 8], "rotation": 270, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [-0.01, 0, 16.01],
|
||||
"to": [1.99, 16, 16.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [-0.1, 0, 16.1]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"east": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"south": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"west": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"up": {"uv": [8, 0.5, 8.5, 0], "texture": "#0"},
|
||||
"down": {"uv": [8, 8, 8.5, 7.5], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [-0.01, 0, -0.01],
|
||||
"to": [-0.01, 16, 1.99],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [0.08, 0, -0.01]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"east": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"south": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"west": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"up": {"uv": [8, 0, 8.5, 0.5], "rotation": 90, "texture": "#0"},
|
||||
"down": {"uv": [8, 7.5, 8.5, 8], "rotation": 270, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [-0.01, 0, -0.01],
|
||||
"to": [1.99, 16, -0.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [-0.1, 0, -0.1]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"east": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"south": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"west": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"up": {"uv": [8, 0, 8.5, 0.5], "texture": "#0"},
|
||||
"down": {"uv": [8, 7.5, 8.5, 8], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [16.01, 0, -0.01],
|
||||
"to": [16.01, 16, 1.99],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15.92, 0, -0.01]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"east": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"south": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"west": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"up": {"uv": [8, 0.5, 8.5, 0], "rotation": 90, "texture": "#0"},
|
||||
"down": {"uv": [8, 8, 8.5, 7.5], "rotation": 270, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14.01, 0, -0.01],
|
||||
"to": [16.01, 16, -0.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [16.1, 0, -0.1]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"east": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"south": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"west": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"up": {"uv": [8.5, 0, 8, 0.5], "texture": "#0"},
|
||||
"down": {"uv": [8.5, 7.5, 8, 8], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [16.01, 0, 14.01],
|
||||
"to": [16.01, 16, 16.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15.92, 0, 16.01]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"east": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"south": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"west": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"up": {"uv": [8.5, 0.5, 8, 0], "rotation": 90, "texture": "#0"},
|
||||
"down": {"uv": [8.5, 8, 8, 7.5], "rotation": 270, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14.01, 0, 16.01],
|
||||
"to": [16.01, 16, 16.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [16.1, 0, 16.1]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"east": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"south": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"west": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"up": {"uv": [8.5, 0.5, 8, 0], "texture": "#0"},
|
||||
"down": {"uv": [8.5, 8, 8, 7.5], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3.5, 8, 1],
|
||||
"to": [12.5, 12, 8],
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [4.5, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [11, 0, 13, 4.5], "rotation": 90, "texture": "#1"},
|
||||
"east": {"uv": [7.5, 4.5, 11, 6.5], "texture": "#1"},
|
||||
"south": {"uv": [11, 0, 13, 4.5], "rotation": 90, "texture": "#1"},
|
||||
"west": {"uv": [7.5, 4.5, 11, 6.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 0, 11, 4.5], "rotation": 270, "texture": "#1"},
|
||||
"down": {"uv": [7.5, 4.5, 11, 0], "rotation": 90, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4.5, 12.1, -0.7],
|
||||
"to": [13.5, 12.1, 6.3],
|
||||
"rotation": {"angle": -45, "axis": "y", "origin": [5.5, 8.1, 6.3]},
|
||||
"faces": {
|
||||
"north": {"uv": [11, 0, 13, 4.5], "rotation": 90, "texture": "#1"},
|
||||
"east": {"uv": [7.5, 4.5, 11, 6.5], "texture": "#1"},
|
||||
"south": {"uv": [11, 0, 13, 4.5], "rotation": 90, "texture": "#1"},
|
||||
"west": {"uv": [7.5, 4.5, 11, 6.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 0, 11, 4.5], "rotation": 270, "texture": "#1"},
|
||||
"down": {"uv": [7.5, 4.5, 11, 0], "rotation": 90, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2.9, 10.1, 2.9],
|
||||
"to": [11.9, 10.1, 9.9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [3.9, 6.1, 9.9]},
|
||||
"faces": {
|
||||
"north": {"uv": [11, 0, 13, 4.5], "rotation": 90, "texture": "#1"},
|
||||
"east": {"uv": [7.5, 4.5, 11, 6.5], "texture": "#1"},
|
||||
"south": {"uv": [11, 0, 13, 4.5], "rotation": 90, "texture": "#1"},
|
||||
"west": {"uv": [7.5, 4.5, 11, 6.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 0, 11, 4.5], "rotation": 270, "texture": "#1"},
|
||||
"down": {"uv": [7.5, 4.5, 11, 0], "rotation": 90, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "beaker",
|
||||
"from": [9, 13.01, 14],
|
||||
"to": [6, 8.01, 11],
|
||||
"forge_data": { "block_light": 15, "sky_light": 15 },
|
||||
"shade": false,
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [9, 13, 14]},
|
||||
"faces": {
|
||||
"north": {"uv": [14.5, 0, 13, 2.5], "texture": "#1"},
|
||||
"east": {"uv": [13, 0, 14.5, 2.5], "texture": "#1"},
|
||||
"south": {"uv": [14.5, 0, 13, 2.5], "texture": "#1"},
|
||||
"west": {"uv": [13, 0, 14.5, 2.5], "texture": "#1"},
|
||||
"up": {"uv": [14.5, 3, 16, 4.5], "texture": "#1"},
|
||||
"down": {"uv": [14.5, 0, 16, 1.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "fluid",
|
||||
"from": [9, 11.01, 14],
|
||||
"to": [6, 11.01, 11],
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [9, 9, 14]},
|
||||
"faces": {
|
||||
"north": {"uv": [14.5, 0, 13, 2.5], "texture": "#1"},
|
||||
"east": {"uv": [13, 0, 14.5, 2.5], "texture": "#1"},
|
||||
"south": {"uv": [14.5, 0, 13, 2.5], "texture": "#1"},
|
||||
"west": {"uv": [13, 0, 14.5, 2.5], "texture": "#1"},
|
||||
"up": {"uv": [14.5, 1.5, 16, 3], "texture": "#1"},
|
||||
"down": {"uv": [14.5, 1.5, 16, 3], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3.5, 0.1, 3.5],
|
||||
"to": [12.5, 0.1, 12.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [6.5, -1.9, 5.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 9, 0], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 9, 0], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 9, 0], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 9, 0], "texture": "#1"},
|
||||
"up": {"uv": [10.5, 11.5, 15, 16], "texture": "#1"},
|
||||
"down": {"uv": [10.5, 11.5, 15, 16], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3.5, 2.1, 3.5],
|
||||
"to": [12.5, 2.1, 12.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [6.5, 0.1, 5.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 9, 0], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 9, 0], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 9, 0], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 9, 0], "texture": "#1"},
|
||||
"up": {"uv": [10.5, 7, 15, 11.5], "texture": "#1"},
|
||||
"down": {"uv": [10.5, 7, 15, 11.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7.5, 0.1, 7.5],
|
||||
"to": [8.5, 3.1, 8.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7.5, 0.1, 7.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [14.5, 13, 15, 14.5], "texture": "#1"},
|
||||
"east": {"uv": [14.5, 13, 15, 14.5], "texture": "#1"},
|
||||
"south": {"uv": [14.5, 13, 15, 14.5], "texture": "#1"},
|
||||
"west": {"uv": [14.5, 13, 15, 14.5], "texture": "#1"},
|
||||
"up": {"uv": [14.5, 13, 15, 13.5], "texture": "#1"},
|
||||
"down": {"uv": [14.5, 14, 15, 14.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 0.1, 5],
|
||||
"to": [4, 5.1, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [2, -0.9, 11]},
|
||||
"faces": {
|
||||
"north": {"uv": [1.5, 3, 2.5, 5.5], "texture": "#1"},
|
||||
"east": {"uv": [4, 5.5, 7, 3], "texture": "#1"},
|
||||
"south": {"uv": [1.5, 3, 2.5, 5.5], "texture": "#1"},
|
||||
"west": {"uv": [0.5, 3, 3.5, 5.5], "texture": "#1"},
|
||||
"up": {"uv": [0.5, 4.5, 3.5, 5.5], "rotation": 270, "texture": "#1"},
|
||||
"down": {"uv": [0.5, 4.5, 3.5, 5.5], "rotation": 90, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [6.5, 5.11, 6.5],
|
||||
"to": [5.5, 0.11, 5.5],
|
||||
"forge_data": { "block_light": 15, "sky_light": 15 },
|
||||
"shade": false,
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [5.5, 5.1, 5.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 2.5, 7, 3], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [1, 0.5, 0.5, 1], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [5.5, 5.11, 5.5],
|
||||
"to": [6.5, 6.11, 6.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [6.5, 5.1, 6.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 0, 7, 0.5], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [7.5, 0, 7, 0.5], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [8.5, 5.11, 11.5],
|
||||
"to": [7.5, 0.11, 10.5],
|
||||
"forge_data": { "block_light": 15, "sky_light": 15 },
|
||||
"shade": false,
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7.5, 5.1, 10.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 5, 7, 5.5], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [1, 0.5, 0.5, 1], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [7.5, 5.11, 10.5],
|
||||
"to": [8.5, 6.11, 11.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8.5, 5.1, 11.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 0, 7, 0.5], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [7.5, 0, 7, 0.5], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [10.5, 5.11, 6.5],
|
||||
"to": [9.5, 0.11, 5.5],
|
||||
"forge_data": { "block_light": 15, "sky_light": 15 },
|
||||
"shade": false,
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9.5, 5.1, 5.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 5, 7, 5.5], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [1, 0.5, 0.5, 1], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [9.5, 5.11, 5.5],
|
||||
"to": [10.5, 6.11, 6.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10.5, 5.1, 6.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 0, 7, 0.5], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [7.5, 0, 7, 0.5], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [8.5, 5.11, 5.5],
|
||||
"to": [7.5, 0.11, 4.5],
|
||||
"forge_data": { "block_light": 15, "sky_light": 15 },
|
||||
"shade": false,
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7.5, 5.1, 4.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 5.5, 7, 3], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 5, 7, 5.5], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [1, 0.5, 0.5, 1], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [7.5, 5.11, 4.5],
|
||||
"to": [8.5, 6.11, 5.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8.5, 5.1, 5.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 0, 7, 0.5], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [7.5, 0, 7, 0.5], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [11.5, 5.11, 8.5],
|
||||
"to": [10.5, 0.11, 7.5],
|
||||
"forge_data": { "block_light": 15, "sky_light": 15 },
|
||||
"shade": false,
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10.5, 5.1, 7.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 2.5, 7, 3], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [1, 0.5, 0.5, 1], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [10.5, 5.11, 7.5],
|
||||
"to": [11.5, 6.11, 8.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11.5, 5.1, 8.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 0, 7, 0.5], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [7.5, 0, 7, 0.5], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [10.5, 5.11, 10.5],
|
||||
"to": [9.5, 0.11, 9.5],
|
||||
"forge_data": { "block_light": 15, "sky_light": 15 },
|
||||
"shade": false,
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9.5, 5.1, 9.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 2.5, 7, 3], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [1, 0.5, 0.5, 1], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [9.5, 5.11, 9.5],
|
||||
"to": [10.5, 6.11, 10.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10.5, 5.1, 10.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 0, 7, 0.5], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [7.5, 0, 7, 0.5], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [6.5, 5.11, 10.5],
|
||||
"to": [5.5, 0.11, 9.5],
|
||||
"forge_data": { "block_light": 15, "sky_light": 15 },
|
||||
"shade": false,
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [5.5, 5.1, 9.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 2.5, 7, 3], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [1, 0.5, 0.5, 1], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [5.5, 5.11, 9.5],
|
||||
"to": [6.5, 6.11, 10.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [6.5, 5.1, 10.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 0, 7, 0.5], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [7.5, 0, 7, 0.5], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"from": [5.5, 5.11, 8.5],
|
||||
"to": [4.5, 0.11, 7.5],
|
||||
"forge_data": { "block_light": 15, "sky_light": 15 },
|
||||
"shade": false,
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [4.5, 5.1, 7.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 3, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 2.5, 7, 3], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [1, 0.5, 0.5, 1], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cork1",
|
||||
"from": [4.5, 5.11, 7.5],
|
||||
"to": [5.5, 6.11, 8.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [5.5, 5.1, 8.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [7.5, 0, 7, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [7.5, 0, 7, 0.5], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [7.5, 0, 7, 0.5], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"display": {
|
||||
"thirdperson_righthand": {
|
||||
"rotation": [75, 45, 0],
|
||||
"translation": [0, 2.5, 0],
|
||||
"scale": [0.375, 0.375, 0.375]
|
||||
},
|
||||
"thirdperson_lefthand": {
|
||||
"rotation": [75, 45, 0],
|
||||
"translation": [0, 2.5, 0],
|
||||
"scale": [0.375, 0.375, 0.375]
|
||||
},
|
||||
"firstperson_righthand": {
|
||||
"rotation": [0, 45, 0],
|
||||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"firstperson_lefthand": {
|
||||
"rotation": [0, -135, 0],
|
||||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 3, 0],
|
||||
"scale": [0.25, 0.25, 0.25]
|
||||
},
|
||||
"gui": {
|
||||
"rotation": [30, -135, 0],
|
||||
"scale": [0.625, 0.625, 0.625]
|
||||
},
|
||||
"head": {
|
||||
"translation": [0, 8, 0]
|
||||
},
|
||||
"fixed": {
|
||||
"scale": [0.5, 0.5, 0.5]
|
||||
}
|
||||
},
|
||||
"groups": [
|
||||
{
|
||||
"name": "base",
|
||||
"origin": [0, 7, 0],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "shelves",
|
||||
"origin": [0, 7, 0],
|
||||
"color": 0,
|
||||
"children": [0, 1]
|
||||
},
|
||||
{
|
||||
"name": "legs",
|
||||
"origin": [0.08, 0, -0.01],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "leg4",
|
||||
"origin": [0.08, 0, -0.01],
|
||||
"color": 0,
|
||||
"children": [2, 3]
|
||||
},
|
||||
{
|
||||
"name": "leg1",
|
||||
"origin": [0.08, 0, -0.01],
|
||||
"color": 0,
|
||||
"children": [4, 5]
|
||||
},
|
||||
{
|
||||
"name": "leg2",
|
||||
"origin": [0.08, 0, -0.01],
|
||||
"color": 0,
|
||||
"children": [6, 7]
|
||||
},
|
||||
{
|
||||
"name": "leg3",
|
||||
"origin": [0.08, 0, -0.01],
|
||||
"color": 0,
|
||||
"children": [8, 9]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "paper_stack2",
|
||||
"origin": [3.5, 0, 6],
|
||||
"color": 0,
|
||||
"children": [10, 11, 12]
|
||||
},
|
||||
{
|
||||
"name": "beakers",
|
||||
"origin": [7, 5.2, 7],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "beaker4",
|
||||
"origin": [7, 5.2, 7],
|
||||
"color": 0,
|
||||
"children": [13, 14]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tester2",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [
|
||||
15,
|
||||
16,
|
||||
17,
|
||||
18,
|
||||
{
|
||||
"name": "tube8",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [19, 20]
|
||||
},
|
||||
{
|
||||
"name": "tube1",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [21, 22]
|
||||
},
|
||||
{
|
||||
"name": "tube2",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [23, 24]
|
||||
},
|
||||
{
|
||||
"name": "tube3",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [25, 26]
|
||||
},
|
||||
{
|
||||
"name": "tube4",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [27, 28]
|
||||
},
|
||||
{
|
||||
"name": "tube5",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [29, 30]
|
||||
},
|
||||
{
|
||||
"name": "tube6",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [31, 32]
|
||||
},
|
||||
{
|
||||
"name": "tube7",
|
||||
"origin": [4, 13.1, 5],
|
||||
"color": 0,
|
||||
"children": [33, 34]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
3
kubejs/assets/tfg/models/item/growth_chamber.json
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "tfg:block/machines/growth_chamber"
|
||||
}
|
||||
185
kubejs/assets/tfg/models/item/growth_monitor.json
Normal file
|
|
@ -0,0 +1,185 @@
|
|||
{
|
||||
"format_version": "1.9.0",
|
||||
"credit": "Made with Blockbench",
|
||||
"texture_size": [64, 64],
|
||||
"textures": {
|
||||
"0": "tfg:block/machines/growth_monitors/growth_monitor_base",
|
||||
"particle": "tfg:block/machines/growth_monitors/growth_monitor_base"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "bolt",
|
||||
"from": [4, 10.6, 4.1],
|
||||
"to": [12, 12.6, 6.1],
|
||||
"rotation": {"angle": 45, "axis": "x", "origin": [4, 10.6, 4.1]},
|
||||
"faces": {
|
||||
"north": {"uv": [1.5, 0, 2.83333, 0.33333], "texture": "#0"},
|
||||
"east": {"uv": [1.66667, 0, 2, 0.33333], "texture": "#0"},
|
||||
"south": {"uv": [2.83333, 0, 1.5, 0.33333], "texture": "#0"},
|
||||
"west": {"uv": [2.33333, 0, 2.66667, 0.33333], "texture": "#0"},
|
||||
"up": {"uv": [1.5, 0, 2.83333, 0.33333], "texture": "#0"},
|
||||
"down": {"uv": [1.5, 0.33333, 2.83333, 0], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "base2",
|
||||
"from": [0, 7, 9],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [0, 5, 0]},
|
||||
"faces": {
|
||||
"north": {"uv": [2.66667, 2.66667, 5.33333, 4.16667], "texture": "#0"},
|
||||
"east": {"uv": [2.66667, 2.66667, 1.5, 4.16667], "texture": "#0"},
|
||||
"south": {"uv": [8, 2.66667, 5.33333, 1.16667], "texture": "#0"},
|
||||
"west": {"uv": [1.5, 2.66667, 2.66667, 4.16667], "texture": "#0"},
|
||||
"up": {"uv": [8, 5.33333, 5.33333, 4.16667], "texture": "#0"},
|
||||
"down": {"uv": [5.33333, 4.16667, 8, 5.33333], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "web1",
|
||||
"from": [0.01, 7.05, 0.05],
|
||||
"to": [2.01, 19.77, 7.05],
|
||||
"rotation": {"angle": 45, "axis": "x", "origin": [0.1, 7, 0]},
|
||||
"faces": {
|
||||
"north": {"uv": [1.16667, 0, 1.5, 2.16667], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 1.16667, 2.16667], "texture": "#0"},
|
||||
"south": {"uv": [1.16667, 0, 1.5, 2.16667], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 1.16667, 2.16667], "texture": "#0"},
|
||||
"up": {"uv": [1.5, 1.16667, 1.16667, 0], "texture": "#0"},
|
||||
"down": {"uv": [1.5, 0, 1.16667, 1.16667], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "web2",
|
||||
"from": [13.99, 7.05, 0.05],
|
||||
"to": [15.99, 19.77, 7.05],
|
||||
"rotation": {"angle": 45, "axis": "x", "origin": [15.9, 7, 0]},
|
||||
"faces": {
|
||||
"north": {"uv": [1.5, 0, 1.16667, 2.16667], "texture": "#0"},
|
||||
"east": {"uv": [1.16667, 0, 0, 2.16667], "texture": "#0"},
|
||||
"south": {"uv": [1.5, 0, 1.16667, 2.16667], "texture": "#0"},
|
||||
"west": {"uv": [1.16667, 0, 0, 2.16667], "texture": "#0"},
|
||||
"up": {"uv": [1.16667, 1.16667, 1.5, 0], "texture": "#0"},
|
||||
"down": {"uv": [1.16667, 0, 1.5, 1.16667], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "mount1",
|
||||
"from": [5, 7, 2],
|
||||
"to": [7, 14, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [6, 7, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [2.5, 0.33333, 2.83333, 1.5], "texture": "#0"},
|
||||
"east": {"uv": [1.5, 0.33333, 2.66667, 1.5], "texture": "#0"},
|
||||
"south": {"uv": [2.5, 0.33333, 2.83333, 1.5], "texture": "#0"},
|
||||
"west": {"uv": [1.5, 0.33333, 2.66667, 1.5], "texture": "#0"},
|
||||
"up": {"uv": [2.5, 0.33333, 2.83333, 1.5], "texture": "#0"},
|
||||
"down": {"uv": [2.5, 0.33333, 2.83333, 1.5], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "mount2",
|
||||
"from": [9, 7, 2],
|
||||
"to": [11, 14, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 7, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [2.83333, 0.33333, 2.5, 1.5], "texture": "#0"},
|
||||
"east": {"uv": [2.66667, 0.33333, 1.5, 1.5], "texture": "#0"},
|
||||
"south": {"uv": [2.83333, 0.33333, 2.5, 1.5], "texture": "#0"},
|
||||
"west": {"uv": [2.66667, 0.33333, 1.5, 1.5], "texture": "#0"},
|
||||
"up": {"uv": [2.83333, 0.33333, 2.5, 1.5], "texture": "#0"},
|
||||
"down": {"uv": [2.83333, 0.33333, 2.5, 1.5], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "arm",
|
||||
"from": [7, 8, -2],
|
||||
"to": [9, 12, 9],
|
||||
"rotation": {"angle": 22.5, "axis": "x", "origin": [7, 13, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [3.66667, 0, 3, 0.33333], "rotation": 90, "texture": "#0"},
|
||||
"east": {"uv": [3.66667, 0, 3, 1.5], "rotation": 90, "texture": "#0"},
|
||||
"south": {"uv": [3.66667, 1.5, 3, 1.83333], "rotation": 90, "texture": "#0"},
|
||||
"west": {"uv": [3, 0, 3.66667, 1.83333], "rotation": 270, "texture": "#0"},
|
||||
"up": {"uv": [3.5, 0, 3.83333, 1.83333], "texture": "#0"},
|
||||
"down": {"uv": [2.83333, 0, 3.16667, 1.83333], "rotation": 180, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "monitor",
|
||||
"from": [-16, -3.83853, -2.39104],
|
||||
"to": [32, 28.16147, -1.39104],
|
||||
"rotation": {"angle": 22.5, "axis": "x", "origin": [6.5, 16.06147, 0.60896]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 5.33889, 8, 10.66667], "rotation": 180, "texture": "#0"},
|
||||
"east": {"uv": [15.83333, 5.33333, 16, 10.66667], "texture": "#0"},
|
||||
"south": {"uv": [8, 5.33333, 16, 10.66667], "texture": "#0"},
|
||||
"west": {"uv": [8, 5.33333, 8.16667, 10.66667], "texture": "#0"},
|
||||
"up": {"uv": [8, 10.5, 16, 10.66667], "texture": "#0"},
|
||||
"down": {"uv": [8, 5.33333, 16, 5.5], "rotation": 180, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "base1",
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 7, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [5.33333, 4.16667, 8, 5.33333], "texture": "#0"},
|
||||
"east": {"uv": [2.66667, 4.16667, 0, 5.33333], "texture": "#0"},
|
||||
"south": {"uv": [8, 1.16667, 5.33333, 0], "texture": "#0"},
|
||||
"west": {"uv": [0, 4.16667, 2.66667, 5.33333], "texture": "#0"},
|
||||
"up": {"uv": [2.66667, 2.66667, 5.33333, 5.33333], "texture": "#0"},
|
||||
"down": {"uv": [5.33333, 0, 8, 2.66667], "texture": "#0"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"display": {
|
||||
"thirdperson_righthand": {
|
||||
"rotation": [75, 0, 0],
|
||||
"translation": [0, 1.5, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"thirdperson_lefthand": {
|
||||
"rotation": [75, 0, 0],
|
||||
"translation": [0, 1.5, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"firstperson_righthand": {
|
||||
"rotation": [-3, 28, -8],
|
||||
"translation": [-1.25, 0, 0.5],
|
||||
"scale": [0.3, 0.3, 0.3]
|
||||
},
|
||||
"firstperson_lefthand": {
|
||||
"rotation": [-3, 28, -8],
|
||||
"translation": [-1.25, 0, 0.5],
|
||||
"scale": [0.3, 0.3, 0.3]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 3, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
"rotation": [27, 127, 0],
|
||||
"translation": [1.5, -0.25, 0],
|
||||
"scale": [0.3, 0.3, 0.3]
|
||||
},
|
||||
"head": {
|
||||
"rotation": [-23, 0, 0],
|
||||
"translation": [0, 0, -1.5],
|
||||
"scale": [0.5, 0.5, 0.5]
|
||||
},
|
||||
"fixed": {
|
||||
"rotation": [-22, 0, 0],
|
||||
"translation": [0, 0, 2.5],
|
||||
"scale": [0.4, 0.4, 0.4]
|
||||
}
|
||||
},
|
||||
"groups": [
|
||||
{
|
||||
"name": "base",
|
||||
"origin": [4, 10.6, 4.1],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "tfg:block/casings/machine_casing_sterilizing_pipes"
|
||||
}
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "tfg:block/casings/machine_casing_sterilizing_pipes_active"
|
||||
}
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "tfg:block/casings/machine_casing_ultraviolet"
|
||||
}
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "tfg:block/casings/machine_casing_ultraviolet_active"
|
||||
}
|
||||
222
kubejs/assets/tfg/models/item/sample_rack.json
Normal file
|
|
@ -0,0 +1,222 @@
|
|||
{
|
||||
"format_version": "1.9.0",
|
||||
"credit": "Made with Blockbench",
|
||||
"textures": {
|
||||
"0": "tfg:block/machines/sample_racks/sample_rack_base",
|
||||
"particle": "tfg:block/machines/sample_racks/sample_rack_base"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [-0.01, 0, 14.01],
|
||||
"to": [-0.01, 16, 16.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [0.08, 0, 16.01]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"east": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"south": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"west": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"up": {"uv": [8.5, 0, 8, 0.5], "rotation": 90, "texture": "#0"},
|
||||
"down": {"uv": [8.5, 7.5, 8, 8], "rotation": 270, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [-0.01, 0, 16.01],
|
||||
"to": [1.99, 16, 16.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [-0.1, 0, 16.1]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"east": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"south": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"west": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"up": {"uv": [8, 0.5, 8.5, 0], "texture": "#0"},
|
||||
"down": {"uv": [8, 8, 8.5, 7.5], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [-0.01, 0, -0.01],
|
||||
"to": [-0.01, 16, 1.99],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [0.08, 0, -0.01]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"east": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"south": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"west": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"up": {"uv": [8, 0, 8.5, 0.5], "rotation": 90, "texture": "#0"},
|
||||
"down": {"uv": [8, 7.5, 8.5, 8], "rotation": 270, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [-0.01, 0, -0.01],
|
||||
"to": [1.99, 16, -0.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [-0.1, 0, -0.1]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"east": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"south": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"west": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"up": {"uv": [8, 0, 8.5, 0.5], "texture": "#0"},
|
||||
"down": {"uv": [8, 7.5, 8.5, 8], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [16.01, 0, -0.01],
|
||||
"to": [16.01, 16, 1.99],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15.92, 0, -0.01]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"east": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"south": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"west": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"up": {"uv": [8, 0.5, 8.5, 0], "rotation": 90, "texture": "#0"},
|
||||
"down": {"uv": [8, 8, 8.5, 7.5], "rotation": 270, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14.01, 0, -0.01],
|
||||
"to": [16.01, 16, -0.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [16.1, 0, -0.1]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"east": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"south": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"west": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"up": {"uv": [8.5, 0, 8, 0.5], "texture": "#0"},
|
||||
"down": {"uv": [8.5, 7.5, 8, 8], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [16.01, 0, 14.01],
|
||||
"to": [16.01, 16, 16.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15.92, 0, 16.01]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"east": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"south": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"west": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"up": {"uv": [8.5, 0.5, 8, 0], "rotation": 90, "texture": "#0"},
|
||||
"down": {"uv": [8.5, 8, 8, 7.5], "rotation": 270, "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14.01, 0, 16.01],
|
||||
"to": [16.01, 16, 16.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [16.1, 0, 16.1]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 0, 8, 8], "texture": "#0"},
|
||||
"east": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"south": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"west": {"uv": [8, 0, 9, 8], "texture": "#0"},
|
||||
"up": {"uv": [8.5, 0.5, 8, 0], "texture": "#0"},
|
||||
"down": {"uv": [8.5, 8, 8, 7.5], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "shelf1",
|
||||
"from": [0, 7, 0],
|
||||
"to": [16, 8, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [0, 7, 0]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"up": {"uv": [8, 8, 0, 0], "texture": "#0"},
|
||||
"down": {"uv": [8, 0, 0, 8], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "shelf2",
|
||||
"from": [0, 15, 0],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [0, 15, 0]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 8, 0.5], "texture": "#0"},
|
||||
"up": {"uv": [8, 8, 0, 0], "texture": "#0"},
|
||||
"down": {"uv": [8, 0, 0, 8], "texture": "#0"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"display": {
|
||||
"thirdperson_righthand": {
|
||||
"rotation": [75, 45, 0],
|
||||
"translation": [0, 2.5, 0],
|
||||
"scale": [0.375, 0.375, 0.375]
|
||||
},
|
||||
"thirdperson_lefthand": {
|
||||
"rotation": [75, 45, 0],
|
||||
"translation": [0, 2.5, 0],
|
||||
"scale": [0.375, 0.375, 0.375]
|
||||
},
|
||||
"firstperson_righthand": {
|
||||
"rotation": [0, 45, 0],
|
||||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"firstperson_lefthand": {
|
||||
"rotation": [0, -135, 0],
|
||||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 3, 0],
|
||||
"scale": [0.25, 0.25, 0.25]
|
||||
},
|
||||
"gui": {
|
||||
"rotation": [30, -135, 0],
|
||||
"scale": [0.625, 0.625, 0.625]
|
||||
},
|
||||
"head": {
|
||||
"translation": [0, 8, 0]
|
||||
},
|
||||
"fixed": {
|
||||
"scale": [0.5, 0.5, 0.5]
|
||||
}
|
||||
},
|
||||
"groups": [
|
||||
{
|
||||
"name": "base",
|
||||
"origin": [0.08, 0, -0.01],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "legs",
|
||||
"origin": [0.08, 0, -0.01],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "leg4",
|
||||
"origin": [0.08, 0, -0.01],
|
||||
"color": 0,
|
||||
"children": [0, 1]
|
||||
},
|
||||
{
|
||||
"name": "leg1",
|
||||
"origin": [0.08, 0, -0.01],
|
||||
"color": 0,
|
||||
"children": [2, 3]
|
||||
},
|
||||
{
|
||||
"name": "leg2",
|
||||
"origin": [0.08, 0, -0.01],
|
||||
"color": 0,
|
||||
"children": [4, 5]
|
||||
},
|
||||
{
|
||||
"name": "leg3",
|
||||
"origin": [0.08, 0, -0.01],
|
||||
"color": 0,
|
||||
"children": [6, 7]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "shelves",
|
||||
"origin": [0, 7, 0],
|
||||
"color": 0,
|
||||
"children": [8, 9]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
3
kubejs/assets/tfg/models/item/single_itemstack_bus.json
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "tfg:block/machines/ports/single_itemstack_bus"
|
||||
}
|
||||
BIN
kubejs/assets/tfg/textures/block/casings/heat_pipe_casing.png
Normal file
|
After Width: | Height: | Size: 821 B |
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"ldlib": {
|
||||
"connection": "tfg:block/casings/heat_pipe_casing_ctm"
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 4.9 KiB |
|
After Width: | Height: | Size: 553 B |
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"animation": {
|
||||
"frametime": 1
|
||||
},
|
||||
"ldlib": {
|
||||
"connection": "tfg:block/casings/machine_casing_sterilizing_pipes_ctm"
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 553 B |
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"ldlib": {
|
||||
"connection": "tfg:block/casings/machine_casing_sterilizing_pipes_active_ctm"
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 13 KiB |
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"animation": {
|
||||
"frametime": 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 336 B |
|
After Width: | Height: | Size: 191 B |
|
After Width: | Height: | Size: 75 B |
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"ldlib": {
|
||||
"connection": "tfg:block/casings/machine_casing_sterilizing_pipes_active_emissive_ctm"
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 5.7 KiB |
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"animation": {
|
||||
"frametime": 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 191 B |
|
After Width: | Height: | Size: 86 B |
|
After Width: | Height: | Size: 186 B |
|
After Width: | Height: | Size: 86 B |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 336 B |
|
After Width: | Height: | Size: 191 B |
|
After Width: | Height: | Size: 186 B |
|
After Width: | Height: | Size: 86 B |
|
Before Width: | Height: | Size: 751 B After Width: | Height: | Size: 751 B |
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"ldlib": {
|
||||
"connection": "tfg:block/casings/machine_casing_ultraviolet_active_ctm"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
|
Before Width: | Height: | Size: 222 B After Width: | Height: | Size: 222 B |
|
After Width: | Height: | Size: 124 B |
|
|
@ -1,7 +1,6 @@
|
|||
{
|
||||
"ldlib": {
|
||||
"connection": "tfg:block/casings/machine_casing_ultraviolet_bloom_ctm",
|
||||
"emissive": true
|
||||
"connection": "tfg:block/casings/machine_casing_ultraviolet_active_emissive_ctm"
|
||||
},
|
||||
"shimmer": {
|
||||
"bloom": true
|
||||
|
After Width: | Height: | Size: 414 B |
|
After Width: | Height: | Size: 222 B |
|
Before Width: | Height: | Size: 105 B After Width: | Height: | Size: 105 B |
|
Before Width: | Height: | Size: 200 B After Width: | Height: | Size: 200 B |
|
After Width: | Height: | Size: 105 B |
|
Before Width: | Height: | Size: 4.4 KiB After Width: | Height: | Size: 4.4 KiB |
|
Before Width: | Height: | Size: 4.4 KiB After Width: | Height: | Size: 4.4 KiB |
|
After Width: | Height: | Size: 4.4 KiB |
|
After Width: | Height: | Size: 4.5 KiB |
|
After Width: | Height: | Size: 4.5 KiB |
|
After Width: | Height: | Size: 4.4 KiB |
|
After Width: | Height: | Size: 4.4 KiB |
|
After Width: | Height: | Size: 146 B |
|
After Width: | Height: | Size: 4.9 KiB |
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"animation":{
|
||||
"frametime": 2
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 998 B |
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"animation":{
|
||||
"frametime": 2
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 129 B |
|
After Width: | Height: | Size: 101 B |