-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6501b09
commit 4c11812
Showing
6 changed files
with
152 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#If maxBlocksBase from veinmining-server.toml is 0, determines how to activate vein mining. | ||
#IMPORTANT: When using the "HOLD_KEY_DOWN" setting, remember to set a keybinding by going to Options > Controls > Key Binds. | ||
#Allowed Values: STANDING, CROUCHING, HOLD_KEY_DOWN | ||
activationState = "STANDING" | ||
#If maxBlocksBase from veinmining-server.toml is greater than 0, determines how to activate vein mining. | ||
#IMPORTANT: When using the "HOLD_KEY_DOWN" setting, remember to set a keybinding by going to Options > Controls > Key Binds. | ||
#Allowed Values: STANDING, CROUCHING, HOLD_KEY_DOWN | ||
activationStateWithoutEnchantment = "HOLD_KEY_DOWN" | ||
#If enabled, users will be sent warnings about improper enchantment usage. | ||
enableEnchantmentWarnings = true | ||
#If enabled, instructions on how to vein mine will appear in the tooltip of enchanted items. | ||
enableEnchantmentTooltips = true | ||
#If enabled, instructions on how to vein mine will appear above the hotbar when switching to enchanted items. | ||
enableEnchantmentNotifications = false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#The rarity of the enchantment. | ||
#Allowed Values: COMMON, UNCOMMON, RARE, VERY_RARE | ||
rarity = "RARE" | ||
#The number of levels of the enchantment. | ||
#Range: 1 ~ 5 | ||
levels = 1 | ||
#If enabled, the enchantment is considered a treasure enchantment. | ||
isTreasure = false | ||
#If enabled, the enchantment can be offered by villagers for trade. | ||
isVillagerTrade = true | ||
#If enabled, the enchantment can generate in loot. | ||
isLootable = true | ||
#If enabled, the enchantment can be applied at the enchantment table. | ||
canApplyAtEnchantingTable = true | ||
#If enabled, the enchantment can be applied on books. | ||
canApplyOnBooks = true | ||
#The minimum enchantability required for the first enchantment level. | ||
#Range: 1 ~ 100 | ||
minEnchantabilityBase = 15 | ||
#The additional enchantability required for each enchantment level after the first. | ||
#Range: 1 ~ 100 | ||
minEnchantabilityPerLevel = 5 | ||
#Enchantments that cannot be applied together with the enchantment. | ||
incompatibleEnchantments = [] | ||
#Items that the enchantment can be applied on. | ||
itemsList = ["is:tool", "quark:pickarang", "quark:flamerang"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
#The minimum destroy speed the used tool needs on the block to vein mine. | ||
#Range: 0.0 ~ 100.0 | ||
requiredDestroySpeed = 1.0 | ||
#If enabled, vein mining will not activate if the used tool cannot harvest drops from the source block. | ||
requireCorrectTool = true | ||
#The maximum number of blocks to vein mine without the enchantment. | ||
#Range: 0 ~ 1000 | ||
maxBlocksBase = 20 | ||
#The maximum number of blocks to vein mine per level of the enchantment. | ||
#Range: 1 ~ 1000 | ||
maxBlocksPerLevel = 50 | ||
#If enabled, vein mining can mine diagonally. | ||
diagonalMining = true | ||
#If enabled, vein mining will stop when the tool can no longer be used. | ||
limitedByDurability = true | ||
#If enabled, vein mining will move drops from blocks to the source location. | ||
relocateDrops = true | ||
#If enabled, vein mining will never break tools. | ||
preventToolDestruction = true | ||
#If enabled, vein mining will damage the tool for each block mined. | ||
addToolDamage = true | ||
#The multiplier to tool damage from blocks that are vein mined. | ||
#Range: 0 ~ 1000 | ||
toolDamageMultiplier = 1 | ||
#If enabled, vein mining will cause player exhaustion for each block mined. | ||
addExhaustion = true | ||
#The multiplier to player exhaustion from blocks that are vein mined. | ||
#Range: 0.0 ~ 1000.0 | ||
exhaustionMultiplier = 0.5 | ||
#Determines the vein mineable blocks based on a preset option or a configured list. | ||
#Allowed Values: CONFIG_LIST, ALL, ORES, ORES_LOGS, ORES_STONE, ORES_STONE_LOGS, NO_BLOCK_ENTITIES | ||
blocks = "CONFIG_LIST" | ||
#The blocks or block tags for vein mining if blocks is set to "CONFIG_LIST". | ||
blocksList = [ | ||
"#c:ores", | ||
"#forge:ores", | ||
"#forge:sand", | ||
"#forge:clay", | ||
"#forge:stone", | ||
"create_new_age:thorium_ore", | ||
] | ||
#Determines if blocksList contains allowed blocks or denied blocks. | ||
#Allowed Values: ALLOW, DENY | ||
blocksListType = "ALLOW" | ||
#The groups of blocks or block tags that are vein mined together. | ||
groupsList = [ | ||
"#forge:obsidian", | ||
"#forge:ores/coal", | ||
"#forge:ores/diamond", | ||
"#forge:ores/emerald", | ||
"#forge:ores/gold", | ||
"#forge:ores/iron", | ||
"#forge:ores/lapis", | ||
"#forge:ores/redstone", | ||
"#forge:ores/quartz", | ||
"#forge:ores/netherite_scrap", | ||
"#forge:ores/copper", | ||
"#forge:ores/tin", | ||
"#forge:ores/osmium", | ||
"#forge:ores/uranium", | ||
"#forge:ores/fluorite", | ||
"#forge:ores/lead", | ||
"#forge:ores/zinc", | ||
"#forge:ores/aluminum", | ||
"#forge:ores/nickel", | ||
"#forge:ores/silver", | ||
"#forge:ores/apatite", | ||
"#forge:ores/cinnabar", | ||
"#forge:ores/niter", | ||
"#forge:ores/ruby", | ||
"#forge:ores/sapphire", | ||
"#forge:ores/sulfur", | ||
"#forge:clay", | ||
"#forge:sand", | ||
"#forge:stone", | ||
"create_new_age:thorium_ore", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name = "Vein Mining (Fabric/Forge/Quilt)" | ||
filename = "veinmining-forge-1.5.0+1.20.1.jar" | ||
side = "both" | ||
|
||
[download] | ||
hash-format = "sha1" | ||
hash = "e484d2f2556bb638c4c3da5e5542eae70035f98a" | ||
mode = "metadata:curseforge" | ||
|
||
[update] | ||
[update.curseforge] | ||
file-id = 5481492 | ||
project-id = 431611 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters