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

  • Skin Browser
  • Cape Gallery
  • Seed Vault
  • Blog
  • Guides

Database

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

Tools

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

Mods & Packs

  • Mods
  • Plugins
  • Resource Packs
  • Shaders
  • Datapacks

Site & Legal

  • About
  • Authors
  • Editorial Policy
  • Corrections
  • Contact
  • Privacy Policy
  • Terms of Service
  • DMCA
  • Sitemap

© 2026 MinecraftBible. Not affiliated with Mojang or Microsoft.

PrivacyTermsContact
RepliCore
ModMIT

RepliCore

Provides a method for item replication

1.3K
Downloads
0
Followers
4 months ago
Updated
📦
8
Versions
game-mechanicsutilityfabricforge
Download Latestv1.0.3View on Modrinth

📖About RepliCore

Basic Gameplay

  1. Added replication cores of different qualities to copy items under various conditions.
  2. Defeating the Ender Dragon automatically grants all nearby players materials to craft replication cores: Dragon Soul Crystal. Drops 3 on the first kill and 1 on subsequent kills (configurable in the settings file).
  3. Replicating items requires a Replication Table. Each replication consumes experience levels, calculated based on the item count and number/levels of enchantments (configurable in the configuration file).
  4. Experience cost formula: Final Cost (rounded up) = Item Count × Item Cost + Sum of (Enchantment Level × Enchantment Cost)

Screenshots

Preview


Configuration Guide

{
  // Enable whitelist
  "whitelistEnabled": false,
  // Replication whitelist
  "whitelist": [
    // "Item ID / #Item Tag / @Mod ID / $Regex"
    "item_id",
    "#item_tag",
    "@minecraft",
    "$minecraft:.*_sword"
  ],
  // Enable blacklist
  "blacklistEnabled": false,
  // Replication blacklist
  "blacklist": [
    // "Item ID / #Item Tag / @Mod ID / $Regex"
    "item_id",
    "#item_tag",
    "@minecraft",
    "$minecraft:.*_sword"
  ],
  // Copying replication cores is prohibited
  "forbidReplicatingCores": true,
  // Dragon Soul Crystal drop count
  "crystalDroppingCount": 1,
  // Dragon Soul Crystal drop count (first kill)
  "firstCrystalDroppingCount": 3,
  // Max drop range for crystals (blocks)
  "maxDropDistance": 256,
  // Cost settings
  "costConfig": {
    // Default item cost
    "defaultCost": 0.25,
    // Custom item costs
    "customCosts": {
      // "Item ID": Cost
      "item_id": 0.5,
      "item_id2": 1.0
    },
    // Enable enchantment cost calculation
    "calculateEnchantmentCosts": true,
    // Default enchantment cost
    "defaultEnchantmentCost": 2.0,
    // Ignore cursed enchantments
    "ignoreCurses": true,
    // Custom enchantment costs
    "customEnchantmentCosts": {
      // "Enchantment ID": Cost
      "enchantment_id": 1.0,
      "enchantment_id2": 1.5
    },
    // Default container config
    "defaultContainerConfig": {
      // Whether to calculate the cost of items in the container
      "enabled": true,
      // Whether to recursively calculate the cost of items in the container
      "recursive": true,
      // Whether to exclude the original cost of container
      "excludeOriginalCost": false,
      // The NBT tag path of container to parse items and use '.' to split
      // The last element must be the list type data
      "tag": "BlockEntityTag.Items"
    },
    // Customize container config, fields are the same as above
    "customContainerConfigs": {
      // "Item ID": Config
      "minecraft:bundle": {
        "enabled": true,
        "recursive": true,
        "excludeOriginalCost": false,
        "tag": "Items"
      }
    }
  }
}

👥 Team & Contributors

iMoonDay
iMoonDayOwner

⚙️ Compatibility

Environment
✅ Client & Server
Loaders
fabricforge
Minecraft Versions
1.20.1

🔗 Links

Modrinth Page