-
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.
a lot of things happened
- Loading branch information
Showing
15 changed files
with
92 additions
and
17 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
26 changes: 26 additions & 0 deletions
26
src/main/java/com/nuclearcrackhead/serverboss/registry/ModSounds.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,26 @@ | ||
package com.nuclearcrackhead.serverboss.registry; | ||
|
||
import com.nuclearcrackhead.serverboss.SVBCR; | ||
import net.minecraft.registry.Registries; | ||
import net.minecraft.registry.Registry; | ||
import net.minecraft.sound.SoundEvent; | ||
import net.minecraft.util.Identifier; | ||
|
||
public class ModSounds { | ||
private ModSounds() { | ||
//don't instantiate this again | ||
} | ||
|
||
public static final SoundEvent BLOCK_AGONY_ACTIVATE_FANGSNAP = registerSound("block.agony.activate_fangsnap"); | ||
public static final SoundEvent BLOCK_AGONY_ACTIVATE_ZOMBIESTEP = registerSound("block.agony.activate_zombiestep"); | ||
|
||
private static SoundEvent registerSound(String id) { | ||
Identifier identifier = Identifier.of(SVBCR.MOD_ID, id); | ||
return Registry.register(Registries.SOUND_EVENT, identifier, SoundEvent.of(identifier)); | ||
} | ||
|
||
public static void init() { | ||
//wawa | ||
} | ||
|
||
} |
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,11 +1,15 @@ | ||
{ | ||
"block.svbcr.example_block": "Example Block", | ||
"block.svbcr.agony": "Agony", | ||
"item.svbcr.example_item": "Example Item", | ||
"block.svbcr.radioactive": "Radioactive Waste", | ||
"block.svbcr.sludge": "Sludge", | ||
"block.svbcr.wastebarrel": "Large Radioactive Waste Barrel", | ||
"item.svbcr.radioactive_bucket": "Radioactive Waste Barrel", | ||
"death.attack.agony": "%s was crushed by grief", | ||
"death.attack.agony.player": "%s was crushed by grief whilst trying to escape %s" | ||
"block.svbcr.agony": "Agony", | ||
"block.svbcr.example_block": "Example Block", | ||
"block.svbcr.radioactive": "Radioactive Waste", | ||
"block.svbcr.sludge": "Sludge", | ||
"block.svbcr.wastebarrel": "Large Radioactive Waste Barrel", | ||
|
||
"death.attack.agony": "%s was crushed by grief", | ||
"death.attack.agony.player": "%s was crushed by grief whilst trying to escape %s", | ||
|
||
"item.svbcr.example_item": "Example Item", | ||
"item.svbcr.radioactive_bucket": "Radioactive Waste Barrel", | ||
|
||
"subtitles.block.agony.activate": "Agony" | ||
} |
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,24 @@ | ||
{ | ||
"block.agony.activate_fangsnap": { | ||
"subtitle": "subtitles.block.agony.activate", | ||
"sounds": [ | ||
{ | ||
"name": "entity.evoker_fangs.attack", | ||
"type": "event", | ||
"volume": 0.5, | ||
"pitch": 0.5 | ||
} | ||
] | ||
}, | ||
"block.agony.activate_zombiestep": { | ||
"subtitle": "subtitles.block.agony.activate", | ||
"sounds": [ | ||
{ | ||
"name": "entity.zombie_villager.step", | ||
"type": "event", | ||
"volume": 0.5, | ||
"pitch": 0.5 | ||
} | ||
] | ||
} | ||
} |
Binary file added
BIN
+264 Bytes
...resources/resourcepacks/reworks/assets/minecraft/textures/block/cobblestone.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 @@ | ||
{ | ||
"pack": { | ||
"description": "Retextures of vanilla blocks to match SVB:CR", | ||
"pack_format": 48, | ||
"supported_formats": [ | ||
0, | ||
2147483647 | ||
] | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.