
My Totem Sounds
Client-side mod that links custom Totem of Undying names to sounds from Resource Packs. If a matching sound exists, it plays when the totem activates.
|

My Totem Sounds is a Client-side mod that links custom Totem of Undying names to sounds from Resource Packs. Rename a totem in an anvil and if a matching sound exists, it plays when the totem activates.
It reads two files from resource packs: sounds.json (standard Minecraft sound registration) and totem_mappings.json (which links renamed totem names to sound IDs).
Works with any resource pack, whether it's your own or one provided by a server. Perfect for personal use or server‑wide inside jokes.
Video Showcase


Mod Compatibility
- Works with any mod that adds items with the
DEATH_PROTECTIONcomponent. - Fully compatible with similar and other resource packs.
- No conflicts — the mod only intercepts the totem activation sound event.
Works great with My Totem Doll mod
Use both mods together for the ultimate totem personalization:
My Totem Doll turns your totem into a mini‑figure of any player (just rename it to their nickname).
My Totem Sounds lets you attach a custom sound to that same name.
Now you can have a totem that looks like your friend and plays their catchphrase, a meme, or an inside joke when it saves you.
Multiplayer Friendly
- The mod is client‑side only — you don't need to install it on the server.
- Other players (without the mod & resource pack) will hear the vanilla totem sound (or whatever sound their own setup provides).
Custom Sounds (Resource Packs)
- All sound definitions and name‑to‑sound mappings are loaded from resource packs.
- Server owners can include a resource pack with their custom sounds and mapping file — players who accept the pack will automatically hear the custom sounds.
- You can also create your own personal pack to enjoy your own sounds.
🎨 Community Resource Packs
Here are some resource packs created by the community for My Totem Sounds.
Click on the links to download and try them out!
| Name | Description | Download | |
|---|---|---|---|
| My Totem Memes | A pack that adds a touch of meme culture to your totems. Features sounds like "Za Warudo", Roblox "Oof", metal pipe, and many more! | Modrinth CurseForge | |
| Totem All Sounds | A simple resource pack that lets you change totem sounds by renaming them on an anvil! Choose from hundreds of Minecraft sounds. | Modrinth | |
![]() | Your pack here! | Create a resource pack and share it with us! |
💡 Want your pack featured? Create one and submit it on our Discord. The best packs will be added to this list!

To add your own sounds, create a resource pack with the following structure (the namespace can be anything, e.g. mypack):
Simple Resource Pack Structure
my_cool_pack/
└── assets/
└── mypack/
├── sounds.json
├── totem_mappings.json
└── sounds/
├── zipestudio_ww.ogg
└── alarm_alert.ogg
sounds.json– registers your sound events (standard Minecraft sound registration).totem_mappings.json– links renamed totem names to sound IDs.sounds/– folder for your.oggfiles.
sounds.json
{
"mypack:zipestudio": { "sounds": ["mypack:zipestudio_ww"] },
"mypack:alert": { "sounds": ["mypack:alarm_alert"] }
}
totem_mappings.json
{
"totem_mappings": [
{ "name": "ZipeStudio", "sound": "mypack:zipestudio" },
{ "name": "Alert", "sound": "mypack:alert" }
]
}
You can also use an array for multiple names:
{ "name": ["no", "non", "nein", "нет", "いいえ"], "sound": "anotherpack:nope" }
Explanation:
- The sound event
mypack:zipestudioinsounds.jsonpoints toassets/mypack/sounds/zipestudio_ww.ogg. - In
totem_mappings.json, the name"ZipeStudio"is linked to that sound, so a totem renamed to "ZipeStudio" will playzipestudio_ww.ogg.
This allows one sound to be triggered by several different names. The sound ID can belong to another resource pack (anotherpack:help) – as long as that pack is loaded, it will work.

Want to support mod and authors? Just tell everyone about this mod!
Yeah, you got it right. Just by advertising, you will support the mod and the creators well. The more people will know about this mod, the more downloads it will have, more downloads will give good motivation to authors and increase income from the site (literally free donation). Remember, advertising must not be intrusive and annoying!
What you can do?
- Create resource packs for the mod and submit them to our Discord. The best ones will be featured on the mod's page.
- Make a video review / advertisement
- Share it on social media or Discord
- Tell your friends about this mod
- Add it to your modpack or just download and enjoy the game
Every mention matters — thank you for helping the community grow 🤍


