mirror of
https://github.com/alexcrea/CustomAnvil.git
synced 2026-06-23 16:16:17 +02:00
dugeon and taverns support (#75)
This commit is contained in:
commit
db6bd4a998
5 changed files with 102 additions and 1 deletions
|
|
@ -24,7 +24,8 @@ object DataPackDependency {
|
|||
*/
|
||||
private val LASTEST_VERSION = mapOf(
|
||||
Pair("bracken", Version(1, 11, 0)),
|
||||
Pair("enchantplus", Version(1, 13, 0))
|
||||
Pair("enchantplus", Version(1, 13, 0)),
|
||||
Pair("dungeons_and_taverns", Version(1, 13, 0))
|
||||
)
|
||||
|
||||
val enabledDatapacks: List<String>
|
||||
|
|
@ -53,6 +54,11 @@ object DataPackDependency {
|
|||
continue
|
||||
}
|
||||
|
||||
if (packName.contains("Dungeons and Taverns", ignoreCase = true)) {
|
||||
handlePack("dungeons_and_taverns")
|
||||
continue
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,21 @@
|
|||
"nova_structures:power": ['#dungeon_at_might', '#dungeon_at_powah']
|
||||
"nova_structures:ghasted": ['#crossbow_conflict']
|
||||
"nova_structures:gravity": ['#crossbow_conflict']
|
||||
"nova_structures:antidote": ['#protection_enchant_conflict']
|
||||
"nova_structures:piercing": ['#dungeon_at_structure_bow']
|
||||
"nova_structures:traveler": ['#dungeon_at_boots']
|
||||
"nova_structures:multishot": ['#dungeon_at_structure_bow']
|
||||
"nova_structures:wax_wings": ['#dungeon_at_elytra']
|
||||
"nova_structures:aerials_bane": ['#dungeon_at_powah', '#sword_enchant_conflict']
|
||||
"nova_structures:shulker_boss": ['minecraft:unbreaking']
|
||||
"nova_structures:illagers_bane": ['#sword_enchant_conflict']
|
||||
"nova_structures:wither_coated": ['#dungeon_at_sword_effect']
|
||||
"nova_structures:boss_behaviour": ['minecraft:unbreaking']
|
||||
"nova_structures:photosynthesis": ['#dungeon_at_repair']
|
||||
"nova_structures:shulker_miniboss": ['minecraft:unbreaking']
|
||||
"minecraft:soul_speed": ['#dungeon_at_boots']
|
||||
"minecraft:mending": ['#dungeon_at_repair']
|
||||
"minecraft:power": ['#dungeon_at_powah']
|
||||
"minecraft:unbreaking": ['#dungeon_at_elytra']
|
||||
"minecraft:infinity": ['#dungeon_at_structure_bow']
|
||||
"minecraft:fire_aspect": ['#dungeon_at_sword_effect']
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
"nova_structures:power": ['crossbow']
|
||||
"nova_structures:ghasted": ['crossbow']
|
||||
"nova_structures:gravity": ['crossbow']
|
||||
"nova_structures:antidote": ['chestplate']
|
||||
"nova_structures:outreach": ['chestplate']
|
||||
"nova_structures:piercing": ['bow']
|
||||
"nova_structures:spiteful": ['melee_weapons']
|
||||
"nova_structures:traveler": ['boots']
|
||||
"nova_structures:multishot": ['bow']
|
||||
"nova_structures:wax_wings": ['elytra']
|
||||
"nova_structures:aerials_bane": ['combat_tools']
|
||||
"nova_structures:shulker_boss": ['stick']
|
||||
"nova_structures:illagers_bane": ['melee_weapons']
|
||||
"nova_structures:wither_coated": ['mace', 'melee_weapons']
|
||||
"nova_structures:boss_behaviour": ['stick', 'flint']
|
||||
"nova_structures:photosynthesis": ['can_unbreak']
|
||||
"nova_structures:shulker_miniboss": ['stick']
|
||||
"nova_structures:conductivity_curse": ['metal']
|
||||
|
|
@ -0,0 +1,56 @@
|
|||
metal:
|
||||
type: include
|
||||
items:
|
||||
- shield
|
||||
- trident
|
||||
- flint_and_steel
|
||||
- shears
|
||||
- brush
|
||||
- mace
|
||||
- chainmail_chestplate
|
||||
- golden_chestplate
|
||||
- iron_chestplate
|
||||
- netherite_chestplate
|
||||
- chainmail_boots
|
||||
- golden_boots
|
||||
- iron_boots
|
||||
- netherite_boots
|
||||
- chainmail_leggings
|
||||
- golden_leggings
|
||||
- iron_leggings
|
||||
- netherite_leggings
|
||||
- chainmail_helmet
|
||||
- golden_helmet
|
||||
- iron_helmet
|
||||
- netherite_helmet
|
||||
- golden_pickaxe
|
||||
- iron_pickaxe
|
||||
- netherite_pickaxe
|
||||
- golden_axe
|
||||
- iron_axe
|
||||
- netherite_axe
|
||||
- golden_shovel
|
||||
- iron_shovel
|
||||
- netherite_shovel
|
||||
- golden_sword
|
||||
- iron_sword
|
||||
- netherite_sword
|
||||
- golden_hoe
|
||||
- iron_hoe
|
||||
- netherite_hoe
|
||||
- trial_key
|
||||
- ominous_trial_key
|
||||
|
||||
combat_tools:
|
||||
type: include
|
||||
groups:
|
||||
- melee_weapons
|
||||
- bow
|
||||
- crossbow
|
||||
- trident
|
||||
- mace
|
||||
|
||||
flint:
|
||||
type: include
|
||||
items:
|
||||
- flint
|
||||
Loading…
Add table
Add a link
Reference in a new issue