More Consumables - Eat Everything v1.1

Turn Any Item Into Consumables With Custom Effects
  • moreconsumables.png
  • Minecraft_1.21.11-Multiplayer3rd-partyServer2026-06-2722-20-50-ezgif.com-video-to-gif-converter.gif
  • moreconsumables.png
  • Minecraft_1.21.11-Multiplayer3rd-partyServer2026-06-2722-20-50-ezgif.com-video-to-gif-converter.gif

MoreConsumables
Turn Any Item into Food. Vanilla Eat & Drink Animations Included.

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Paper 1.21.4+ Eat & Drink Animations Unlimited Effects Custom Model Data Multi-Language

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━


What MoreConsumables Does

Most servers are stuck with vanilla food. Apples, steak, golden carrots. The same items everyone has used for a decade. You cannot make a diamond feel like a rare consumable. You cannot make a potion give four different effect combinations. You cannot make bamboo a viable snack.

MoreConsumables changes that. Right-click any item - bamboo, diamond, gold ingot, glowstone dust, even a glass bottle - and the player sees the native vanilla eat or drink animation. The item is consumed. Effects are applied. Sounds play. Particles spawn. All configured in a single YAML file.

This is not a workaround. It uses Paper's DataComponent API to inject the CONSUMABLE and FOOD components directly into the item stack. The client plays the real animation because it receives real, properly serialized data components. No ProtocolLib. No resource pack tricks. No fake animation packets.



━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Core Features

True Vanilla Animations
  • EAT animation with food crumb particles for solid items
  • DRINK animation with potion swirl particles for liquid items
  • Works on any Minecraft material - diamond, gold, bamboo, glass, anything
  • Uses Paper DataComponent API, not NMS reflection hacks

Full YAML Configuration
  • Every consumable configured in consumables.yml
  • Hunger restoration, saturation, cooldown in seconds
  • Eat sound, burp sound, particle type and amount
  • Unlimited potion effects per item with probability support
  • Economy cost (Vault), XP level requirement, permission node
  • World and region restrictions (WorldGuard)

Custom Items & Multiple Variants
  • Create multiple consumable entries for the same material
  • Three POTION variants in default config: 2-effect, 3-effect, 4-effect
  • Distinguish items by NBT tag (custom-item-id)
  • Custom Model Data support for resource pack textures
  • Glow effect toggle for custom items

Economy & Progression
  • Vault economy integration: charge players per consumption
  • XP level requirements to gate powerful items
  • Per-item permission nodes
  • World blacklist/whitelist mode
  • WorldGuard region restrictions

PlaceholderAPI
  • %moreconsumables_total% - total consumables loaded
  • %moreconsumables_cooldown_<material>% - remaining cooldown
  • %moreconsumables_consumed_<material>% - times consumed

GUI System
  • /consumables gui opens a browsable menu of all configured items
  • Click any item to see its effects, hunger, saturation, and cooldown
  • Configurable rows and update interval

Developer Friendly
  • Reload command with automatic config backup
  • Debug mode logs every injection, consumption, and event
  • Clean, documented Java codebase
  • Statistics tracking per player and per item
  • Cooldown cleanup task prevents memory leaks


━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Default Consumables

12 pre-configured items to get you started. All values are examples - change them to fit your server.

ItemTypeEffects
BambooEatSpeed I (4s)
Red MushroomEatRegeneration I (3s)
Brown MushroomEatRegen I (70%) or Nausea I (30%)
DiamondEatResistance + Regen + Absorption (10s)
Gold IngotEatSpeed + Haste (10s)
Glowstone DustEatNight Vision (20s) + Glowing
Potion (3 effects)DrinkSpeed + Jump + Night Vision (20s)
Potion of Fire (CMD 1001)DrinkFire Resistance (20s) + Strength (15s)
Potion of Ultimate (CMD 1002)DrinkInvis + Strength + Jump + Regen
Glass BottleDrinkInvisibility (15s)
Magma CreamDrinkFire Res (20s) + Strength (15s)
Nether WartDrinkInvis + Str + Jump + Regen


━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Example Configuration

Every value is documented. Adding a new consumable takes 30 seconds.

Code:
POTION_OF_FIRE:
  material: POTION
  hunger: 2
  saturation: 1.5
  cooldown: 30
  eat-sound: "ENTITY_GENERIC_DRINK"
  burp-sound: "ENTITY_PLAYER_BURP"
  particle-type: "FLAME"
  particle-amount: 14
  economy-cost: 0.0
  xp-requirement: 0
  custom-item: true
  custom-item-id: "potion_of_fire"
  custom-model-data: 1001
  consumption-type: "drink"
  effects:
    - type: "FIRE_RESISTANCE"
      duration: 400
      amplifier: 0
      probability: 100.0
    - type: "STRENGTH"
      duration: 300
      amplifier: 0
      probability: 100.0


━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Commands & Permissions

CommandPermissionDescription
/consumables give <player> <material> [amount]consume.giveGive a consumable to a player (preserves CMD)
/consumables listconsume.listList all configured consumables
/consumables guiconsume.guiOpen the consumables browser GUI
/consumables statsconsume.statsView your consumption statistics
/consumables reloadconsume.reloadReload config with automatic backup
/consumables helpconsume.helpShow command help

Consumption Permissions

PermissionDefaultDescription
consume.use.<material>trueAllow consuming a specific item
consume.bypass.cooldownfalseBypass all consumption cooldowns
consume.bypass.restrictionsfalseBypass world and region restrictions


━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Technical Specs

ServerPaper 1.21.4+, Java 21
DependenciesNone required. Vault, PlaceholderAPI, WorldGuard optional.
LanguagesEnglish, Polish. Add your own in /lang/
AnimationPaper DataComponent API (CONSUMABLE + FOOD)
Custom ItemsNBT tags, Custom Model Data, glow effect


━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Get MoreConsumables

Your server already has diamonds, gold, and potions.
Make them actually consumable - with real animations, configurable effects, and full balance control.


Any item. Real animation. Unlimited effects. One YAML file.

Drop it in, reload, and your players are eating diamonds.

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Buy a license now
$4.99
EULA
Standard EULA
Use on any projects you own with attribution
Support
Standard
Includes:
Download the resource
Access new updates
Support from the creator
Support duration
Lifetime
Share and earn
Refer this resource and earn a 5% commission.
226 Views
7 Purchases
4 Downloads
Apr 16, 2026 Published
Jun 27, 2026 Updated
Not yet rated
90 KB File size
Open source
  1. No
DRM-free
  1. Yes
Unobfuscated
  1. Yes
Type
  1. Gameplay
  1. Food
  1. Fun
Game mode
  1. Survival
  1. Skyblock
  1. Oneblock
Supported software
  1. Paper
Supported versions
  1. 1.21.11
  1. 1.21.8
  1. 1.21.5
  1. 1.21.4
  1. 1.21
Supported languages
  1. English
  1. Polish
Creator
Owner
Struggling to cover the costs of your server? Set up your own webstore with Tebex in under 30 seconds.
Host a lag-free Minecraft or Hytale server in minutes.
Get 25% off your first order with our link.
Recommended for you
Christmas Weapons & Tools plugin for Paper 1.21 to 1.21.10 custom items, abilities
5.00 star(s) 1 ratings
10 purchases
Simply solution for safely removing chunks in Minecraft
Not yet rated
8 purchases
Transform your server with exciting storage wars events!
Not yet rated
8 purchases
Bring Quality Enchanting to Your Community
Not yet rated
8 purchases
A plugin that adds customizable gradient chat colors for players who have donated to the server.
5.00 star(s) 1 ratings
8 purchases
Share and earn
Refer this resource and earn a 5% commission.
226 Views
7 Purchases
4 Downloads
Apr 16, 2026 Published
Jun 27, 2026 Updated
Not yet rated
90 KB File size
Open source
  1. No
DRM-free
  1. Yes
Unobfuscated
  1. Yes
Type
  1. Gameplay
  1. Food
  1. Fun
Game mode
  1. Survival
  1. Skyblock
  1. Oneblock
Supported software
  1. Paper
Supported versions
  1. 1.21.11
  1. 1.21.8
  1. 1.21.5
  1. 1.21.4
  1. 1.21
Supported languages
  1. English
  1. Polish
Creator
Owner
Struggling to cover the costs of your server? Set up your own webstore with Tebex in under 30 seconds.
Host a lag-free Minecraft or Hytale server in minutes.
Get 25% off your first order with our link.
Recommended for you
Christmas Weapons & Tools plugin for Paper 1.21 to 1.21.10 custom items, abilities
5.00 star(s) 1 ratings
10 purchases
Simply solution for safely removing chunks in Minecraft
Not yet rated
8 purchases
Transform your server with exciting storage wars events!
Not yet rated
8 purchases
Bring Quality Enchanting to Your Community
Not yet rated
8 purchases
A plugin that adds customizable gradient chat colors for players who have donated to the server.
5.00 star(s) 1 ratings
8 purchases
Top