-
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
f0d4654
commit 3d54033
Showing
34 changed files
with
1,036 additions
and
0 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
common/src/generated/resources/assets/blissful/blockstates/bliss_bloom.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,10 @@ | ||
{ | ||
"variants": { | ||
"half=lower": { | ||
"model": "blissful:block/bliss_bloom_lower" | ||
}, | ||
"half=upper": { | ||
"model": "blissful:block/bliss_bloom_upper" | ||
} | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
common/src/generated/resources/assets/blissful/blockstates/feral_hemp.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,15 @@ | ||
{ | ||
"variants": { | ||
"": [ | ||
{ | ||
"model": "blissful:block/feral_hemp" | ||
}, | ||
{ | ||
"model": "blissful:block/feral_hemp_2" | ||
}, | ||
{ | ||
"model": "blissful:block/feral_hemp_3" | ||
} | ||
] | ||
} | ||
} |
2 changes: 2 additions & 0 deletions
2
common/src/generated/resources/assets/blissful/lang/en_ud.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
2 changes: 2 additions & 0 deletions
2
common/src/generated/resources/assets/blissful/lang/en_us.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
6 changes: 6 additions & 0 deletions
6
common/src/generated/resources/assets/blissful/models/block/bliss_bloom_lower.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": "minecraft:block/cross", | ||
"textures": { | ||
"cross": "blissful:block/bliss_bloom_lower" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
common/src/generated/resources/assets/blissful/models/block/bliss_bloom_upper.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": "minecraft:block/cross", | ||
"textures": { | ||
"cross": "blissful:block/bliss_bloom_upper" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
common/src/generated/resources/assets/blissful/models/item/bliss_bloom.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": "minecraft:item/generated", | ||
"textures": { | ||
"layer0": "blissful:block/bliss_bloom_upper" | ||
} | ||
} |
3 changes: 3 additions & 0 deletions
3
common/src/generated/resources/assets/blissful/models/item/feral_hemp.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,3 @@ | ||
{ | ||
"parent": "blissful:block/feral_hemp" | ||
} |
28 changes: 28 additions & 0 deletions
28
common/src/generated/resources/data/blissful/loot_tables/blocks/bliss_bloom.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,28 @@ | ||
{ | ||
"type": "minecraft:block", | ||
"pools": [ | ||
{ | ||
"bonus_rolls": 0.0, | ||
"conditions": [ | ||
{ | ||
"condition": "minecraft:survives_explosion" | ||
}, | ||
{ | ||
"block": "blissful:bliss_bloom", | ||
"condition": "minecraft:block_state_property", | ||
"properties": { | ||
"half": "lower" | ||
} | ||
} | ||
], | ||
"entries": [ | ||
{ | ||
"type": "minecraft:item", | ||
"name": "blissful:bliss_bloom" | ||
} | ||
], | ||
"rolls": 1.0 | ||
} | ||
], | ||
"random_sequence": "blissful:blocks/bliss_bloom" | ||
} |
21 changes: 21 additions & 0 deletions
21
common/src/generated/resources/data/blissful/loot_tables/blocks/feral_hemp.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,21 @@ | ||
{ | ||
"type": "minecraft:block", | ||
"pools": [ | ||
{ | ||
"bonus_rolls": 0.0, | ||
"conditions": [ | ||
{ | ||
"condition": "minecraft:survives_explosion" | ||
} | ||
], | ||
"entries": [ | ||
{ | ||
"type": "minecraft:item", | ||
"name": "blissful:feral_hemp" | ||
} | ||
], | ||
"rolls": 1.0 | ||
} | ||
], | ||
"random_sequence": "blissful:blocks/feral_hemp" | ||
} |
6 changes: 6 additions & 0 deletions
6
common/src/generated/resources/data/minecraft/tags/blocks/small_flowers.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 @@ | ||
{ | ||
"replace": false, | ||
"values": [ | ||
"blissful:feral_hemp" | ||
] | ||
} |
6 changes: 6 additions & 0 deletions
6
common/src/generated/resources/data/minecraft/tags/blocks/tall_flowers.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 @@ | ||
{ | ||
"replace": false, | ||
"values": [ | ||
"blissful:bliss_bloom" | ||
] | ||
} |
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
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
Oops, something went wrong.