Mellstroy (Я уже красный) Totem of Undying
**EN**: This resource pack replaces the original **Totem of Undying** with the Meme from Mellstroy **I’m already red, it won’t work out culturally** with sound. This meme has become very popular on TikTok over the past couple of years.
**RU**: Этот ресурспак заменяет оригинальный **Тотем бессмертия** на Мем от Меллстроя **Я уже красный, культурно не получится** со звуком, данный мем за последние пару лет стал очень популярным в Тик Ток
– Омайгадность Тотем
– Тотем Меллстрой
– ПОЛНАЯ КОЛЛЕКЦИЯ РЕСУРСПАКОВ – МЕМЫ + СТРИМЕРЫ

Fabric Essentials
# Fabric Essentials
## Commands
This mod adds a lot of commands to Minecraft. Check out COMMANDS.md for a full list.
## Config
“`json5
{
“homes”: {
// How many homes each player should have independent of permissions
“defaultLimit”: 3,
// A list of configurations to increase the home limit. The system will pick the highest value from all entries with
// stacking disabled and add all values with stacking enabled
“homesLimits”: [
{
// The permission that a player needs to get this ‘fabric-essentials.command.sethome.limit.‘
“permission”: “vip”,
“limit”: 5,
“stacks”: false
}
]
},
“tpa”: {
// How many seconds teleport requests will stay active for
“expiry”: 30
},
“commands”: {
// Whether player argument commands allow partial names (only the start of a name) to target a player
“allowPartialNames”: false
},
“teleportation”: {
“waitingPeriod”: {
// How many seconds players need to wait before being teleported
“period”: 2,
“cancellation”: {
// Whether damage cancels teleportation
“damage”: false,
// How far players can move before teleportation is cancelled
“maxMoveDistance”: -1
}
},
// How many locations can be saved for the back command
“savedBackLocations”: 32,
// Enabling this will create a back location when running /back, effectively allowing you to toggle between your
// most recent and your current location using /back
“saveBackCommandLocation”: false
},
“itemEdit”: {
// The maximum name length for the item edit command
“name”: {
“maxLength”: 50,
“experienceLevelCost”: 1
},
// The maximum lore length for the item edit command
“lore”: {
“maxLength”: 50,
“maxLines”: 5,
“experienceLevelCost”: 1
}
},
“ignoreCommandSpyCommands”: [
“me”,
“msg”,
“teammsg”,
“tell”,
“w”
]
}
“`
## Messages
All messages in this mod are completely customizable and translatable. If you want to change them or add translations
(you can also PR these so they can be included in this project) navigate to `./config/messages/fabric-essentials/.json`.
For a list of all available language codes check out the wiki.
## Miscellaneous
### Commandspy
Run `/commandspy` to toggle spying. Any commands run by players will be sent to you.
Any commands listed in `ignoreCommandSpyCommands` config option will not be sent.
### Styled Input
Allows users to use patboxs text format in anvils, books, signs, items.
They will require the following permission to do so `fabric-essentials.style..`, where `` can be:
`anvil`, `book`, `sign`, `item.name`, `item.lore` and `` can be any of
the available tags!
## Import mod data
This mod provides data importers for data from some other mods to help you transition.
**Before starting the import process, make sure to take a backup!**
There is currently support for `kiloessentials` and `essential_commands`.
If you wish to import data from any of these mods:
1. Shutdown your server
2. Remove the old mod
3. Install this mod
4. Start the server
5. Run `/essentials import ` from console to start the import process.
Melius Commands
# Melius Commands

A fabric server side mod to create custom, and modify existing commands
## Custom Commands
To add custom commands, create a json file in `./config/melius-commands/commands`.
For example files, see examples/commands! Apply your changes, by running `/reload` in-game.
### JSON Format
Json format includes comments for clarification (don’t copy `//` in your files)
#### Command node (literal / argument)
Check out the online generator to create your custom commands
quick and easy! This will also make sure your syntax is valid.
The root node must always be a literal node.
“`json5
{
“id”: “…”,
// Command id (command name for literal command nodes) (required)
“type”: “…”,
// Argument type, see below. (argument node only, required)
“executes”: [
// A list of command node executions, see below.
],
“require”: {
// See https://github.com/Patbox/PredicateAPI/ for further information.
// If this evaluates to true for a Command Source, it will have access to this command node!
},
“literals”: [
// A list of literal children nodes
],
“arguments”: [
// A list of argument children nodes
],
“redirect”: “…”
// If specified the command will copy execution, requirements and children from the specified node.
// This can effectively create an alias for another command
}
“`
#### Execution
This can either be a simple string, which will be executed silent, as console with op level 4 or manually configured
like this:
“`json5
{
“command”: “…”,
// The command that will be executed (can reference argument values, with ${id})
“silent”: false,
// Disable command output if set to true
“as_console”: false,
// Whether this command should be executed as console command source
“op_level”: 4
// The operator level of the command source (optional) (Possible values: 0 – 4)
}
“`
The `command` execution value can use placeholders from command arguments and
global placeholders, by using this format `${PLACEHOLDER}`, where `PLACEHOLDER`
can either be the argument id, or a global placeholder
like player:name.
#### Argument Type
For a full list of all argument types refer to the Argument types wiki.
Some argument types require additional arguments, which must be appended seperated by spaces.
## Command Modifiers
To add command requirements, create a json file in `./config/melius-commands/modifiers`.
For example files, see examples/modifiers!
### JSON Format
Check out the online generator to create your custom command
modifiers quick and easy! This will also make sure your syntax is valid.
Json format includes comments for clarification (don’t copy `//` in your files)
#### Command modifier
The syntax depends on the modifier type you choose. The most important thing to note is that there are two types of
command matchers:
– Node matchers will match command nodes (the structure used by brigadier to represent commands internally) by their
path (for example `teleport.location`, will match any command like this `/teleport 0 100 0`)
– Command matchers will match against the string used during command execution (for example `warp end` will
match `/warp end`)
Both of these types come with three different flavours:
– `strict` modifiers will only be applied to that exact node / that exact command input
– `starts_with` modifiers will be applied to the specified node / command and anything that is “longer” than it
– `regex` modifiers will be applied to everything matching the regular expression
Node matchers have an extra field called `requirement_modifier`, which allows you to modify the requirement of the node,
which will completely remove the command from players / command sources that don’t meet the requirement!
### Command node paths
You can use `/melius-commands path ` command to determine command node paths of any command.
Example: to check the path of `/tp DrexHD 0 100 0` (teleporting an entity to a block location) you type
`/melius-commands path tp DrexHD 0 100 0` and will receive `teleport.targets.location`, which you can use in command
modifiers.
## Placeholders
– `%melius-commands:cooldown [id]%` / `%melius-commands:cooldown [id] [formatting]%` – Player command cooldowns.
– `[id]` is the id specified in the cooldown modifier.
– `[formatting]` is the duration formatting,
make sure to escape properly.
Meadow Grass Everywhere!
#
Meadow Grass Everywhere!

This pack changes the **Grass colormap** so that it always matches the color of the **Meadow biome(s)**.
The Meadow uses the color `#83BB6D` in vanilla Minecraft.
List of biomes that use this color in vanilla Minecraft
* Meadow
Additional Information
* build_time: `2025-10-06T02:13:39+02:00`
* build_user: `rotgruengelb`
## Limitations
Some biomes use hardcoded colors that cannot be overridden by resource packs.
This is a limitation of Minecraft itself, not of this pack.
## Installation
Download the pack and place it in your `resourcepacks` folder.
## About “Oh My Colormap!”
A collection of resource packs that change Minecraft’s colormaps.
### Rotgruengelb (Developer & Artist):


MCSM enchantment glint
**Enchantment glint in Minecraft story mode looks different than the one in minecraft**, so i decided to **make a texture pack** that **looks similar** to the one seen in Minecraft story mode, it **isnt the same** but its good enough. this texture pack **will be updated in the future** because it **isnt perfect**
Minecraft Music Remastered
This pack makes it so that the original C418 songs can play in all overworld biomes. It also adds back some removed songs.
No songs are removed in this pack. It only adds back songs to different biome song pools.
– All 13 Overworld songs can play everywhere, in all biomes. Except the Pale garden, unless using Music In Pale Garden mod or datapack
– Calm4 has a very rare chance of playing
– Moog City 2, Comforting Memories, Featherfall, Floating Dream, Broken Clocks and Watcher will play rarely everywhere in the overworld.
– The Main Menu tracklist has been overhauled. It will play the four menu tracks the majority of the time, and every song that has ever been a menu song, is now back to being a menu song. Added a few more songs to the tracklist too.
– All Nether Biomes have a better chance of playing the four og tracks.
– Excuse, the removed Nether song can play in all Nether biomes.
– Deeper and Ancestry are rare nether songs
– The Warped Woods can play music very rarely, and Excuse plays more often when music does play.
– Frozen Peaks and Snowy Slopes can play Kyoto and Flake
https://c418.bandcamp.com/album/minecraft-volume-alpha
https://c418.bandcamp.com/album/minecraft-volume-beta
Max Totem of Undying
– ENG: Max is a Russian cross-platform instant messaging service based on the digital system of the same name. It was founded in 2025 by the VK technology company. Resourcepack replaces the immortality totem with the logo
– RU: Max — российский кроссплатформенный сервис мгновенного обмена сообщениями на базе одноимённой цифровой системы. Основан в 2025 году технологической компанией VK. Ресурспак заменяет тотем бессмертия на логотип
Check collection with all memes + streamers Totems
– Тотем Я уже Красный-totem-of-undying)
– Тотем Меллстрой
– Colored Bricks
– MACAN Totem of Undying
Masa’s Mods lzh Translation Pack
> 喜报:
本翻译包已被Litematica维护者Sakura Ryoko合并!
这意味着,对于新版本日后不必下载本资源包,也可以使用Litematica文言翻译了(
查看详情)。
不过,对于老版本的Masa系列模组,仍然需要翻译包的支持。
## 简介
> 注意:这**不是简体中文**翻译!!!如果你想要简体中文或繁体中文翻译,建议点击此处。
这是一份**文言**翻译资源包,用于填补MASA系列模组缺少文言的空白,目前翻译进度较低。
~~如果你是一个生电大佬,非常熟悉MASA系列模组,觉得原版的MASA系列模组还是太好用了的话,可以尝试下载这个资源包来抹平您的大脑皮层(笑)你也可以把这个翻译包假扮成其他资源包后发给你的朋友,硬控他们几分钟。~~
|支持的模组| 原名 | 链接 |
| ——- | ——- | ——- |
|**清影**|Litematica|Modrinth|
|**摩輕庫**|MaLiLib|Modrinth|
|**眇訊**|MiniHUD|Modrinth|
|**伺服司**|Servux|Modrinth|
|**調祛術**|Tweakeroo|Modrinth|
## 如何使用
1. 确保您的Minecraft装载了MASA系列模组。
2. 下载该项目最新的翻译包。
3. 将翻译包拖入”resoucepacks”文件夹并装载。
4. 将您的Minecraft游戏语言调整为“`文言(華夏)“`。若无法生效大多是这一步忘了。
5. 锵锵!不出意外的话,您的MASA模组此时已翻译成文言了吧。可以按下“`M“`键打开Litematica的菜单检验。
## 版本命名规则
这一部分有点长,请展开观看
1. 资源包分为`Release` `Alpha` `Beta` 三类。分别对应正式版、测试版、早期测试版。R1.0之前的版本都是Alpha版本,R1.0之后的所有测试版都是Beta版本。
2. 正式版命名规则如下
`摩挲改囊文言全譯 R{version}.zip`
例如:摩挲改囊文言全譯 R1.0.zip
其中`version`由两位有效数字组成。第一位为大版本号,第二位为大版本号的修订号。大版本号分配计划如下表所示:
|序号|达成标志|大版本号|情况|
|—|—|—|—|
|1|资源包被Sakura合并|1.0|√已达成|
|2|完成Litematica翻译|2.0|×未达成|
|3|完成MaLiLib翻译|3.0|×未达成|
|4|完成Tweakeroo翻译|4.0|×未达成|
|5|完成MiniHUD翻译|5.0|×未达成|
|6|完成Servux翻译|6.0|×未达成|
|敬请期待|……|……|……|
3. 测试版命名规则如下
`摩挲改囊文言全譯 B{version}.{timestamp}.zip`
例如:摩挲改囊文言全譯 B1.1.260219.zip
其中`version`为对应预发布的正式版本号。`timestamp`为构建时间。
> 注意,早期Alpha测试版以`摩挲改囊文言全譯 A{version}.zip`命名。因为之后不再会有Alpha版本(只有Beta版本),所以这种方式将不再使用。
希望这能帮助你更好理解并下载本翻译包。
## 贡献
发现大量词条未翻译/错误?想要参与翻译?点击这里进入Crowdin参与翻译!(审核通过方可翻译)
若发现有以下情况,请报告到项目Issue:
– 文不对意
– 用字讹误
– 翻译错用
– 语法不通
– 缺少变量
– 用词不统一
– 翻译包失效
– 与原版已有的术语不一致
– 使用了§等格式化代码而显示不正确
## 进度







Martini´s Treasure and Farming
# **Martini´s Treasure and Farming**
**This is Part three of Martini’s way to Play**
## **Description**
It adds a additional way of getting some ore and Mob Drops after defeating mobs like Husks, Warden and more, in Minecraft with this Datapack installed.
For the Minecraft Snapshot enjoyer, this is for you guys!
The datapack as well as the mod version are now divided into two versions: the “Release” version and the “Snapshot” version.
– **Beta** stands for Snapshot
– **Release** remains the same
Spoiler
– Chance to find some Ore when mining almost every sort of Stones
– Chance to find some Items like Potatos, Carrots and more when minning Grass blocks
– Chance to find some Items like red and brown mushrooms or poisonous potatos and fermented spider eyes when minning Mycelium
– a small Chance to mine successfully a Spawner and higher chance when enchanted with fortune
– Great rewards after defeating the Warden
– New Drops for certain Mobs, like Bat, Drowned, Husk and some more..
But in the end you decide if you want to try it out!
—————————————————————————————-
### Little Q&A
###
Q: Can I add this to my modpack?
A: Yes.
Q: Can I upload this to another plattform like curseforge etc.?
A: No.
Martini´s Cutting and Crafting
# **Martini´s Cutting and Crafting**
**This is Part two of Martini’s Way to Play**
## **Description**
this Datapack adds a few additional Recipe´s for the Crafting Table and the Stonecutter.
I added alot of new recipes, changed some old ones and added one old specific recipe back, even a new function for the stonecutter the addition cut wool, use Glass and Wooden materials. It makes it more or less cheaper in the end. I also added a few Advancements you can get.
For the Minecraft Snapshot enjoyer, this is for you guys!
The datapack as well as the mod version are now divided into two versions: the “Release” version and the “Snapshot” version.
– **Beta** stands for Snapshot
– **Release** remains the same
Some of the new Recipes include:
Spoiler
– Crafting Slabs back to Blocks
– Cheaper Armor Trims and i mean all of them…
– Getting back some materials for old tools and armor in the stonecutter
– Craft some items with copper in addition to iron
– Wool to Wool Carpets Cutting
– Wool Carpets to Wool Blocks Crafting
– Moss Carpets to Moss Blocks Crafting
– Craftable Trident
– Craftable Nautilus Armor
– Craftable Totem of Undying
– Craftable Enchanted Golden Apples
– Craftable Elytra
– Craft some Spawn eggs
– Craftable Spawner
and more!
But in the end you decide if you want to try it out!
—————————————————————————————-
### Little Q&A
###
Q: Can I add this to my modpack?
A: Yes.
Q: Can I upload this to another plattform like curseforge etc.?
A: No.