added kubejs
@@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shapeless",
|
||||||
|
"category": "misc",
|
||||||
|
"ingredients": [
|
||||||
|
{
|
||||||
|
"item": "ae2:fluix_covered_cable"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"result": {
|
||||||
|
"count": 1,
|
||||||
|
"id": "minecraft:white_wool"
|
||||||
|
}
|
||||||
|
}
|
||||||
6
akanealw_custom_datapacks/ae2-custom-recipes-1.21.1/pack.mcmeta
Executable file
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"pack": {
|
||||||
|
"description": "ae2 custom recipes",
|
||||||
|
"pack_format": 48
|
||||||
|
}
|
||||||
|
}
|
||||||
10
kubejs/README.md
Executable file
@@ -0,0 +1,10 @@
|
|||||||
|
All The Mods 10
|
||||||
|
======
|
||||||
|
All The Mods 10 is released on curseforge only, as All Rights Reserved,
|
||||||
|
This covers the following files/folders
|
||||||
|
- all Quests and rewards in `\instance\config\ftbquests\quests\`
|
||||||
|
- all custom Kubejs scripts in `\instance\kubejs\`
|
||||||
|
|
||||||
|
What does All Rights Reserved Mean?
|
||||||
|
For players, it means nothing, you are still permitted to play and film and stream the pack.
|
||||||
|
For anyone else, it means you cannot redistribute any of the above folders or files in any publicly released packs without permission from Allthemods
|
||||||
15
kubejs/README.txt
Executable file
@@ -0,0 +1,15 @@
|
|||||||
|
Find out more info on the website: https://kubejs.com/
|
||||||
|
|
||||||
|
Directory information:
|
||||||
|
|
||||||
|
assets - Acts as a resource pack, you can put any client resources in here, like textures, models, etc. Example: assets/kubejs/textures/item/test_item.png
|
||||||
|
data - Acts as a datapack, you can put any server resources in here, like loot tables, functions, etc. Example: data/kubejs/loot_tables/blocks/test_block.json
|
||||||
|
|
||||||
|
startup_scripts - Scripts that get loaded once during game startup - Used for adding items and other things that can only happen while the game is loading (Can be reloaded with /kubejs reload_startup_scripts, but it may not work!)
|
||||||
|
server_scripts - Scripts that get loaded every time server resources reload - Used for modifying recipes, tags, loot tables, and handling server events (Can be reloaded with /reload)
|
||||||
|
client_scripts - Scripts that get loaded every time client resources reload - Used for JEI events, tooltips and other client side things (Can be reloaded with F3+T)
|
||||||
|
|
||||||
|
config - KubeJS config storage. This is also the only directory that scripts can access other than world directory
|
||||||
|
exported - Data dumps like texture atlases end up here
|
||||||
|
|
||||||
|
You can find type-specific logs in logs/kubejs/ directory
|
||||||
7
kubejs/assets/kubejs/blockstates/blaze_block.json
Executable file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "kubejs:block/blaze_block"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
7
kubejs/assets/kubejs/blockstates/blaze_powder_block.json
Executable file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "kubejs:block/blaze_powder_block"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
7
kubejs/assets/kubejs/blockstates/magical_soil.json
Executable file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "kubejs:block/magical_soil"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
7
kubejs/assets/kubejs/blockstates/pink_slime_block.json
Executable file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "kubejs:block/pink_slime_block"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
8
kubejs/assets/kubejs/models/block/blaze_block.json
Executable file
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"parent": "minecraft:block/cube_bottom_top",
|
||||||
|
"textures": {
|
||||||
|
"side": "kubejs:block/blaze_block",
|
||||||
|
"bottom": "kubejs:block/blaze_block_top",
|
||||||
|
"top": "kubejs:block/blaze_block_top"
|
||||||
|
}
|
||||||
|
}
|
||||||
6
kubejs/assets/kubejs/models/block/blaze_powder_block.json
Executable file
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"parent": "block/cube_all",
|
||||||
|
"textures": {
|
||||||
|
"all": "kubejs:block/blaze_powder_block"
|
||||||
|
}
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/ancient_stone_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/ancient_stone_cell",
|
||||||
|
"cell": "kubejs:block/drive/ancient_stone_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/andesite_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/andesite_cell",
|
||||||
|
"cell": "kubejs:block/drive/andesite_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/basalt_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/basalt_cell",
|
||||||
|
"cell": "kubejs:block/drive/basalt_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/black_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/black_cell",
|
||||||
|
"cell": "kubejs:block/drive/black_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/blackstone_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/blackstone_cell",
|
||||||
|
"cell": "kubejs:block/drive/blackstone_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/blue_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/blue_cell",
|
||||||
|
"cell": "kubejs:block/drive/blue_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/brown_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/brown_cell",
|
||||||
|
"cell": "kubejs:block/drive/brown_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/calcite_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/calcite_cell",
|
||||||
|
"cell": "kubejs:block/drive/calcite_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/certus_quartz_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/certus_quartz_cell",
|
||||||
|
"cell": "kubejs:block/drive/certus_quartz_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/clay_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/clay_cell",
|
||||||
|
"cell": "kubejs:block/drive/clay_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/cobbled_deepslate_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/cobbled_deepslate_cell",
|
||||||
|
"cell": "kubejs:block/drive/cobbled_deepslate_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/cyan_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/cyan_cell",
|
||||||
|
"cell": "kubejs:block/drive/cyan_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/diorite_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/diorite_cell",
|
||||||
|
"cell": "kubejs:block/drive/diorite_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/dirt_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/dirt_cell",
|
||||||
|
"cell": "kubejs:block/drive/dirt_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/end_stone_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/end_stone_cell",
|
||||||
|
"cell": "kubejs:block/drive/end_stone_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/glowstone_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/glowstone_cell",
|
||||||
|
"cell": "kubejs:block/drive/glowstone_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/granite_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/granite_cell",
|
||||||
|
"cell": "kubejs:block/drive/granite_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/gravel_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/gravel_cell",
|
||||||
|
"cell": "kubejs:block/drive/gravel_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/gray_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/gray_cell",
|
||||||
|
"cell": "kubejs:block/drive/gray_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/green_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/green_cell",
|
||||||
|
"cell": "kubejs:block/drive/green_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/kivi_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/kivi_cell",
|
||||||
|
"cell": "kubejs:block/drive/kivi_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/lava_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/lava_cell",
|
||||||
|
"cell": "kubejs:block/drive/lava_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/light_blue_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/light_blue_cell",
|
||||||
|
"cell": "kubejs:block/drive/light_blue_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/light_gray_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/light_gray_cell",
|
||||||
|
"cell": "kubejs:block/drive/light_gray_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/lime_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/lime_cell",
|
||||||
|
"cell": "kubejs:block/drive/lime_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/magenta_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/magenta_cell",
|
||||||
|
"cell": "kubejs:block/drive/magenta_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/moss_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/moss_cell",
|
||||||
|
"cell": "kubejs:block/drive/moss_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/netherrack_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/netherrack_cell",
|
||||||
|
"cell": "kubejs:block/drive/netherrack_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/obsidian_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/obsidian_cell",
|
||||||
|
"cell": "kubejs:block/drive/obsidian_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/orange_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/orange_cell",
|
||||||
|
"cell": "kubejs:block/drive/orange_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/pink_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/pink_cell",
|
||||||
|
"cell": "kubejs:block/drive/pink_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/purple_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/purple_cell",
|
||||||
|
"cell": "kubejs:block/drive/purple_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/red_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/red_cell",
|
||||||
|
"cell": "kubejs:block/drive/red_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/red_sand_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/red_sand_cell",
|
||||||
|
"cell": "kubejs:block/drive/red_sand_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/redstone_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/redstone_cell",
|
||||||
|
"cell": "kubejs:block/drive/redstone_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/sand_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/sand_cell",
|
||||||
|
"cell": "kubejs:block/drive/sand_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/sky_stone_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/sky_stone_cell",
|
||||||
|
"cell": "kubejs:block/drive/sky_stone_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/soul_sand_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/soul_sand_cell",
|
||||||
|
"cell": "kubejs:block/drive/soul_sand_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/stone_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/stone_cell",
|
||||||
|
"cell": "kubejs:block/drive/stone_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/tuff_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/tuff_cell",
|
||||||
|
"cell": "kubejs:block/drive/tuff_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/white_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/white_cell",
|
||||||
|
"cell": "kubejs:block/drive/white_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/assets/kubejs/models/block/drive/yellow_cell.json
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "kubejs:block/drive/yellow_cell",
|
||||||
|
"cell": "kubejs:block/drive/yellow_cell"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"name": "Cell Backdrop",
|
||||||
|
"from": [0, 0, 0],
|
||||||
|
"to": [6, 2, 2],
|
||||||
|
"rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]},
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [0, 0, 6, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"up": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"},
|
||||||
|
"down": {"uv": [6, 0, 0, 2], "texture": "#cell", "cullface": "north"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
8
kubejs/assets/kubejs/models/block/magical_soil.json
Executable file
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"parent": "minecraft:block/cube_bottom_top",
|
||||||
|
"textures": {
|
||||||
|
"side": "kubejs:block/magical_soil_side",
|
||||||
|
"bottom": "minecraft:block/dirt",
|
||||||
|
"top": "kubejs:block/magical_soil_top"
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
kubejs/assets/kubejs/textures/block/blaze_block.png
Executable file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
kubejs/assets/kubejs/textures/block/blaze_block_top.png
Executable file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
kubejs/assets/kubejs/textures/block/blaze_powder_block.png
Executable file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/ancient_stone_cell.png
Executable file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/andesite_cell.png
Executable file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/basalt_cell.png
Executable file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/black_cell.png
Executable file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/blackstone_cell.png
Executable file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/blue_cell.png
Executable file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/brown_cell.png
Executable file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/calcite_cell.png
Executable file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/certus_quartz_cell.png
Executable file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/clay_cell.png
Executable file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/cobbled_deepslate_cell.png
Executable file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/cyan_cell.png
Executable file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/diorite_cell.png
Executable file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/dirt_cell.png
Executable file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/end_stone_cell.png
Executable file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/glowstone_cell.png
Executable file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/granite_cell.png
Executable file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/gravel_cell.png
Executable file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/gray_cell.png
Executable file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/green_cell.png
Executable file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/kivi_cell.png
Executable file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/lava_cell.png
Executable file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/light_blue_cell.png
Executable file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/light_gray_cell.png
Executable file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/lime_cell.png
Executable file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/magenta_cell.png
Executable file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/moss_cell.png
Executable file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/netherrack_cell.png
Executable file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/obsidian_cell.png
Executable file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/orange_cell.png
Executable file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/pink_cell.png
Executable file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/purple_cell.png
Executable file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/red_cell.png
Executable file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/red_sand_cell.png
Executable file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/redstone_cell.png
Executable file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/sand_cell.png
Executable file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/sky_stone_cell.png
Executable file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/soul_sand_cell.png
Executable file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/stone_cell.png
Executable file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/tuff_cell.png
Executable file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/white_cell.png
Executable file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
kubejs/assets/kubejs/textures/block/drive/yellow_cell.png
Executable file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
kubejs/assets/kubejs/textures/block/magical_soil_side.png
Executable file
|
After Width: | Height: | Size: 848 B |
15
kubejs/assets/kubejs/textures/block/magical_soil_side.png.mcmeta
Executable file
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"animation": {
|
||||||
|
"frametime": 80,
|
||||||
|
"interpolate": true,
|
||||||
|
"frames": [
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
3,
|
||||||
|
2,
|
||||||
|
1
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||