Logo
MINECRAFTBIBLE
Items
Items

All game items

Blocks
Blocks

Building blocks

Mobs
Mobs

Creatures & monsters

Biomes
Biomes

World biomes

Structures
Structures

Generated structures

Recipes
Recipes

Crafting guides

Advancements
Advancements

Achievements

Loot Tables
Loot Tables

Drop rates

Tags
Tags

Item groupings

All Versions
View all data →
Capes
Cape ArchiveNEW

Browse rare Minecon capes, OptiFine capes, and custom capes from players worldwide

Browse

Player Database
Player DatabasePopular

Search any player

Skin Browser
Skin Browser

Browse & download skins

Cape Gallery
Cape GalleryNEW

Minecon & OptiFine capes

Seed Vault
Seed Vault

Curated seeds

Learn

Guides
GuidesNew

Tutorials & tips

Blog
Blog

News & updates

Community

Community Hub
Community HubHub

Posts, discussions & more

All Versions
View community →
Seed Analyzer
Seed Analyzer

World seed analysis

Loot Explorer
Loot Explorer

Drop rates

Crafting Calculator
Crafting Calculator

Material planning

Enchant Calculator
Enchant Calculator

Probability math

Redstone Lab
Redstone Lab

Signal timing

Trading Profit
Trading Profit

Villager ROI

All Versions
View all tools →
Mods
Mods

Browse all mods

Plugins
Plugins

Server plugins

Resource Packs
Resource Packs

Textures & sounds

Shaders
Shaders

Visual enhancements

Datapacks
Datapacks

World logic

Scanner
Mod Intelligence

Scan & analyze any mod

All Versions
View all mods →
Loading...
IntroductionIntroductionVersion HistoryVersion HistoryGuidesGuidesBlog & NewsBlog & News
ItemsItemsBlocksBlocksMobsMobsRecipesRecipesBiomesBiomesStructuresStructuresAdvancementsAdvancementsLoot TablesLoot TablesTagsTags
ModsModsPluginsPluginsResource PacksResource PacksShadersShadersDatapacksDatapacks

MinecraftBible

The Ultimate Wiki

Logo
MINECRAFTBIBLE

The ultimate Minecraft reference. Every item, block, mob, and recipe documented with precision.

Community

  • Player Database
  • Skin Browser
  • Cape Gallery
  • Community Hub
  • Seed Vault

Database

  • Items
  • Blocks
  • Mobs
  • Recipes
  • Biomes
  • Structures

Tools

  • Seed Analyzer
  • Mod Intelligence
  • Crafting Calculator
  • Enchant Calculator

Mods & Packs

  • Mods
  • Plugins
  • Resource Packs
  • Shaders
  • Datapacks

© 2026 MinecraftBible. Not affiliated with Mojang or Microsoft.

PrivacyTermsContact
HyphaShop
PluginGPL-3.0-or-later

HyphaShop

An ultra-customizable and high-performance shop plugin featuring a powerful custom scripting system.

192
Downloads
1
Followers
2 months ago
Updated
📦
10
Versions
economygame-mechanicsmanagementfoliapaperpurpur
Download Latestv0.5.1-BetaView on Modrinth

📖About HyphaShop

Note: Until this plugin's version number exits the Beta stage, it is not recommended for production use. Additionally, an English Wiki will not be provided prior to that point. Please treat it as a trial. If you encounter any issues while testing the plugin, feel free to report them on Discord or GitHub Issues.

Official Document: https://ykdz.github.io/HyphaDocs/

HyphaShop

A highly dynamic, script-assisted, high-performance shop plugin.

Features

  • Progressive — advanced features are optional
  • Random product pricing
  • Random product quantity
  • Conditional product listing
  • Product stock
  • Reusable product configurations (no need to repeat setups)
  • Product rarity
  • Bundle products
  • Basic attribute support (Skull, Flag, Trim, Potion Effect, Custom Model Data)
  • Automatic translation of Vanilla item names
  • Merchant mode for shops
  • Trade logging
  • Unified cart-based transactions
  • Fully translatable content
  • Comprehensive GUI system
  • JavaScript-like scripting system

Progressive

If you only need a simple shop plugin to sell vanilla items, you can follow the configuration example in product/wools.yml.

All advanced features are completely optional and won’t consume extra cpu if unused.

Random Product Pricing

Add the following configuration to enable random pricing like shown in the image:

default-configs:
  buy-price:
    mean: 80
    dev: 10
    round: true
  sell-price:
    mean: 5
    dev: 2

Random Price

Random Product Quantity

Product quantity can accept a script string as a value. It can also adjust pricing based on quantity automatically.

default-configs:
  item:
    amount: 8 + nextUniform(8, 16)
  buy-price:
    formula: base * (1 + (Math.random() * 2 - 1) * buy_range) * product_amount
  sell-price:
    formula: base * (1 + (Math.random() * 2 - 1) * sell_range) * product_amount

products:
  GOLD_ORE:
    item:
      base: gold_ore
    buy-price:
      context: const base = 200
    sell-price:
      context: const base = 70

Random Amount

Conditional Product Listing

Scripts can participate in plugin logic at various hooks, including controlling whether a product is listed.

default-configs:
  actions:
    on-before-list:
      - |
        const timeStr = papi("%world_time_world%").split(":");
        const hours = timeStr[0];
        number(hours) >= 20 || number(hours) < 6;
      - total_history_bought_amount <= 64

Product Stock

Products can have their own inventory. Once stock is depleted, they can no longer be purchased.

default-configs:
  stock:
    global:
      size: 1024
      replenish: true
      overflow: true
      inherit: true

Stock

Reusable Product Configurations

For similar products (e.g., all colors of wool), you can reuse default configurations. This greatly reduces setup complexity.

default-configs:
  item:
    amount: 16
  buy-price:
    mean: 80
    dev: 10
    round: true
  sell-price:
    mean: 5
    dev: 2
  rarity: uncommon
  cacheable: true

products:
  LIGHT_BLUE_WOOL:
    item:
      base: light_blue_wool

  YELLOW_WOOL:
    item:
      base: yellow_wool

  LIME_WOOL:
    item:
      base: lime_wool

Default Configs

Product Rarity

You can assign a rarity level to each product. This affects the probability of random listing and can also serve as decoration.

rarities:
  common:
    name: "<gray>Common"
    weight: 100
  uncommon:
    name: "<white>Uncommon"
    weight: 80
  rare:
    name: "<dark_purple>Rare"
    weight: 60

Bundle Products

Products can be bundles that contain multiple other products.

When calculating a bundle’s price, the total price of its contents is available as a context variable.

products:
  WARM_COLOR_WOOL_BUNDLE:
    icon:
      base: barrel
      amount: 1
      name: "<white>Warm toned wool bundle"
      lore:
        - "<gray>A bundle that contains all"
        - "<gold>warm toned<gray>wool."
    buy-price:
      formula: bundle_total_new * 0.8
    sell-price:
      disable: true
    bundle-contents:
      - YELLOW_WOOL
      - BROWN_WOOL
      - MAGIC_ORANGE_WOOL
      - RED_WOOL:3
    rarity: rare

Bundle

Basic Attribute Support

Thanks to high-version Data Component features, the plugin supports basic attributes for items.

Armor Trim
Potion Effect

Automatic Translation of Vanilla Item Names

Using the Adventure API's Translatable Component mechanism, vanilla item names are automatically translated with no need of manual configuration or downloading language files.

products:
  LIME_WOOL:
    item:
      base: lime_wool

Vanilla Name Translation

Merchant Mode

Shops can have their own virtual balance. Once depleted, they can no longer buy products from players.

settings:
  merchant:
    balance: 1000
    replenish: true
    overflow: true
    inherit: true

Merchant

Trade Logging

Each player’s transactions are recorded in a database for review by themselves or server administrators.

Log

Cart-Based Transactions

In addition to traditional direct purchases, players can add multiple products to a cart and purchase them all at once.

Cart

Comprehensive GUI System

Beyond the shop menu, you can use the same GUI configuration logic to create custom GUIs.

JavaScript-Like Scripting System

This plugin includes a built-in scripting system with syntax similar to JavaScript (simplified for function calls), offering high configurability.

👥 Team & Contributors

YK_DZ
YK_DZOwner

⚙️ Compatibility

Environment
🖥️ Server-side
Loaders
foliapaperpurpur
Minecraft Versions
1.211.21.11.21.21.21.31.21.41.21.51.21.61.21.7+4 more

🔗 Links

Modrinth Page