
RepliCore
Provides a method for item replication
- Загрузки
- 2K
- Подписчики
- 1
- Обновлён
- 23 января 2026 г.
- Лицензия
- MIT
Опубликован 11 марта 2025 г.
Basic Gameplay
- Added replication cores of different qualities to copy items under various conditions.
- 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).
- 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).
- Experience cost formula:
Final Cost (rounded up) = Item Count × Item Cost + Sum of (Enchantment Level × Enchantment Cost)
Screenshots

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"
}
}
}
}
Центр версий
8 версийЧенджлог
1.0.3Релиз1.20.1 · 23 января 2026 г.
- Add whitelist | 添加白名单
- Fixed the issue where dragon soul crystals could not be dropped normally | 修复无法正常掉落龙魂结晶的问题
- Blacklist and whitelist support item IDs, tags (starting with #), mod IDs (starting with @), or regular expressions (starting with $) | 黑白名单支持物品ID、标签(以#开头)、模组ID(以@开头)或正则表达式(以$开头)
1.0.3Релиз1.20.1 · 23 января 2026 г.
- Add whitelist | 添加白名单
- Fixed the issue where dragon soul crystals could not be dropped normally | 修复无法正常掉落龙魂结晶的问题
- Blacklist and whitelist support item IDs, tags (starting with #), mod IDs (starting with @), or regular expressions (starting with $) | 黑白名单支持物品ID、标签(以#开头)、模组ID(以@开头)或正则表达式(以$开头)
1.0.2Релиз1.20.1 · 2 апреля 2025 г.
- The sound effects will only be played once when copying with multiple replication cores
- By default, the replication cores are prohibited as the replication target.
- Can identify container items containing items, such as shulker boxes, bundles, chest with NBTs, etc. (Can be customized)
1.0.2Релиз1.20.1 · 2 апреля 2025 г.
- The sound effects will only be played once when copying with multiple replication cores
- By default, the replication cores are prohibited as the replication target.
- Can identify container items containing items, such as shulker boxes, bundles, chest with NBTs, etc. (Can be customized)
1.0.1Релиз1.20.1 · 19 марта 2025 г.
- Replication cores can stack to 16
1.0.1Релиз1.20.1 · 19 марта 2025 г.
- Replication cores can stack to 16
Комментарии
Загружаем…