Download Simple Bucket Mobs — Minecraft Mods — MetaMods
Simple Bucket Mobs

Simple Bucket Mobs

Active

Downloads

0

Last update

9 months ago

Versions

1.19.4 — 1.21.4
Server
Game mechanics
Mobs
Utils

Simple Bucket Mobs

Immerse yourself in a world of amazing possibilities with this mod that allows you to catch mobs with a regular bucket! Simply approach any creature and use the bucket - now you can carry them with you and release them in the desired location.

Permission System

The mod offers a flexible access management system:

  • simplebucketmobs.bucket.<mob> - allows catching a specific mob (disabled by default)
  • simplebucketmobs.bucket.all - allows catching all available mobs (operators only)
  • simplebucketmobs.reload - reload configuration files (operators only)
  • simplebucketmobs.debucket - view saved NBT data from mob bucket in chat (operators only)

Texture Configuration

The texture.yml file is responsible for configuring custom models for buckets. You can create unique textures for different mob variants.

Basic Settings

The simplest way is to use the "default" parameter:

SHEEP:
  default: 1
PIG:
  default: 2

In this example, all sheep will use model data 1, and all pigs will use model data 2.

Advanced Settings via NBT

You can configure textures based on mob NBT tags. For example, for a villager with a specific profession:

VILLAGER:
  VillagerData:
    profession:
      "minecraft:none": 1

Other usage examples:

Parrot (color variant):

PARROT:
  default: 0
  Variant:
    1: 1

Sheep (wool color):

SHEEP:
  default: 0
  Color:
    0b: 0
    1b: 1
    2b: 2

Important: The NBT value search system is not recursive and will not find all possible values.