# Introduction

MoreTweaks is a Minecraft plugin for [PaperMC](https://papermc.io/software/paper) that tweaks the game with new features or modifies existing features.

MoreTweaks currently contains 43 tweaks and 10 recipes in [2 languages](/languages). Got any suggestions for more? Feel free to open a [GitHub issue](https://github.com/tarna/MoreTweaks/issues) or join the [Discord server](https://discord.gg/SScnNymExa) and let me know.


# Configuration

Servers are able to configure nearly every aspect of each tweak. This can all be done in the `config.yml`file. Administrators can also enable or disable different tweaks and recipes through in game by doing `/moretweaks tweaks <enable|disable> <tweak>`and `/moretweaks recipes <enable|disable> <recipe>` or through the `/moretweaks manage` GUI.


# Languages

MoreTweaks currently supports 2 languages. To set your language, go to the `config.yml` file and set the `language` option to your desired language. The available languages are:

* English (US) - `en_us` - 100%
* Spanish (Mexico) - `es_mx` - \~90%

## Contributing to a language

Some languages are not fully translated. If you would like to contribute to a language or fix any mistakes, please follow these steps:

1. Fork the latest [dev branch](https://github.com/tarna/MoreTweaks/tree/dev/patch).
2. Edit the translation file in the `src/main/resources/lang` directory. The files are named after the language code (e.g. `en_us.yml` for English).
3. Translate the text to your desired language. Make sure to keep the formatting the same as the original file.
4. Commit your changes and create a pull request to the `dev` branch.
5. Once your pull request is merged and an update is released, you will be able to use your new translations in the plugin.

## Adding a new language

If you would like to contribute a new language, please follow these steps:

1. Fork the latest [dev branch](https://github.com/tarna/MoreTweaks/tree/dev/patch).
2. Head over to the [Language page on the Minecraft Wiki](https://minecraft.wiki/w/Language) and find the language code for your language.
3. Create a new file in the `src/main/resources/lang` directory with the name of your language code (e.g. `en_us.yml`).
4. Copy the contents of the `en_us.yml` file and translate the text to your desired language.
5. Please translate at least 50% for the language to be considered.
6. Make sure to keep the formatting the same as the original file.
7. Commit your changes and create a pull request to the `dev` branch.
8. Once your pull request is merged and an update is released, you will be able to use your new language in the plugin.

## Translation Credits

### en\_us

* [@tarna](https://tarna.dev)

### es\_mx

* [@enttbot](https://www.youtube.com/@enttbot)


# Always Drop

## Description

Always drop certain blocks when mining them without silk touch.

## Options

| Name    | Description                               | Type       | Default                         |
| ------- | ----------------------------------------- | ---------- | ------------------------------- |
| enabled | Whether this tweak is enabled.            | boolean    | false                           |
| blocks  | A list of blocks that should always drop. | block list | All glass and glass pane blocks |


# Anti-Creeper Grief

## Description

Disable creepers from doing damage to blocks or entities.

## Options

| Name           | Description                               | Type    | Default |
| -------------- | ----------------------------------------- | ------- | ------- |
| enabled        | Whether this tweak is enabled.            | boolean | false   |
| block\_damage  | If creepers should do damage to blocks.   | boolean | false   |
| entity\_damage | If creepers should do damage to entities. | boolean | false   |


# Anti-Enderman Grief

## Description

Disable endermen from picking up certain blocks.

## Options

| Name    | Description                                                               | Type       | Default    |
| ------- | ------------------------------------------------------------------------- | ---------- | ---------- |
| enabled | Whether this tweak is enabled.                                            | boolean    | false      |
| blocks  | A list of blocks enderman shouldn't pick up. Empty list means all blocks. | block list | empty list |


# Anti-Ghast Grief

## Description

Disable ghast from blowing up certain blocks.

## Options

| Name    | Description                                                             | Type       | Default    |
| ------- | ----------------------------------------------------------------------- | ---------- | ---------- |
| enabled | Whether this tweak is enabled.                                          | boolean    | false      |
| blocks  | A list of blocks ghasts shouldn't blow up. Empty list means all blocks. | block list | empty list |


# Anti-Zombie Grief

## Description

Disable zombies from breaking down wooden doors.

## Options

| Name    | Description                    | Type    | Default |
| ------- | ------------------------------ | ------- | ------- |
| enabled | Whether this tweak is enabled. | boolean | false   |


# Anvil Cost Limiter

## Description

Limit the repair cost of anvils. Minecraft will say the repair is too expensive if the cost is over 39 levels. This allows you to limit it so that it isn't reached.

## Options

| Name    | Description                       | Type    | Default |
| ------- | --------------------------------- | ------- | ------- |
| enabled | Whether this tweak is enabled.    | boolean | false   |
| limit   | The level limit for repair costs. | integer | 39      |


# Apiarist Suit

## Description

When wearing a full set of chain armor, bee strings will not do damage to you and they will calm down.

## Options

| Name    | Description                    | Type    | Default |
| ------- | ------------------------------ | ------- | ------- |
| enabled | Whether this tweak is enabled. | boolean | false   |


# Bat Membranes

## Description

Adds a chance for bats to drop phantom membranes.

## Options

| Name    | Description                                                    | Type    | Default           |
| ------- | -------------------------------------------------------------- | ------- | ----------------- |
| enabled | Whether this tweak is enabled.                                 | boolean | false             |
| chance  | The chance on how often a bat should drop a membrane.          | integer | 100               |
| drop    | The item to drop when killing a bat. Can be changed if needed. | item    | PHANTOM\_MEMBRANE |
| amount  | The amount of the item to drop.                                | integer | 1                 |


# Chest Sorting

## Description

When pressing any button, all items in nearby chests will automatically get sorted.

## Options

| Name    | Description                                                 | Type    | Default |
| ------- | ----------------------------------------------------------- | ------- | ------- |
| enabled | Whether this tweak is enabled.                              | boolean | false   |
| radius  | The radius of the pressed button it should sort chests for. | integer | 1       |


# Chicken Shedding

## Description

Adds a chance for chickens to shed a feather rather than laying an egg.

## Options

| Name    | Description                                                 | Type    | Default |
| ------- | ----------------------------------------------------------- | ------- | ------- |
| enabled | Whether this tweak is enabled.                              | boolean | false   |
| chance  | The chance on how often a chicken should shed.              | integer | 10      |
| drop    | The item the chicken should shed. Can be changed if needed. | item    | FEATHER |
| amount  | The amount of the item to drop.                             | integer | 1       |


# Dead Saplings

## Description

Saplings die when planted on certain blocks.

## Options

| Name    | Description                                                           | Type          | Default                  |
| ------- | --------------------------------------------------------------------- | ------------- | ------------------------ |
| enabled | Whether this tweak is enabled.                                        | boolean       | false                    |
| delay   | The delay in how often saplings are checked for dead status.          | duration      | 1s                       |
| time    | How long it takes for a sapling to turn into a dead bush.             | duration      | 1m                       |
| blocks  | List of blocks saplings can be placed on and turned into dead bushes. | material list | <p>SAND<br>RED\_SAND</p> |


# Death Book

## Description

When respawning, the player gets given a book with the coordinates of where they died.

## Options

| Name    | Description                    | Type        | Default                                                                                                                                                                                                 |
| ------- | ------------------------------ | ----------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| enabled | Whether this tweak is enabled. | boolean     | false                                                                                                                                                                                                   |
| author  | The author of the book.        | string      | \<red>Death                                                                                                                                                                                             |
| title   | The title of the book.         | string      | \<red>Death Book                                                                                                                                                                                        |
| content | The content of the book.       | string list | <p>\<red>\<bold>Death Coordinates<br><br>\<red>\<italic>RIP, you died at:<br><br>\<black>X: \<red>\<x><br>\<black>Y: \<red>\<y><br>\<black>X: \<red>\<z><br><br>\<red>Good luck finding your stuff!</p> |


# Dirt to Grass

## Description

The ability to turn dirt into grass by right clicking it with certain items. It currently supports wheat, melon, pumpkin, and beetroot seeds and bone meal.

## Options

| Name                   | Description                                      | Type    | Default |
| ---------------------- | ------------------------------------------------ | ------- | ------- |
| enabled                | Whether this tweak is enabled.                   | boolean | false   |
| wheat\_seed\_chance    | The chance for a wheat seeds to transform dirt.  | integer | 5       |
| melon\_seed\_chance    | The chance for melon seeds to transform dirt.    | integer | 5       |
| pumpkin\_seed\_chance  | The chance for pumpkin seeds to transform dirt.  | integer | 5       |
| beetroot\_seed\_chance | The chance for beetroot seeds to transform dirt. | integer | 5       |
| bone\_meal\_chance     | The chance for bone meal to transform dirt.      | integer | 20      |


# Dragon Loot

## Description

Adds the ability to add custom loot to drop when killing the ender dragon.

## Options

| Name    | Description                    | Type      | Default |
| ------- | ------------------------------ | --------- | ------- |
| enabled | Whether this tweak is enabled. | boolean   | false   |
| drops   | A list of items to drop.       | item list | ELYTRA  |


# Durability Ping

## Description

Notify players when their tools are about to break.

## Options

| Name          | Description                                                                       | Type    | Default                                   |
| ------------- | --------------------------------------------------------------------------------- | ------- | ----------------------------------------- |
| enabled       | Whether this tweak is enabled.                                                    | boolean | false                                     |
| threshold     | The percentage of the tools durability needs to be for the player to be notified. | integer | 5                                         |
| message\_type | The type of message to send to the player.                                        | string  | action\_bar                               |
| message       | The message to send to the player.                                                | string  | Item durability is low!                   |
| sound         | The sound to send to the player when this tweak is triggered.                     | sound   | minecraft:block.note\_block.chime,1.0,1.0 |


# Fast Paths

## Description

Makes the player faster when walking on dirt paths.

## Options

| Name      | Description                            | Type    | Default |
| --------- | -------------------------------------- | ------- | ------- |
| enabled   | Whether this tweak is enabled.         | boolean | false   |
| amplifier | The level of speed to give the player. | integer | 2       |


# Feather Crops

## Description

Crops don't get trampled when you walk on them with feather falling boots.

## Options

| Name    | Description                           | Type    | Default |
| ------- | ------------------------------------- | ------- | ------- |
| enabled | Whether this tweak is enabled.        | boolean | false   |
| chance  | The chance for this tweak to trigger. | integer | 100     |


# Fire Aspect Lighter

## Description

Light Nether portals, campfires, TNT, and more with Fire Aspect.

## Configuration

| Name                    | Description                                   | Type    | Default |
| ----------------------- | --------------------------------------------- | ------- | ------- |
| enabled                 | Whether this tweak is enabled.                | boolean | false   |
| features.campfire       | Whether this tweak works with campfires.      | boolean | true    |
| features.candle         | Whether this tweak works with candles.        | boolean | true    |
| features.nether\_portal | Whether this tweak works with nether portals. | boolean | true    |
| features.tnt            | Whether this tweak works with TNT.            | boolean | true    |


# Item Finder

## Description

Adds a command that allows players to search for a certain item in nearby chests and displays particles above it.

## Options

| Name    | Description                                  | Type    | Default    |
| ------- | -------------------------------------------- | ------- | ---------- |
| enabled | Whether this tweak is enabled.               | boolean | false      |
| command | The name of the command to register.         | string  | itemfinder |
| range   | The radius of blocks to search for the item. | integer | 5          |


# Mobs on Blocks

## Description

Run special actions when a certain mob walks over a certain block.

Drowned: When a drowned walks over a sponge, it will get replaced with a wet sponge and the drowned will turn into a husk.

Mooshroom: When a mooshroom walks over podzol, it gets turned into mycelium.

When a cow walks over any mushroom blocks or mycelium, the block gets changed to dirt and the cow turns into a mooshroom.

## Options

| Name           | Description                                       | Type    | Default |
| -------------- | ------------------------------------------------- | ------- | ------- |
| enabled        | Whether this tweak is enabled.                    | boolean | false   |
| mobs.drowned   | Whether the drowned mechanic should be enabled.   | boolean | false   |
| mobs.mooshroom | Whether the mooshroom mechanic should be enabled. | boolean | false   |
| mobs.cow       | Whether the cow mechanic should be enabled.       | boolean | false   |


# More Shulker Shells

## Description

Increases the amount of shulker shells that drops when killing a shulker.

## Options

| Name    | Description                           | Type    | Default |
| ------- | ------------------------------------- | ------- | ------- |
| enabled | Whether this tweak is enabled.        | boolean | false   |
| amount  | The amount of shulker shells to drop. | integer | 2       |


# Nether Creepers

## Description

Charged Creepers have a rare chance of spawning in Nether Wastes.

## Options

| Name    | Description                                                       | Type    | Default |
| ------- | ----------------------------------------------------------------- | ------- | ------- |
| enabled | Whether this tweak is enabled.                                    | boolean | false   |
| chance  | The chance for a zombified piglin to turn into a charged creeper. | integer | 10      |


# No More Zoombies

## Description

Decreases the speed of baby zombies to the ones of regular zonbies.

## Options

| Name    | Description                    | Type    | Default |
| ------- | ------------------------------ | ------- | ------- |
| enabled | Whether this tweak is enabled. | boolean | false   |


# One Life One Totem

## Description

Makes it so players can only use one totem per life.

## Options

| Name             | Description                                    | Type    | Default |
| ---------------- | ---------------------------------------------- | ------- | ------- |
| enabled          | Whether this tweak is enabled.                 | boolean | false   |
| sleeping\_resets | Whether sleeping should reset the totem limit. | boolean | false   |


# Paperbark

## Description

Adds the ability to get paper when stripping  a log with an axe.

## Options

| Name    | Description                                                      | Type      | Default                                                                                                                                                      |
| ------- | ---------------------------------------------------------------- | --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| enabled | Whether this tweak is enabled.                                   | boolean   | false                                                                                                                                                        |
| chance  | The chance for paper to drop.                                    | integer   | 10                                                                                                                                                           |
| drop    | The item to drop when stripping a log. Can be changed if needed. | item      | PAPER                                                                                                                                                        |
| amount  | The amount of the item to drop.                                  | integer   | 1                                                                                                                                                            |
| logs    | The logs this tweak should work on.                              | item list | <p>OAK\_LOG<br>SPRUCE\_LOG<br>BIRCH\_LOG<br>JUNGLE\_LOG<br>ACACIA\_LOG<br>DARK\_OAK\_LOG<br>MANGROVE\_LOG<br>CHERRY\_LOG<br>CRIMSON\_LOG<br>WARPED\_STEM</p> |


# Pet Memorial Name Tag

## Description

Drops a memorial item when a pet dies.

## Options

| Name                 | Description                                                                             | Type    | Default      |
| -------------------- | --------------------------------------------------------------------------------------- | ------- | ------------ |
| enabled              | Whether this tweak is enabled.                                                          | boolean | false        |
| drop                 | The item to drop as the memorial item. Can be changed if needed.                        | item    | NAME\_TAG    |
| chance               | The chance for the memorial item to drop.                                               | integer | 100          |
| format               | The format of the name of the memorial item.                                            | string  | In Memory of |
| show\_death\_message | Whether to show the pet's death message when the memorial item is right clicked.        | boolean | true         |
| should\_burn         | Whether the memorial item should burn. Useful to prevent the item to be burned by lava. | boolean | false        |


# Possessive Pigmen

## Description

Makes pigmen angry when you mine certain blocks near them.

## Options

| Name    | Description                                              | Type      | Default             |
| ------- | -------------------------------------------------------- | --------- | ------------------- |
| enabled | Whether this tweak is enabled.                           | boolean   | false               |
| radius  | The radius of pigmen to make angry.                      | double    | 20.0                |
| anger   | The anger level to set the pigmen to.                    | integer   | 30                  |
| blocks  | The list of blocks pigmen will get angry for when mined. | item list | NETHER\_QUARTZ\_ORE |


# Random Creeper Fuse

## Description

Randomized the fuse length of a creeper.

## Options

| Name      | Description                       | Type    | Default |
| --------- | --------------------------------- | ------- | ------- |
| enabled   | Whether this tweak is enabled.    | boolean | false   |
| min\_fuse | The minimum fuse length in ticks. | integer | 10      |
| max\_fuse | The maximum fuse length in ticks  | integer | 100     |


# Real Time Clock

## Description

Adds a command that displays the real time of how long the world has been up for.

## Options

| Name    | Description                                  | Type    | Default                                                                                                                                     |
| ------- | -------------------------------------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------- |
| enabled | Whether this tweak is enabled.               | boolean | false                                                                                                                                       |
| command | The name of the command to register.         | string  | realtimeclock                                                                                                                               |
| message | The formt of  the command will respond with. | string  | \<green>The world has been active for \<white>\<days> \<green>days, \<white>\<hours> \<green>hours, and \<white>\<minutes> \<green>minutes. |


# Slime Cream

## Description

Turn slime balls into magma cream by right clicking it with a lava filled cauldron.

Turn magma cream into slime balls by right clicking it with a water filled cauldron.

## Options

| Name    | Description                    | Type    | Default |
| ------- | ------------------------------ | ------- | ------- |
| enabled | Whether this tweak is enabled. | boolean | false   |


# Soft Punch

## Description

Does no damage to entities when punched with certain items.

## Options

| Name    | Description                                    | Type      | Default |
| ------- | ---------------------------------------------- | --------- | ------- |
| enabled | Whether this tweak is enabled.                 | boolean   | false   |
| items   | The list of items this tweak should work with. | item list | FEATHER |


# Starting Inventory

## Description

Give players a starting inventory when they first join the server.

## Options

| Name    | Description                              | Type      | Default |
| ------- | ---------------------------------------- | --------- | ------- |
| enabled | Whether this tweak is enabled.           | boolean   | false   |
| items   | The list of items to give to the player. | item list | empty   |


# Stomp Torches

## Description

Makes it so players or entities can break torches by stomping (walking) over them.

## Options

| Name     | Description                                       | Type    | Default |
| -------- | ------------------------------------------------- | ------- | ------- |
| enabled  | Whether this tweak is enabled.                    | boolean | false   |
| players  | Whether players should be able to stomp torches.  | boolean | true    |
| entities | Whether entities should be able to stomp torches. | boolean | false   |


# Trader Notify

## Description

Get notified when a wandering trader spawns near a player.

## Options

| Name        | Description                                             | Type    | Default                                                                             |
| ----------- | ------------------------------------------------------- | ------- | ----------------------------------------------------------------------------------- |
| enabled     | Whether this tweak is enabled.                          | boolean | false                                                                               |
| message     | The format of the message to send when a trader spawns. | string  | \<white>A \<blue>Wandering Trader \<white>has spawned at \<yellow>\<x>, \<y>, \<z>. |
| play\_sound | Whether to play a sound to players.                     | boolean | true                                                                                |
| radius      | The radius of players to notify of a wandering trader.  | double  | 30.0                                                                                |


# Transferable Pets

## Description

Ability to transfer pets from yourself to another player by right clicking them with a lead while it is attached to the pet.

## Options

| Name    | Description                                   | Type        | Default                                                                   |
| ------- | --------------------------------------------- | ----------- | ------------------------------------------------------------------------- |
| enabled | Whether this tweak is enabled.                | boolean     | false                                                                     |
| pets    | A list of animals this tweak should work for. | entity list | <p>HORSE<br>CAMEL<br>CAT<br>DONKEY<br>LLAMA<br>MULE<br>PARROT<br>WOLF</p> |


# Tree Elevator

## Description

When standing on a sapling when it grows, you will be teleported to the top of the tree.

## Options

| Name    | Description                                                      | Type    | Default |
| ------- | ---------------------------------------------------------------- | ------- | ------- |
| enabled | Whether this tweak is enabled.                                   | boolean | false   |
| range   | How far you need to be from a sapling for this tweak to trigger. | double  | 0.5     |


# Tree Twerk

## Description

Grow trees faster by twerking near them.

## Options

| Name    | Description                                                      | Type    | Default |
| ------- | ---------------------------------------------------------------- | ------- | ------- |
| enabled | Whether this tweak is enabled.                                   | boolean | false   |
| radius  | How far you need to be from a sapling for this tweak to trigger. | integer | 3       |


# Unlock All Recipes

## Description

Unlocks all recipes for a player when they join the server.

## Options

| Name    | Description                    | Type    | Default |
| ------- | ------------------------------ | ------- | ------- |
| enabled | Whether this tweak is enabled. | boolean | false   |


# Unstable TNT

## Description

Sets a TNT to unstable TNT when a player right clicks it with gunpowder. Unstable TNT will instantly explode when broken like the legacy days.

## Options

| Name    | Description                    | Type    | Default |
| ------- | ------------------------------ | ------- | ------- |
| enabled | Whether this tweak is enabled. | boolean | false   |


# Weakened Bedrock

## Description

Weakens bedrock and slowly turns it into stone when a lingering potion of weakness is thrown onto it.

## Options

| Name    | Description                                               | Type       | Default                                          |
| ------- | --------------------------------------------------------- | ---------- | ------------------------------------------------ |
| enabled | Whether this tweak is enabled.                            | boolean    | false                                            |
| radius  | The radius of blocks around the impact to weaken.         | integer    | 3                                                |
| chance  | The chance for each block to weaken.                      | integer    | 50                                               |
| speed   | The speed in ticks of how fast it will weaken each block. | integer    | 10                                               |
| worlds  | The list of worlds this mechanic will work in.            | world list | <p>world<br>world\_nether<br>world\_the\_end</p> |


# Wither Flesh

## Description

Mobs drop rotten flesh when killed by a wither.

## Options

| Name    | Description                           | Type    | Default |
| ------- | ------------------------------------- | ------- | ------- |
| enabled | Whether this tweak is enabled.        | boolean | false   |
| chance  | The chance for this tweak to trigger. | integer | 100     |
| amount  | The amount of rotten flesh to drop.   | integer | 1       |


# XP Bottling

## Description

Adds the ability to bottle up XP by right clicking an empty glass bottle on an enchanting table.

## Options

| Name            | Description                            | Type    | Default |
| --------------- | -------------------------------------- | ------- | ------- |
| enabled         | Whether this tweak is enabled.         | boolean | false   |
| xp\_per\_bottle | The amount of XP to bottle per bottle. | integer | 100     |


# Zombie Pickaxe

## Description

Chance for zombies to spawn with a pickaxe when below a certain Y level.

## Options

| Name                       | Description                                                  | Type    | Default |
| -------------------------- | ------------------------------------------------------------ | ------- | ------- |
| enabled                    | Whether this tweak is enabled.                               | boolean | false   |
| y\_level                   | The y level zombies need to spawn for this tweak to trigger. | integer | 50      |
| chances.none               | The chance for a zombie to not hold a pickaxe.               | integer | 50      |
| chances.wooden\_pickaxe    | The chance for a zombie to hold a wooden pickaxe.            | integer | 20      |
| chances.stone\_pickaxe     | The chance for a zombie to hold a stone pickaxe.             | integer | 10      |
| chances.iron\_pickaxe      | The chance for a zombie to hold a iron pickaxe.              | integer | 5       |
| chances.golden\_pickaxe    | The chance for a zombie to hold a gold pickaxe.              | integer | 5       |
| chances.diamond\_pickaxe   | The chance for a zombie to hold a diamond pickaxe.           | integer | 5       |
| chances.netherite\_pickaxe | The chance for a zombie to hold a netherite pickaxe.         | integer | 5       |


# Blasted Ore Blocks

## Description

Allows you to smelt raw ore blocks directly into its block version using a blast furnace. Works with raw iron, copper, and gold.

## Recipe

<figure><img src="/files/Flbjw7lgKqJSndl7tpgF" alt=""><figcaption></figcaption></figure>


# Craftable Bell

## Description

Allows you to craft a bell rather than having to find them at a village or ruined portal.

## Recipe

<figure><img src="/files/tSn7tI5LPf1elvCu0m2A" alt=""><figcaption></figcaption></figure>


# Craftable Enchanted Golden Apple

## Description

Allows you to craft an enchanted golden apples like in the old days.

## Recipe

<figure><img src="/files/9Q1FwkIaGXVsC8xvrI5y" alt=""><figcaption></figcaption></figure>


# Dropper to Dispenser

## Description

Allows you to convert a dropper to a dispenser by using the ingredients from a bow.

## Recipe

<figure><img src="/files/4iDvs8m9j3xRYQpHrOW9" alt=""><figcaption></figcaption></figure>


# Sticky Honey Piston

## Description

Allows you to craft a sticky piston using a honeycomb rather than a slimeball.

## Recipe

<figure><img src="/files/dyqIZEWnQjTtk4pNJrN7" alt=""><figcaption></figcaption></figure>


# Turtle Box

## Description

Allows you to craft a green shulker box using turtle helmets because they have shells too.

## Recipe

<figure><img src="/files/C1p9JRLqouJxOKCA8KUj" alt=""><figcaption></figcaption></figure>


# Unpackable Ice

## Description

Allows you to unpack blue ice into 9 packed ice and packed ice into 9 ice.

## Recipe

<figure><img src="/files/eY8gek1lqSu2v8y9c7Ep" alt=""><figcaption></figcaption></figure>

<figure><img src="/files/K8sfnuScfnUpECBu7Owc" alt=""><figcaption></figcaption></figure>


# Unpackable Nether Wart

## Description

Allows you to unpack nether wart blocks into 9 nether wart.

## Recipe

<figure><img src="/files/GmmOgZ9BpVDDgdIiWY8g" alt=""><figcaption></figcaption></figure>


# Unpackable Wool

## Description

Allows you to unpack any color of wool back into string.

## Recipe

<figure><img src="/files/uotaJ5p4aBv169i907jz" alt=""><figcaption></figcaption></figure>


# Zombie Leather

## Description

Allows you to smelt rotten flesh into leather.

## Recipe

<figure><img src="/files/gIAZqqGjL3l0x6OND23u" alt=""><figcaption></figcaption></figure>


