mirror of
https://git.fellies.tech/minecraft/fellies.git
synced 2021-02-13 10:18:48 +00:00
Reset changed configs
This commit is contained in:
25
config/apotheosis/apotheosis.cfg
Normal file
25
config/apotheosis/apotheosis.cfg
Normal file
@ -0,0 +1,25 @@
|
||||
# Configuration file
|
||||
client {
|
||||
# If apotheosis enchantments have tooltips on books. [default: true]
|
||||
B:"Enchantment Tooltips"=true
|
||||
}
|
||||
|
||||
general {
|
||||
# If the deadly module is loaded. [default: true]
|
||||
B:"Enable Deadly Module"=false
|
||||
|
||||
# If the enchantment module is enabled. [default: true]
|
||||
B:"Enable Enchantment Module"=true
|
||||
|
||||
# If the garden module is loaded. [default: true]
|
||||
B:"Enable Garden Module"=true
|
||||
|
||||
# If the potion module is loaded. [default: true]
|
||||
B:"Enable Potion Module"=true
|
||||
|
||||
# If the spawner module is enabled. [default: true]
|
||||
B:"Enable Spawner Module"=true
|
||||
|
||||
# If the village module is loaded. [default: true]
|
||||
B:"Enable Village Module"=true
|
||||
}
|
388
config/apotheosis/deadly.cfg
Normal file
388
config/apotheosis/deadly.cfg
Normal file
@ -0,0 +1,388 @@
|
||||
# Configuration file
|
||||
|
||||
affixes {
|
||||
# The 1/n chance that a naturally spawned mob will be granted an affix item. [range: 1 ~ 500000, default: 250]
|
||||
I:"Random Affix Chance"=250
|
||||
}
|
||||
|
||||
|
||||
bosses {
|
||||
# A list of potions (registry names) that bosses cannot generate with. [default: [forbidden_arcanus:spectral_vision]]
|
||||
S:"Blacklisted Potions" <
|
||||
forbidden_arcanus:spectral_vision
|
||||
>
|
||||
|
||||
# The block that spawns in a 5x5 underneath world-generated bosses. [default: minecraft:red_sandstone]
|
||||
S:"Boss Filler Block"=minecraft:red_sandstone
|
||||
|
||||
# The rarity offset for boss item generation. 400 guarantees uncommon, 700 guarantees rare, 800 guarantees epic, 950 guarantees mythic. [range: 0 ~ 999, default: 475]
|
||||
I:"Boss Rarity Offset"=475
|
||||
|
||||
# The possible mob types for bosses. Format is weight@entity, entity is a registry name. [default: [3@minecraft:zombie], [3@minecraft:skeleton], [2@minecraft:husk], [2@minecraft:stray], [1@minecraft:wither_skeleton], [1@minecraft:pillager]]
|
||||
S:"Boss Spawner Mobs" <
|
||||
3@minecraft:zombie
|
||||
3@minecraft:skeleton
|
||||
2@minecraft:husk
|
||||
2@minecraft:stray
|
||||
1@minecraft:wither_skeleton
|
||||
1@minecraft:pillager
|
||||
>
|
||||
|
||||
# The percent chance a boss has fire resistance. [range: 0.0 ~ 3.4028235E38, default: 1.0]
|
||||
S:"Fire Resistance"=1.0
|
||||
|
||||
# The max amount of extra damage bosses do, in half hearts. [range: 0.0 ~ 2.14748365E9, default: 4.5]
|
||||
S:"Max Damage Bonus"=4.5
|
||||
|
||||
# The max amount boss health is multiplied by. Base hp * factor = final hp. [range: 0.0 ~ 2.14748365E9, default: 8.0]
|
||||
S:"Max Health Multiplier"=8.0
|
||||
|
||||
# The max amount of knockback resist bosses have. [range: 0.0 ~ 2.14748365E9, default: 1.0]
|
||||
S:"Max Knockback Resist"=1.0
|
||||
|
||||
# The max regeneration level of bosses. [range: 0 ~ 2147483647, default: 2]
|
||||
I:"Max Regen Level"=2
|
||||
|
||||
# The max resistance level of bosses. [range: 0 ~ 2147483647, default: 3]
|
||||
I:"Max Resistance Level"=3
|
||||
|
||||
# The max amount boss speed is multiplied by. Base speed * factor = final speed. [range: 0.0 ~ 2.14748365E9, default: 1.4]
|
||||
S:"Max Speed Multiplier"=1.4
|
||||
|
||||
# The min amount of extra damage bosses do, in half hearts. [range: 0.0 ~ 2.14748365E9, default: 2.0]
|
||||
S:"Min Damage Bonus"=2.0
|
||||
|
||||
# The min amount boss health is multiplied by. Base hp * factor = final hp. [range: 0.0 ~ 2.14748365E9, default: 4.0]
|
||||
S:"Min Health Multiplier"=4.0
|
||||
|
||||
# The min amount of knockback resist bosses have. [range: 0.0 ~ 2.14748365E9, default: 0.65]
|
||||
S:"Min Knockback Resist"=0.65
|
||||
|
||||
# The min regeneration level of bosses. [range: 0 ~ 2147483647, default: 0]
|
||||
I:"Min Regen Level"=0
|
||||
|
||||
# The min resistance level of bosses. [range: 0 ~ 2147483647, default: 0]
|
||||
I:"Min Resistance Level"=0
|
||||
|
||||
# The min amount boss speed is multiplied by. Base speed * factor = final speed. [range: 0.0 ~ 2.14748365E9, default: 1.1]
|
||||
S:"Min Speed Multiplier"=1.1
|
||||
|
||||
# The chance a gear piece will be randomly enchanted. [range: 0.0 ~ 2.14748365E9, default: 0.45]
|
||||
S:"Random Enchantment Chance"=0.45
|
||||
|
||||
# The chance a boss will have extra random potion effects. [range: 0.0 ~ 2.14748365E9, default: 0.65]
|
||||
S:"Random Potion Chance"=0.65
|
||||
|
||||
# The 1/n chance that a naturally spawned mob that can see the sky is transformed into a boss. [range: 1 ~ 500000, default: 600]
|
||||
I:"Surface Boss Chance"=600
|
||||
|
||||
# If a lightning bolt strikes when a surface boss spawn occurs. [default: true]
|
||||
B:"Surface Boss Lightning"=true
|
||||
|
||||
# The percent chance a boss has water breathing. [range: 0.0 ~ 3.4028235E38, default: 1.0]
|
||||
S:"Water Breathing"=1.0
|
||||
}
|
||||
|
||||
|
||||
"brutal spawners" {
|
||||
# The potion effects applied to all brutal mobs. Format is potion@level, potion is a registry name. [default: [minecraft:resistance@2], [minecraft:fire_resistance@1], [minecraft:regeneration@1], [minecraft:speed@2], [minecraft:water_breathing@1], [minecraft:strength@1]]
|
||||
S:"Brutal Potion Effects" <
|
||||
minecraft:resistance@2
|
||||
minecraft:fire_resistance@1
|
||||
minecraft:regeneration@1
|
||||
minecraft:speed@2
|
||||
minecraft:water_breathing@1
|
||||
minecraft:strength@1
|
||||
>
|
||||
|
||||
# The possible spawn entries for brutal spawners. Format is weight@entity, entity is a registry name. apotheosis:random is a special name, used to generate a spawner that spawns any mob. [default: [3@minecraft:zombie], [3@minecraft:skeleton], [2@minecraft:husk], [2@minecraft:stray], [1@minecraft:spider]]
|
||||
S:"Brutal Spawner Mobs" <
|
||||
3@minecraft:zombie
|
||||
3@minecraft:skeleton
|
||||
2@minecraft:husk
|
||||
2@minecraft:stray
|
||||
1@minecraft:spider
|
||||
>
|
||||
}
|
||||
|
||||
|
||||
frequencies {
|
||||
# The chance (per chunk) for a boss to try spawning. [range: 0.0 ~ 1.0, default: 0.07]
|
||||
S:"Boss Chance"=0.07
|
||||
|
||||
# The chance (per chunk) for a brutal spawner to try spawning. [range: 0.0 ~ 1.0, default: 0.18]
|
||||
S:"Brutal Spawner Chance"=0.18
|
||||
|
||||
# The chance (per chunk) for a swarm spawner to try spawning. [range: 0.0 ~ 1.0, default: 0.2]
|
||||
S:"Swarm Spawner Chance"=0.2
|
||||
}
|
||||
|
||||
|
||||
general {
|
||||
# The biomes that the deadly module will not generate in. [default: [minecraft:warm_ocean], [minecraft:lukewarm_ocean], [minecraft:cold_ocean], [minecraft:frozen_ocean], [minecraft:deep_warm_ocean], [minecraft:deep_frozen_ocean], [minecraft:deep_lukewarm_ocean], [minecraft:deep_cold_ocean], [minecraft:ocean], [minecraft:deep_ocean]]
|
||||
S:"Generation Biome Blacklist" <
|
||||
minecraft:warm_ocean
|
||||
minecraft:lukewarm_ocean
|
||||
minecraft:cold_ocean
|
||||
minecraft:frozen_ocean
|
||||
minecraft:deep_warm_ocean
|
||||
minecraft:deep_frozen_ocean
|
||||
minecraft:deep_lukewarm_ocean
|
||||
minecraft:deep_cold_ocean
|
||||
minecraft:ocean
|
||||
minecraft:deep_ocean
|
||||
>
|
||||
|
||||
# The dimensions that the deadly module will generate in. [default: [overworld]]
|
||||
S:"Generation Dimension Whitelist" <
|
||||
overworld
|
||||
>
|
||||
}
|
||||
|
||||
|
||||
"random spawners" {
|
||||
# [range: 0 ~ 50, default: 1]
|
||||
I:"gravestone:player_ghost"=1
|
||||
|
||||
# [range: 0 ~ 50, default: 1]
|
||||
I:"mana-and-artifice:demon_imp"=1
|
||||
|
||||
# [range: 0 ~ 50, default: 1]
|
||||
I:"mana-and-artifice:lantern_wraith"=1
|
||||
|
||||
# [range: 0 ~ 50, default: 1]
|
||||
I:"mana-and-artifice:mushroom_soldier"=1
|
||||
|
||||
# [range: 0 ~ 50, default: 1]
|
||||
I:"mana-and-artifice:pixie"=1
|
||||
|
||||
# [range: 0 ~ 50, default: 1]
|
||||
I:"mana-and-artifice:spell_breaker"=1
|
||||
|
||||
# [range: 0 ~ 50, default: 1]
|
||||
I:"mana-and-artifice:witch_hunter"=1
|
||||
|
||||
# [range: 0 ~ 50, default: 1]
|
||||
I:"minecolonies:amazon"=1
|
||||
|
||||
# [range: 0 ~ 50, default: 1]
|
||||
I:"minecolonies:amazonchief"=1
|
||||
|
||||
# [range: 0 ~ 50, default: 1]
|
||||
I:"minecolonies:archerbarbarian"=1
|
||||
|
||||
# [range: 0 ~ 50, default: 1]
|
||||
I:"minecolonies:archermummy"=1
|
||||
|
||||
# [range: 0 ~ 50, default: 1]
|
||||
I:"minecolonies:archerpirate"=1
|
||||
|
||||
# [range: 0 ~ 50, default: 1]
|
||||
I:"minecolonies:barbarian"=1
|
||||
|
||||
# [range: 0 ~ 50, default: 1]
|
||||
I:"minecolonies:chiefbarbarian"=1
|
||||
|
||||
# [range: 0 ~ 50, default: 1]
|
||||
I:"minecolonies:chiefpirate"=1
|
||||
|
||||
# [range: 0 ~ 50, default: 1]
|
||||
I:"minecolonies:mummy"=1
|
||||
|
||||
# [range: 0 ~ 50, default: 1]
|
||||
I:"minecolonies:norsemenarcher"=1
|
||||
|
||||
# [range: 0 ~ 50, default: 1]
|
||||
I:"minecolonies:norsemenchief"=1
|
||||
|
||||
# [range: 0 ~ 50, default: 1]
|
||||
I:"minecolonies:pharao"=1
|
||||
|
||||
# [range: 0 ~ 50, default: 1]
|
||||
I:"minecolonies:pirate"=1
|
||||
|
||||
# [range: 0 ~ 50, default: 1]
|
||||
I:"minecolonies:shieldmaiden"=1
|
||||
|
||||
# [range: 0 ~ 50, default: 8]
|
||||
I:"minecraft:blaze"=8
|
||||
|
||||
# [range: 0 ~ 50, default: 8]
|
||||
I:"minecraft:cave_spider"=8
|
||||
|
||||
# [range: 0 ~ 50, default: 8]
|
||||
I:"minecraft:creeper"=8
|
||||
|
||||
# [range: 0 ~ 50, default: 8]
|
||||
I:"minecraft:drowned"=8
|
||||
|
||||
# [range: 0 ~ 50, default: 8]
|
||||
I:"minecraft:elder_guardian"=8
|
||||
|
||||
# [range: 0 ~ 50, default: 8]
|
||||
I:"minecraft:ender_dragon"=8
|
||||
|
||||
# [range: 0 ~ 50, default: 8]
|
||||
I:"minecraft:enderman"=8
|
||||
|
||||
# [range: 0 ~ 50, default: 8]
|
||||
I:"minecraft:endermite"=8
|
||||
|
||||
# [range: 0 ~ 50, default: 8]
|
||||
I:"minecraft:evoker"=8
|
||||
|
||||
# [range: 0 ~ 50, default: 8]
|
||||
I:"minecraft:ghast"=8
|
||||
|
||||
# [range: 0 ~ 50, default: 8]
|
||||
I:"minecraft:giant"=8
|
||||
|
||||
# [range: 0 ~ 50, default: 8]
|
||||
I:"minecraft:guardian"=8
|
||||
|
||||
# [range: 0 ~ 50, default: 8]
|
||||
I:"minecraft:hoglin"=8
|
||||
|
||||
# [range: 0 ~ 50, default: 8]
|
||||
I:"minecraft:husk"=8
|
||||
|
||||
# [range: 0 ~ 50, default: 8]
|
||||
I:"minecraft:illusioner"=8
|
||||
|
||||
# [range: 0 ~ 50, default: 8]
|
||||
I:"minecraft:magma_cube"=8
|
||||
|
||||
# [range: 0 ~ 50, default: 8]
|
||||
I:"minecraft:phantom"=8
|
||||
|
||||
# [range: 0 ~ 50, default: 8]
|
||||
I:"minecraft:piglin"=8
|
||||
|
||||
# [range: 0 ~ 50, default: 8]
|
||||
I:"minecraft:piglin_brute"=8
|
||||
|
||||
# [range: 0 ~ 50, default: 8]
|
||||
I:"minecraft:pillager"=8
|
||||
|
||||
# [range: 0 ~ 50, default: 8]
|
||||
I:"minecraft:ravager"=8
|
||||
|
||||
# [range: 0 ~ 50, default: 8]
|
||||
I:"minecraft:shulker"=8
|
||||
|
||||
# [range: 0 ~ 50, default: 8]
|
||||
I:"minecraft:silverfish"=8
|
||||
|
||||
# [range: 0 ~ 50, default: 8]
|
||||
I:"minecraft:skeleton"=8
|
||||
|
||||
# [range: 0 ~ 50, default: 8]
|
||||
I:"minecraft:slime"=8
|
||||
|
||||
# [range: 0 ~ 50, default: 8]
|
||||
I:"minecraft:spider"=8
|
||||
|
||||
# [range: 0 ~ 50, default: 8]
|
||||
I:"minecraft:stray"=8
|
||||
|
||||
# [range: 0 ~ 50, default: 8]
|
||||
I:"minecraft:vex"=8
|
||||
|
||||
# [range: 0 ~ 50, default: 8]
|
||||
I:"minecraft:vindicator"=8
|
||||
|
||||
# [range: 0 ~ 50, default: 8]
|
||||
I:"minecraft:witch"=8
|
||||
|
||||
# [range: 0 ~ 50, default: 8]
|
||||
I:"minecraft:wither"=8
|
||||
|
||||
# [range: 0 ~ 50, default: 8]
|
||||
I:"minecraft:wither_skeleton"=8
|
||||
|
||||
# [range: 0 ~ 50, default: 8]
|
||||
I:"minecraft:zoglin"=8
|
||||
|
||||
# [range: 0 ~ 50, default: 8]
|
||||
I:"minecraft:zombie"=8
|
||||
|
||||
# [range: 0 ~ 50, default: 8]
|
||||
I:"minecraft:zombie_villager"=8
|
||||
|
||||
# [range: 0 ~ 50, default: 8]
|
||||
I:"minecraft:zombified_piglin"=8
|
||||
|
||||
# [range: 0 ~ 50, default: 1]
|
||||
I:"quark:wrapped"=1
|
||||
|
||||
# [range: 0 ~ 50, default: 1]
|
||||
I:"thermal:basalz"=1
|
||||
|
||||
# [range: 0 ~ 50, default: 1]
|
||||
I:"thermal:blitz"=1
|
||||
|
||||
# [range: 0 ~ 50, default: 1]
|
||||
I:"thermal:blizz"=1
|
||||
}
|
||||
|
||||
|
||||
"spawner stats: brutal spawners" {
|
||||
# The maximum delay between spawns [range: 1 ~ 32767, default: 400]
|
||||
I:"Max Delay"=400
|
||||
|
||||
# The maximum number of nearby entities (when hit, the spawner turns off). [range: 1 ~ 32767, default: 6]
|
||||
I:"Max Nearby Entities"=6
|
||||
|
||||
# The minimum delay between spawns [range: 1 ~ 32767, default: 200]
|
||||
I:"Min Delay"=200
|
||||
|
||||
# The required distance a player must be within for this spawner to work. [range: 1 ~ 32767, default: 16]
|
||||
I:"Player Range"=16
|
||||
|
||||
# The number of mobs that will spawn. [range: 1 ~ 32767, default: 6]
|
||||
I:"Spawn Count"=6
|
||||
|
||||
# The delay before first spawn on this spawner. [range: 1 ~ 32767, default: 20]
|
||||
I:"Spawn Delay"=20
|
||||
|
||||
# The spawn range. [range: 1 ~ 32767, default: 4]
|
||||
I:"Spawn Range"=4
|
||||
}
|
||||
|
||||
|
||||
"spawner stats: swarm spawners" {
|
||||
# The maximum delay between spawns [range: 1 ~ 32767, default: 300]
|
||||
I:"Max Delay"=300
|
||||
|
||||
# The maximum number of nearby entities (when hit, the spawner turns off). [range: 1 ~ 32767, default: 32]
|
||||
I:"Max Nearby Entities"=32
|
||||
|
||||
# The minimum delay between spawns [range: 1 ~ 32767, default: 75]
|
||||
I:"Min Delay"=75
|
||||
|
||||
# The required distance a player must be within for this spawner to work. [range: 1 ~ 32767, default: 8]
|
||||
I:"Player Range"=8
|
||||
|
||||
# The number of mobs that will spawn. [range: 1 ~ 32767, default: 8]
|
||||
I:"Spawn Count"=8
|
||||
|
||||
# The delay before first spawn on this spawner. [range: 1 ~ 32767, default: 20]
|
||||
I:"Spawn Delay"=20
|
||||
|
||||
# The spawn range. [range: 1 ~ 32767, default: 6]
|
||||
I:"Spawn Range"=6
|
||||
}
|
||||
|
||||
|
||||
"swarm spawners" {
|
||||
# The possible spawn entries for swarm spawners. Format is weight@entity, entity is a registry name. [default: [4@minecraft:zombie], [2@minecraft:skeleton], [5@minecraft:spider], [8@minecraft:cave_spider], [1@minecraft:creeper]]
|
||||
S:"Swarm Spawner Mobs" <
|
||||
4@minecraft:zombie
|
||||
2@minecraft:skeleton
|
||||
5@minecraft:spider
|
||||
8@minecraft:cave_spider
|
||||
1@minecraft:creeper
|
||||
>
|
||||
}
|
||||
|
||||
|
1442
config/apotheosis/enchantments.cfg
Normal file
1442
config/apotheosis/enchantments.cfg
Normal file
File diff suppressed because it is too large
Load Diff
14
config/apotheosis/garden.cfg
Normal file
14
config/apotheosis/garden.cfg
Normal file
@ -0,0 +1,14 @@
|
||||
# Configuration file
|
||||
|
||||
general {
|
||||
# The max height a stack of bamboo may grow to. Vanilla is 16. [range: 1 ~ 255, default: 32]
|
||||
I:"Bamboo Height"=32
|
||||
|
||||
# The max height a stack of cacti may grow to. Vanilla is 3. [range: 1 ~ 255, default: 5]
|
||||
I:"Cactus Height"=32
|
||||
|
||||
# The max height a stack of reeds may grow to. Vanilla is 3. [range: 1 ~ 255, default: 255]
|
||||
I:"Reed Height"=32
|
||||
}
|
||||
|
||||
|
1111
config/apotheosis/names.cfg
Normal file
1111
config/apotheosis/names.cfg
Normal file
File diff suppressed because it is too large
Load Diff
8
config/apotheosis/potion.cfg
Normal file
8
config/apotheosis/potion.cfg
Normal file
@ -0,0 +1,8 @@
|
||||
# Configuration file
|
||||
|
||||
general {
|
||||
# The strength of Ancient Knowledge. This multiplier determines how much additional xp is granted. [range: 1 ~ 2147483647, default: 4]
|
||||
I:"Knowledge XP Multiplier"=4
|
||||
}
|
||||
|
||||
|
188
config/apotheosis/spawner.cfg
Normal file
188
config/apotheosis/spawner.cfg
Normal file
@ -0,0 +1,188 @@
|
||||
# Configuration file
|
||||
|
||||
general {
|
||||
# When held in the off-hand, this item makes modifiers change stats in the opposite direction. [default: minecraft:quartz]
|
||||
S:"Inverse Item"=minecraft:quartz
|
||||
|
||||
# The durability damage dealt to an item that silk touches a spawner. [range: 0 ~ 100000, default: 100]
|
||||
I:"Spawner Silk Damage"=100
|
||||
|
||||
# The level of silk touch needed to harvest a spawner. Set to -1 to disable, 0 to always drop. The enchantment module can increase the max level of silk touch. [range: -1 ~ 127, default: 1]
|
||||
I:"Spawner Silk Level"=1
|
||||
}
|
||||
|
||||
|
||||
ignore_spawn_cap {
|
||||
# The item that applies this modifier. [default: minecraft:chorus_fruit]
|
||||
S:item=minecraft:bedrock
|
||||
I:max_value=1
|
||||
I:min_value=0
|
||||
I:value=0
|
||||
}
|
||||
|
||||
|
||||
ignore_spawn_conditions {
|
||||
# The item that applies this modifier. [default: minecraft:dragon_egg]
|
||||
S:item=minecraft:dragon_egg
|
||||
I:max_value=1
|
||||
I:min_value=0
|
||||
I:value=0
|
||||
|
||||
}
|
||||
|
||||
|
||||
max_delay {
|
||||
# The item that applies this modifier. [default: minecraft:clock]
|
||||
S:item=minecraft:clock
|
||||
|
||||
# The max value of this stat. [range: -2147483648 ~ 2147483647, default: 99999]
|
||||
I:max_value=99999
|
||||
|
||||
# The min value of this stat. [range: -2147483648 ~ 2147483647, default: 10]
|
||||
I:min_value=10
|
||||
|
||||
# The amount each item changes this stat. [range: -2147483648 ~ 2147483647, default: -10]
|
||||
I:value=-10
|
||||
}
|
||||
|
||||
|
||||
max_nearby_entities {
|
||||
# The item that applies this modifier. [default: minecraft:ghast_tear]
|
||||
S:item=minecraft:ghast_tear
|
||||
|
||||
# The max value of this stat. [range: -2147483648 ~ 2147483647, default: 40]
|
||||
I:max_value=40
|
||||
|
||||
# The min value of this stat. [range: -2147483648 ~ 2147483647, default: 0]
|
||||
I:min_value=0
|
||||
|
||||
# The amount each item changes this stat. [range: -2147483648 ~ 2147483647, default: 2]
|
||||
I:value=2
|
||||
}
|
||||
|
||||
|
||||
min_delay {
|
||||
# The item that applies this modifier. [default: minecraft:sugar]
|
||||
S:item=minecraft:sugar
|
||||
|
||||
# The max value of this stat. [range: -2147483648 ~ 2147483647, default: 99999]
|
||||
I:max_value=99999
|
||||
|
||||
# The min value of this stat. [range: -2147483648 ~ 2147483647, default: 5]
|
||||
I:min_value=5
|
||||
|
||||
# The amount each item changes this stat. [range: -2147483648 ~ 2147483647, default: -5]
|
||||
I:value=-5
|
||||
}
|
||||
|
||||
|
||||
player_activation_range {
|
||||
# The item that applies this modifier. [default: minecraft:prismarine_crystals]
|
||||
S:item=minecraft:prismarine_crystals
|
||||
|
||||
# The max value of this stat. [range: -2147483648 ~ 2147483647, default: 50]
|
||||
I:max_value=50
|
||||
|
||||
# The min value of this stat. [range: -2147483648 ~ 2147483647, default: 0]
|
||||
I:min_value=0
|
||||
|
||||
# The amount each item changes this stat. [range: -2147483648 ~ 2147483647, default: 2]
|
||||
I:value=2
|
||||
}
|
||||
|
||||
|
||||
redstone_control {
|
||||
# The item that applies this modifier. [default: minecraft:comparator]
|
||||
S:item=minecraft:comparator
|
||||
I:max_value=1
|
||||
I:min_value=0
|
||||
I:value=0
|
||||
}
|
||||
|
||||
|
||||
require_players {
|
||||
# The item that applies this modifier. [default: minecraft:nether_star]
|
||||
S:item=minecraft:nether_star
|
||||
I:max_value=1
|
||||
I:min_value=0
|
||||
I:value=0
|
||||
}
|
||||
|
||||
|
||||
spawn_count {
|
||||
# The item that applies this modifier. [default: minecraft:fermented_spider_eye]
|
||||
S:item=minecraft:fermented_spider_eye
|
||||
|
||||
# The max value of this stat. [range: -2147483648 ~ 2147483647, default: 20]
|
||||
I:max_value=20
|
||||
|
||||
# The min value of this stat. [range: -2147483648 ~ 2147483647, default: 1]
|
||||
I:min_value=1
|
||||
|
||||
# The amount each item changes this stat. [range: -2147483648 ~ 2147483647, default: 1]
|
||||
I:value=1
|
||||
}
|
||||
|
||||
|
||||
spawn_eggs {
|
||||
# A list of entity registry names that cannot be applied to spawners via egg. [default: ]
|
||||
S:"Banned Mobs" <
|
||||
resourcefulbees:tin_bee
|
||||
resourcefulbees:terrasteel_bee
|
||||
resourcefulbees:tainted_gold_bee
|
||||
resourcefulbees:steel_bee
|
||||
resourcefulbees:sky_bee
|
||||
resourcefulbees:silver_bee
|
||||
resourcefulbees:refined_obsidian_bee
|
||||
resourcefulbees:refined_glowstone_bee
|
||||
resourcefulbees:osmium_bee
|
||||
resourcefulbees:obsidian_bee
|
||||
resourcefulbees:nickel_bee
|
||||
resourcefulbees:manasteel_bee
|
||||
resourcefulbees:lead_bee
|
||||
resourcefulbees:infused_iron_bee
|
||||
resourcefulbees:ghast_bee
|
||||
resourcefulbees:elementium_bee
|
||||
resourcefulbees:copper_bee
|
||||
resourcefulbees:clay_bee
|
||||
resourcefulbees:blaze_bee
|
||||
resourcefulbees:alf_bee
|
||||
resourcefulbees:zombie_bee
|
||||
resourcefulbees:wither_bee
|
||||
resourcefulbees:slimy_bee
|
||||
resourcefulbees:skeleton_bee
|
||||
resourcefulbees:rgbee_bee
|
||||
resourcefulbees:redstone_bee
|
||||
resourcefulbees:pigman_bee
|
||||
resourcefulbees:nether_quartz_bee
|
||||
resourcefulbees:netherite_bee
|
||||
resourcefulbees:lapis_bee
|
||||
resourcefulbees:iron_bee
|
||||
resourcefulbees:icy_bee
|
||||
resourcefulbees:gold_bee
|
||||
resourcefulbees:ender_bee
|
||||
resourcefulbees:emerald_bee
|
||||
resourcefulbees:diamond_bee
|
||||
resourcefulbees:creeper_bee
|
||||
resourcefulbees:coal_bee
|
||||
resourcefulbees:oreo_bee
|
||||
artifacts:mimic
|
||||
>
|
||||
}
|
||||
|
||||
|
||||
spawn_range {
|
||||
# The item that applies this modifier. [default: minecraft:blaze_rod]
|
||||
S:item=minecraft:blaze_rod
|
||||
|
||||
# The max value of this stat. [range: -2147483648 ~ 2147483647, default: 32]
|
||||
I:max_value=32
|
||||
|
||||
# The min value of this stat. [range: -2147483648 ~ 2147483647, default: 0]
|
||||
I:min_value=0
|
||||
|
||||
# The amount each item changes this stat. [range: -2147483648 ~ 2147483647, default: 1]
|
||||
I:value=1
|
||||
}
|
||||
|
||||
|
17
config/apotheosis/village.cfg
Normal file
17
config/apotheosis/village.cfg
Normal file
@ -0,0 +1,17 @@
|
||||
# Configuration file
|
||||
|
||||
wanderer {
|
||||
# If new trades are added to the wandering merchant. [default: true]
|
||||
B:"Enable New Trades"=true
|
||||
|
||||
# If the Apotheosis Wanderer Spawner is enabled, instead of the default. [default: true]
|
||||
B:"Enable Wanderer Spawner"=true
|
||||
|
||||
# The 1/100 chance the wandering trader has to spawn every attempt. This chance is increased by it's own value each failure until successful. [range: 1 ~ 100, default: 10]
|
||||
I:"Spawn Chance"=5
|
||||
|
||||
# The number of ticks that must elapse before a wanderer spawn attempt happens. [range: 1 ~ 2147483647, default: 24000]
|
||||
I:"Spawn Delay"=24000
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user