generated from neoforged/MDK
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
994d85c
commit 268609e
Showing
34 changed files
with
445 additions
and
8 deletions.
There are no files selected for viewing
7 changes: 0 additions & 7 deletions
7
src/main/resources/assets/invertedbed/blockstates/inverted_bed.json
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,19 @@ | ||
{ | ||
"block.invertedbed.inverted_bed":"Inverted Bed", | ||
"block.invertedbed.red_inverted_bed":"Red Inverted Bed", | ||
"block.invertedbed.white_inverted_bed":"White Inverted Bed", | ||
"block.invertedbed.orange_inverted_bed":"Orange Inverted Bed", | ||
"block.invertedbed.magenta_inverted_bed":"Magenta Inverted Bed", | ||
"block.invertedbed.light_blue_inverted_bed":"Light Blue Inverted Bed", | ||
"block.invertedbed.yellow_inverted_bed":"Yellow Inverted Bed", | ||
"block.invertedbed.lime_inverted_bed":"Lime Inverted Bed", | ||
"block.invertedbed.pink_inverted_bed":"Pink Inverted Bed", | ||
"block.invertedbed.gray_inverted_bed":"Gray Inverted Bed", | ||
"block.invertedbed.light_gray_inverted_bed":"Light Gray Inverted Bed", | ||
"block.invertedbed.cyan_inverted_bed":"Cyan Inverted Bed", | ||
"block.invertedbed.purple_inverted_bed":"Purple Inverted Bed", | ||
"block.invertedbed.blue_inverted_bed":"Blue Inverted Bed", | ||
"block.invertedbed.brown_inverted_bed":"Brown Inverted Bed", | ||
"block.invertedbed.green_inverted_bed":"Green Inverted Bed", | ||
"block.invertedbed.black_inverted_bed":"Black Inverted Bed", | ||
"itemGroup.invertedbed":"Inverted Bed" | ||
} |
35 changes: 35 additions & 0 deletions
35
src/main/resources/assets/invertedbed/models/inverted_bed.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"parent": "builtin/entity", | ||
"display": { | ||
"thirdperson_righthand": { | ||
"rotation": [ 30, 160, -180], | ||
"translation": [ 0, 0, -2], | ||
"scale":[ 0.23, 0.23, 0.23] | ||
}, | ||
"firstperson_righthand": { | ||
"rotation": [ 30, 160, -180], | ||
"translation": [ 0, 0, 0], | ||
"scale":[ 0.375, 0.375, 0.375] | ||
}, | ||
"gui": { | ||
"rotation": [ 30, 160, -180], | ||
"translation": [ 2, 0, 0], | ||
"scale":[ 0.5325, 0.5325, 0.5325] | ||
}, | ||
"ground": { | ||
"rotation": [ 0, 0, 0 ], | ||
"translation": [ 0, 1, 2], | ||
"scale":[ 0.25, 0.25, 0.25] | ||
}, | ||
"head": { | ||
"rotation": [ 0, 180, 0 ], | ||
"translation": [ 0, 10, -8], | ||
"scale":[ 1,1,1 ] | ||
}, | ||
"fixed": { | ||
"rotation": [ 270, 0, 0 ], | ||
"translation": [ 0, 4, -2], | ||
"scale":[ 0.5, 0.5, 0.5] | ||
} | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/main/resources/assets/invertedbed/models/item/black_inverted_bed.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"parent": "invertedbed:inverted_bed", | ||
"textures": { | ||
"particle": "minecraft:block/black_wool" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/main/resources/assets/invertedbed/models/item/blue_inverted_bed.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"parent": "invertedbed:inverted_bed", | ||
"textures": { | ||
"particle": "minecraft:block/blue_wool" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/main/resources/assets/invertedbed/models/item/brown_inverted_bed.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"parent": "invertedbed:inverted_bed", | ||
"textures": { | ||
"particle": "minecraft:block/brown_wool" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/main/resources/assets/invertedbed/models/item/cyan_inverted_bed.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"parent": "invertedbed:inverted_bed", | ||
"textures": { | ||
"particle": "minecraft:block/cyan_wool" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/main/resources/assets/invertedbed/models/item/gray_inverted_bed.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"parent": "invertedbed:inverted_bed", | ||
"textures": { | ||
"particle": "minecraft:block/gray_wool" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/main/resources/assets/invertedbed/models/item/green_inverted_bed.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"parent": "invertedbed:inverted_bed", | ||
"textures": { | ||
"particle": "minecraft:block/green_wool" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/main/resources/assets/invertedbed/models/item/light_blue_inverted_bed.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"parent": "invertedbed:inverted_bed", | ||
"textures": { | ||
"particle": "minecraft:block/light_blue_wool" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/main/resources/assets/invertedbed/models/item/light_gray_inverted_bed.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"parent": "invertedbed:inverted_bed", | ||
"textures": { | ||
"particle": "minecraft:block/light_gray_wool" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/main/resources/assets/invertedbed/models/item/lime_inverted_bed.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"parent": "invertedbed:inverted_bed", | ||
"textures": { | ||
"particle": "minecraft:block/lime_wool" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/main/resources/assets/invertedbed/models/item/magenta_inverted_bed.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"parent": "invertedbed:inverted_bed", | ||
"textures": { | ||
"particle": "minecraft:block/magenta_wool" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/main/resources/assets/invertedbed/models/item/orange_inverted_bed.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"parent": "invertedbed:inverted_bed", | ||
"textures": { | ||
"particle": "minecraft:block/orange_wool" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/main/resources/assets/invertedbed/models/item/pink_inverted_bed.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"parent": "invertedbed:inverted_bed", | ||
"textures": { | ||
"particle": "minecraft:block/pink_wool" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/main/resources/assets/invertedbed/models/item/purple_inverted_bed.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"parent": "invertedbed:inverted_bed", | ||
"textures": { | ||
"particle": "minecraft:block/purple_wool" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/main/resources/assets/invertedbed/models/item/white_inverted_bed.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"parent": "invertedbed:inverted_bed", | ||
"textures": { | ||
"particle": "minecraft:block/white_wool" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/main/resources/assets/invertedbed/models/item/yellow_inverted_bed.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"parent": "invertedbed:inverted_bed", | ||
"textures": { | ||
"particle": "minecraft:block/yellow_wool" | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
src/main/resources/data/invertedbed/loot_tables/black_inverted_bed.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"type": "minecraft:block", | ||
"pools": [ | ||
{ | ||
"rolls": 1, | ||
"entries": [ | ||
{ | ||
"type": "minecraft:item", | ||
"name": "invertedbed:black_inverted_bed" | ||
} | ||
], | ||
"conditions": [ | ||
{ | ||
"condition": "minecraft:survives_explosion" | ||
} | ||
] | ||
} | ||
] | ||
} |
19 changes: 19 additions & 0 deletions
19
src/main/resources/data/invertedbed/loot_tables/blue_inverted_bed.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"type": "minecraft:block", | ||
"pools": [ | ||
{ | ||
"rolls": 1, | ||
"entries": [ | ||
{ | ||
"type": "minecraft:item", | ||
"name": "invertedbed:blue_inverted_bed" | ||
} | ||
], | ||
"conditions": [ | ||
{ | ||
"condition": "minecraft:survives_explosion" | ||
} | ||
] | ||
} | ||
] | ||
} |
19 changes: 19 additions & 0 deletions
19
src/main/resources/data/invertedbed/loot_tables/brown_inverted_bed.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"type": "minecraft:block", | ||
"pools": [ | ||
{ | ||
"rolls": 1, | ||
"entries": [ | ||
{ | ||
"type": "minecraft:item", | ||
"name": "invertedbed:brown_inverted_bed" | ||
} | ||
], | ||
"conditions": [ | ||
{ | ||
"condition": "minecraft:survives_explosion" | ||
} | ||
] | ||
} | ||
] | ||
} |
19 changes: 19 additions & 0 deletions
19
src/main/resources/data/invertedbed/loot_tables/cyan_inverted_bed.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"type": "minecraft:block", | ||
"pools": [ | ||
{ | ||
"rolls": 1, | ||
"entries": [ | ||
{ | ||
"type": "minecraft:item", | ||
"name": "invertedbed:cyan_inverted_bed" | ||
} | ||
], | ||
"conditions": [ | ||
{ | ||
"condition": "minecraft:survives_explosion" | ||
} | ||
] | ||
} | ||
] | ||
} |
19 changes: 19 additions & 0 deletions
19
src/main/resources/data/invertedbed/loot_tables/gray_inverted_bed.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"type": "minecraft:block", | ||
"pools": [ | ||
{ | ||
"rolls": 1, | ||
"entries": [ | ||
{ | ||
"type": "minecraft:item", | ||
"name": "invertedbed:gray_inverted_bed" | ||
} | ||
], | ||
"conditions": [ | ||
{ | ||
"condition": "minecraft:survives_explosion" | ||
} | ||
] | ||
} | ||
] | ||
} |
19 changes: 19 additions & 0 deletions
19
src/main/resources/data/invertedbed/loot_tables/green_inverted_bed.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"type": "minecraft:block", | ||
"pools": [ | ||
{ | ||
"rolls": 1, | ||
"entries": [ | ||
{ | ||
"type": "minecraft:item", | ||
"name": "invertedbed:green_inverted_bed" | ||
} | ||
], | ||
"conditions": [ | ||
{ | ||
"condition": "minecraft:survives_explosion" | ||
} | ||
] | ||
} | ||
] | ||
} |
19 changes: 19 additions & 0 deletions
19
src/main/resources/data/invertedbed/loot_tables/light_blue_inverted_bed.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"type": "minecraft:block", | ||
"pools": [ | ||
{ | ||
"rolls": 1, | ||
"entries": [ | ||
{ | ||
"type": "minecraft:item", | ||
"name": "invertedbed:light_blue_inverted_bed" | ||
} | ||
], | ||
"conditions": [ | ||
{ | ||
"condition": "minecraft:survives_explosion" | ||
} | ||
] | ||
} | ||
] | ||
} |
19 changes: 19 additions & 0 deletions
19
src/main/resources/data/invertedbed/loot_tables/light_gray_inverted_bed.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"type": "minecraft:block", | ||
"pools": [ | ||
{ | ||
"rolls": 1, | ||
"entries": [ | ||
{ | ||
"type": "minecraft:item", | ||
"name": "invertedbed:light_gray_inverted_bed" | ||
} | ||
], | ||
"conditions": [ | ||
{ | ||
"condition": "minecraft:survives_explosion" | ||
} | ||
] | ||
} | ||
] | ||
} |
19 changes: 19 additions & 0 deletions
19
src/main/resources/data/invertedbed/loot_tables/lime_inverted_bed.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"type": "minecraft:block", | ||
"pools": [ | ||
{ | ||
"rolls": 1, | ||
"entries": [ | ||
{ | ||
"type": "minecraft:item", | ||
"name": "invertedbed:lime_inverted_bed" | ||
} | ||
], | ||
"conditions": [ | ||
{ | ||
"condition": "minecraft:survives_explosion" | ||
} | ||
] | ||
} | ||
] | ||
} |
19 changes: 19 additions & 0 deletions
19
src/main/resources/data/invertedbed/loot_tables/magenta_inverted_bed.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"type": "minecraft:block", | ||
"pools": [ | ||
{ | ||
"rolls": 1, | ||
"entries": [ | ||
{ | ||
"type": "minecraft:item", | ||
"name": "invertedbed:magenta_inverted_bed" | ||
} | ||
], | ||
"conditions": [ | ||
{ | ||
"condition": "minecraft:survives_explosion" | ||
} | ||
] | ||
} | ||
] | ||
} |
Oops, something went wrong.