generated from FabricMC/fabric-example-mod
-
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.
Added Amethyst music disc - Currently doesn't play in jukeboxes - Needs to be added to loot - Needs work on the texture
- Loading branch information
1 parent
425fcc7
commit 13e889d
Showing
18 changed files
with
56 additions
and
9 deletions.
There are no files selected for viewing
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
5 changes: 3 additions & 2 deletions
5
src/main/generated/.cache/130e22669e8a615864dab95e7f6486375d972043
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: 1 addition & 1 deletion
2
src/main/generated/.cache/517b32aa3b70974ceff8833c3e0d8067fc37e319
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: 1 addition & 1 deletion
2
src/main/generated/.cache/65bfa0da695c72a1ede5f07ea05a47f7fb8fdb51
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,3 +1,3 @@ | ||
// 1.20.4 2024-02-06T16:47:56.9470904 Titanium/Tags for minecraft:block | ||
// 1.20.4 2024-02-16T01:02:43.64447 Titanium/Tags for minecraft:block | ||
40a22829dc45910fc144676bb4bd94f2ed21c46b data\minecraft\tags\blocks\mineable\pickaxe.json | ||
40a22829dc45910fc144676bb4bd94f2ed21c46b data\minecraft\tags\blocks\needs_iron_tool.json |
2 changes: 1 addition & 1 deletion
2
src/main/generated/.cache/89f2127b6a78ac60efe9eb6d1a02ce770428ebeb
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,4 @@ | ||
// 1.20.4 2024-02-06T16:47:56.9409825 Titanium/Advancements | ||
// 1.20.4 2024-02-16T01:02:43.6384542 Titanium/Advancements | ||
ecb8798f3abcbed913c874c0f875d6fdd85a56cc data\minecraft\advancements\titanium\titanium_armor.json | ||
b2a37f8191984a79b7bcf7972e9f69b29fc77923 data\minecraft\advancements\titanium\get_titanium.json | ||
cfa35b7f8f81e2536edf0792b980f5cbc3678881 data\minecraft\advancements\titanium\titanium_tools.json |
2 changes: 1 addition & 1 deletion
2
src/main/generated/.cache/9da30a99369c7e8c68716a98fd12271ee4da4d59
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: 1 addition & 1 deletion
2
src/main/generated/.cache/ed130a9d2fc861ab1cf43e733b1c2beffb974a94
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: 1 addition & 1 deletion
2
src/main/generated/.cache/fc0e456a828b0d3ff0de7c436f29639954b07e94
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
src/main/generated/assets/titanium/models/item/music_disc_amethyst.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": "titanium:item/music_disc_amethyst" | ||
} | ||
} |
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
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
14 changes: 14 additions & 0 deletions
14
src/main/java/com/atom596/titanium/item/TitaniumSounds.java
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,14 @@ | ||
package com.atom596.titanium.item; | ||
|
||
import net.minecraft.registry.Registries; | ||
import net.minecraft.registry.Registry; | ||
import net.minecraft.sound.SoundEvent; | ||
import net.minecraft.util.Identifier; | ||
|
||
public class TitaniumSounds { | ||
public static final SoundEvent MUSIC_DISC_AMETHYST = SoundEvent.of(new Identifier("titanium:music_disc_amethyst")); | ||
|
||
public static void register() { | ||
Registry.register(Registries.SOUND_EVENT, new Identifier("titanium:music_disc_amethyst"), MUSIC_DISC_AMETHYST); | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"music_disc_amethyst": { | ||
"category": "records", | ||
"sounds": [ | ||
{ | ||
"name": "titanium:amethyst", | ||
"stream": true | ||
} | ||
] | ||
} | ||
} |
Binary file not shown.
Binary file added
BIN
+265 Bytes
src/main/resources/assets/titanium/textures/item/music_disc_amethyst.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.