Added missing model and blocks!

This commit is contained in:
nelle 2023-12-06 04:51:14 -07:00
parent 0d62ffebc6
commit 69f7384cd0
9 changed files with 1081 additions and 1 deletions

View file

@ -1,12 +1,16 @@
- Armors
- HEV Suit
- Gordons Glasses
- Barnie Armor
- Scientist Garb
- Rediculous Ties
- Boss Fights
- Gonark Boss Fight
- Tenticle thingy bossfight
- The Nihilanth Boss-Fight
- Entities
- Enemies
- BullSquid
- Headcrabs
- Headcrab Zombies
- MC Zombies
@ -37,7 +41,32 @@
- Snarks
- Ghost Busters Pack
- Opposing Force Portal Gun
- Items
- G-Mans Suitcase (potential GMAN doors?)
- Blocks
- Vending Machines
- Crates (various Sizes)
- Metal Fence
- Trash bins
- Microwave
- Barrels (all variants)
- Grate bridge floor
- ERROR Model
- Initial security room floors (when barnie lets you in at the beginning)
- Black Mesa Tiles (From right after above section)
- Black Mesa Sliding security door
- White board
- Filing cabinet
- Authorized personnel only sign
- Hanging Fluorescent light
- Black Mesa wall computers/controls
- Break room trash can
- Lockerroom lockers
- The retinal scanner (redstone output if correct person uses it)
- Metal Ladders
-
- Healing/Charging stations
- Toxic Goo
- Xen
- Anti-Mass Spectrometer (and Portal Storms? Resonance Cascade?)
-

View file

@ -2,5 +2,5 @@
- [ ] Creative Tab
- [ ] Block Registry
- [X] Achievements
- [ ] Crowbar Texture
- [X] Crowbar Texture
- [X] Crafting Recipes

View file

@ -4,6 +4,7 @@ import org.quiltmc.loader.api.ModContainer
import org.quiltmc.qsl.base.api.entrypoint.ModInitializer
import org.slf4j.Logger
import org.slf4j.LoggerFactory
import xyz.limepot.block_life.block.ModBlocks
import xyz.limepot.block_life.item.ModItems
object BlockLife : ModInitializer {
@ -13,5 +14,6 @@ object BlockLife : ModInitializer {
override fun onInitialize(mod: ModContainer) {
LOGGER.info("Howdy Quilt-Kotlin world from {}!", mod.metadata()?.name())
ModItems()
ModBlocks()
}
}

View file

@ -0,0 +1,36 @@
package xyz.limepot.block_life.block
import net.minecraft.block.Block
import net.minecraft.block.Blocks
import net.minecraft.item.BlockItem
import net.minecraft.item.Item
import net.minecraft.registry.Registries
import net.minecraft.registry.Registry
import net.minecraft.util.Identifier
import org.quiltmc.qsl.block.extensions.api.QuiltBlockSettings
import org.quiltmc.qsl.item.setting.api.QuiltItemSettings
import xyz.limepot.block_life.BlockLife
class ModBlocks {
val MISSING_MODEL: Block = registerBlock(
"missing_model", Block(
QuiltBlockSettings.copyOf(Blocks.BARRIER)
.luminance(20)
.breakInstantly()
)
)
private fun registerBlock(name: String, block: Block): Block {
registerBlockItem(name, block)
return Registry.register<Block, Block>(Registries.BLOCK, Identifier(BlockLife.MOD_ID, name), block)
}
private fun registerBlockItem(name: String, block: Block) {
Registry.register<Item, BlockItem>(
Registries.ITEM,
Identifier(BlockLife.MOD_ID, name),
BlockItem(block, QuiltItemSettings())
)
}
}

View file

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "block_life:block/missing_model"
}
}
}

View file

@ -0,0 +1,503 @@
{
"credit": "Made with Blockbench",
"textures": {
"0": "block_life:block/missing_model",
"particle": "block_life:block/missing_model"
},
"elements": [
{
"from": [30.625, 0, 9],
"to": [31.2, 13.25, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [7, 0, 0]},
"faces": {
"north": {"uv": [8.25, 4.25, 8.75, 4.75], "texture": "#0"},
"east": {"uv": [9.25, 4.25, 9.75, 4.75], "texture": "#0"},
"south": {"uv": [10.25, 4.25, 10.75, 4.75], "texture": "#0"},
"west": {"uv": [11.25, 4.25, 11.75, 4.75], "texture": "#0"},
"up": {"uv": [12.25, 4.25, 12.75, 4.75], "texture": "#0"},
"down": {"uv": [13.25, 4.25, 13.75, 4.75], "texture": "#0"}
}
},
{
"from": [22.625, 0, 9],
"to": [23.2, 13.25, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [7, 0, 0]},
"faces": {
"north": {"uv": [0.25, 6.25, 0.75, 6.75], "texture": "#0"},
"east": {"uv": [1.25, 6.25, 1.75, 6.75], "texture": "#0"},
"south": {"uv": [2.25, 6.25, 2.75, 6.75], "texture": "#0"},
"west": {"uv": [3.25, 6.25, 3.75, 6.75], "texture": "#0"},
"up": {"uv": [4.25, 6.25, 4.75, 6.75], "texture": "#0"},
"down": {"uv": [5.25, 6.25, 5.75, 6.75], "texture": "#0"}
}
},
{
"from": [12.625, 0, 9],
"to": [13.2, 13.25, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [7, 0, 0]},
"faces": {
"north": {"uv": [4.25, 8.25, 4.75, 8.75], "texture": "#0"},
"east": {"uv": [5.25, 8.25, 5.75, 8.75], "texture": "#0"},
"south": {"uv": [6.25, 8.25, 6.75, 8.75], "texture": "#0"},
"west": {"uv": [7.25, 8.25, 7.75, 8.75], "texture": "#0"},
"up": {"uv": [8.25, 8.25, 8.75, 8.75], "texture": "#0"},
"down": {"uv": [9.25, 8.25, 9.75, 8.75], "texture": "#0"}
}
},
{
"from": [6.325, 0, 9],
"to": [6.9, 13.25, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [7, 0, 0]},
"faces": {
"north": {"uv": [6.25, 9.25, 6.75, 9.75], "texture": "#0"},
"east": {"uv": [7.25, 9.25, 7.75, 9.75], "texture": "#0"},
"south": {"uv": [8.25, 9.25, 8.75, 9.75], "texture": "#0"},
"west": {"uv": [9.25, 9.25, 9.75, 9.75], "texture": "#0"},
"up": {"uv": [10.25, 9.25, 10.75, 9.75], "texture": "#0"},
"down": {"uv": [11.25, 9.25, 11.75, 9.75], "texture": "#0"}
}
},
{
"from": [24.325, 12.675, 9],
"to": [30.7, 13.25, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [7, 0, 0]},
"faces": {
"north": {"uv": [14.25, 4.25, 14.75, 4.75], "texture": "#0"},
"east": {"uv": [15.25, 4.25, 15.75, 4.75], "texture": "#0"},
"south": {"uv": [0.25, 5.25, 0.75, 5.75], "texture": "#0"},
"west": {"uv": [1.25, 5.25, 1.75, 5.75], "texture": "#0"},
"up": {"uv": [2.25, 5.25, 2.75, 5.75], "texture": "#0"},
"down": {"uv": [3.25, 5.25, 3.75, 5.75], "texture": "#0"}
}
},
{
"from": [16.325, 12.675, 9],
"to": [22.7, 13.25, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [7, 0, 0]},
"faces": {
"north": {"uv": [6.25, 6.25, 6.75, 6.75], "texture": "#0"},
"east": {"uv": [7.25, 6.25, 7.75, 6.75], "texture": "#0"},
"south": {"uv": [8.25, 6.25, 8.75, 6.75], "texture": "#0"},
"west": {"uv": [9.25, 6.25, 9.75, 6.75], "texture": "#0"},
"up": {"uv": [10.25, 6.25, 10.75, 6.75], "texture": "#0"},
"down": {"uv": [11.25, 6.25, 11.75, 6.75], "texture": "#0"}
}
},
{
"from": [6.325, 12.675, 9],
"to": [12.7, 13.25, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [7, 0, 0]},
"faces": {
"north": {"uv": [10.25, 8.25, 10.75, 8.75], "texture": "#0"},
"east": {"uv": [11.25, 8.25, 11.75, 8.75], "texture": "#0"},
"south": {"uv": [12.25, 8.25, 12.75, 8.75], "texture": "#0"},
"west": {"uv": [13.25, 8.25, 13.75, 8.75], "texture": "#0"},
"up": {"uv": [14.25, 8.25, 14.75, 8.75], "texture": "#0"},
"down": {"uv": [15.25, 8.25, 15.75, 8.75], "texture": "#0"}
}
},
{
"from": [6.325, 0, 9],
"to": [12.7, 0.575, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [7, 0, 0]},
"faces": {
"north": {"uv": [0.25, 9.25, 0.75, 9.75], "texture": "#0"},
"east": {"uv": [1.25, 9.25, 1.75, 9.75], "texture": "#0"},
"south": {"uv": [2.25, 9.25, 2.75, 9.75], "texture": "#0"},
"west": {"uv": [3.25, 9.25, 3.75, 9.75], "texture": "#0"},
"up": {"uv": [4.25, 9.25, 4.75, 9.75], "texture": "#0"},
"down": {"uv": [5.25, 9.25, 5.75, 9.75], "texture": "#0"}
}
},
{
"from": [14.325, 7.475, 9],
"to": [22.7, 8.05, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [7, 0, 0]},
"faces": {
"north": {"uv": [8.25, 7.25, 8.75, 7.75], "texture": "#0"},
"east": {"uv": [9.25, 7.25, 9.75, 7.75], "texture": "#0"},
"south": {"uv": [10.25, 7.25, 10.75, 7.75], "texture": "#0"},
"west": {"uv": [11.25, 7.25, 11.75, 7.75], "texture": "#0"},
"up": {"uv": [12.25, 7.25, 12.75, 7.75], "texture": "#0"},
"down": {"uv": [13.25, 7.25, 13.75, 7.75], "texture": "#0"}
}
},
{
"from": [12.975, -6.025, 9],
"to": [23.35, -5.45, 11],
"rotation": {"angle": 45, "axis": "z", "origin": [7, 0, 0]},
"faces": {
"north": {"uv": [14.25, 7.25, 14.75, 7.75], "texture": "#0"},
"east": {"uv": [15.25, 7.25, 15.75, 7.75], "texture": "#0"},
"south": {"uv": [0.25, 8.25, 0.75, 8.75], "texture": "#0"},
"west": {"uv": [1.25, 8.25, 1.75, 8.75], "texture": "#0"},
"up": {"uv": [2.25, 8.25, 2.75, 8.75], "texture": "#0"},
"down": {"uv": [3.25, 8.25, 3.75, 8.75], "texture": "#0"}
}
},
{
"from": [19.6, 2.075, 9],
"to": [22.975, 2.65, 11],
"rotation": {"angle": 45, "axis": "z", "origin": [6.925, 0, 0]},
"faces": {
"north": {"uv": [12.25, 6.25, 12.75, 6.75], "texture": "#0"},
"east": {"uv": [13.25, 6.25, 13.75, 6.75], "texture": "#0"},
"south": {"uv": [14.25, 6.25, 14.75, 6.75], "texture": "#0"},
"west": {"uv": [15.25, 6.25, 15.75, 6.75], "texture": "#0"},
"up": {"uv": [0.25, 7.25, 0.75, 7.75], "texture": "#0"},
"down": {"uv": [1.25, 7.25, 1.75, 7.75], "texture": "#0"}
}
},
{
"from": [14.075, 7.5, 9],
"to": [14.65, 10.875, 11],
"rotation": {"angle": 0, "axis": "z", "origin": [6.925, 0, 0]},
"faces": {
"north": {"uv": [2.25, 7.25, 2.75, 7.75], "rotation": 90, "texture": "#0"},
"east": {"uv": [3.25, 7.25, 3.75, 7.75], "rotation": 270, "texture": "#0"},
"south": {"uv": [4.25, 7.25, 4.75, 7.75], "rotation": 270, "texture": "#0"},
"west": {"uv": [5.25, 7.25, 5.75, 7.75], "rotation": 270, "texture": "#0"},
"up": {"uv": [6.25, 7.25, 6.75, 7.75], "rotation": 270, "texture": "#0"},
"down": {"uv": [7.25, 7.25, 7.75, 7.75], "rotation": 270, "texture": "#0"}
}
},
{
"from": [4.625, 0, 9],
"to": [5.2, 13.25, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [-11, 0, 0]},
"faces": {
"north": {"uv": [10.25, 11.25, 10.75, 11.75], "texture": "#0"},
"east": {"uv": [11.25, 11.25, 11.75, 11.75], "texture": "#0"},
"south": {"uv": [12.25, 11.25, 12.75, 11.75], "texture": "#0"},
"west": {"uv": [13.25, 11.25, 13.75, 11.75], "texture": "#0"},
"up": {"uv": [14.25, 11.25, 14.75, 11.75], "texture": "#0"},
"down": {"uv": [15.25, 11.25, 15.75, 11.75], "texture": "#0"}
}
},
{
"from": [-1.675, 12.675, 9],
"to": [4.7, 13.25, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [-11, 0, 0]},
"faces": {
"north": {"uv": [4.25, 11.25, 4.75, 11.75], "texture": "#0"},
"east": {"uv": [5.25, 11.25, 5.75, 11.75], "texture": "#0"},
"south": {"uv": [6.25, 11.25, 6.75, 11.75], "texture": "#0"},
"west": {"uv": [7.25, 11.25, 7.75, 11.75], "texture": "#0"},
"up": {"uv": [8.25, 11.25, 8.75, 11.75], "texture": "#0"},
"down": {"uv": [9.25, 11.25, 9.75, 11.75], "texture": "#0"}
}
},
{
"from": [1.6, 2.075, 9],
"to": [4.975, 2.65, 11],
"rotation": {"angle": 45, "axis": "z", "origin": [-11.075, 0, 0]},
"faces": {
"north": {"uv": [14.25, 10.25, 14.75, 10.75], "texture": "#0"},
"east": {"uv": [15.25, 10.25, 15.75, 10.75], "texture": "#0"},
"south": {"uv": [0.25, 11.25, 0.75, 11.75], "texture": "#0"},
"west": {"uv": [1.25, 11.25, 1.75, 11.75], "texture": "#0"},
"up": {"uv": [2.25, 11.25, 2.75, 11.75], "texture": "#0"},
"down": {"uv": [3.25, 11.25, 3.75, 11.75], "texture": "#0"}
}
},
{
"from": [-3.925, 7.5, 9],
"to": [-3.35, 10.875, 11],
"rotation": {"angle": 0, "axis": "z", "origin": [-11.075, 0, 0]},
"faces": {
"north": {"uv": [8.25, 10.25, 8.75, 10.75], "rotation": 90, "texture": "#0"},
"east": {"uv": [9.25, 10.25, 9.75, 10.75], "rotation": 270, "texture": "#0"},
"south": {"uv": [10.25, 10.25, 10.75, 10.75], "rotation": 270, "texture": "#0"},
"west": {"uv": [11.25, 10.25, 11.75, 10.75], "rotation": 270, "texture": "#0"},
"up": {"uv": [12.25, 10.25, 12.75, 10.75], "rotation": 270, "texture": "#0"},
"down": {"uv": [13.25, 10.25, 13.75, 10.75], "rotation": 270, "texture": "#0"}
}
},
{
"from": [-3.675, 7.475, 9],
"to": [4.7, 8.05, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [-11, 0, 0]},
"faces": {
"north": {"uv": [2.25, 10.25, 2.75, 10.75], "texture": "#0"},
"east": {"uv": [3.25, 10.25, 3.75, 10.75], "texture": "#0"},
"south": {"uv": [4.25, 10.25, 4.75, 10.75], "texture": "#0"},
"west": {"uv": [5.25, 10.25, 5.75, 10.75], "texture": "#0"},
"up": {"uv": [6.25, 10.25, 6.75, 10.75], "texture": "#0"},
"down": {"uv": [7.25, 10.25, 7.75, 10.75], "texture": "#0"}
}
},
{
"from": [-5.025, -6.025, 9],
"to": [5.35, -5.45, 11],
"rotation": {"angle": 45, "axis": "z", "origin": [-11, 0, 0]},
"faces": {
"north": {"uv": [12.25, 9.25, 12.75, 9.75], "texture": "#0"},
"east": {"uv": [13.25, 9.25, 13.75, 9.75], "texture": "#0"},
"south": {"uv": [14.25, 9.25, 14.75, 9.75], "texture": "#0"},
"west": {"uv": [15.25, 9.25, 15.75, 9.75], "texture": "#0"},
"up": {"uv": [0.25, 10.25, 0.75, 10.75], "texture": "#0"},
"down": {"uv": [1.25, 10.25, 1.75, 10.75], "texture": "#0"}
}
},
{
"from": [4.625, 0, 9],
"to": [5.2, 13.25, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [-11, 0, 0]},
"faces": {
"north": {"uv": [14.25, 13.25, 14.75, 13.75], "texture": "#0"},
"east": {"uv": [15.25, 13.25, 15.75, 13.75], "texture": "#0"},
"south": {"uv": [0.25, 14.25, 0.75, 14.75], "texture": "#0"},
"west": {"uv": [1.25, 14.25, 1.75, 14.75], "texture": "#0"},
"up": {"uv": [2.25, 14.25, 2.75, 14.75], "texture": "#0"},
"down": {"uv": [3.25, 14.25, 3.75, 14.75], "texture": "#0"}
}
},
{
"from": [-1.675, 12.675, 9],
"to": [4.7, 13.25, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [-11, 0, 0]},
"faces": {
"north": {"uv": [8.25, 13.25, 8.75, 13.75], "texture": "#0"},
"east": {"uv": [9.25, 13.25, 9.75, 13.75], "texture": "#0"},
"south": {"uv": [10.25, 13.25, 10.75, 13.75], "texture": "#0"},
"west": {"uv": [11.25, 13.25, 11.75, 13.75], "texture": "#0"},
"up": {"uv": [12.25, 13.25, 12.75, 13.75], "texture": "#0"},
"down": {"uv": [13.25, 13.25, 13.75, 13.75], "texture": "#0"}
}
},
{
"from": [1.6, 2.075, 9],
"to": [4.975, 2.65, 11],
"rotation": {"angle": 45, "axis": "z", "origin": [-11.075, 0, 0]},
"faces": {
"north": {"uv": [2.25, 13.25, 2.75, 13.75], "texture": "#0"},
"east": {"uv": [3.25, 13.25, 3.75, 13.75], "texture": "#0"},
"south": {"uv": [4.25, 13.25, 4.75, 13.75], "texture": "#0"},
"west": {"uv": [5.25, 13.25, 5.75, 13.75], "texture": "#0"},
"up": {"uv": [6.25, 13.25, 6.75, 13.75], "texture": "#0"},
"down": {"uv": [7.25, 13.25, 7.75, 13.75], "texture": "#0"}
}
},
{
"from": [-3.925, 7.5, 9],
"to": [-3.35, 10.875, 11],
"rotation": {"angle": 0, "axis": "z", "origin": [-11.075, 0, 0]},
"faces": {
"north": {"uv": [12.25, 12.25, 12.75, 12.75], "rotation": 90, "texture": "#0"},
"east": {"uv": [13.25, 12.25, 13.75, 12.75], "rotation": 270, "texture": "#0"},
"south": {"uv": [14.25, 12.25, 14.75, 12.75], "rotation": 270, "texture": "#0"},
"west": {"uv": [15.25, 12.25, 15.75, 12.75], "rotation": 270, "texture": "#0"},
"up": {"uv": [0.25, 13.25, 0.75, 13.75], "rotation": 270, "texture": "#0"},
"down": {"uv": [1.25, 13.25, 1.75, 13.75], "rotation": 270, "texture": "#0"}
}
},
{
"from": [-3.675, 7.475, 9],
"to": [4.7, 8.05, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [-11, 0, 0]},
"faces": {
"north": {"uv": [6.25, 12.25, 6.75, 12.75], "texture": "#0"},
"east": {"uv": [7.25, 12.25, 7.75, 12.75], "texture": "#0"},
"south": {"uv": [8.25, 12.25, 8.75, 12.75], "texture": "#0"},
"west": {"uv": [9.25, 12.25, 9.75, 12.75], "texture": "#0"},
"up": {"uv": [10.25, 12.25, 10.75, 12.75], "texture": "#0"},
"down": {"uv": [11.25, 12.25, 11.75, 12.75], "texture": "#0"}
}
},
{
"from": [-5.025, -6.025, 9],
"to": [5.35, -5.45, 11],
"rotation": {"angle": 45, "axis": "z", "origin": [-11, 0, 0]},
"faces": {
"north": {"uv": [0.25, 12.25, 0.75, 12.75], "texture": "#0"},
"east": {"uv": [1.25, 12.25, 1.75, 12.75], "texture": "#0"},
"south": {"uv": [2.25, 12.25, 2.75, 12.75], "texture": "#0"},
"west": {"uv": [3.25, 12.25, 3.75, 12.75], "texture": "#0"},
"up": {"uv": [4.25, 12.25, 4.75, 12.75], "texture": "#0"},
"down": {"uv": [5.25, 12.25, 5.75, 12.75], "texture": "#0"}
}
},
{
"from": [-15.025, -6.025, 9],
"to": [-4.65, -5.45, 11],
"rotation": {"angle": 45, "axis": "z", "origin": [-21, 0, 0]},
"faces": {
"north": {"uv": [0.25, 0.25, 0.75, 0.75], "texture": "#0"},
"east": {"uv": [1.25, 0.25, 1.75, 0.75], "texture": "#0"},
"south": {"uv": [2.25, 0.25, 2.75, 0.75], "texture": "#0"},
"west": {"uv": [3.25, 0.25, 3.75, 0.75], "texture": "#0"},
"up": {"uv": [4.25, 0.25, 4.75, 0.75], "texture": "#0"},
"down": {"uv": [5.25, 0.25, 5.75, 0.75], "texture": "#0"}
}
},
{
"from": [-13.675, 7.475, 9],
"to": [-5.3, 8.05, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [-21, 0, 0]},
"faces": {
"north": {"uv": [6.25, 0.25, 6.75, 0.75], "texture": "#0"},
"east": {"uv": [7.25, 0.25, 7.75, 0.75], "texture": "#0"},
"south": {"uv": [8.25, 0.25, 8.75, 0.75], "texture": "#0"},
"west": {"uv": [9.25, 0.25, 9.75, 0.75], "texture": "#0"},
"up": {"uv": [10.25, 0.25, 10.75, 0.75], "texture": "#0"},
"down": {"uv": [11.25, 0.25, 11.75, 0.75], "texture": "#0"}
}
},
{
"from": [-13.925, 7.5, 9],
"to": [-13.35, 10.875, 11],
"rotation": {"angle": 0, "axis": "z", "origin": [-21.075, 0, 0]},
"faces": {
"north": {"uv": [12.25, 0.25, 12.75, 0.75], "rotation": 90, "texture": "#0"},
"east": {"uv": [13.25, 0.25, 13.75, 0.75], "rotation": 270, "texture": "#0"},
"south": {"uv": [14.25, 0.25, 14.75, 0.75], "rotation": 270, "texture": "#0"},
"west": {"uv": [15.25, 0.25, 15.75, 0.75], "rotation": 270, "texture": "#0"},
"up": {"uv": [0.25, 1.25, 0.75, 1.75], "rotation": 270, "texture": "#0"},
"down": {"uv": [1.25, 1.25, 1.75, 1.75], "rotation": 270, "texture": "#0"}
}
},
{
"from": [-8.4, 2.075, 9],
"to": [-5.025, 2.65, 11],
"rotation": {"angle": 45, "axis": "z", "origin": [-21.075, 0, 0]},
"faces": {
"north": {"uv": [2.25, 1.25, 2.75, 1.75], "texture": "#0"},
"east": {"uv": [3.25, 1.25, 3.75, 1.75], "texture": "#0"},
"south": {"uv": [4.25, 1.25, 4.75, 1.75], "texture": "#0"},
"west": {"uv": [5.25, 1.25, 5.75, 1.75], "texture": "#0"},
"up": {"uv": [6.25, 1.25, 6.75, 1.75], "texture": "#0"},
"down": {"uv": [7.25, 1.25, 7.75, 1.75], "texture": "#0"}
}
},
{
"from": [-11.675, 12.675, 9],
"to": [-5.3, 13.25, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [-21, 0, 0]},
"faces": {
"north": {"uv": [8.25, 1.25, 8.75, 1.75], "texture": "#0"},
"east": {"uv": [9.25, 1.25, 9.75, 1.75], "texture": "#0"},
"south": {"uv": [10.25, 1.25, 10.75, 1.75], "texture": "#0"},
"west": {"uv": [11.25, 1.25, 11.75, 1.75], "texture": "#0"},
"up": {"uv": [12.25, 1.25, 12.75, 1.75], "texture": "#0"},
"down": {"uv": [13.25, 1.25, 13.75, 1.75], "texture": "#0"}
}
},
{
"from": [-5.375, 0, 9],
"to": [-4.8, 13.25, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [-21, 0, 0]},
"faces": {
"north": {"uv": [14.25, 1.25, 14.75, 1.75], "texture": "#0"},
"east": {"uv": [15.25, 1.25, 15.75, 1.75], "texture": "#0"},
"south": {"uv": [0.25, 2.25, 0.75, 2.75], "texture": "#0"},
"west": {"uv": [1.25, 2.25, 1.75, 2.75], "texture": "#0"},
"up": {"uv": [2.25, 2.25, 2.75, 2.75], "texture": "#0"},
"down": {"uv": [3.25, 2.25, 3.75, 2.75], "texture": "#0"}
}
},
{
"from": [-15.025, -6.025, 9],
"to": [-4.65, -5.45, 11],
"rotation": {"angle": 45, "axis": "z", "origin": [-21, 0, 0]},
"faces": {
"north": {"uv": [4.25, 2.25, 4.75, 2.75], "texture": "#0"},
"east": {"uv": [5.25, 2.25, 5.75, 2.75], "texture": "#0"},
"south": {"uv": [6.25, 2.25, 6.75, 2.75], "texture": "#0"},
"west": {"uv": [7.25, 2.25, 7.75, 2.75], "texture": "#0"},
"up": {"uv": [8.25, 2.25, 8.75, 2.75], "texture": "#0"},
"down": {"uv": [9.25, 2.25, 9.75, 2.75], "texture": "#0"}
}
},
{
"from": [-13.675, 7.475, 9],
"to": [-5.3, 8.05, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [-21, 0, 0]},
"faces": {
"north": {"uv": [10.25, 2.25, 10.75, 2.75], "texture": "#0"},
"east": {"uv": [11.25, 2.25, 11.75, 2.75], "texture": "#0"},
"south": {"uv": [12.25, 2.25, 12.75, 2.75], "texture": "#0"},
"west": {"uv": [13.25, 2.25, 13.75, 2.75], "texture": "#0"},
"up": {"uv": [14.25, 2.25, 14.75, 2.75], "texture": "#0"},
"down": {"uv": [15.25, 2.25, 15.75, 2.75], "texture": "#0"}
}
},
{
"from": [-13.925, 7.5, 9],
"to": [-13.35, 10.875, 11],
"rotation": {"angle": 0, "axis": "z", "origin": [-21.075, 0, 0]},
"faces": {
"north": {"uv": [0.25, 3.25, 0.75, 3.75], "rotation": 90, "texture": "#0"},
"east": {"uv": [1.25, 3.25, 1.75, 3.75], "rotation": 270, "texture": "#0"},
"south": {"uv": [2.25, 3.25, 2.75, 3.75], "rotation": 270, "texture": "#0"},
"west": {"uv": [3.25, 3.25, 3.75, 3.75], "rotation": 270, "texture": "#0"},
"up": {"uv": [4.25, 3.25, 4.75, 3.75], "rotation": 270, "texture": "#0"},
"down": {"uv": [5.25, 3.25, 5.75, 3.75], "rotation": 270, "texture": "#0"}
}
},
{
"from": [-8.4, 2.075, 9],
"to": [-5.025, 2.65, 11],
"rotation": {"angle": 45, "axis": "z", "origin": [-21.075, 0, 0]},
"faces": {
"north": {"uv": [6.25, 3.25, 6.75, 3.75], "texture": "#0"},
"east": {"uv": [7.25, 3.25, 7.75, 3.75], "texture": "#0"},
"south": {"uv": [8.25, 3.25, 8.75, 3.75], "texture": "#0"},
"west": {"uv": [9.25, 3.25, 9.75, 3.75], "texture": "#0"},
"up": {"uv": [10.25, 3.25, 10.75, 3.75], "texture": "#0"},
"down": {"uv": [11.25, 3.25, 11.75, 3.75], "texture": "#0"}
}
},
{
"from": [-11.675, 12.675, 9],
"to": [-5.3, 13.25, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [-21, 0, 0]},
"faces": {
"north": {"uv": [12.25, 3.25, 12.75, 3.75], "texture": "#0"},
"east": {"uv": [13.25, 3.25, 13.75, 3.75], "texture": "#0"},
"south": {"uv": [14.25, 3.25, 14.75, 3.75], "texture": "#0"},
"west": {"uv": [15.25, 3.25, 15.75, 3.75], "texture": "#0"},
"up": {"uv": [0.25, 4.25, 0.75, 4.75], "texture": "#0"},
"down": {"uv": [1.25, 4.25, 1.75, 4.75], "texture": "#0"}
}
},
{
"from": [-5.375, 0, 9],
"to": [-4.8, 13.25, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [-21, 0, 0]},
"faces": {
"north": {"uv": [2.25, 4.25, 2.75, 4.75], "texture": "#0"},
"east": {"uv": [3.25, 4.25, 3.75, 4.75], "texture": "#0"},
"south": {"uv": [4.25, 4.25, 4.75, 4.75], "texture": "#0"},
"west": {"uv": [5.25, 4.25, 5.75, 4.75], "texture": "#0"},
"up": {"uv": [6.25, 4.25, 6.75, 4.75], "texture": "#0"},
"down": {"uv": [7.25, 4.25, 7.75, 4.75], "texture": "#0"}
}
},
{
"from": [24.325, 6.65, 9],
"to": [30.7, 7.225, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [7, 0, 0]},
"faces": {
"north": {"uv": [4.25, 5.25, 4.75, 5.75], "texture": "#0"},
"east": {"uv": [5.25, 5.25, 5.75, 5.75], "texture": "#0"},
"south": {"uv": [6.25, 5.25, 6.75, 5.75], "texture": "#0"},
"west": {"uv": [7.25, 5.25, 7.75, 5.75], "texture": "#0"},
"up": {"uv": [8.25, 5.25, 8.75, 5.75], "texture": "#0"},
"down": {"uv": [9.25, 5.25, 9.75, 5.75], "texture": "#0"}
}
},
{
"from": [24.325, 0.025, 9],
"to": [30.7, 0.6, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [7, 0, 0]},
"faces": {
"north": {"uv": [10.25, 5.25, 10.75, 5.75], "texture": "#0"},
"east": {"uv": [11.25, 5.25, 11.75, 5.75], "texture": "#0"},
"south": {"uv": [12.25, 5.25, 12.75, 5.75], "texture": "#0"},
"west": {"uv": [13.25, 5.25, 13.75, 5.75], "texture": "#0"},
"up": {"uv": [14.25, 5.25, 14.75, 5.75], "texture": "#0"},
"down": {"uv": [15.25, 5.25, 15.75, 5.75], "texture": "#0"}
}
}
]
}

View file

@ -0,0 +1,503 @@
{
"credit": "Made with Blockbench",
"textures": {
"0": "block_life:block/missing_model",
"particle": "block_life:block/missing_model"
},
"elements": [
{
"from": [30.625, 0, 9],
"to": [31.2, 13.25, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [7, 0, 0]},
"faces": {
"north": {"uv": [8.25, 4.25, 8.75, 4.75], "texture": "#0"},
"east": {"uv": [9.25, 4.25, 9.75, 4.75], "texture": "#0"},
"south": {"uv": [10.25, 4.25, 10.75, 4.75], "texture": "#0"},
"west": {"uv": [11.25, 4.25, 11.75, 4.75], "texture": "#0"},
"up": {"uv": [12.25, 4.25, 12.75, 4.75], "texture": "#0"},
"down": {"uv": [13.25, 4.25, 13.75, 4.75], "texture": "#0"}
}
},
{
"from": [22.625, 0, 9],
"to": [23.2, 13.25, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [7, 0, 0]},
"faces": {
"north": {"uv": [0.25, 6.25, 0.75, 6.75], "texture": "#0"},
"east": {"uv": [1.25, 6.25, 1.75, 6.75], "texture": "#0"},
"south": {"uv": [2.25, 6.25, 2.75, 6.75], "texture": "#0"},
"west": {"uv": [3.25, 6.25, 3.75, 6.75], "texture": "#0"},
"up": {"uv": [4.25, 6.25, 4.75, 6.75], "texture": "#0"},
"down": {"uv": [5.25, 6.25, 5.75, 6.75], "texture": "#0"}
}
},
{
"from": [12.625, 0, 9],
"to": [13.2, 13.25, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [7, 0, 0]},
"faces": {
"north": {"uv": [4.25, 8.25, 4.75, 8.75], "texture": "#0"},
"east": {"uv": [5.25, 8.25, 5.75, 8.75], "texture": "#0"},
"south": {"uv": [6.25, 8.25, 6.75, 8.75], "texture": "#0"},
"west": {"uv": [7.25, 8.25, 7.75, 8.75], "texture": "#0"},
"up": {"uv": [8.25, 8.25, 8.75, 8.75], "texture": "#0"},
"down": {"uv": [9.25, 8.25, 9.75, 8.75], "texture": "#0"}
}
},
{
"from": [6.325, 0, 9],
"to": [6.9, 13.25, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [7, 0, 0]},
"faces": {
"north": {"uv": [6.25, 9.25, 6.75, 9.75], "texture": "#0"},
"east": {"uv": [7.25, 9.25, 7.75, 9.75], "texture": "#0"},
"south": {"uv": [8.25, 9.25, 8.75, 9.75], "texture": "#0"},
"west": {"uv": [9.25, 9.25, 9.75, 9.75], "texture": "#0"},
"up": {"uv": [10.25, 9.25, 10.75, 9.75], "texture": "#0"},
"down": {"uv": [11.25, 9.25, 11.75, 9.75], "texture": "#0"}
}
},
{
"from": [24.325, 12.675, 9],
"to": [30.7, 13.25, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [7, 0, 0]},
"faces": {
"north": {"uv": [14.25, 4.25, 14.75, 4.75], "texture": "#0"},
"east": {"uv": [15.25, 4.25, 15.75, 4.75], "texture": "#0"},
"south": {"uv": [0.25, 5.25, 0.75, 5.75], "texture": "#0"},
"west": {"uv": [1.25, 5.25, 1.75, 5.75], "texture": "#0"},
"up": {"uv": [2.25, 5.25, 2.75, 5.75], "texture": "#0"},
"down": {"uv": [3.25, 5.25, 3.75, 5.75], "texture": "#0"}
}
},
{
"from": [16.325, 12.675, 9],
"to": [22.7, 13.25, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [7, 0, 0]},
"faces": {
"north": {"uv": [6.25, 6.25, 6.75, 6.75], "texture": "#0"},
"east": {"uv": [7.25, 6.25, 7.75, 6.75], "texture": "#0"},
"south": {"uv": [8.25, 6.25, 8.75, 6.75], "texture": "#0"},
"west": {"uv": [9.25, 6.25, 9.75, 6.75], "texture": "#0"},
"up": {"uv": [10.25, 6.25, 10.75, 6.75], "texture": "#0"},
"down": {"uv": [11.25, 6.25, 11.75, 6.75], "texture": "#0"}
}
},
{
"from": [6.325, 12.675, 9],
"to": [12.7, 13.25, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [7, 0, 0]},
"faces": {
"north": {"uv": [10.25, 8.25, 10.75, 8.75], "texture": "#0"},
"east": {"uv": [11.25, 8.25, 11.75, 8.75], "texture": "#0"},
"south": {"uv": [12.25, 8.25, 12.75, 8.75], "texture": "#0"},
"west": {"uv": [13.25, 8.25, 13.75, 8.75], "texture": "#0"},
"up": {"uv": [14.25, 8.25, 14.75, 8.75], "texture": "#0"},
"down": {"uv": [15.25, 8.25, 15.75, 8.75], "texture": "#0"}
}
},
{
"from": [6.325, 0, 9],
"to": [12.7, 0.575, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [7, 0, 0]},
"faces": {
"north": {"uv": [0.25, 9.25, 0.75, 9.75], "texture": "#0"},
"east": {"uv": [1.25, 9.25, 1.75, 9.75], "texture": "#0"},
"south": {"uv": [2.25, 9.25, 2.75, 9.75], "texture": "#0"},
"west": {"uv": [3.25, 9.25, 3.75, 9.75], "texture": "#0"},
"up": {"uv": [4.25, 9.25, 4.75, 9.75], "texture": "#0"},
"down": {"uv": [5.25, 9.25, 5.75, 9.75], "texture": "#0"}
}
},
{
"from": [14.325, 7.475, 9],
"to": [22.7, 8.05, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [7, 0, 0]},
"faces": {
"north": {"uv": [8.25, 7.25, 8.75, 7.75], "texture": "#0"},
"east": {"uv": [9.25, 7.25, 9.75, 7.75], "texture": "#0"},
"south": {"uv": [10.25, 7.25, 10.75, 7.75], "texture": "#0"},
"west": {"uv": [11.25, 7.25, 11.75, 7.75], "texture": "#0"},
"up": {"uv": [12.25, 7.25, 12.75, 7.75], "texture": "#0"},
"down": {"uv": [13.25, 7.25, 13.75, 7.75], "texture": "#0"}
}
},
{
"from": [12.975, -6.025, 9],
"to": [23.35, -5.45, 11],
"rotation": {"angle": 45, "axis": "z", "origin": [7, 0, 0]},
"faces": {
"north": {"uv": [14.25, 7.25, 14.75, 7.75], "texture": "#0"},
"east": {"uv": [15.25, 7.25, 15.75, 7.75], "texture": "#0"},
"south": {"uv": [0.25, 8.25, 0.75, 8.75], "texture": "#0"},
"west": {"uv": [1.25, 8.25, 1.75, 8.75], "texture": "#0"},
"up": {"uv": [2.25, 8.25, 2.75, 8.75], "texture": "#0"},
"down": {"uv": [3.25, 8.25, 3.75, 8.75], "texture": "#0"}
}
},
{
"from": [19.6, 2.075, 9],
"to": [22.975, 2.65, 11],
"rotation": {"angle": 45, "axis": "z", "origin": [6.925, 0, 0]},
"faces": {
"north": {"uv": [12.25, 6.25, 12.75, 6.75], "texture": "#0"},
"east": {"uv": [13.25, 6.25, 13.75, 6.75], "texture": "#0"},
"south": {"uv": [14.25, 6.25, 14.75, 6.75], "texture": "#0"},
"west": {"uv": [15.25, 6.25, 15.75, 6.75], "texture": "#0"},
"up": {"uv": [0.25, 7.25, 0.75, 7.75], "texture": "#0"},
"down": {"uv": [1.25, 7.25, 1.75, 7.75], "texture": "#0"}
}
},
{
"from": [14.075, 7.5, 9],
"to": [14.65, 10.875, 11],
"rotation": {"angle": 0, "axis": "z", "origin": [6.925, 0, 0]},
"faces": {
"north": {"uv": [2.25, 7.25, 2.75, 7.75], "rotation": 90, "texture": "#0"},
"east": {"uv": [3.25, 7.25, 3.75, 7.75], "rotation": 270, "texture": "#0"},
"south": {"uv": [4.25, 7.25, 4.75, 7.75], "rotation": 270, "texture": "#0"},
"west": {"uv": [5.25, 7.25, 5.75, 7.75], "rotation": 270, "texture": "#0"},
"up": {"uv": [6.25, 7.25, 6.75, 7.75], "rotation": 270, "texture": "#0"},
"down": {"uv": [7.25, 7.25, 7.75, 7.75], "rotation": 270, "texture": "#0"}
}
},
{
"from": [4.625, 0, 9],
"to": [5.2, 13.25, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [-11, 0, 0]},
"faces": {
"north": {"uv": [10.25, 11.25, 10.75, 11.75], "texture": "#0"},
"east": {"uv": [11.25, 11.25, 11.75, 11.75], "texture": "#0"},
"south": {"uv": [12.25, 11.25, 12.75, 11.75], "texture": "#0"},
"west": {"uv": [13.25, 11.25, 13.75, 11.75], "texture": "#0"},
"up": {"uv": [14.25, 11.25, 14.75, 11.75], "texture": "#0"},
"down": {"uv": [15.25, 11.25, 15.75, 11.75], "texture": "#0"}
}
},
{
"from": [-1.675, 12.675, 9],
"to": [4.7, 13.25, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [-11, 0, 0]},
"faces": {
"north": {"uv": [4.25, 11.25, 4.75, 11.75], "texture": "#0"},
"east": {"uv": [5.25, 11.25, 5.75, 11.75], "texture": "#0"},
"south": {"uv": [6.25, 11.25, 6.75, 11.75], "texture": "#0"},
"west": {"uv": [7.25, 11.25, 7.75, 11.75], "texture": "#0"},
"up": {"uv": [8.25, 11.25, 8.75, 11.75], "texture": "#0"},
"down": {"uv": [9.25, 11.25, 9.75, 11.75], "texture": "#0"}
}
},
{
"from": [1.6, 2.075, 9],
"to": [4.975, 2.65, 11],
"rotation": {"angle": 45, "axis": "z", "origin": [-11.075, 0, 0]},
"faces": {
"north": {"uv": [14.25, 10.25, 14.75, 10.75], "texture": "#0"},
"east": {"uv": [15.25, 10.25, 15.75, 10.75], "texture": "#0"},
"south": {"uv": [0.25, 11.25, 0.75, 11.75], "texture": "#0"},
"west": {"uv": [1.25, 11.25, 1.75, 11.75], "texture": "#0"},
"up": {"uv": [2.25, 11.25, 2.75, 11.75], "texture": "#0"},
"down": {"uv": [3.25, 11.25, 3.75, 11.75], "texture": "#0"}
}
},
{
"from": [-3.925, 7.5, 9],
"to": [-3.35, 10.875, 11],
"rotation": {"angle": 0, "axis": "z", "origin": [-11.075, 0, 0]},
"faces": {
"north": {"uv": [8.25, 10.25, 8.75, 10.75], "rotation": 90, "texture": "#0"},
"east": {"uv": [9.25, 10.25, 9.75, 10.75], "rotation": 270, "texture": "#0"},
"south": {"uv": [10.25, 10.25, 10.75, 10.75], "rotation": 270, "texture": "#0"},
"west": {"uv": [11.25, 10.25, 11.75, 10.75], "rotation": 270, "texture": "#0"},
"up": {"uv": [12.25, 10.25, 12.75, 10.75], "rotation": 270, "texture": "#0"},
"down": {"uv": [13.25, 10.25, 13.75, 10.75], "rotation": 270, "texture": "#0"}
}
},
{
"from": [-3.675, 7.475, 9],
"to": [4.7, 8.05, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [-11, 0, 0]},
"faces": {
"north": {"uv": [2.25, 10.25, 2.75, 10.75], "texture": "#0"},
"east": {"uv": [3.25, 10.25, 3.75, 10.75], "texture": "#0"},
"south": {"uv": [4.25, 10.25, 4.75, 10.75], "texture": "#0"},
"west": {"uv": [5.25, 10.25, 5.75, 10.75], "texture": "#0"},
"up": {"uv": [6.25, 10.25, 6.75, 10.75], "texture": "#0"},
"down": {"uv": [7.25, 10.25, 7.75, 10.75], "texture": "#0"}
}
},
{
"from": [-5.025, -6.025, 9],
"to": [5.35, -5.45, 11],
"rotation": {"angle": 45, "axis": "z", "origin": [-11, 0, 0]},
"faces": {
"north": {"uv": [12.25, 9.25, 12.75, 9.75], "texture": "#0"},
"east": {"uv": [13.25, 9.25, 13.75, 9.75], "texture": "#0"},
"south": {"uv": [14.25, 9.25, 14.75, 9.75], "texture": "#0"},
"west": {"uv": [15.25, 9.25, 15.75, 9.75], "texture": "#0"},
"up": {"uv": [0.25, 10.25, 0.75, 10.75], "texture": "#0"},
"down": {"uv": [1.25, 10.25, 1.75, 10.75], "texture": "#0"}
}
},
{
"from": [4.625, 0, 9],
"to": [5.2, 13.25, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [-11, 0, 0]},
"faces": {
"north": {"uv": [14.25, 13.25, 14.75, 13.75], "texture": "#0"},
"east": {"uv": [15.25, 13.25, 15.75, 13.75], "texture": "#0"},
"south": {"uv": [0.25, 14.25, 0.75, 14.75], "texture": "#0"},
"west": {"uv": [1.25, 14.25, 1.75, 14.75], "texture": "#0"},
"up": {"uv": [2.25, 14.25, 2.75, 14.75], "texture": "#0"},
"down": {"uv": [3.25, 14.25, 3.75, 14.75], "texture": "#0"}
}
},
{
"from": [-1.675, 12.675, 9],
"to": [4.7, 13.25, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [-11, 0, 0]},
"faces": {
"north": {"uv": [8.25, 13.25, 8.75, 13.75], "texture": "#0"},
"east": {"uv": [9.25, 13.25, 9.75, 13.75], "texture": "#0"},
"south": {"uv": [10.25, 13.25, 10.75, 13.75], "texture": "#0"},
"west": {"uv": [11.25, 13.25, 11.75, 13.75], "texture": "#0"},
"up": {"uv": [12.25, 13.25, 12.75, 13.75], "texture": "#0"},
"down": {"uv": [13.25, 13.25, 13.75, 13.75], "texture": "#0"}
}
},
{
"from": [1.6, 2.075, 9],
"to": [4.975, 2.65, 11],
"rotation": {"angle": 45, "axis": "z", "origin": [-11.075, 0, 0]},
"faces": {
"north": {"uv": [2.25, 13.25, 2.75, 13.75], "texture": "#0"},
"east": {"uv": [3.25, 13.25, 3.75, 13.75], "texture": "#0"},
"south": {"uv": [4.25, 13.25, 4.75, 13.75], "texture": "#0"},
"west": {"uv": [5.25, 13.25, 5.75, 13.75], "texture": "#0"},
"up": {"uv": [6.25, 13.25, 6.75, 13.75], "texture": "#0"},
"down": {"uv": [7.25, 13.25, 7.75, 13.75], "texture": "#0"}
}
},
{
"from": [-3.925, 7.5, 9],
"to": [-3.35, 10.875, 11],
"rotation": {"angle": 0, "axis": "z", "origin": [-11.075, 0, 0]},
"faces": {
"north": {"uv": [12.25, 12.25, 12.75, 12.75], "rotation": 90, "texture": "#0"},
"east": {"uv": [13.25, 12.25, 13.75, 12.75], "rotation": 270, "texture": "#0"},
"south": {"uv": [14.25, 12.25, 14.75, 12.75], "rotation": 270, "texture": "#0"},
"west": {"uv": [15.25, 12.25, 15.75, 12.75], "rotation": 270, "texture": "#0"},
"up": {"uv": [0.25, 13.25, 0.75, 13.75], "rotation": 270, "texture": "#0"},
"down": {"uv": [1.25, 13.25, 1.75, 13.75], "rotation": 270, "texture": "#0"}
}
},
{
"from": [-3.675, 7.475, 9],
"to": [4.7, 8.05, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [-11, 0, 0]},
"faces": {
"north": {"uv": [6.25, 12.25, 6.75, 12.75], "texture": "#0"},
"east": {"uv": [7.25, 12.25, 7.75, 12.75], "texture": "#0"},
"south": {"uv": [8.25, 12.25, 8.75, 12.75], "texture": "#0"},
"west": {"uv": [9.25, 12.25, 9.75, 12.75], "texture": "#0"},
"up": {"uv": [10.25, 12.25, 10.75, 12.75], "texture": "#0"},
"down": {"uv": [11.25, 12.25, 11.75, 12.75], "texture": "#0"}
}
},
{
"from": [-5.025, -6.025, 9],
"to": [5.35, -5.45, 11],
"rotation": {"angle": 45, "axis": "z", "origin": [-11, 0, 0]},
"faces": {
"north": {"uv": [0.25, 12.25, 0.75, 12.75], "texture": "#0"},
"east": {"uv": [1.25, 12.25, 1.75, 12.75], "texture": "#0"},
"south": {"uv": [2.25, 12.25, 2.75, 12.75], "texture": "#0"},
"west": {"uv": [3.25, 12.25, 3.75, 12.75], "texture": "#0"},
"up": {"uv": [4.25, 12.25, 4.75, 12.75], "texture": "#0"},
"down": {"uv": [5.25, 12.25, 5.75, 12.75], "texture": "#0"}
}
},
{
"from": [-15.025, -6.025, 9],
"to": [-4.65, -5.45, 11],
"rotation": {"angle": 45, "axis": "z", "origin": [-21, 0, 0]},
"faces": {
"north": {"uv": [0.25, 0.25, 0.75, 0.75], "texture": "#0"},
"east": {"uv": [1.25, 0.25, 1.75, 0.75], "texture": "#0"},
"south": {"uv": [2.25, 0.25, 2.75, 0.75], "texture": "#0"},
"west": {"uv": [3.25, 0.25, 3.75, 0.75], "texture": "#0"},
"up": {"uv": [4.25, 0.25, 4.75, 0.75], "texture": "#0"},
"down": {"uv": [5.25, 0.25, 5.75, 0.75], "texture": "#0"}
}
},
{
"from": [-13.675, 7.475, 9],
"to": [-5.3, 8.05, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [-21, 0, 0]},
"faces": {
"north": {"uv": [6.25, 0.25, 6.75, 0.75], "texture": "#0"},
"east": {"uv": [7.25, 0.25, 7.75, 0.75], "texture": "#0"},
"south": {"uv": [8.25, 0.25, 8.75, 0.75], "texture": "#0"},
"west": {"uv": [9.25, 0.25, 9.75, 0.75], "texture": "#0"},
"up": {"uv": [10.25, 0.25, 10.75, 0.75], "texture": "#0"},
"down": {"uv": [11.25, 0.25, 11.75, 0.75], "texture": "#0"}
}
},
{
"from": [-13.925, 7.5, 9],
"to": [-13.35, 10.875, 11],
"rotation": {"angle": 0, "axis": "z", "origin": [-21.075, 0, 0]},
"faces": {
"north": {"uv": [12.25, 0.25, 12.75, 0.75], "rotation": 90, "texture": "#0"},
"east": {"uv": [13.25, 0.25, 13.75, 0.75], "rotation": 270, "texture": "#0"},
"south": {"uv": [14.25, 0.25, 14.75, 0.75], "rotation": 270, "texture": "#0"},
"west": {"uv": [15.25, 0.25, 15.75, 0.75], "rotation": 270, "texture": "#0"},
"up": {"uv": [0.25, 1.25, 0.75, 1.75], "rotation": 270, "texture": "#0"},
"down": {"uv": [1.25, 1.25, 1.75, 1.75], "rotation": 270, "texture": "#0"}
}
},
{
"from": [-8.4, 2.075, 9],
"to": [-5.025, 2.65, 11],
"rotation": {"angle": 45, "axis": "z", "origin": [-21.075, 0, 0]},
"faces": {
"north": {"uv": [2.25, 1.25, 2.75, 1.75], "texture": "#0"},
"east": {"uv": [3.25, 1.25, 3.75, 1.75], "texture": "#0"},
"south": {"uv": [4.25, 1.25, 4.75, 1.75], "texture": "#0"},
"west": {"uv": [5.25, 1.25, 5.75, 1.75], "texture": "#0"},
"up": {"uv": [6.25, 1.25, 6.75, 1.75], "texture": "#0"},
"down": {"uv": [7.25, 1.25, 7.75, 1.75], "texture": "#0"}
}
},
{
"from": [-11.675, 12.675, 9],
"to": [-5.3, 13.25, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [-21, 0, 0]},
"faces": {
"north": {"uv": [8.25, 1.25, 8.75, 1.75], "texture": "#0"},
"east": {"uv": [9.25, 1.25, 9.75, 1.75], "texture": "#0"},
"south": {"uv": [10.25, 1.25, 10.75, 1.75], "texture": "#0"},
"west": {"uv": [11.25, 1.25, 11.75, 1.75], "texture": "#0"},
"up": {"uv": [12.25, 1.25, 12.75, 1.75], "texture": "#0"},
"down": {"uv": [13.25, 1.25, 13.75, 1.75], "texture": "#0"}
}
},
{
"from": [-5.375, 0, 9],
"to": [-4.8, 13.25, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [-21, 0, 0]},
"faces": {
"north": {"uv": [14.25, 1.25, 14.75, 1.75], "texture": "#0"},
"east": {"uv": [15.25, 1.25, 15.75, 1.75], "texture": "#0"},
"south": {"uv": [0.25, 2.25, 0.75, 2.75], "texture": "#0"},
"west": {"uv": [1.25, 2.25, 1.75, 2.75], "texture": "#0"},
"up": {"uv": [2.25, 2.25, 2.75, 2.75], "texture": "#0"},
"down": {"uv": [3.25, 2.25, 3.75, 2.75], "texture": "#0"}
}
},
{
"from": [-15.025, -6.025, 9],
"to": [-4.65, -5.45, 11],
"rotation": {"angle": 45, "axis": "z", "origin": [-21, 0, 0]},
"faces": {
"north": {"uv": [4.25, 2.25, 4.75, 2.75], "texture": "#0"},
"east": {"uv": [5.25, 2.25, 5.75, 2.75], "texture": "#0"},
"south": {"uv": [6.25, 2.25, 6.75, 2.75], "texture": "#0"},
"west": {"uv": [7.25, 2.25, 7.75, 2.75], "texture": "#0"},
"up": {"uv": [8.25, 2.25, 8.75, 2.75], "texture": "#0"},
"down": {"uv": [9.25, 2.25, 9.75, 2.75], "texture": "#0"}
}
},
{
"from": [-13.675, 7.475, 9],
"to": [-5.3, 8.05, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [-21, 0, 0]},
"faces": {
"north": {"uv": [10.25, 2.25, 10.75, 2.75], "texture": "#0"},
"east": {"uv": [11.25, 2.25, 11.75, 2.75], "texture": "#0"},
"south": {"uv": [12.25, 2.25, 12.75, 2.75], "texture": "#0"},
"west": {"uv": [13.25, 2.25, 13.75, 2.75], "texture": "#0"},
"up": {"uv": [14.25, 2.25, 14.75, 2.75], "texture": "#0"},
"down": {"uv": [15.25, 2.25, 15.75, 2.75], "texture": "#0"}
}
},
{
"from": [-13.925, 7.5, 9],
"to": [-13.35, 10.875, 11],
"rotation": {"angle": 0, "axis": "z", "origin": [-21.075, 0, 0]},
"faces": {
"north": {"uv": [0.25, 3.25, 0.75, 3.75], "rotation": 90, "texture": "#0"},
"east": {"uv": [1.25, 3.25, 1.75, 3.75], "rotation": 270, "texture": "#0"},
"south": {"uv": [2.25, 3.25, 2.75, 3.75], "rotation": 270, "texture": "#0"},
"west": {"uv": [3.25, 3.25, 3.75, 3.75], "rotation": 270, "texture": "#0"},
"up": {"uv": [4.25, 3.25, 4.75, 3.75], "rotation": 270, "texture": "#0"},
"down": {"uv": [5.25, 3.25, 5.75, 3.75], "rotation": 270, "texture": "#0"}
}
},
{
"from": [-8.4, 2.075, 9],
"to": [-5.025, 2.65, 11],
"rotation": {"angle": 45, "axis": "z", "origin": [-21.075, 0, 0]},
"faces": {
"north": {"uv": [6.25, 3.25, 6.75, 3.75], "texture": "#0"},
"east": {"uv": [7.25, 3.25, 7.75, 3.75], "texture": "#0"},
"south": {"uv": [8.25, 3.25, 8.75, 3.75], "texture": "#0"},
"west": {"uv": [9.25, 3.25, 9.75, 3.75], "texture": "#0"},
"up": {"uv": [10.25, 3.25, 10.75, 3.75], "texture": "#0"},
"down": {"uv": [11.25, 3.25, 11.75, 3.75], "texture": "#0"}
}
},
{
"from": [-11.675, 12.675, 9],
"to": [-5.3, 13.25, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [-21, 0, 0]},
"faces": {
"north": {"uv": [12.25, 3.25, 12.75, 3.75], "texture": "#0"},
"east": {"uv": [13.25, 3.25, 13.75, 3.75], "texture": "#0"},
"south": {"uv": [14.25, 3.25, 14.75, 3.75], "texture": "#0"},
"west": {"uv": [15.25, 3.25, 15.75, 3.75], "texture": "#0"},
"up": {"uv": [0.25, 4.25, 0.75, 4.75], "texture": "#0"},
"down": {"uv": [1.25, 4.25, 1.75, 4.75], "texture": "#0"}
}
},
{
"from": [-5.375, 0, 9],
"to": [-4.8, 13.25, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [-21, 0, 0]},
"faces": {
"north": {"uv": [2.25, 4.25, 2.75, 4.75], "texture": "#0"},
"east": {"uv": [3.25, 4.25, 3.75, 4.75], "texture": "#0"},
"south": {"uv": [4.25, 4.25, 4.75, 4.75], "texture": "#0"},
"west": {"uv": [5.25, 4.25, 5.75, 4.75], "texture": "#0"},
"up": {"uv": [6.25, 4.25, 6.75, 4.75], "texture": "#0"},
"down": {"uv": [7.25, 4.25, 7.75, 4.75], "texture": "#0"}
}
},
{
"from": [24.325, 6.65, 9],
"to": [30.7, 7.225, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [7, 0, 0]},
"faces": {
"north": {"uv": [4.25, 5.25, 4.75, 5.75], "texture": "#0"},
"east": {"uv": [5.25, 5.25, 5.75, 5.75], "texture": "#0"},
"south": {"uv": [6.25, 5.25, 6.75, 5.75], "texture": "#0"},
"west": {"uv": [7.25, 5.25, 7.75, 5.75], "texture": "#0"},
"up": {"uv": [8.25, 5.25, 8.75, 5.75], "texture": "#0"},
"down": {"uv": [9.25, 5.25, 9.75, 5.75], "texture": "#0"}
}
},
{
"from": [24.325, 0.025, 9],
"to": [30.7, 0.6, 11],
"rotation": {"angle": 0, "axis": "y", "origin": [7, 0, 0]},
"faces": {
"north": {"uv": [10.25, 5.25, 10.75, 5.75], "texture": "#0"},
"east": {"uv": [11.25, 5.25, 11.75, 5.75], "texture": "#0"},
"south": {"uv": [12.25, 5.25, 12.75, 5.75], "texture": "#0"},
"west": {"uv": [13.25, 5.25, 13.75, 5.75], "texture": "#0"},
"up": {"uv": [14.25, 5.25, 14.75, 5.75], "texture": "#0"},
"down": {"uv": [15.25, 5.25, 15.75, 5.75], "texture": "#0"}
}
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 212 B

After

Width:  |  Height:  |  Size: 199 B