added drill
This commit is contained in:
10
src/main/resources/assets/quickly/blockstates/drill.json
Normal file
10
src/main/resources/assets/quickly/blockstates/drill.json
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=up": { "model": "quickly:block/drill" },
|
||||
"facing=down": { "model": "quickly:block/drill" },
|
||||
"facing=east": { "model": "quickly:block/drilleast" },
|
||||
"facing=south": { "model": "quickly:block/drillsouth" },
|
||||
"facing=west": { "model": "quickly:block/drillwest" },
|
||||
"facing=north": { "model": "quickly:block/drillnorth" }
|
||||
}
|
||||
}
|
||||
6
src/main/resources/assets/quickly/items/drill.json
Normal file
6
src/main/resources/assets/quickly/items/drill.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "quickly:block/drill"
|
||||
}
|
||||
}
|
||||
6
src/main/resources/assets/quickly/items/drilleast.json
Normal file
6
src/main/resources/assets/quickly/items/drilleast.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "quickly:block/drilleast"
|
||||
}
|
||||
}
|
||||
6
src/main/resources/assets/quickly/items/drillnorth.json
Normal file
6
src/main/resources/assets/quickly/items/drillnorth.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "quickly:block/drillnorth"
|
||||
}
|
||||
}
|
||||
6
src/main/resources/assets/quickly/items/drillsouth.json
Normal file
6
src/main/resources/assets/quickly/items/drillsouth.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "quickly:block/drillsouth"
|
||||
}
|
||||
}
|
||||
6
src/main/resources/assets/quickly/items/drillwest.json
Normal file
6
src/main/resources/assets/quickly/items/drillwest.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "quickly:block/drillwest"
|
||||
}
|
||||
}
|
||||
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"info.block.drillfuel": "Ladung: %s Bohrungen",
|
||||
"info.block.itemhoarder": "enthält: %s",
|
||||
"info.block.monsterhoarder": "Radius: %s, Brenndauer: %s Ticks",
|
||||
"item.quickly.blockcanolaplant": "Rapspflanze",
|
||||
@@ -16,6 +17,7 @@
|
||||
"item.quickly.copperstub": "Kupferstummel",
|
||||
"item.quickly.cotton": "Baumwolle",
|
||||
"item.quickly.cottonseed": "Baumwollsaat",
|
||||
"item.quickly.drill": "Bohrer",
|
||||
"item.quickly.emptylavahoarder": "Lavasauger",
|
||||
"item.quickly.itemhoarder": "Itemsauger",
|
||||
"item.quickly.kelpbundle": "Seegrassbündel",
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"info.block.drillfuel": "Load: %s drills",
|
||||
"info.block.itemhoarder": "contains: %s",
|
||||
"info.block.monsterhoarder": "radius: %s, burn ticks: %s",
|
||||
"item.quickly.blockcanolaplant": "canola plant",
|
||||
@@ -16,6 +17,7 @@
|
||||
"item.quickly.copperstub": "copper stub",
|
||||
"item.quickly.cotton": "cotton",
|
||||
"item.quickly.cottonseed": "cotton seed",
|
||||
"item.quickly.drill": "drill",
|
||||
"item.quickly.emptylavahoarder": "lava hoarder",
|
||||
"item.quickly.itemhoarder": "item hoarder",
|
||||
"item.quickly.kelpbundle": "kelp bundle",
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "quickly:block/drill"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
{
|
||||
"parent": "block/cube",
|
||||
"textures": {
|
||||
"bottom": "quickly:block/drilleast",
|
||||
"all": "quickly:block/drill"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 16, 16],
|
||||
"faces": {
|
||||
"down": {
|
||||
"uv": [0, 0, 16, 16],
|
||||
"texture": "#bottom",
|
||||
"cullface": "down"
|
||||
},
|
||||
"up": {
|
||||
"uv": [0, 0, 16, 16],
|
||||
"texture": "#bottom",
|
||||
"cullface": "up"
|
||||
},
|
||||
"north": {
|
||||
"uv": [0, 0, 16, 16],
|
||||
"texture": "#all",
|
||||
"cullface": "north"
|
||||
},
|
||||
"south": {
|
||||
"uv": [0, 0, 16, 16],
|
||||
"texture": "#all",
|
||||
"cullface": "south"
|
||||
},
|
||||
"east": {
|
||||
"uv": [0, 0, 16, 16],
|
||||
"texture": "#all",
|
||||
"cullface": "east"
|
||||
},
|
||||
"west": {
|
||||
"uv": [0, 0, 16, 16],
|
||||
"texture": "#all",
|
||||
"cullface": "west"
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
{
|
||||
"parent": "block/cube",
|
||||
"textures": {
|
||||
"bottom": "quickly:block/drillnorth",
|
||||
"all": "quickly:block/drill"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 16, 16],
|
||||
"faces": {
|
||||
"down": {
|
||||
"uv": [0, 0, 16, 16],
|
||||
"texture": "#bottom",
|
||||
"cullface": "down"
|
||||
},
|
||||
"up": {
|
||||
"uv": [0, 0, 16, 16],
|
||||
"texture": "#bottom",
|
||||
"cullface": "up"
|
||||
},
|
||||
"north": {
|
||||
"uv": [0, 0, 16, 16],
|
||||
"texture": "#all",
|
||||
"cullface": "north"
|
||||
},
|
||||
"south": {
|
||||
"uv": [0, 0, 16, 16],
|
||||
"texture": "#all",
|
||||
"cullface": "south"
|
||||
},
|
||||
"east": {
|
||||
"uv": [0, 0, 16, 16],
|
||||
"texture": "#all",
|
||||
"cullface": "east"
|
||||
},
|
||||
"west": {
|
||||
"uv": [0, 0, 16, 16],
|
||||
"texture": "#all",
|
||||
"cullface": "west"
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
{
|
||||
"parent": "block/cube",
|
||||
"textures": {
|
||||
"bottom": "quickly:block/drillsouth",
|
||||
"all": "quickly:block/drill"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 16, 16],
|
||||
"faces": {
|
||||
"down": {
|
||||
"uv": [0, 0, 16, 16],
|
||||
"texture": "#bottom",
|
||||
"cullface": "down"
|
||||
},
|
||||
"up": {
|
||||
"uv": [0, 0, 16, 16],
|
||||
"texture": "#bottom",
|
||||
"cullface": "up"
|
||||
},
|
||||
"north": {
|
||||
"uv": [0, 0, 16, 16],
|
||||
"texture": "#all",
|
||||
"cullface": "north"
|
||||
},
|
||||
"south": {
|
||||
"uv": [0, 0, 16, 16],
|
||||
"texture": "#all",
|
||||
"cullface": "south"
|
||||
},
|
||||
"east": {
|
||||
"uv": [0, 0, 16, 16],
|
||||
"texture": "#all",
|
||||
"cullface": "east"
|
||||
},
|
||||
"west": {
|
||||
"uv": [0, 0, 16, 16],
|
||||
"texture": "#all",
|
||||
"cullface": "west"
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
{
|
||||
"parent": "block/cube",
|
||||
"textures": {
|
||||
"bottom": "quickly:block/drillwest",
|
||||
"all": "quickly:block/drill"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 16, 16],
|
||||
"faces": {
|
||||
"down": {
|
||||
"uv": [0, 0, 16, 16],
|
||||
"texture": "#bottom",
|
||||
"cullface": "down"
|
||||
},
|
||||
"up": {
|
||||
"uv": [0, 0, 16, 16],
|
||||
"texture": "#bottom",
|
||||
"cullface": "up"
|
||||
},
|
||||
"north": {
|
||||
"uv": [0, 0, 16, 16],
|
||||
"texture": "#all",
|
||||
"cullface": "north"
|
||||
},
|
||||
"south": {
|
||||
"uv": [0, 0, 16, 16],
|
||||
"texture": "#all",
|
||||
"cullface": "south"
|
||||
},
|
||||
"east": {
|
||||
"uv": [0, 0, 16, 16],
|
||||
"texture": "#all",
|
||||
"cullface": "east"
|
||||
},
|
||||
"west": {
|
||||
"uv": [0, 0, 16, 16],
|
||||
"texture": "#all",
|
||||
"cullface": "west"
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
10
src/main/resources/assets/quickly/models/item/drill.json
Normal file
10
src/main/resources/assets/quickly/models/item/drill.json
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"parent": "quickly:block/drill",
|
||||
"display": {
|
||||
"thirdperson": {
|
||||
"rotation": [ 10, -45, 170 ],
|
||||
"translation": [ 0, 1.5, -2.75 ],
|
||||
"scale": [ 0.375, 0.375, 0.375 ]
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
src/main/resources/assets/quickly/textures/block/drill.png
Normal file
BIN
src/main/resources/assets/quickly/textures/block/drill.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 6.0 KiB |
BIN
src/main/resources/assets/quickly/textures/block/drilleast.png
Normal file
BIN
src/main/resources/assets/quickly/textures/block/drilleast.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 6.0 KiB |
BIN
src/main/resources/assets/quickly/textures/block/drillnorth.png
Normal file
BIN
src/main/resources/assets/quickly/textures/block/drillnorth.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 6.0 KiB |
BIN
src/main/resources/assets/quickly/textures/block/drillsouth.png
Normal file
BIN
src/main/resources/assets/quickly/textures/block/drillsouth.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.9 KiB |
BIN
src/main/resources/assets/quickly/textures/block/drillstop.png
Normal file
BIN
src/main/resources/assets/quickly/textures/block/drillstop.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.0 KiB |
BIN
src/main/resources/assets/quickly/textures/block/drillwest.png
Normal file
BIN
src/main/resources/assets/quickly/textures/block/drillwest.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 6.0 KiB |
Reference in New Issue
Block a user