TailsLib

⭐ — (0 endorsements) 📥 11 downloads 📌 v1.0.0 📅 6/19/2026
🟡 Updated this year

By ThIsIsTails · equipment

⬇ Download Mod Source: Modrinth ↗ 📅 Updated: 6/5/2026 📅 Created: 6/19/2026

🔍 Analysis

  • 🏆 #40 of 59 equipment mods in this game by downloads

📋 About This Mod

# TailsLib This project still under heavy development! TailsLib is a library that allows developers to create custom items and blocks through code with almost no effort. ## How to use it? ### Java Create new java file and implement CustomItem. > MyItem.java ```java public class TestItem implements CustomItem { // ID of this item. @Override public String id() { return "myitem"; } // Basic builder for this item. @Override public CustomItemBuilder createBuilder() { return new CustomItemBuilder(Material.DIAMOND) // Material of this item in-game .name("My own item.") // Display name .loreString(List.of("Hello!")); // Adding lore strings. (.lore for Component#text) } // Handling left click. @Override public void leftClick(CustomItemRuntime item, PlayerInteractEvent event) { event.getPlayer().sendMessage("Heya, you left clicked me!"); // Sending message } } ``` Register your item in your main class. ```java public class Main extends JavaPlugin { @Override public void onEnable() { ... CustomItemManager.getManager().register(new MyItem()); ... } @Override public void onDisable() { // Plugin shutdown logic } } ``` Enjoy! ### Installation Check (https://thisistails.gitbook.io/tailslib) for more info and versions. Gradle ```kt repositories { ... maven("https://repo.papermc.io/repository/maven-public/") ... } dependencies { ... compileOnly("ru.thisistails:TailsLib:VERSION") ... } ```

This project still under heavy development!

TailsLib is a library that allows developers to create custom items and blocks through code with almost no effort.

## How to use it?

Create new java file and implement CustomItem.

> MyItem.java ```java public class TestItem implements CustomItem {

// ID of this item. @Override public String id() { return "myitem"; }

// Basic builder for this item. @Override public CustomItemBuilder createBuilder() { return new CustomItemBuilder(Material. DIAMOND) // Material of this item in-game .name("My own item.") // Display name .loreString(List.of("Hello!")); // Adding lore strings. (.lore for Component#text) }

// Handling left click. @Override public void leftClick(CustomItemRuntime item, PlayerInteractEvent event) { event.getPlayer().sendMessage("Heya, you left clicked me!"); // Sending message } } ```

Register your item in your main class.

```java public class Main extends JavaPlugin { @Override public void onEnable() { ... CustomItemManager.getManager().register(new MyItem()); ... }

@Override public void onDisable() { // Plugin shutdown logic }

### Installation

Check (https://thisistails.gitbook.io/tailslib) for more info and versions.

Gradle ```kt repositories { ... maven("https://repo.papermc.io/repository/maven-public/") ... }

dependencies { ... compileOnly("ru.thisistails:TailsLib:VERSION") ... } ```

🤖 AI-enhanced — based on mod data

📊 Mod Details

Game
Minecraft Plugins
Author
ThIsIsTails
Version
1.0.0
Downloads
11
Endorsements
0
Category
equipment
Created
6/19/2026
Updated
6/5/2026
Game Versions
1.21.1
Tags
equipment, library, utility

🔧 How to Install Minecraft Plugins Mods

Download from Modrinth. Use Prism Launcher or drop into your mods folder.

📖 Full step-by-step install guide for Minecraft Plugins →

Visit the official mod page for specific installation instructions for this mod.

🎮 Need cheat codes or console commands? Check ur gaming wiki for Minecraft Plugins commands, item IDs, and more.

❓ Frequently Asked Questions

Which Minecraft Plugins versions does TailsLib support?

The author lists 1.21.1. Other versions may work but are untested by the author.

What is the latest version of TailsLib?

Version 1.0.0, published 2026-06-05 with 11 downloads recorded at the source.

Keep browsing — more Minecraft Plugins mods await

📋 All Minecraft Plugins Mods 🏆 Top 25 📂 More equipment 👤 More by ThIsIsTails 🔎 Similar Mods 🌐 Best equipment (All Games) 🔀 Check Compatibility ⚖️ Compare Mods 🆕 New Mods