diff --git a/minecraft/config/chancecubes/custom_rewards/CustomSounds-Resourcepack.zip b/minecraft/config/chancecubes/custom_rewards/CustomSounds-Resourcepack.zip index 1d350b3..815abae 100644 Binary files a/minecraft/config/chancecubes/custom_rewards/CustomSounds-Resourcepack.zip and b/minecraft/config/chancecubes/custom_rewards/CustomSounds-Resourcepack.zip differ diff --git a/minecraft/config/config/Advancedperipherals/general.toml b/minecraft/config/config/Advancedperipherals/general.toml new file mode 100644 index 0000000..ec7d08b --- /dev/null +++ b/minecraft/config/config/Advancedperipherals/general.toml @@ -0,0 +1,19 @@ + +#Config to adjust general mod settings +[General] + #Enables the debug mode. Only enable it if needed. + enableDebugMode = false + +[Core] + #Enables initial cooldown on peripheral initialization + isInitialCooldownEnabled = true + #Determinates initial cooldown sensitive level, values lower then this value will not trigger initial cooldown + #Range: > 0 + initialCooldownSensitiveLevel = 6000 + +[Unsafe] + #By setting this value to true, I understand all operations below are danger to my adventure, and if they caused unexpected behavior in my world, I will not consider it as AP's liability + enableUnsafe = false + #Ignore turtle peripheral item's NBT when equipping. **YOU WILL LOSE ALL NBT ON THE ITEM** + ignoreTurtlePeripheralItemNBT = false + diff --git a/minecraft/config/config/Advancedperipherals/metaphysics.toml b/minecraft/config/config/Advancedperipherals/metaphysics.toml new file mode 100644 index 0000000..fef8a31 --- /dev/null +++ b/minecraft/config/config/Advancedperipherals/metaphysics.toml @@ -0,0 +1,32 @@ + +#Config for metaphysics +[Metaphysics] + #Defines energy to fuel rate + #Range: > 575 + energyToFuelRate = 575 + enableWeakAutomataCore = true + enableEndAutomataCore = true + enableHusbandryAutomataCore = true + #Defines max warp point stored in warp core. Mostly need to not allow NBT overflow error + #Range: > 1 + endAutomataCoreWarpPointLimit = 64 + #Chance that overpowered automata will break after rotation cycle + #Range: 0.0 ~ 1.0 + overpoweredAutomataBreakChance = 0.002 + #Range: 1 ~ 64 + tier1AutomataCoreInteractionRadius = 2 + #Range: 1 ~ 32 + tier1AutomataCoreMaxFuelConsumptionRate = 2 + #Range: 1 ~ 64 + tier2AutomataCoreInteractionRadius = 4 + #Range: 1 ~ 32 + tier2AutomataCoreMaxFuelConsumptionRate = 3 + #Range: 1 ~ 64 + overpoweredTier1AutomataCoreInteractionRadius = 4 + #Range: 1 ~ 32 + overpoweredTier1AutomataCoreMaxFuelConsumptionRate = 3 + #Range: 1 ~ 64 + overpoweredTier2AutomataCoreInteractionRadius = 6 + #Range: 1 ~ 32 + overpoweredTier2AutomataCoreMaxFuelConsumptionRate = 4 + diff --git a/minecraft/config/config/Advancedperipherals/peripherals.toml b/minecraft/config/config/Advancedperipherals/peripherals.toml new file mode 100644 index 0000000..fb281aa --- /dev/null +++ b/minecraft/config/config/Advancedperipherals/peripherals.toml @@ -0,0 +1,177 @@ + +#Peripherals config +[Peripherals] + + [Peripherals.Player_Detector] + #Enable the Player Detector or not. + enablePlayerDetector = true + #The max range of the player detector functions. If anyone use a higher range, the detector will use this max range. -1 for unlimited + #Range: > -1 + playerDetMaxRange = -1 + #Activates the "getPlayerPos" function of the Player Detector + enablePlayerPosFunction = true + #Adds more information to `getPlayerPos` of the Player Detector. Like rotation and dimension + morePlayerInformation = true + #If true, the player detector can observe players which aren't in the same dimension as the detector itself. `playerDetMaxRange` needs to be infinite(-1) for it to work. + chatBoxMultiDimensional = true + #If true, add random error to `getPlayerPos` player position that varies based on how far the player is from the detector. Prevents getting the exact position of players far from the detector. + enablePlayerPosRandomError = false + #The maximum amount of error (in blocks) that can be applied to each axis of the player's position. + #Range: > 0 + playerPosRandomErrorAmount = 1000 + #If random error is enabled: this is the maximum range at which an exact player position is returned, before random error starts to be applied. + #Range: > 0 + playerPosPreciseMaxRange = 100 + + [Peripherals.Energy_Detector] + #Enable the Energy Detector or not. + enableEnergyDetector = true + #Defines the maximum energy flow of the energy detector. + #Range: > 1 + energyDetectorMaxFlow = 2147483647 + + [Peripherals.NBT_Storage] + #Enable the nbt storage block or not + enableNBTStorage = true + #Defines max nbt string length that can be stored in nbt storage + #Range: > 0 + nbtStorageMaxSize = 1048576 + + [Peripherals.Chunky_Turtle] + #Enable the Chunky Turtle or not. + enableChunkyTurtle = true + #Time in seconds, while loaded chunk can be consider as valid without touch + #Range: > 60 + chunkLoadValidTime = 600 + #Radius in chunks a single chunky turtle will load. The default value (0) only loads the chunk the turtle is in, 1 would also load the 8 surrounding chunks (9 in total) and so on + #Range: 0 ~ 16 + chunkyTurtleRadius = 0 + + [Peripherals.Chat_Box] + #Enable the Chat Box or not. + enableChatBox = true + #Defines default chatbox prefix + defaultChatBoxPrefix = "AP" + #Defines the maximal range of the chat box in blocks. -1 for infinite. If the range is not -1, players in other dimensions won't able to receive messages + #Range: -1 ~ 30000000 + chatBoxMaxRange = -1 + #If true, the chat box is able to send messages to other dimensions than its own + chatBoxMultiDimensional = true + #If true, the chat box cannot use 'run_command' action + chatBoxPreventRunCommand = false + #If true, the chat box will wrap and execute 'run_command' or 'suggest_command' action with zero permission, in order to prevent operators accidently run dangerous commands. + chatBoxWrapCommand = true + #These commands below will not be able to send by 'run_command' or 'suggest_command' action. It will match as prefix if starts with '/', other wise use regex pattern + chatBoxBannedCommands = ["/execute", "/op", "/deop", "/gamemode", "/gamerule", "/stop", "/give", "/fill", "/setblock", "/summon", "/whitelist", "^/ban-(?:ip)?\\s*", "^/pardon-(?:ip)?\\s*", "^/save-(?:on|off)\\s*"] + + [Peripherals.ME_Bridge] + #Enable the Me Bridge or not. + enableMeBridge = true + #Power consumption per tick. + #Range: > 0 + mePowerConsumption = 10 + + [Peripherals.RS_Bridge] + #Enable the Rs Bridge or not. + enableRsBridge = true + #Power consumption per tick. + #Range: > 0 + rsPowerConsumption = 10 + + [Peripherals.Environment_Detector] + #Enable the Environment Detector or not. + enableEnvironmentDetector = true + + [Peripherals.AR_Controller] + #Enable the AR goggles or not. + enableARGoggles = true + + [Peripherals.Inventory_Manager] + #Enable the inventory manager or not. + enableInventoryManager = true + + [Peripherals.Redstone_Integrator] + #Enable the redstone integrator or not. + enableRedstoneIntegrator = true + + [Peripherals.Block_Reader] + #Enable the block reader or not. + enableBlockReader = true + + [Peripherals.Geo_Scanner] + #Enable the geo scanner or not. + enableGeoScanner = true + + [Peripherals.Colony_Integrator] + #Enable the colony integrator or not. + enableColonyIntegrator = true + + [Peripherals.Compass_Turtle] + #Enable the compass turtle or not. + enableCompassTurtle = true + #The maximum distance the compass can locate accurately with in each axis. + #Range: 0 ~ 8 + compassAccurePlaceRadius = 3 + #The free distance the compass can locate accurately with in each axis. + #Range: 0 ~ 4 + compassAccurePlaceFreeRadius = 1 + + [Peripherals.Powered_Peripherals] + #Enable RF storage for peripherals, that could use it + enablePoweredPeripherals = false + #Defines max energy storage in any powered peripheral + #Range: > 1000000 + poweredPeripheralMaxEnergyStored = 100000000 + + [Peripherals.Pocket_Peripherals] + #If true, pockets will have infinite fuel + disablePocketFuelConsumption = true + + [Peripherals.Operations] + #Range: > 1000 + digCooldown = 1000 + #Range: > 0 + digCost = 1 + #Range: > 1000 + useOnBlockCooldown = 5000 + #Range: > 0 + useOnBlockCost = 1 + #Range: > 1000 + suckCooldown = 1000 + #Range: > 0 + suckCost = 1 + #Range: > 1000 + useOnAnimalCooldown = 2500 + #Range: > 0 + useOnAnimalCost = 10 + #Range: > 1000 + captureAnimalCooldown = 50000 + #Range: > 0 + captureAnimalCost = 100 + #Range: > 1000 + warpCooldown = 1000 + #Range: > 0 + warpCost = 1 + #Range: > 1000 + accurePlaceCooldown = 1000 + #Range: > 0 + accurePlaceCost = 1 + #Range: > 1000 + scanBlocksCooldown = 2000 + #Range: > 1 + scanBlocksMaxFreeRadius = 8 + #Range: > 1 + scanBlocksMaxCostRadius = 16 + #Range: 0.1 ~ 1.7976931348623157E308 + scanBlocksExtraBlockCost = 0.17 + #Range: > 1000 + scanEntitiesCooldown = 2000 + #Range: > 1 + scanEntitiesMaxFreeRadius = 8 + #Range: > 1 + scanEntitiesMaxCostRadius = 16 + #Range: 0.1 ~ 1.7976931348623157E308 + scanEntitiesExtraBlockCost = 0.17 + #Range: > 0 + chatMessageCooldown = 100 + diff --git a/minecraft/config/config/Advancedperipherals/world.toml b/minecraft/config/config/Advancedperipherals/world.toml new file mode 100644 index 0000000..b9f2005 --- /dev/null +++ b/minecraft/config/config/Advancedperipherals/world.toml @@ -0,0 +1,13 @@ + +#Config to adjust world settings +[World] + #Enable the villager structures for the computer scientist. + enableVillagerStructures = true + #Gives the ap documentation to new players. + givePlayerBookOnJoin = true + #The weight of the villager structures. + #Range: 0 ~ 16000 + villagerStructureWeight = 10 + #Enable new wandering trader trades. + enableWanderingTraderTrades = true + diff --git a/minecraft/config/config/MouseTweaks.cfg b/minecraft/config/config/MouseTweaks.cfg new file mode 100644 index 0000000..81190ac --- /dev/null +++ b/minecraft/config/config/MouseTweaks.cfg @@ -0,0 +1,8 @@ +RMBTweak=1 +LMBTweakWithItem=1 +LMBTweakWithoutItem=1 +WheelTweak=1 +WheelSearchOrder=1 +WheelScrollDirection=0 +ScrollItemScaling=0 +Debug=0 diff --git a/minecraft/config/config/apotheosis/adventure.cfg b/minecraft/config/config/apotheosis/adventure.cfg new file mode 100644 index 0000000..711cc3c --- /dev/null +++ b/minecraft/config/config/apotheosis/adventure.cfg @@ -0,0 +1,151 @@ +# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1 + +# Apotheosis Adventure Module Config + +affixes { + # A list of type overrides for the affix loot system. Format is |chance|. + # Valid types are: none, sword, trident, shield, heavy_weapon, pickaxe, shovel, crossbow, bow + # Default: [minecraft:iron_sword|sword], [minecraft:shulker_shell|none] + S:"Equipment Type Overrides" < + minecraft:iron_sword|sword + minecraft:shulker_shell|none + > + + # The chance that a naturally spawned mob will be granted an affix item. 0 = 0%, 1 = 100% + # Default: 0.075; Range: [0.0 ~ 1.0] + S:"Random Affix Chance"=0.075 + + # The chance that a mob will drop a gem. 0 = 0%, 1 = 100% + # Default: 0.045; Range: [0.0 ~ 1.0] + S:"Gem Drop Chance"=0.045 + + # The flat bonus chance that bosses have to drop a gem, added to Gem Drop Chance. 0 = 0%, 1 = 100% + # Default: 0.33; Range: [0.0 ~ 1.0] + S:"Gem Boss Bonus"=0.33 + + # If affixes that cleave can hit players (excluding the user). + # Default: false + B:"Cleave Players"=false + + # Loot Rules, in the form of Loot Table Matchers, permitting affix items to spawn in loot tables. + # The format for these is domain:pattern|chance and domain is optional. Domain is a modid, pattern is a regex string, and chance is a float 0..1 chance for the item to spawn in any matched tables. + # If you omit the domain, the format is pattern|chance, and the matcher will run for all domains. + # The pattern MUST be a valid regex string, and should match the paths of desired loot tables under the specified domain. Note: "Match Any Character" is ".*" (dot star) and not "*" (star). + # If there is a match, an item has a chance to spawn in that loot table. + # Default: [minecraft:chests.*|0.35], [.*chests.*|0.3], [twilightforest:structures.*|0.3] + S:"Affix Item Loot Rules" < + minecraft:chests.*|0.35 + .*chests.*|0.3 + twilightforest:structures.*|0.3 + > + + # Loot Rules, in the form of Loot Table Matchers, permitting affixes to be added to any valid item. Here, the chance refers to the chance an item receives affixes. See comment on "Affix Item Loot Rules" for description. + # Default: [.*blocks.*|0], [.*|0.35] + S:"Affix Convert Loot Rules" < + .*blocks.*|0 + .*|0.35 + > + + # Dimensional rarities for affix conversion (see "Affix Convert Loot Rules"), in the form of dimension|min|max. A dimension not listed uses all rarities. + # Default: [overworld|common|rare], [the_nether|uncommon|epic], [the_end|rare|mythic], [twilightforest:twilight_forest|uncommon|epic] + S:"Affix Convert Rarities" < + overworld|common|rare + the_nether|uncommon|epic + the_end|rare|mythic + twilightforest:twilight_forest|uncommon|epic + > + + # If Quark's Attribute Tooltip handling is disabled for affix items + # Default: true + B:"Disable Quark Tooltips for Affix Items"=true + + # The item that will be used when attempting to place torches with the torch placer affix. Must be a valid item that places a block on right click. + # Default: minecraft:torch + S:"Torch Placement Item"=minecraft:torch +} + + +gems { + # Loot Rules, in the form of Loot Table Matchers, permitting gems to spawn in loot tables. See comment on "Affix Item Loot Rules" for description. + # Default: [minecraft:chests.*|0.25], [.*chests.*|0.20], [twilightforest:structures.*|0.20] + S:"Gem Loot Rules" < + minecraft:chests.*|0.25 + .*chests.*|0.20 + twilightforest:structures.*|0.20 + > + + # Dimensional rarities for gem drops, in the form of dimension|min|max. A dimension not listed uses all rarities. + # Default: [overworld|common|mythic], [the_nether|uncommon|mythic], [the_end|rare|mythic], [twilightforest:twilight_forest|uncommon|mythic] + S:"Gem Dimensional Rarities" < + overworld|common|mythic + the_nether|uncommon|mythic + the_end|rare|mythic + twilightforest:twilight_forest|uncommon|mythic + > +} + + +bosses { + # If boss items are always cursed. Enable this if you want bosses to be less overpowered by always giving them a negative effect. + # Default: false + B:"Curse Boss Items"=false + + # The range at which boss spawns will be announced. If you are closer than this number of blocks (ignoring y-level), you will receive the announcement. + # Default: 96.0; Range: [0.0 ~ 1024.0] + S:"Boss Announce Range"=96.0 + + # The volume of the boss announcement sound. 0 to disable. This control is clientside. + # Default: 0.75; Range: [0.0 ~ 1.0] + S:"Boss Announce Volume"=0.75 + + # If the boss announcement range ignores y-level. + # Default: false + B:"Boss Announce Ignore Y"=false + + # The time, in ticks, that must pass between any two natural boss spawns in a single dimension. + # Default: 3600; Range: [0 ~ 720000] + I:"Boss Spawn Cooldown"=3600 + + # If true, invading bosses will automatically target the closest player. + # Default: false + B:"Boss Auto-Aggro"=false + + # If true, bosses will glow when they spawn. + # Default: true + B:"Boss Glowing On Spawn"=true + + # List of sound effects to play when boss spawns are announced. This control is clientside. + # Default: [block.end_portal.spawn] + S:"Boss Announce Sounds" < + block.end_portal.spawn + > + + # Dimensions where bosses can spawn naturally, spawn chance, and spawn rules. + # Format is dimname|chance|rule, chance is a float from 0..1. + # Valid rules are visible here https://github.com/Shadows-of-Fire/Apotheosis/blob/1.19/src/main/java/shadows/apotheosis/adventure/boss/BossEvents.java#L174C27-L174C27 + # Default: [minecraft:overworld|0.018|NEEDS_SKY], [minecraft:the_nether|0.025|ANY], [minecraft:the_end|0.018|SURFACE_OUTER_END], [twilightforest:twilight_forest|0.05|NEEDS_SURFACE] + S:"Boss Spawn Dimensions" < + minecraft:overworld|0.018|NEEDS_SKY + minecraft:the_nether|0.025|ANY + minecraft:the_end|0.018|SURFACE_OUTER_END + twilightforest:twilight_forest|0.05|NEEDS_SURFACE + > +} + + +worldgen { + # The dimensions that the deadly module will generate in. + # Default: [overworld] + S:"Generation Dimension Whitelist" < + overworld + > +} + + +spawners { + # The chance that a Rogue Spawner has a "valuable" chest instead of a standard one. 0 = 0%, 1 = 100% + # Default: 0.11; Range: [0.0 ~ 1.0] + S:"Spawner Value Chance"=0.11 +} + + diff --git a/minecraft/config/config/apotheosis/apotheosis.cfg b/minecraft/config/config/apotheosis/apotheosis.cfg new file mode 100644 index 0000000..4fb2a85 --- /dev/null +++ b/minecraft/config/config/apotheosis/apotheosis.cfg @@ -0,0 +1,40 @@ +# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1 + +# Apotheosis Module Control + +# This file allows individual modules of Apotheosis to be enabled or disabled. +# Changes will have no effect until the next game restart. +# This file must match on client and server. + + +general { + # If the enchantment module is enabled. + # Default: true + B:"Enable Enchantment Module"=true + + # If the adventure module is loaded. + # Default: true + B:"Enable Adventure Module"=true + + # If the spawner module is enabled. + # Default: true + B:"Enable Spawner Module"=true + + # If the potion module is loaded. + # Default: true + B:"Enable Potion Module"=true + + # If the village module is loaded. + # Default: true + B:"Enable Village Module"=true + + # If the garden module is loaded. + # Default: true + B:"Enable Garden Module"=true + + # If the Chronicle of Shadows is given to new players. + # Default: true + B:"Give Book on First Join"=true +} + + diff --git a/minecraft/config/config/apotheosis/ench.cfg b/minecraft/config/config/apotheosis/ench.cfg new file mode 100644 index 0000000..796fbd9 --- /dev/null +++ b/minecraft/config/config/apotheosis/ench.cfg @@ -0,0 +1,15 @@ +# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1 + +# Apotheosis Enchantment Module Config + +client { + # If enchanted book metadata (treasure, tradeable, etc) are shown in the tooltip. + # Default: true + B:"Show Enchanted Book Metadata"=true + + # The 1/n chance that a sculkshelf plays a sound, per client tick. Set to 0 to disable. + # Default: 200; Range: [0 ~ 32767] + I:"Sculkshelf Noise Chance"=200 +} + + diff --git a/minecraft/config/config/apotheosis/enchantments.cfg b/minecraft/config/config/apotheosis/enchantments.cfg new file mode 100644 index 0000000..3113056 --- /dev/null +++ b/minecraft/config/config/apotheosis/enchantments.cfg @@ -0,0 +1,3401 @@ +# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1 + +# Apotheosis Enchantment Information + +# This file contains configurable data for each enchantment. +# The names of each category correspond to the registry names of every loaded enchantment. + + +"minecraft:protection" { + # The max level of this enchantment - originally 4. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 4; Range: [1 ~ 127] + I:"Max Loot Level"=4 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"minecraft:fire_protection" { + # The max level of this enchantment - originally 4. + # Default: 9; Range: [1 ~ 127] + I:"Max Level"=9 + + # The max level of this enchantment available from loot sources. + # Default: 4; Range: [1 ~ 127] + I:"Max Loot Level"=4 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"minecraft:feather_falling" { + # The max level of this enchantment - originally 4. + # Default: 11; Range: [1 ~ 127] + I:"Max Level"=11 + + # The max level of this enchantment available from loot sources. + # Default: 4; Range: [1 ~ 127] + I:"Max Loot Level"=4 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"minecraft:blast_protection" { + # The max level of this enchantment - originally 4. + # Default: 9; Range: [1 ~ 127] + I:"Max Level"=9 + + # The max level of this enchantment available from loot sources. + # Default: 4; Range: [1 ~ 127] + I:"Max Loot Level"=4 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:projectile_protection" { + # The max level of this enchantment - originally 4. + # Default: 11; Range: [1 ~ 127] + I:"Max Level"=11 + + # The max level of this enchantment available from loot sources. + # Default: 4; Range: [1 ~ 127] + I:"Max Loot Level"=4 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"minecraft:respiration" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:aqua_affinity" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:thorns" { + # The max level of this enchantment - originally 3. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"minecraft:depth_strider" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:frost_walker" { + # The max level of this enchantment - originally 2. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 2; Range: [1 ~ 127] + I:"Max Loot Level"=2 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:binding_curse" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"minecraft:soul_speed" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: false + B:Discoverable=false + + # If enchanted books of this enchantment are available via loot sources. + # Default: false + B:Lootable=false + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"minecraft:swift_sneak" { + # The max level of this enchantment - originally 3. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: false + B:Discoverable=false + + # If enchanted books of this enchantment are available via loot sources. + # Default: false + B:Lootable=false + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"minecraft:sharpness" { + # The max level of this enchantment - originally 5. + # Default: 9; Range: [1 ~ 127] + I:"Max Level"=9 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"minecraft:smite" { + # The max level of this enchantment - originally 5. + # Default: 10; Range: [1 ~ 127] + I:"Max Level"=10 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"minecraft:bane_of_arthropods" { + # The max level of this enchantment - originally 5. + # Default: 10; Range: [1 ~ 127] + I:"Max Level"=10 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"minecraft:knockback" { + # The max level of this enchantment - originally 2. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 2; Range: [1 ~ 127] + I:"Max Loot Level"=2 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"minecraft:fire_aspect" { + # The max level of this enchantment - originally 2. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 2; Range: [1 ~ 127] + I:"Max Loot Level"=2 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:looting" { + # The max level of this enchantment - originally 3. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:sweeping" { + # The max level of this enchantment - originally 3. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:efficiency" { + # The max level of this enchantment - originally 5. + # Default: 9; Range: [1 ~ 127] + I:"Max Level"=9 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"minecraft:silk_touch" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"minecraft:unbreaking" { + # The max level of this enchantment - originally 3. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"minecraft:fortune" { + # The max level of this enchantment - originally 3. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:power" { + # The max level of this enchantment - originally 5. + # Default: 9; Range: [1 ~ 127] + I:"Max Level"=9 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"minecraft:punch" { + # The max level of this enchantment - originally 2. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 2; Range: [1 ~ 127] + I:"Max Loot Level"=2 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:flame" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:infinity" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"minecraft:luck_of_the_sea" { + # The max level of this enchantment - originally 3. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:lure" { + # The max level of this enchantment - originally 3. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:loyalty" { + # The max level of this enchantment - originally 3. + # Default: 9; Range: [1 ~ 127] + I:"Max Level"=9 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"minecraft:impaling" { + # The max level of this enchantment - originally 5. + # Default: 10; Range: [1 ~ 127] + I:"Max Level"=10 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:riptide" { + # The max level of this enchantment - originally 3. + # Default: 9; Range: [1 ~ 127] + I:"Max Level"=9 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:channeling" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"minecraft:multishot" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:quick_charge" { + # The max level of this enchantment - originally 3. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"minecraft:piercing" { + # The max level of this enchantment - originally 4. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 4; Range: [1 ~ 127] + I:"Max Loot Level"=4 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"minecraft:mending" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:vanishing_curse" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"apotheosis:bane_of_illagers" { + # The max level of this enchantment - originally 5. + # Default: 10; Range: [1 ~ 127] + I:"Max Level"=10 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"apotheosis:capturing" { + # The max level of this enchantment - originally 5. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"apotheosis:berserkers_fury" { + # The max level of this enchantment - originally 3. + # Default: 3; Range: [1 ~ 127] + I:"Max Level"=3 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"apotheosis:chainsaw" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"apotheosis:chromatic" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"apotheosis:crescendo" { + # The max level of this enchantment - originally 5. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"apotheosis:earths_boon" { + # The max level of this enchantment - originally 3. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"apotheosis:endless_quiver" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"apotheosis:exploitation" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"apotheosis:growth_serum" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"apotheosis:icy_thorns" { + # The max level of this enchantment - originally 3. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"apotheosis:infusion" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: false + B:Discoverable=false + + # If enchanted books of this enchantment are available via loot sources. + # Default: false + B:Lootable=false + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"apotheosis:knowledge" { + # The max level of this enchantment - originally 3. + # Default: 3; Range: [1 ~ 127] + I:"Max Level"=3 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"apotheosis:life_mending" { + # The max level of this enchantment - originally 3. + # Default: 3; Range: [1 ~ 127] + I:"Max Level"=3 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"apotheosis:miners_fervor" { + # The max level of this enchantment - originally 5. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"apotheosis:natures_blessing" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"apotheosis:obliteration" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"apotheosis:rebounding" { + # The max level of this enchantment - originally 3. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"apotheosis:reflective" { + # The max level of this enchantment - originally 5. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"apotheosis:scavenger" { + # The max level of this enchantment - originally 3. + # Default: 3; Range: [1 ~ 127] + I:"Max Level"=3 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"apotheosis:shield_bash" { + # The max level of this enchantment - originally 4. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 4; Range: [1 ~ 127] + I:"Max Loot Level"=4 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"apotheosis:spearfishing" { + # The max level of this enchantment - originally 5. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"apotheosis:splitting" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"apotheosis:stable_footing" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"apotheosis:tempting" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"ars_nouveau:mana_regen" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"ars_nouveau:mana_boost" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"ars_nouveau:reactive" { + # The max level of this enchantment - originally 3. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"create:potato_recovery" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"create:capacity" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"supplementaries:stasis" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"create_sa:gravity_gun" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"create_sa:digging" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"create_sa:impact" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"create_sa:hellfire" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"create_sa:above_the_clouds" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"tombstone:soulbound" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"tombstone:magic_siphon" { + # The max level of this enchantment - originally 10. + # Default: 13; Range: [1 ~ 127] + I:"Max Level"=13 + + # The max level of this enchantment available from loot sources. + # Default: 10; Range: [1 ~ 127] + I:"Max Loot Level"=10 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"tombstone:plague_bringer" { + # The max level of this enchantment - originally 10. + # Default: 13; Range: [1 ~ 127] + I:"Max Level"=13 + + # The max level of this enchantment available from loot sources. + # Default: 10; Range: [1 ~ 127] + I:"Max Loot Level"=10 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"tombstone:curse_of_bones" { + # The max level of this enchantment - originally 10. + # Default: 13; Range: [1 ~ 127] + I:"Max Level"=13 + + # The max level of this enchantment available from loot sources. + # Default: 10; Range: [1 ~ 127] + I:"Max Loot Level"=10 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"tombstone:blessing" { + # The max level of this enchantment - originally 10. + # Default: 13; Range: [1 ~ 127] + I:"Max Level"=13 + + # The max level of this enchantment available from loot sources. + # Default: 10; Range: [1 ~ 127] + I:"Max Loot Level"=10 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"tombstone:frostbite" { + # The max level of this enchantment - originally 10. + # Default: 13; Range: [1 ~ 127] + I:"Max Level"=13 + + # The max level of this enchantment available from loot sources. + # Default: 10; Range: [1 ~ 127] + I:"Max Loot Level"=10 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"tombstone:spectral_bite" { + # The max level of this enchantment - originally 10. + # Default: 13; Range: [1 ~ 127] + I:"Max Level"=13 + + # The max level of this enchantment available from loot sources. + # Default: 10; Range: [1 ~ 127] + I:"Max Loot Level"=10 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"tombstone:spectral_conjurer" { + # The max level of this enchantment - originally 10. + # Default: 13; Range: [1 ~ 127] + I:"Max Level"=13 + + # The max level of this enchantment available from loot sources. + # Default: 10; Range: [1 ~ 127] + I:"Max Loot Level"=10 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"tombstone:incurable_wounds" { + # The max level of this enchantment - originally 10. + # Default: 13; Range: [1 ~ 127] + I:"Max Level"=13 + + # The max level of this enchantment available from loot sources. + # Default: 10; Range: [1 ~ 127] + I:"Max Loot Level"=10 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"tombstone:decrepitude" { + # The max level of this enchantment - originally 10. + # Default: 13; Range: [1 ~ 127] + I:"Max Level"=13 + + # The max level of this enchantment available from loot sources. + # Default: 10; Range: [1 ~ 127] + I:"Max Loot Level"=10 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"tombstone:sanctified" { + # The max level of this enchantment - originally 10. + # Default: 13; Range: [1 ~ 127] + I:"Max Level"=13 + + # The max level of this enchantment available from loot sources. + # Default: 10; Range: [1 ~ 127] + I:"Max Loot Level"=10 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"tombstone:ruthless_strike" { + # The max level of this enchantment - originally 10. + # Default: 13; Range: [1 ~ 127] + I:"Max Level"=13 + + # The max level of this enchantment available from loot sources. + # Default: 10; Range: [1 ~ 127] + I:"Max Loot Level"=10 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + diff --git a/minecraft/config/config/apotheosis/garden.cfg b/minecraft/config/config/apotheosis/garden.cfg new file mode 100644 index 0000000..6795612 --- /dev/null +++ b/minecraft/config/config/apotheosis/garden.cfg @@ -0,0 +1,22 @@ +# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1 + +# Apotheosis Garden Module Configuration + +general { + # The max height a stack of cacti may grow to. Vanilla is 3. Values greater than 32 are uncapped growth. + # Server-authoritative. + # Default: 5; Range: [1 ~ 512] + I:"Cactus Height"=5 + + # The max height a stack of reeds may grow to. Vanilla is 3. Values greater than 32 are uncapped growth. + # Server-authoritative. + # Default: 255; Range: [1 ~ 512] + I:"Reed Height"=255 + + # The max height a stack of bamboo may grow to. Vanilla is 16. + # Server-authoritative. + # Default: 32; Range: [1 ~ 64] + I:"Bamboo Height"=32 +} + + diff --git a/minecraft/config/config/apotheosis/names.cfg b/minecraft/config/config/apotheosis/names.cfg new file mode 100644 index 0000000..772dc59 --- /dev/null +++ b/minecraft/config/config/apotheosis/names.cfg @@ -0,0 +1,1422 @@ +# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1 + +# + +entity { + # A list of full names, which are used in the generation of boss names. May be empty only if name parts is not empty. + # Default: [Prim], [Tyrael], [Bajorno], [Michael Morbius], [Morbius], [Arun], [Panez], [Doomsday], [Vanamar], [WhatTheDrunk], [Lothrazar], [Chelly], [Chelicia], [Darsh], [Dariush], [Cheese E Piloza], [Bing], [Royal], [NoWayHere], [SwankyStella], [Isosahedron], [Asfalis], [Biz], [Icicle], [Darko], [Shadows], [Katarina], [Faellynna], [Diliviel], [Jank], [Albert], [Andrew], [Anderson], [Andy], [Allan], [Arthur], [Aaron], [Allison], [Arielle], [Amanda], [Anne], [Annie], [Amy], [Alana], [Brandon], [Brady], [Bernard], [Ben], [Benjamin], [Bob], [Bobette], [Brooke], [Brandy], [Beatrice], [Bea], [Bella], [Becky], [Carlton], [Carl], [Calvin], [Cameron], [Carson], [Chase], [Cassandra], [Cassie], [Cas], [Carol], [Carly], [Cherise], [Charlotte], [Cheryl], [Chasity], [Danny], [Drake], [Daniel], [Derrel], [David], [Dave], [Donovan], [Don], [Donald], [Drew], [Derrick], [Darla], [Donna], [Dora], [Danielle], [Edward], [Elliot], [Ed], [Edson], [Elton], [Eddison], [Earl], [Eric], [Ericson], [Eddie], [Ediovany], [Emma], [Elizabeth], [Eliza], [Esperanza], [Esper], [Esmeralda], [Emi], [Emily], [Elaine], [Fernando], [Ferdinand], [Fred], [Feddie], [Fredward], [Frank], [Franklin], [Felix], [Felicia], [Fran], [Greg], [Gregory], [George], [Gerald], [Gina], [Geraldine], [Gabby], [Hendrix], [Henry], [Hobbes], [Herbert], [Heath], [Henderson], [Helga], [Hera], [Helen], [Helena], [Hannah], [Ike], [Issac], [Israel], [Ismael], [Irlanda], [Isabelle], [Irene], [Irenia], [Jimmy], [Jim], [Justin], [Jacob], [Jake], [Jon], [Johnson], [Jonny], [Jonathan], [Josh], [Joshua], [Julian], [Jesus], [Jericho], [Jeb], [Jess], [Joan], [Jill], [Jillian], [Jessica], [Jennifer], [Jenny], [Jen], [Judy], [Kenneth], [Kenny], [Ken], [Keith], [Kevin], [Karen], [Kassandra], [Kassie], [Leonard], [Leo], [Leroy], [Lee], [Lenny], [Luke], [Lucas], [Liam], [Lorraine], [Latasha], [Lauren], [Laquisha], [Livia], [Lydia], [Lila], [Lilly], [Lillian], [Lilith], [Lana], [Mason], [Mike], [Mickey], [Mario], [Manny], [Mark], [Marcus], [Martin], [Marty], [Matthew], [Matt], [Max], [Maximillian], [Marth], [Mia], [Marriah], [Maddison], [Maddie], [Marissa], [Miranda], [Mary], [Martha], [Melonie], [Melody], [Mel], [Minnie], [Nathan], [Nathaniel], [Nate], [Ned], [Nick], [Norman], [Nicholas], [Natasha], [Nicki], [Nora], [Nelly], [Nina], [Orville], [Oliver], [Orlando], [Owen], [Olsen], [Odin], [Olaf], [Ortega], [Olivia], [Patrick], [Pat], [Paul], [Perry], [Pinnochio], [Patrice], [Patricia], [Pennie], [Petunia], [Patti], [Pernelle], [Quade], [Quincy], [Quentin], [Quinn], [Roberto], [Robbie], [Rob], [Robert], [Roy], [Roland], [Ronald], [Richard], [Rick], [Ricky], [Rose], [Rosa], [Rhonda], [Rebecca], [Roberta], [Sparky], [Shiloh], [Stephen], [Steve], [Saul], [Sheen], [Shane], [Sean], [Sampson], [Samuel], [Sammy], [Stefan], [Sasha], [Sam], [Susan], [Suzy], [Shelby], [Samantha], [Sheila], [Sharon], [Sally], [Stephanie], [Sandra], [Sandy], [Sage], [Tim], [Thomas], [Thompson], [Tyson], [Tyler], [Tom], [Tyrone], [Timmothy], [Tamara], [Tabby], [Tabitha], [Tessa], [Tiara], [Tyra], [Uriel], [Ursala], [Uma], [Victor], [Vincent], [Vince], [Vance], [Vinny], [Velma], [Victoria], [Veronica], [Wilson], [Wally], [Wallace], [Will], [Wilard], [William], [Wilhelm], [Xavier], [Xandra], [Young], [Yvonne], [Yolanda], [Zach], [Zachary] + S:Names < + Prim + Tyrael + Bajorno + Michael Morbius + Morbius + Arun + Panez + Doomsday + Vanamar + WhatTheDrunk + Lothrazar + Chelly + Chelicia + Darsh + Dariush + Cheese E Piloza + Bing + Royal + NoWayHere + SwankyStella + Isosahedron + Asfalis + Biz + Icicle + Darko + Shadows + Katarina + Faellynna + Diliviel + Jank + Albert + Andrew + Anderson + Andy + Allan + Arthur + Aaron + Allison + Arielle + Amanda + Anne + Annie + Amy + Alana + Brandon + Brady + Bernard + Ben + Benjamin + Bob + Bobette + Brooke + Brandy + Beatrice + Bea + Bella + Becky + Carlton + Carl + Calvin + Cameron + Carson + Chase + Cassandra + Cassie + Cas + Carol + Carly + Cherise + Charlotte + Cheryl + Chasity + Danny + Drake + Daniel + Derrel + David + Dave + Donovan + Don + Donald + Drew + Derrick + Darla + Donna + Dora + Danielle + Edward + Elliot + Ed + Edson + Elton + Eddison + Earl + Eric + Ericson + Eddie + Ediovany + Emma + Elizabeth + Eliza + Esperanza + Esper + Esmeralda + Emi + Emily + Elaine + Fernando + Ferdinand + Fred + Feddie + Fredward + Frank + Franklin + Felix + Felicia + Fran + Greg + Gregory + George + Gerald + Gina + Geraldine + Gabby + Hendrix + Henry + Hobbes + Herbert + Heath + Henderson + Helga + Hera + Helen + Helena + Hannah + Ike + Issac + Israel + Ismael + Irlanda + Isabelle + Irene + Irenia + Jimmy + Jim + Justin + Jacob + Jake + Jon + Johnson + Jonny + Jonathan + Josh + Joshua + Julian + Jesus + Jericho + Jeb + Jess + Joan + Jill + Jillian + Jessica + Jennifer + Jenny + Jen + Judy + Kenneth + Kenny + Ken + Keith + Kevin + Karen + Kassandra + Kassie + Leonard + Leo + Leroy + Lee + Lenny + Luke + Lucas + Liam + Lorraine + Latasha + Lauren + Laquisha + Livia + Lydia + Lila + Lilly + Lillian + Lilith + Lana + Mason + Mike + Mickey + Mario + Manny + Mark + Marcus + Martin + Marty + Matthew + Matt + Max + Maximillian + Marth + Mia + Marriah + Maddison + Maddie + Marissa + Miranda + Mary + Martha + Melonie + Melody + Mel + Minnie + Nathan + Nathaniel + Nate + Ned + Nick + Norman + Nicholas + Natasha + Nicki + Nora + Nelly + Nina + Orville + Oliver + Orlando + Owen + Olsen + Odin + Olaf + Ortega + Olivia + Patrick + Pat + Paul + Perry + Pinnochio + Patrice + Patricia + Pennie + Petunia + Patti + Pernelle + Quade + Quincy + Quentin + Quinn + Roberto + Robbie + Rob + Robert + Roy + Roland + Ronald + Richard + Rick + Ricky + Rose + Rosa + Rhonda + Rebecca + Roberta + Sparky + Shiloh + Stephen + Steve + Saul + Sheen + Shane + Sean + Sampson + Samuel + Sammy + Stefan + Sasha + Sam + Susan + Suzy + Shelby + Samantha + Sheila + Sharon + Sally + Stephanie + Sandra + Sandy + Sage + Tim + Thomas + Thompson + Tyson + Tyler + Tom + Tyrone + Timmothy + Tamara + Tabby + Tabitha + Tessa + Tiara + Tyra + Uriel + Ursala + Uma + Victor + Vincent + Vince + Vance + Vinny + Velma + Victoria + Veronica + Wilson + Wally + Wallace + Will + Wilard + William + Wilhelm + Xavier + Xandra + Young + Yvonne + Yolanda + Zach + Zachary + > + + # A list of name pieces, which can be spliced together to create full names. May be empty only if names is not empty. + # Default: [Prim], [Morb], [Ius], [Kat], [Chel], [Bing], [Darsh], [Jank], [Dark], [Osto], [Grab], [Thar], [Ger], [Ald], [Mas], [On], [O], [Din], [Thor], [Jon], [Ath], [Burb], [En], [A], [E], [I], [U], [Hab], [Bloo], [Ena], [Dit], [Aph], [Ern], [Bor], [Dav], [Id], [Toast], [Son], [For], [Wen], [Lob], [Van], [Zap], [Ear], [Ben], [Don], [Bran], [Gro], [Jen], [Bob], [Ette], [Ere], [Man], [Qua], [Bro], [Cree], [Per], [Skel], [Ton], [Zom], [Bie], [Wolf], [End], [Er], [Pig], [Sil], [Ver], [Fish], [Cow], [Chic], [Ken], [Sheep], [Squid], [Hell] + S:"Name Parts" < + Prim + Morb + Ius + Kat + Chel + Bing + Darsh + Jank + Dark + Osto + Grab + Thar + Ger + Ald + Mas + On + O + Din + Thor + Jon + Ath + Burb + En + A + E + I + U + Hab + Bloo + Ena + Dit + Aph + Ern + Bor + Dav + Id + Toast + Son + For + Wen + Lob + Van + Zap + Ear + Ben + Don + Bran + Gro + Jen + Bob + Ette + Ere + Man + Qua + Bro + Cree + Per + Skel + Ton + Zom + Bie + Wolf + End + Er + Pig + Sil + Ver + Fish + Cow + Chic + Ken + Sheep + Squid + Hell + > + + # A list of prefixes, which are used in the generation of boss names. May be empty. + # Default: [Dr. Michael], [Sir], [Mister], [Madam], [Doctor], [Father], [Mother], [Poppa], [Lord], [Lady], [Overseer], [Professor], [Mr.], [Mr. President], [Duke], [Duchess], [Dame], [The Honorable], [Chancellor], [Vice-Chancellor], [His Holiness], [Reverend], [Count], [Viscount], [Earl], [Captain], [Major], [General], [Senpai] + S:Prefixes < + Dr. Michael + Sir + Mister + Madam + Doctor + Father + Mother + Poppa + Lord + Lady + Overseer + Professor + Mr. + Mr. President + Duke + Duchess + Dame + The Honorable + Chancellor + Vice-Chancellor + His Holiness + Reverend + Count + Viscount + Earl + Captain + Major + General + Senpai + > + + # A list of suffixes, which are used in the generation of boss names. A suffix is always preceeded by "The". May be empty. + # Default: [Morbius], [Dragonborn], [Rejected], [Mighty], [Supreme], [Superior], [Ultimate], [Lame], [Wimpy], [Curious], [Sneaky], [Pathetic], [Crying], [Eagle], [Errant], [Unholy], [Questionable], [Mean], [Hungry], [Thirsty], [Feeble], [Wise], [Sage], [Magical], [Mythical], [Legendary], [Not Very Nice], [Jerk], [Doctor], [Misunderstood], [Angry], [Knight], [Bishop], [Godly], [Special], [Toasty], [Shiny], [Shimmering], [Light], [Dark], [Odd-Smelling], [Funky], [Rock Smasher], [Son of Herobrine], [Cracked], [Sticky], [§kAlien§r], [Baby], [Manly], [Rough], [Scary], [Undoubtable], [Honest], [Non-Suspicious], [Boring], [Odd], [Lazy], [Super], [Nifty], [Ogre Slayer], [Pig Thief], [Dirt Digger], [Really Cool], [Doominator], [... Something], [Extra-Fishy], [Gorilla Slaughterer], [Marbles Winner], [AC Rizzlord], [President], [Burger Chef], [Professional Animator], [Cheese Sprayer], [Happiness Advocate], [Ghost Hunter], [Head of Potatoes], [Ninja], [Warrior], [Pyromancer] + S:Suffixes < + Morbius + Dragonborn + Rejected + Mighty + Supreme + Superior + Ultimate + Lame + Wimpy + Curious + Sneaky + Pathetic + Crying + Eagle + Errant + Unholy + Questionable + Mean + Hungry + Thirsty + Feeble + Wise + Sage + Magical + Mythical + Legendary + Not Very Nice + Jerk + Doctor + Misunderstood + Angry + Knight + Bishop + Godly + Special + Toasty + Shiny + Shimmering + Light + Dark + Odd-Smelling + Funky + Rock Smasher + Son of Herobrine + Cracked + Sticky + §kAlien§r + Baby + Manly + Rough + Scary + Undoubtable + Honest + Non-Suspicious + Boring + Odd + Lazy + Super + Nifty + Ogre Slayer + Pig Thief + Dirt Digger + Really Cool + Doominator + ... Something + Extra-Fishy + Gorilla Slaughterer + Marbles Winner + AC Rizzlord + President + Burger Chef + Professional Animator + Cheese Sprayer + Happiness Advocate + Ghost Hunter + Head of Potatoes + Ninja + Warrior + Pyromancer + > +} + + +items { + # A list of root names for helms, used in the generation of item names. May not be empty. + # Default: [Helmet], [Cap], [Crown], [Great Helm], [Bassinet], [Sallet], [Close Helm], [Barbute] + S:Helms < + Helmet + Cap + Crown + Great Helm + Bassinet + Sallet + Close Helm + Barbute + > + + # A list of root names for chestplates, used in the generation of item names. May not be empty. + # Default: [Chestplate], [Tunic], [Brigandine], [Hauberk], [Cuirass] + S:chestplates < + Chestplate + Tunic + Brigandine + Hauberk + Cuirass + > + + # A list of root names for leggings, used in the generation of item names. May not be empty. + # Default: [Leggings], [Pants], [Tassets], [Cuisses], [Schynbalds] + S:leggings < + Leggings + Pants + Tassets + Cuisses + Schynbalds + > + + # A list of root names for boots, used in the generation of item names. May not be empty. + # Default: [Boots], [Shoes], [Greaves], [Sabatons], [Sollerets] + S:boots < + Boots + Shoes + Greaves + Sabatons + Sollerets + > + + # A list of root names for swords, used in the generation of item names. May not be empty. + # Default: [Sword], [Cutter], [Slicer], [Dicer], [Knife], [Blade], [Machete], [Brand], [Claymore], [Cutlass], [Foil], [Dagger], [Glaive], [Rapier], [Saber], [Scimitar], [Shortsword], [Longsword], [Broadsword], [Calibur] + S:swords < + Sword + Cutter + Slicer + Dicer + Knife + Blade + Machete + Brand + Claymore + Cutlass + Foil + Dagger + Glaive + Rapier + Saber + Scimitar + Shortsword + Longsword + Broadsword + Calibur + > + + # A list of root names for axes, used in the generation of item names. May not be empty. + # Default: [Axe], [Chopper], [Hatchet], [Tomahawk], [Cleaver], [Hacker], [Tree-Cutter], [Truncator] + S:axes < + Axe + Chopper + Hatchet + Tomahawk + Cleaver + Hacker + Tree-Cutter + Truncator + > + + # A list of root names for pickaxes, used in the generation of item names. May not be empty. + # Default: [Pickaxe], [Pick], [Mattock], [Rock-Smasher], [Miner] + S:pickaxes < + Pickaxe + Pick + Mattock + Rock-Smasher + Miner + > + + # A list of root names for shovels, used in the generation of item names. May not be empty. + # Default: [Shovel], [Spade], [Digger], [Excavator], [Trowel], [Scoop] + S:shovels < + Shovel + Spade + Digger + Excavator + Trowel + Scoop + > + + # A list of root names for bows, used in the generation of item names. May not be empty. + # Default: [Bow], [Shortbow], [Longbow], [Flatbow], [Recurve Bow], [Reflex Bow], [Self Bow], [Composite Bow], [Arrow-Flinger] + S:bows < + Bow + Shortbow + Longbow + Flatbow + Recurve Bow + Reflex Bow + Self Bow + Composite Bow + Arrow-Flinger + > + + # A list of root names for shields, used in the generation of item names. May not be empty. + # Default: [Shield], [Buckler], [Targe], [Greatshield], [Blockade], [Bulwark], [Tower Shield], [Protector], [Aegis] + S:shields < + Shield + Buckler + Targe + Greatshield + Blockade + Bulwark + Tower Shield + Protector + Aegis + > +} + + +tools { + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:zinc_hoe + # + # Default: [ + S:create_sa_zinc_hoe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:rose_quartz_shovel + # + # Default: [ + S:create_sa_rose_quartz_shovel < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:brass_sword + # + # Default: [ + S:create_sa_brass_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create:cardboard_sword + # + # Default: [ + S:CARDBOARD < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: tfmg:lead_sword, tfmg:lead_pickaxe, tfmg:lead_axe, tfmg:lead_shovel, tfmg:lead_hoe + # + # Default: [ + S:LEAD < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:experience_axe + # + # Default: [ + S:create_sa_experience_axe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:iron_sword, minecraft:iron_shovel, minecraft:iron_pickaxe, minecraft:iron_axe, minecraft:iron_hoe + # + # Default: [ + S:IRON < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:stone_sword, minecraft:stone_shovel, minecraft:stone_pickaxe, minecraft:stone_axe, minecraft:stone_hoe + # + # Default: [ + S:STONE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:diamond_sword, minecraft:diamond_shovel, minecraft:diamond_pickaxe, minecraft:diamond_axe, minecraft:diamond_hoe + # + # Default: [ + S:DIAMOND < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:rose_quartz_pickaxe + # + # Default: [ + S:create_sa_rose_quartz_pickaxe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: bloodmagic:soulsword, bloodmagic:soulaxe, bloodmagic:soulpickaxe, bloodmagic:soulshovel, bloodmagic:soulscythe + # + # Default: [ + S:SENTIENT < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:zinc_sword + # + # Default: [ + S:create_sa_zinc_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:brass_hoe + # + # Default: [ + S:create_sa_brass_hoe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: botania:elementium_pickaxe, botania:elementium_shovel, botania:elementium_axe, botania:elementium_hoe, botania:elementium_sword + # + # Default: [ + S:ELEMENTIUM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: botania:glass_pickaxe + # + # Default: [ + S:botania_glass_pickaxe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:wooden_sword, minecraft:wooden_shovel, minecraft:wooden_pickaxe, minecraft:wooden_axe, minecraft:wooden_hoe + # + # Default: [ + S:WOOD < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: tfmg:steel_sword, tfmg:steel_pickaxe, tfmg:steel_axe, tfmg:steel_shovel, tfmg:steel_hoe, tfmg:lithium_blade, tfmg:lit_lithium_blade + # + # Default: [ + S:STEEL < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: forestry:bronze_pickaxe, forestry:bronze_shovel, forestry:bronze_axe, forestry:bronze_sword, forestry:bronze_hoe + # + # Default: [ + S:SURVIVALIST < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:portable_drill + # + # Default: [ + S:create_sa_portable_drill < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: botania:manasteel_pick, botania:manasteel_shovel, botania:manasteel_axe, botania:manasteel_hoe, botania:manasteel_sword, botania:ender_dagger + # + # Default: [ + S:MANASTEEL < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:brass_shovel + # + # Default: [ + S:create_sa_brass_shovel < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:rose_quartz_sword + # + # Default: [ + S:create_sa_rose_quartz_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:blazing_cleaver + # + # Default: [ + S:create_sa_blazing_cleaver < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:brass_pickaxe + # + # Default: [ + S:create_sa_brass_pickaxe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:blazing_axe + # + # Default: [ + S:create_sa_blazing_axe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:zinc_axe + # + # Default: [ + S:create_sa_zinc_axe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:copper_axe + # + # Default: [ + S:create_sa_copper_axe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: tfmg:aluminum_sword, tfmg:aluminum_pickaxe, tfmg:aluminum_axe, tfmg:aluminum_shovel, tfmg:aluminum_hoe + # + # Default: [ + S:ALUMINUM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:blazing_shovel + # + # Default: [ + S:create_sa_blazing_shovel < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:copper_sword + # + # Default: [ + S:create_sa_copper_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:blazing_pickaxe + # + # Default: [ + S:create_sa_blazing_pickaxe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:rose_quartz_axe + # + # Default: [ + S:create_sa_rose_quartz_axe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:copper_hoe + # + # Default: [ + S:create_sa_copper_hoe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:brass_axe + # + # Default: [ + S:create_sa_brass_axe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:golden_sword, minecraft:golden_shovel, minecraft:golden_pickaxe, minecraft:golden_axe, minecraft:golden_hoe + # + # Default: [ + S:GOLD < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:copper_shovel + # + # Default: [ + S:create_sa_copper_shovel < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: botania:terra_pick, botania:terra_axe, botania:terra_sword, botania:star_sword, botania:thunder_sword + # + # Default: [ + S:TERRASTEEL < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:copper_pickaxe + # + # Default: [ + S:create_sa_copper_pickaxe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:netherite_sword, minecraft:netherite_shovel, minecraft:netherite_pickaxe, minecraft:netherite_axe, minecraft:netherite_hoe, ars_nouveau:enchanters_sword + # + # Default: [ + S:NETHERITE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:zinc_pickaxe + # + # Default: [ + S:create_sa_zinc_pickaxe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:experience_shovel + # + # Default: [ + S:create_sa_experience_shovel < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:experience_pickaxe + # + # Default: [ + S:create_sa_experience_pickaxe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:zinc_shovel + # + # Default: [ + S:create_sa_zinc_shovel < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:experience_sword + # + # Default: [ + S:create_sa_experience_sword < + > +} + + +armors { + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:andesite_jetpack_chestplate + # + # Default: [ + S:create_sa_andesite_jetpack_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: tfmg:steel_helmet, tfmg:steel_chestplate, tfmg:steel_leggings, tfmg:steel_boots + # + # Default: [ + S:STEEL < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: botania:manasteel_helmet, botania:manasteel_chestplate, botania:manasteel_leggings, botania:manasteel_boots + # + # Default: [ + S:MANASTEEL < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: railways:black_conductor_cap + # + # Default: [ + S:railways_black_conductor_cap < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: railways:brown_conductor_cap + # + # Default: [ + S:railways_brown_conductor_cap < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: railways:magenta_conductor_cap + # + # Default: [ + S:railways_magenta_conductor_cap < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: railways:white_conductor_cap + # + # Default: [ + S:railways_white_conductor_cap < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:zinc_chestplate + # + # Default: [ + S:create_sa_zinc_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:copper_helmet + # + # Default: [ + S:create_sa_copper_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:zinc_leggings + # + # Default: [ + S:create_sa_zinc_leggings < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:brass_exoskeleton_chestplate + # + # Default: [ + S:create_sa_brass_exoskeleton_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: forestry:apiarist_chest + # + # Default: [ + S:forestry_apiarist_chest < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create:cardboard_helmet, create:cardboard_chestplate, create:cardboard_leggings, create:cardboard_boots + # + # Default: [ + S:CARDBOARD < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: ars_nouveau:arcanist_boots, ars_nouveau:arcanist_leggings, ars_nouveau:arcanist_robes, ars_nouveau:arcanist_hood + # + # Default: [ + S:ars_nouveau_arcanist_boots < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:copper_leggings + # + # Default: [ + S:create_sa_copper_leggings < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: railways:light_blue_conductor_cap + # + # Default: [ + S:railways_light_blue_conductor_cap < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:andesite_exoskeleton_chestplate + # + # Default: [ + S:create_sa_andesite_exoskeleton_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: railways:green_conductor_cap + # + # Default: [ + S:railways_green_conductor_cap < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:copper_jetpack_chestplate + # + # Default: [ + S:create_sa_copper_jetpack_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: railways:blue_conductor_cap + # + # Default: [ + S:railways_blue_conductor_cap < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:turtle_helmet + # + # Default: [ + S:TURTLE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:brass_boots + # + # Default: [ + S:create_sa_brass_boots < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: botania:terrasteel_helmet, botania:terrasteel_chestplate, botania:terrasteel_leggings, botania:terrasteel_boots + # + # Default: [ + S:TERRASTEEL < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:chainmail_helmet, minecraft:chainmail_chestplate, minecraft:chainmail_leggings, minecraft:chainmail_boots + # + # Default: [ + S:CHAIN < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:iron_helmet, minecraft:iron_chestplate, minecraft:iron_leggings, minecraft:iron_boots + # + # Default: [ + S:IRON < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: railways:gray_conductor_cap + # + # Default: [ + S:railways_gray_conductor_cap < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:netherite_helmet, minecraft:netherite_chestplate, minecraft:netherite_leggings, minecraft:netherite_boots, create:netherite_backtank, create:netherite_diving_helmet, create:netherite_diving_boots + # + # Default: [ + S:NETHERITE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:netherite_jetpack_chestplate + # + # Default: [ + S:create_sa_netherite_jetpack_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: ars_nouveau:battlemage_boots, ars_nouveau:battlemage_leggings, ars_nouveau:battlemage_robes, ars_nouveau:battlemage_hood + # + # Default: [ + S:ars_nouveau_battlemage_boots < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:golden_helmet, minecraft:golden_chestplate, minecraft:golden_leggings, minecraft:golden_boots + # + # Default: [ + S:GOLD < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:slime_boots + # + # Default: [ + S:create_sa_slime_boots < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create:copper_backtank, create:copper_diving_helmet, create:copper_diving_boots + # + # Default: [ + S:COPPER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: forestry:apiarist_boots + # + # Default: [ + S:forestry_apiarist_boots < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:copper_boots + # + # Default: [ + S:create_sa_copper_boots < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: ars_nouveau:sorcerer_boots, ars_nouveau:sorcerer_leggings, ars_nouveau:sorcerer_robes, ars_nouveau:sorcerer_hood + # + # Default: [ + S:ars_nouveau_sorcerer_boots < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: forestry:apiarist_legs + # + # Default: [ + S:forestry_apiarist_legs < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:copper_exoskeleton_chestplate + # + # Default: [ + S:create_sa_copper_exoskeleton_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:leather_helmet, minecraft:leather_chestplate, minecraft:leather_leggings, minecraft:leather_boots, forestry:naturalist_helmet + # + # Default: [ + S:LEATHER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: railways:light_gray_conductor_cap + # + # Default: [ + S:railways_light_gray_conductor_cap < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:slime_helmet + # + # Default: [ + S:create_sa_slime_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: bloodmagic:livinghelmet, bloodmagic:livingplate, bloodmagic:livingleggings, bloodmagic:livingboots, tomeofblood:living_mage_hood, tomeofblood:living_mage_robes, tomeofblood:living_mage_leggings, tomeofblood:living_mage_boots + # + # Default: [ + S:bloodmagic_livinghelmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:brass_helmet + # + # Default: [ + S:create_sa_brass_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:shulker_shell + # + # Default: [ + S:minecraft_shulker_shell < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:copper_chestplate + # + # Default: [ + S:create_sa_copper_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: railways:cyan_conductor_cap + # + # Default: [ + S:railways_cyan_conductor_cap < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: railways:lime_conductor_cap + # + # Default: [ + S:railways_lime_conductor_cap < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: railways:orange_conductor_cap + # + # Default: [ + S:railways_orange_conductor_cap < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: botania:manaweave_helmet, botania:manaweave_chestplate, botania:manaweave_leggings, botania:manaweave_boots + # + # Default: [ + S:MANAWEAVE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:diamond_helmet, minecraft:diamond_chestplate, minecraft:diamond_leggings, minecraft:diamond_boots + # + # Default: [ + S:DIAMOND < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:zinc_boots + # + # Default: [ + S:create_sa_zinc_boots < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: botania:elementium_helmet, botania:elementium_chestplate, botania:elementium_leggings, botania:elementium_boots + # + # Default: [ + S:ELEMENTIUM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: railways:red_conductor_cap + # + # Default: [ + S:railways_red_conductor_cap < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: railways:purple_conductor_cap + # + # Default: [ + S:railways_purple_conductor_cap < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:brass_leggings + # + # Default: [ + S:create_sa_brass_leggings < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:brass_jetpack_chestplate + # + # Default: [ + S:create_sa_brass_jetpack_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: railways:pink_conductor_cap + # + # Default: [ + S:railways_pink_conductor_cap < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: railways:yellow_conductor_cap + # + # Default: [ + S:railways_yellow_conductor_cap < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:brass_chestplate + # + # Default: [ + S:create_sa_brass_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:zinc_helmet + # + # Default: [ + S:create_sa_zinc_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: forestry:apiarist_helmet + # + # Default: [ + S:forestry_apiarist_helmet < + > +} + + +formatting { + # The format string that will be used when a suffix is applied. + # Default: %s the %s + S:"Suffix Format"=%s the %s + + # The format string that will be used to indicate ownership. + # Default: %s's + S:"Ownership Format"=%s's +} + + diff --git a/minecraft/config/config/apotheosis/potion.cfg b/minecraft/config/config/apotheosis/potion.cfg new file mode 100644 index 0000000..6ece37c --- /dev/null +++ b/minecraft/config/config/apotheosis/potion.cfg @@ -0,0 +1,25 @@ +# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1 + +# Apotheosis Potion Module Configuration + +general { + # If Potion Charms will only work when in a curios slot, instead of in the inventory. + # Default: false + B:"Restrict Charms to Curios"=false + + # A list of effects that, when as charms, will be applied and reapplied at a longer threshold to avoid issues at low durations, like night vision. + # Server-authoritative. + # Default: [minecraft:night_vision], [minecraft:health_boost] + S:"Extended Potion Charms" < + minecraft:night_vision + minecraft:health_boost + > + + # A list of effects that, cannot be crafted into Potion Charms. + # Server-authoritative. + # Default: [ + S:"Blacklisted Potion Charm Effects" < + > +} + + diff --git a/minecraft/config/config/apotheosis/spawner.cfg b/minecraft/config/config/apotheosis/spawner.cfg new file mode 100644 index 0000000..3448e02 --- /dev/null +++ b/minecraft/config/config/apotheosis/spawner.cfg @@ -0,0 +1,30 @@ +# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1 + +# Apotheosis Spawner Module Configuration + +general { + # 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. + # Functionally server-authoritative, but should match on client for information. + # Default: 1; Range: [-1 ~ 127] + I:"Spawner Silk Level"=1 + + # The durability damage dealt to an item that silk touches a spawner. + # Server-authoritative. + # Default: 100; Range: [0 ~ 100000] + I:"Spawner Silk Damage"=100 + + # Whether to show info regarding the capturing enchantment in the JEI information for spawn eggs. + # Default: true + B:"Enable Capturing Enchantment JEI Info"=true +} + + +spawn_eggs { + # A list of entity registry names that cannot be applied to spawners via egg. + # Should match between client and server. + # Default: [ + S:"Banned Mobs" < + > +} + + diff --git a/minecraft/config/config/apotheosis/village.cfg b/minecraft/config/config/apotheosis/village.cfg new file mode 100644 index 0000000..a6ca996 --- /dev/null +++ b/minecraft/config/config/apotheosis/village.cfg @@ -0,0 +1,30 @@ +# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1 + +# Apotheosis Village Module Configuration + +wanderer { + # If the generic trade list will be cleared before datapack loaded trades are added. + # Server-authoritative. + # Default: false + B:"Clear Generic Trades"=false + + # If the rare trade list will be cleared before datapack loaded trades are added. + # Server-authoritative. + # Default: false + B:"Clear Rare Trades"=false + + # If the Wandering Trader can attempt to spawn underground. + # Server-authoritative. + # Default: true + B:"Underground Trader"=true +} + + +arrows { + # If explosive arrows can break blocks. + # Server-authoritative. + # Default: true + B:"Explosive Arrow Block Damage"=true +} + + diff --git a/minecraft/config/config/appleskin-client.toml b/minecraft/config/config/appleskin-client.toml new file mode 100644 index 0000000..b171cd8 --- /dev/null +++ b/minecraft/config/config/appleskin-client.toml @@ -0,0 +1,24 @@ + +[client] + #If true, shows the hunger (and saturation if showSaturationHudOverlay is true) that would be restored by food you are currently holding + showFoodValuesHudOverlay = true + #If true, shows your food exhaustion as a progress bar behind the hunger bars + showFoodExhaustionHudUnderlay = true + #Alpha value of the flashing icons at their most visible point (1.0 = fully opaque, 0.0 = fully transparent) + #Range: 0.0 ~ 1.0 + maxHudOverlayFlashAlpha = 0.65 + #If true, health/hunger overlay will shake to match Minecraft's icon animations + showVanillaAnimationsOverlay = true + #If true, adds a line that shows your hunger, saturation, and exhaustion level in the F3 debug overlay + showFoodStatsInDebugOverlay = true + #If true, shows the hunger and saturation values of food in its tooltip while holding SHIFT + showFoodValuesInTooltip = true + #If true, shows the hunger and saturation values of food in its tooltip automatically (without needing to hold SHIFT) + showFoodValuesInTooltipAlways = true + #If true, shows estimated health restored by food on the health bar + showFoodHealthHudOverlay = true + #If true, shows your current saturation level overlayed on the hunger bar + showSaturationHudOverlay = true + #If true, enables the hunger/saturation/health overlays for food in your off-hand + showFoodValuesHudOverlayWhenOffhand = true + diff --git a/minecraft/config/config/ars_botania-common.toml b/minecraft/config/config/ars_botania-common.toml new file mode 100644 index 0000000..77ed8f3 --- /dev/null +++ b/minecraft/config/config/ars_botania-common.toml @@ -0,0 +1,15 @@ +#One source mana(Ars) to X Mana(Bot) +mana_convert = 15.0 +#Max rate of mana transfer +max_rate = 1000 + +[player_mana_convert] + #Enable player mana convert + enable = false + #Allow charging items using player's mana recovery + charge = false + #One player mana(Ars) to X Mana(Bot) [Referred when receiving/extracting ars-nouveau mana] + a2b = 4.0 + #One Mana(Bot) to X player mana(Ars) [Referred when receiving/extracting botania mana] + b2a = 0.006 + diff --git a/minecraft/config/config/ars_nouveau-client.toml b/minecraft/config/config/ars_nouveau-client.toml new file mode 100644 index 0000000..21c8374 --- /dev/null +++ b/minecraft/config/config/ars_nouveau-client.toml @@ -0,0 +1,54 @@ + +#Lighting +[lights] + #Show the supporter message. This is set to false after the first time. + showSupporterMessage = true + #If dynamic lights are enabled + lightsEnabled = true + #How bright the touch light is + #Range: 0 ~ 15 + touchLightLuminance = 8 + #How long the touch light lasts in ticks + #Range: 0 ~ 40 + touchLightDuration = 8 + #Light level an entity should emit when dynamic lights are on + #Example entry: minecraft:blaze=15 + entity_lights = ["minecraft:blaze=10", "ars_nouveau:orbit=15", "ars_nouveau:linger=15", "ars_nouveau:spell_proj=15", "minecraft:magma_cube=8", "ars_nouveau:flying_item=10", "minecraft:spectral_arrow=8", "ars_nouveau:follow_proj=10"] + #Light level an item should emit when held when dynamic lights are on + #Example entry: minecraft:stick=15 + item_lights = ["minecraft:redstone_torch=10", "minecraft:soul_lantern=12", "minecraft:glow_ink_sac=10", "minecraft:verdant_froglight=15", "minecraft:blaze_rod=10", "minecraft:shroomlight=10", "minecraft:lantern=14", "minecraft:soul_torch=10", "minecraft:glow_berries=8", "minecraft:glowstone_dust=8", "minecraft:pearlescent_froglight=15", "minecraft:nether_star=14", "minecraft:glowstone=15", "minecraft:torch=14", "minecraft:ochre_froglight=15", "minecraft:lava_bucket=15"] + +#Overlay +[overlays] + #X offset for the tooltip + #Range: > -2147483648 + xTooltip = 20 + #Y offset for the tooltip + #Range: > -2147483648 + yTooltip = 0 + #X offset for the Mana Bar + #Range: > -2147483648 + xManaBar = 0 + #Y offset for the Mana Bar + #Range: > -2147483648 + yManaBar = 0 + #If the Storage Lectern should show the recipe book icon + showRecipeBook = true + #Inform the player of Dynamic lights once. + informLights = false + #Whether the Selection HUD is toggled or held + toggleSelectionHUD = true + +#Misc +[misc] + #Use simplified renderer for Warp Portals + no_end_portal_render = false + #Disables the skyweave renderer. Disable if your sky is broken with shaders. + disable_skyweave = false + #Show spell tooltips with glyphs instead of plain text + glyphTooltips = true + #Enables transparent/opaque rendering of elements in the book GUI. Disable if it leads to crash with Sodium derivatives + gui_transparency = true + #Disables translucent particles. Disable if your particles are invisible with shaders. + opaque_particles = false + diff --git a/minecraft/config/config/ars_nouveau-common.toml b/minecraft/config/config/ars_nouveau-common.toml new file mode 100644 index 0000000..0de9d25 --- /dev/null +++ b/minecraft/config/config/ars_nouveau-common.toml @@ -0,0 +1,74 @@ + +#General settings +[general] + #Dimensions where hostile mobs will not spawn. Ex: ["minecraft:overworld", "undergarden:undergarden"]. . Run /forge dimensions for a list. + dimensionBlacklist = [] + #Spawn a book in the players inventory on login + spawnBook = true + #How much mana whirlisprigs consume per generation + #Range: 0 ~ 10000 + sylphManaCost = 250 + #How much progress whirlisprigs must accumulate before creating resources + #Range: 0 ~ 10000 + whirlisprigProgress = 250 + #Should the Wilden Hunter attack animals? + hunterHuntsAnimals = false + #Should the Wilden Stalker attack animals? + stalkerHuntsAnimals = false + #Should the Wilden Defender attack animals? + defenderHuntsAnimals = false + #Should the Wilden Chimera dive bomb destroy blocks? + destructiveDiveBomb = true + #Archwood forest spawn weight + #Range: > 0 + archwoodForest = 2 + #How many inventories can lectern support per bookwyrm + #Range: > 1 + bookwyrmLimit = 8 + +[drygmy_production] + #How much source drygmys consume per generation + #Range: 0 ~ 10000 + drygmyManaCost = 1000 + #How many channels must occur before a drygmy produces loot + #Range: 0 ~ 300 + drygmyMaxProgress = 20 + #Bonus number of items a drygmy produces per unique mob + #Range: 0 ~ 300 + drygmyUniqueBonus = 2 + #Base number of items a drygmy produces per cycle before bonuses. + #Range: > -2147483648 + drygmyBaseItems = 1 + #Max Bonus number of items a drygmy produces from nearby entities. Each entity equals 1 item. + #Range: 0 ~ 300 + drygmyQuantityCap = 5 + +#Items +[item] + #Spawn Caster Tomes in Dungeon Loot? + spawnTomes = true + #How much mana the Ring of Jumping consumes per jump + #Range: 0 ~ 10000 + jumpRingCost = 30 + +#Blocks +[block] + #How much potion a melder takes from each input jar. 100 = 1 potion + #Range: > 100 + melderInputCost = 200 + #How much potion a melder outputs per cycle. 100 = 1 potion + #Range: > 100 + melderOutput = 100 + #How much source a melder takes per cycle + #Range: > 0 + melderSourceCost = 300 + #The max potion level the enchanted flask can grant. This isnt needed unless you have an infinite potion leveling exploit. + #Range: > 2 + enchantedFlaskCap = 255 + +#Debug +[debug] + #Max number of log events to keep on entities. Lowering this number may make it difficult to debug why your entities are stuck. + #Range: > 0 + maxLogEvents = 100 + diff --git a/minecraft/config/config/ars_nouveau-server.toml b/minecraft/config/config/ars_nouveau-server.toml new file mode 100644 index 0000000..b274629 --- /dev/null +++ b/minecraft/config/config/ars_nouveau-server.toml @@ -0,0 +1,57 @@ + +#Mana +[mana] + #Base mana regen in seconds + #Range: > 0 + baseRegen = 5 + #Base max mana + #Range: > 0 + baseMax = 100 + #How often max and regen will be calculated, in ticks. NOTE: Having the base mana regen AT LEAST this value is recommended. + #Range: 1 ~ 20 + updateInterval = 5 + #Max mana bonus per glyph + #Range: > 0 + glyphmax = 15 + #Max mana bonus for tier of book + #Range: > 0 + tierMax = 50 + #Mana regen bonus for tier of book + #Range: > 0 + tierRegen = 1 + #Mana Boost value per level + #Range: > 0 + manaBoost = 25 + #(enchantment) Mana regen per second per level + #Range: > 0 + manaRegenEnchantment = 2 + #Regen bonus per glyph + #Range: 0.0 ~ 2.147483647E9 + glyphRegen = 0.33 + #Regen bonus per potion level + #Range: > 0 + potionRegen = 10 + +[spell_casting] + #Enforce augment cap on casting? Turn this off if you are a pack maker and want to create more powerful items than players. + enforceCapOnCast = true + #Enforce glyph per spell limit on casting? Turn this off if you are a pack maker and want to create more powerful items than players. + enforceGlyphLimitOnCast = true + +[item] + #Cost per glyph in a codex + #Range: > 0 + codexCost = 10 + +[warp_portals] + #Enable warp portals? + enableWarpPortals = true + +#Beta Features +[beta] + #Allow crafting infinite spells. This is a beta feature and may cause crashes. + infiniteSpells = false + #Limits the crafting infinite spells beta, set a cap to the number of additional glyphs. This is a beta feature and may cause crashes. + #Range: 10 ~ 1000 + infiniteSpellLimit = 30 + diff --git a/minecraft/config/config/ars_nouveau/burst.toml b/minecraft/config/config/ars_nouveau/burst.toml new file mode 100644 index 0000000..bdd6451 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/burst.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 500 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: 1 ~ 1 + per_spell_limit = 1 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 3 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = ["ars_nouveau:glyph_wall", "ars_nouveau:glyph_linger"] + diff --git a/minecraft/config/config/ars_nouveau/glyph_accelerate.toml b/minecraft/config/config/ars_nouveau/glyph_accelerate.toml new file mode 100644 index 0000000..b0b30a8 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_accelerate.toml @@ -0,0 +1,17 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 10 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 2 + diff --git a/minecraft/config/config/ars_nouveau/glyph_amplify.toml b/minecraft/config/config/ars_nouveau/glyph_amplify.toml new file mode 100644 index 0000000..a3cda5e --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_amplify.toml @@ -0,0 +1,17 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 20 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + diff --git a/minecraft/config/config/ars_nouveau/glyph_animate_block.toml b/minecraft/config/config/ars_nouveau/glyph_animate_block.toml new file mode 100644 index 0000000..5afa391 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_animate_block.toml @@ -0,0 +1,32 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 200 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 2 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Base duration in seconds + #Range: > 0 + duration = 60 + #Extend time duration, in seconds + #Range: > 0 + extend_time = 60 + diff --git a/minecraft/config/config/ars_nouveau/glyph_aoe.toml b/minecraft/config/config/ars_nouveau/glyph_aoe.toml new file mode 100644 index 0000000..3ed0ecd --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_aoe.toml @@ -0,0 +1,17 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 35 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 2 + diff --git a/minecraft/config/config/ars_nouveau/glyph_blink.toml b/minecraft/config/config/ars_nouveau/glyph_blink.toml new file mode 100644 index 0000000..8e76cc0 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_blink.toml @@ -0,0 +1,31 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 50 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 3 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Base teleport distance + #Range: > 0 + distance = 8 + #Range: 0.0 ~ 2.147483647E9 + amplify = 3.0 + diff --git a/minecraft/config/config/ars_nouveau/glyph_bounce.toml b/minecraft/config/config/ars_nouveau/glyph_bounce.toml new file mode 100644 index 0000000..c0ec8a0 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_bounce.toml @@ -0,0 +1,32 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 50 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Potion duration, in seconds + #Range: > 0 + potion_time = 30 + #Extend time duration, in seconds + #Range: > 0 + extend_time = 8 + diff --git a/minecraft/config/config/ars_nouveau/glyph_break.toml b/minecraft/config/config/ars_nouveau/glyph_break.toml new file mode 100644 index 0000000..17eb677 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_break.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 10 + #Is Starter Glyph? + starter = true + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = ["ars_nouveau:glyph_fortune=4"] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/minecraft/config/config/ars_nouveau/glyph_cold_snap.toml b/minecraft/config/config/ars_nouveau/glyph_cold_snap.toml new file mode 100644 index 0000000..09baece --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_cold_snap.toml @@ -0,0 +1,36 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 30 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 2 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = ["ars_nouveau:glyph_amplify=2", "ars_nouveau:glyph_aoe=1"] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Range: 0.0 ~ 2.147483647E9 + damage = 6.0 + #Range: 0.0 ~ 2.147483647E9 + amplify = 2.5 + #Potion duration, in seconds + #Range: > 0 + potion_time = 5 + #Extend time duration, in seconds + #Range: > 0 + extend_time = 1 + diff --git a/minecraft/config/config/ars_nouveau/glyph_conjure_water.toml b/minecraft/config/config/ars_nouveau/glyph_conjure_water.toml new file mode 100644 index 0000000..2ad381e --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_conjure_water.toml @@ -0,0 +1,32 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 80 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 2 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Potion duration, in seconds + #Range: > 0 + potion_time = 20 + #Extend time duration, in seconds + #Range: > 0 + extend_time = 10 + diff --git a/minecraft/config/config/ars_nouveau/glyph_craft.toml b/minecraft/config/config/ars_nouveau/glyph_craft.toml new file mode 100644 index 0000000..0b2fa2c --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_craft.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 50 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/minecraft/config/config/ars_nouveau/glyph_crush.toml b/minecraft/config/config/ars_nouveau/glyph_crush.toml new file mode 100644 index 0000000..24d077d --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_crush.toml @@ -0,0 +1,30 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 30 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 2 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = ["ars_nouveau:glyph_amplify=2"] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Range: 0.0 ~ 2.147483647E9 + damage = 3.0 + #Range: 0.0 ~ 2.147483647E9 + amplify = 1.0 + diff --git a/minecraft/config/config/ars_nouveau/glyph_cut.toml b/minecraft/config/config/ars_nouveau/glyph_cut.toml new file mode 100644 index 0000000..1f1b7b7 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_cut.toml @@ -0,0 +1,30 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 0 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = ["ars_nouveau:glyph_amplify=2"] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Range: 0.0 ~ 2.147483647E9 + damage = 1.0 + #Range: 0.0 ~ 2.147483647E9 + amplify = 1.0 + diff --git a/minecraft/config/config/ars_nouveau/glyph_dampen.toml b/minecraft/config/config/ars_nouveau/glyph_dampen.toml new file mode 100644 index 0000000..0a69e92 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_dampen.toml @@ -0,0 +1,17 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 0 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 2 + diff --git a/minecraft/config/config/ars_nouveau/glyph_decelerate.toml b/minecraft/config/config/ars_nouveau/glyph_decelerate.toml new file mode 100644 index 0000000..929521d --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_decelerate.toml @@ -0,0 +1,17 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 5 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 2 + diff --git a/minecraft/config/config/ars_nouveau/glyph_delay.toml b/minecraft/config/config/ars_nouveau/glyph_delay.toml new file mode 100644 index 0000000..45e8907 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_delay.toml @@ -0,0 +1,32 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 0 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Randomize chance, in percentage (0-1 = 0% - 100%) + #Range: 0.0 ~ 2.147483647E9 + extend_time = 0.25 + #The base duration of the delay effect in ticks. + #Range: > 0 + base_duration = 20 + diff --git a/minecraft/config/config/ars_nouveau/glyph_dispel.toml b/minecraft/config/config/ars_nouveau/glyph_dispel.toml new file mode 100644 index 0000000..d000876 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_dispel.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 30 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/minecraft/config/config/ars_nouveau/glyph_duration_down.toml b/minecraft/config/config/ars_nouveau/glyph_duration_down.toml new file mode 100644 index 0000000..7b54044 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_duration_down.toml @@ -0,0 +1,17 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 15 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 2 + diff --git a/minecraft/config/config/ars_nouveau/glyph_ender_inventory.toml b/minecraft/config/config/ars_nouveau/glyph_ender_inventory.toml new file mode 100644 index 0000000..b18b875 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_ender_inventory.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 50 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 2 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/minecraft/config/config/ars_nouveau/glyph_evaporate.toml b/minecraft/config/config/ars_nouveau/glyph_evaporate.toml new file mode 100644 index 0000000..0b2fa2c --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_evaporate.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 50 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/minecraft/config/config/ars_nouveau/glyph_exchange.toml b/minecraft/config/config/ars_nouveau/glyph_exchange.toml new file mode 100644 index 0000000..b18b875 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_exchange.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 50 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 2 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/minecraft/config/config/ars_nouveau/glyph_explosion.toml b/minecraft/config/config/ars_nouveau/glyph_explosion.toml new file mode 100644 index 0000000..6b134c1 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_explosion.toml @@ -0,0 +1,39 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 200 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 2 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = ["ars_nouveau:glyph_amplify=2"] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Range: 0.0 ~ 2.147483647E9 + amplify = 0.5 + #Explosion base intensity + #Range: 0.0 ~ 100.0 + base = 0.75 + #AOE intensity bonus + #Range: 0.0 ~ 100.0 + aoe_bonus = 1.5 + #Range: 0.0 ~ 2.147483647E9 + damage = 6.0 + #Additional damage per amplify + #Range: 0.0 ~ 2.147483647E9 + amp_damage = 2.5 + diff --git a/minecraft/config/config/ars_nouveau/glyph_extend_time.toml b/minecraft/config/config/ars_nouveau/glyph_extend_time.toml new file mode 100644 index 0000000..b0b30a8 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_extend_time.toml @@ -0,0 +1,17 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 10 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 2 + diff --git a/minecraft/config/config/ars_nouveau/glyph_extract.toml b/minecraft/config/config/ars_nouveau/glyph_extract.toml new file mode 100644 index 0000000..8576d4b --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_extract.toml @@ -0,0 +1,17 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 30 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 2 + diff --git a/minecraft/config/config/ars_nouveau/glyph_fangs.toml b/minecraft/config/config/ars_nouveau/glyph_fangs.toml new file mode 100644 index 0000000..ba54f52 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_fangs.toml @@ -0,0 +1,30 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 35 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 3 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = ["ars_nouveau:glyph_amplify=2"] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Range: 0.0 ~ 2.147483647E9 + damage = 6.0 + #Range: 0.0 ~ 2.147483647E9 + amplify = 3.0 + diff --git a/minecraft/config/config/ars_nouveau/glyph_fell.toml b/minecraft/config/config/ars_nouveau/glyph_fell.toml new file mode 100644 index 0000000..dcd8dec --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_fell.toml @@ -0,0 +1,32 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 150 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Base amount of harvested blocks + #Range: > 0 + base_harvest = 50 + #Additional max blocks per AOE + #Range: > 0 + aoe_bonus = 50 + diff --git a/minecraft/config/config/ars_nouveau/glyph_firework.toml b/minecraft/config/config/ars_nouveau/glyph_firework.toml new file mode 100644 index 0000000..4a991dc --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_firework.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 50 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 2 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = ["ars_nouveau:glyph_amplify=2"] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/minecraft/config/config/ars_nouveau/glyph_flare.toml b/minecraft/config/config/ars_nouveau/glyph_flare.toml new file mode 100644 index 0000000..4c30b71 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_flare.toml @@ -0,0 +1,33 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 40 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 2 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = ["ars_nouveau:glyph_amplify=2"] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Range: 0.0 ~ 2.147483647E9 + damage = 7.0 + #Range: 0.0 ~ 2.147483647E9 + amplify = 3.0 + #Extend time duration, in seconds + #Range: > 0 + extend_time = 1 + diff --git a/minecraft/config/config/ars_nouveau/glyph_fortune.toml b/minecraft/config/config/ars_nouveau/glyph_fortune.toml new file mode 100644 index 0000000..0aedad9 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_fortune.toml @@ -0,0 +1,17 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 80 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 2 + diff --git a/minecraft/config/config/ars_nouveau/glyph_freeze.toml b/minecraft/config/config/ars_nouveau/glyph_freeze.toml new file mode 100644 index 0000000..12a722d --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_freeze.toml @@ -0,0 +1,32 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 15 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = ["ars_nouveau:glyph_sensitive=1"] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Potion duration, in seconds + #Range: > 0 + potion_time = 10 + #Extend time duration, in seconds + #Range: > 0 + extend_time = 5 + diff --git a/minecraft/config/config/ars_nouveau/glyph_glide.toml b/minecraft/config/config/ars_nouveau/glyph_glide.toml new file mode 100644 index 0000000..2eb404b --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_glide.toml @@ -0,0 +1,32 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 100 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 3 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Potion duration, in seconds + #Range: > 0 + potion_time = 180 + #Extend time duration, in seconds + #Range: > 0 + extend_time = 120 + diff --git a/minecraft/config/config/ars_nouveau/glyph_gravity.toml b/minecraft/config/config/ars_nouveau/glyph_gravity.toml new file mode 100644 index 0000000..6ff89a7 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_gravity.toml @@ -0,0 +1,32 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 15 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 2 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Potion duration, in seconds + #Range: > 0 + potion_time = 30 + #Extend time duration, in seconds + #Range: > 0 + extend_time = 8 + diff --git a/minecraft/config/config/ars_nouveau/glyph_grow.toml b/minecraft/config/config/ars_nouveau/glyph_grow.toml new file mode 100644 index 0000000..b34196d --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_grow.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 70 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 2 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/minecraft/config/config/ars_nouveau/glyph_gust.toml b/minecraft/config/config/ars_nouveau/glyph_gust.toml new file mode 100644 index 0000000..8c3474b --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_gust.toml @@ -0,0 +1,31 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 15 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Base knockback value + #Range: 0.0 ~ 1.7976931348623157E308 + base_value = 1.5 + #Range: 0.0 ~ 2.147483647E9 + amplify = 1.0 + diff --git a/minecraft/config/config/ars_nouveau/glyph_harm.toml b/minecraft/config/config/ars_nouveau/glyph_harm.toml new file mode 100644 index 0000000..6bd51fb --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_harm.toml @@ -0,0 +1,36 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 15 + #Is Starter Glyph? + starter = true + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = ["ars_nouveau:glyph_amplify=2"] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Range: 0.0 ~ 2.147483647E9 + damage = 5.0 + #Range: 0.0 ~ 2.147483647E9 + amplify = 2.0 + #Potion duration, in seconds + #Range: > 0 + potion_time = 5 + #Extend time duration, in seconds + #Range: > 0 + extend_time = 5 + diff --git a/minecraft/config/config/ars_nouveau/glyph_harvest.toml b/minecraft/config/config/ars_nouveau/glyph_harvest.toml new file mode 100644 index 0000000..742288f --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_harvest.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 10 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/minecraft/config/config/ars_nouveau/glyph_heal.toml b/minecraft/config/config/ars_nouveau/glyph_heal.toml new file mode 100644 index 0000000..6458e96 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_heal.toml @@ -0,0 +1,31 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 50 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 2 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Base heal amount + #Range: 0.0 ~ 1.7976931348623157E308 + base_heal = 3.0 + #Range: 0.0 ~ 2.147483647E9 + amplify = 3.0 + diff --git a/minecraft/config/config/ars_nouveau/glyph_hex.toml b/minecraft/config/config/ars_nouveau/glyph_hex.toml new file mode 100644 index 0000000..c4e87c8 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_hex.toml @@ -0,0 +1,32 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 100 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 3 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = ["ars_nouveau:glyph_amplify=4"] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Potion duration, in seconds + #Range: > 0 + potion_time = 30 + #Extend time duration, in seconds + #Range: > 0 + extend_time = 8 + diff --git a/minecraft/config/config/ars_nouveau/glyph_ignite.toml b/minecraft/config/config/ars_nouveau/glyph_ignite.toml new file mode 100644 index 0000000..053682e --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_ignite.toml @@ -0,0 +1,32 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 15 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Extend time duration, in seconds + #Range: > 0 + extend_time = 2 + #Potion duration, in seconds + #Range: > 0 + potion_time = 3 + diff --git a/minecraft/config/config/ars_nouveau/glyph_infuse.toml b/minecraft/config/config/ars_nouveau/glyph_infuse.toml new file mode 100644 index 0000000..9c34851 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_infuse.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 30 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 2 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = ["ars_nouveau:glyph_aoe=1", "ars_nouveau:glyph_extend_time=1"] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/minecraft/config/config/ars_nouveau/glyph_intangible.toml b/minecraft/config/config/ars_nouveau/glyph_intangible.toml new file mode 100644 index 0000000..827758e --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_intangible.toml @@ -0,0 +1,32 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 30 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 3 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Base duration, in seconds + #Range: > 0 + base = 3 + #Extend time duration, in seconds + #Range: > 0 + extend_time = 1 + diff --git a/minecraft/config/config/ars_nouveau/glyph_interact.toml b/minecraft/config/config/ars_nouveau/glyph_interact.toml new file mode 100644 index 0000000..742288f --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_interact.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 10 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/minecraft/config/config/ars_nouveau/glyph_invisibility.toml b/minecraft/config/config/ars_nouveau/glyph_invisibility.toml new file mode 100644 index 0000000..149779e --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_invisibility.toml @@ -0,0 +1,32 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 30 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 2 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Potion duration, in seconds + #Range: > 0 + potion_time = 30 + #Extend time duration, in seconds + #Range: > 0 + extend_time = 8 + diff --git a/minecraft/config/config/ars_nouveau/glyph_launch.toml b/minecraft/config/config/ars_nouveau/glyph_launch.toml new file mode 100644 index 0000000..e9b8763 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_launch.toml @@ -0,0 +1,31 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 30 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Base knockup amount + #Range: 0.0 ~ 1.7976931348623157E308 + knockup = 0.8 + #Range: 0.0 ~ 2.147483647E9 + amplify = 0.25 + diff --git a/minecraft/config/config/ars_nouveau/glyph_leap.toml b/minecraft/config/config/ars_nouveau/glyph_leap.toml new file mode 100644 index 0000000..159941b --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_leap.toml @@ -0,0 +1,33 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 25 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #If true, will not launch the caster if they are not on the ground. + force_ground = false + #Base knockup amount + #Range: 0.0 ~ 1.7976931348623157E308 + knock_up = 1.5 + #Range: 0.0 ~ 2.147483647E9 + amplify = 1.0 + diff --git a/minecraft/config/config/ars_nouveau/glyph_light.toml b/minecraft/config/config/ars_nouveau/glyph_light.toml new file mode 100644 index 0000000..a3ea3b8 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_light.toml @@ -0,0 +1,32 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 25 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = ["ars_nouveau:glyph_amplify=1"] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Potion duration, in seconds + #Range: > 0 + potion_time = 30 + #Extend time duration, in seconds + #Range: > 0 + extend_time = 8 + diff --git a/minecraft/config/config/ars_nouveau/glyph_lightning.toml b/minecraft/config/config/ars_nouveau/glyph_lightning.toml new file mode 100644 index 0000000..28bdf78 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_lightning.toml @@ -0,0 +1,33 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 100 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 3 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = ["ars_nouveau:glyph_amplify=2"] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Range: 0.0 ~ 2.147483647E9 + damage = 5.0 + #Range: 0.0 ~ 2.147483647E9 + amplify = 3.0 + #Bonus damage for wet entities + #Range: 0.0 ~ 1.7976931348623157E308 + wet_bonus = 2.0 + diff --git a/minecraft/config/config/ars_nouveau/glyph_linger.toml b/minecraft/config/config/ars_nouveau/glyph_linger.toml new file mode 100644 index 0000000..81f9d85 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_linger.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 500 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: 1 ~ 1 + per_spell_limit = 1 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 3 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/minecraft/config/config/ars_nouveau/glyph_name.toml b/minecraft/config/config/ars_nouveau/glyph_name.toml new file mode 100644 index 0000000..d9207eb --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_name.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 25 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 2 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/minecraft/config/config/ars_nouveau/glyph_orbit.toml b/minecraft/config/config/ars_nouveau/glyph_orbit.toml new file mode 100644 index 0000000..b4e9a21 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_orbit.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 50 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 3 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/minecraft/config/config/ars_nouveau/glyph_phantom_block.toml b/minecraft/config/config/ars_nouveau/glyph_phantom_block.toml new file mode 100644 index 0000000..df020cf --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_phantom_block.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 5 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = ["ars_nouveau:glyph_amplify=1"] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/minecraft/config/config/ars_nouveau/glyph_pickup.toml b/minecraft/config/config/ars_nouveau/glyph_pickup.toml new file mode 100644 index 0000000..742288f --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_pickup.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 10 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/minecraft/config/config/ars_nouveau/glyph_pierce.toml b/minecraft/config/config/ars_nouveau/glyph_pierce.toml new file mode 100644 index 0000000..7c69733 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_pierce.toml @@ -0,0 +1,17 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 40 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 2 + diff --git a/minecraft/config/config/ars_nouveau/glyph_place_block.toml b/minecraft/config/config/ars_nouveau/glyph_place_block.toml new file mode 100644 index 0000000..742288f --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_place_block.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 10 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/minecraft/config/config/ars_nouveau/glyph_projectile.toml b/minecraft/config/config/ars_nouveau/glyph_projectile.toml new file mode 100644 index 0000000..5f9b744 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_projectile.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 10 + #Is Starter Glyph? + starter = true + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Max lifespan of the projectile, in seconds. + #Range: > 0 + max_lifespan = 60 + diff --git a/minecraft/config/config/ars_nouveau/glyph_pull.toml b/minecraft/config/config/ars_nouveau/glyph_pull.toml new file mode 100644 index 0000000..0b913a2 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_pull.toml @@ -0,0 +1,31 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 15 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Base movement velocity + #Range: 0.0 ~ 1.7976931348623157E308 + base_value = 1.0 + #Range: 0.0 ~ 2.147483647E9 + amplify = 0.5 + diff --git a/minecraft/config/config/ars_nouveau/glyph_randomize.toml b/minecraft/config/config/ars_nouveau/glyph_randomize.toml new file mode 100644 index 0000000..2fc0abf --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_randomize.toml @@ -0,0 +1,17 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 0 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + diff --git a/minecraft/config/config/ars_nouveau/glyph_redstone_signal.toml b/minecraft/config/config/ars_nouveau/glyph_redstone_signal.toml new file mode 100644 index 0000000..fe83749 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_redstone_signal.toml @@ -0,0 +1,32 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 0 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Base time in ticks + #Range: > 0 + base_duration = 5 + #Extend time bonus, in ticks + #Range: > 0 + extend_time = 10 + diff --git a/minecraft/config/config/ars_nouveau/glyph_rotate.toml b/minecraft/config/config/ars_nouveau/glyph_rotate.toml new file mode 100644 index 0000000..742288f --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_rotate.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 10 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/minecraft/config/config/ars_nouveau/glyph_rune.toml b/minecraft/config/config/ars_nouveau/glyph_rune.toml new file mode 100644 index 0000000..d000876 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_rune.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 30 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/minecraft/config/config/ars_nouveau/glyph_self.toml b/minecraft/config/config/ars_nouveau/glyph_self.toml new file mode 100644 index 0000000..8278bee --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_self.toml @@ -0,0 +1,23 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 10 + #Is Starter Glyph? + starter = true + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + diff --git a/minecraft/config/config/ars_nouveau/glyph_sense_magic.toml b/minecraft/config/config/ars_nouveau/glyph_sense_magic.toml new file mode 100644 index 0000000..9ae605d --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_sense_magic.toml @@ -0,0 +1,32 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 50 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 2 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Potion duration, in seconds + #Range: > 0 + potion_time = 60 + #Extend time duration, in seconds + #Range: > 0 + extend_time = 15 + diff --git a/minecraft/config/config/ars_nouveau/glyph_sensitive.toml b/minecraft/config/config/ars_nouveau/glyph_sensitive.toml new file mode 100644 index 0000000..1d07f9a --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_sensitive.toml @@ -0,0 +1,17 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 10 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + diff --git a/minecraft/config/config/ars_nouveau/glyph_slowfall.toml b/minecraft/config/config/ars_nouveau/glyph_slowfall.toml new file mode 100644 index 0000000..149779e --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_slowfall.toml @@ -0,0 +1,32 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 30 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 2 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Potion duration, in seconds + #Range: > 0 + potion_time = 30 + #Extend time duration, in seconds + #Range: > 0 + extend_time = 8 + diff --git a/minecraft/config/config/ars_nouveau/glyph_smelt.toml b/minecraft/config/config/ars_nouveau/glyph_smelt.toml new file mode 100644 index 0000000..5bc608c --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_smelt.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 100 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 2 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/minecraft/config/config/ars_nouveau/glyph_snare.toml b/minecraft/config/config/ars_nouveau/glyph_snare.toml new file mode 100644 index 0000000..04ad5dd --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_snare.toml @@ -0,0 +1,32 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 100 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Potion duration, in seconds + #Range: > 0 + potion_time = 8 + #Extend time duration, in seconds + #Range: > 0 + extend_time = 1 + diff --git a/minecraft/config/config/ars_nouveau/glyph_split.toml b/minecraft/config/config/ars_nouveau/glyph_split.toml new file mode 100644 index 0000000..457d2cb --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_split.toml @@ -0,0 +1,17 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 20 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 3 + diff --git a/minecraft/config/config/ars_nouveau/glyph_summon_decoy.toml b/minecraft/config/config/ars_nouveau/glyph_summon_decoy.toml new file mode 100644 index 0000000..dc54f54 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_summon_decoy.toml @@ -0,0 +1,32 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 200 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 3 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Extend time duration, in seconds + #Range: > 0 + extend_time = 15 + #Base duration in seconds + #Range: > 0 + duration = 30 + diff --git a/minecraft/config/config/ars_nouveau/glyph_summon_steed.toml b/minecraft/config/config/ars_nouveau/glyph_summon_steed.toml new file mode 100644 index 0000000..7fd6343 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_summon_steed.toml @@ -0,0 +1,32 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 100 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Extend time duration, in seconds + #Range: > 0 + extend_time = 120 + #Base duration in seconds + #Range: > 0 + duration = 300 + diff --git a/minecraft/config/config/ars_nouveau/glyph_summon_undead.toml b/minecraft/config/config/ars_nouveau/glyph_summon_undead.toml new file mode 100644 index 0000000..3e07b23 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_summon_undead.toml @@ -0,0 +1,32 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 150 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 3 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Base duration in seconds + #Range: > 0 + duration = 15 + #Extend time duration, in seconds + #Range: > 0 + extend_time = 10 + diff --git a/minecraft/config/config/ars_nouveau/glyph_summon_vex.toml b/minecraft/config/config/ars_nouveau/glyph_summon_vex.toml new file mode 100644 index 0000000..3e07b23 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_summon_vex.toml @@ -0,0 +1,32 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 150 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 3 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Base duration in seconds + #Range: > 0 + duration = 15 + #Extend time duration, in seconds + #Range: > 0 + extend_time = 10 + diff --git a/minecraft/config/config/ars_nouveau/glyph_summon_wolves.toml b/minecraft/config/config/ars_nouveau/glyph_summon_wolves.toml new file mode 100644 index 0000000..4196905 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_summon_wolves.toml @@ -0,0 +1,32 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 100 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Base duration in seconds + #Range: > 0 + duration = 60 + #Extend time duration, in seconds + #Range: > 0 + extend_time = 60 + diff --git a/minecraft/config/config/ars_nouveau/glyph_toss.toml b/minecraft/config/config/ars_nouveau/glyph_toss.toml new file mode 100644 index 0000000..742288f --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_toss.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 10 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/minecraft/config/config/ars_nouveau/glyph_touch.toml b/minecraft/config/config/ars_nouveau/glyph_touch.toml new file mode 100644 index 0000000..b577d96 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_touch.toml @@ -0,0 +1,23 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 5 + #Is Starter Glyph? + starter = true + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + diff --git a/minecraft/config/config/ars_nouveau/glyph_underfoot.toml b/minecraft/config/config/ars_nouveau/glyph_underfoot.toml new file mode 100644 index 0000000..efbacd4 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_underfoot.toml @@ -0,0 +1,23 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 5 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + diff --git a/minecraft/config/config/ars_nouveau/glyph_wall.toml b/minecraft/config/config/ars_nouveau/glyph_wall.toml new file mode 100644 index 0000000..2115309 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_wall.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 500 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: 1 ~ 1 + per_spell_limit = 1 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 3 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = ["ars_nouveau:glyph_linger"] + diff --git a/minecraft/config/config/ars_nouveau/glyph_wind_shear.toml b/minecraft/config/config/ars_nouveau/glyph_wind_shear.toml new file mode 100644 index 0000000..ee9edfc --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_wind_shear.toml @@ -0,0 +1,33 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 50 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 2 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = ["ars_nouveau:glyph_amplify=2"] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Range: 0.0 ~ 2.147483647E9 + damage = 5.0 + #Range: 0.0 ~ 2.147483647E9 + amplify = 2.5 + #Damage per block in the air + #Range: 0.0 ~ 1.7976931348623157E308 + airDamage = 0.75 + diff --git a/minecraft/config/config/ars_nouveau/glyph_wither.toml b/minecraft/config/config/ars_nouveau/glyph_wither.toml new file mode 100644 index 0000000..c4e87c8 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/glyph_wither.toml @@ -0,0 +1,32 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 100 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 3 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = ["ars_nouveau:glyph_amplify=4"] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Potion duration, in seconds + #Range: > 0 + potion_time = 30 + #Extend time duration, in seconds + #Range: > 0 + extend_time = 8 + diff --git a/minecraft/config/config/ars_nouveau/reset.toml b/minecraft/config/config/ars_nouveau/reset.toml new file mode 100644 index 0000000..f34b722 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/reset.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 0 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/minecraft/config/config/ars_nouveau/rewind.toml b/minecraft/config/config/ars_nouveau/rewind.toml new file mode 100644 index 0000000..95974fe --- /dev/null +++ b/minecraft/config/config/ars_nouveau/rewind.toml @@ -0,0 +1,38 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 100 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 3 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Max ticks entities should track for motion and health, etc. Note: Entities ANYWHERE are tracking this, setting this to a high value is not recommended for low-spec machines. + #Range: > 0 + entityRewindTracking = 60 + #How many ticks should be rewound before augments + #Range: 1 ~ 60 + baseRewindTime = 40 + #Extend time duration, in ticks + #Range: > 0 + extend_time = 20 + #Duration down time, in ticks + #Range: > 0 + duration_down_time = 10 + diff --git a/minecraft/config/config/ars_nouveau/wololo.toml b/minecraft/config/config/ars_nouveau/wololo.toml new file mode 100644 index 0000000..d000876 --- /dev/null +++ b/minecraft/config/config/ars_nouveau/wololo.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 30 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/minecraft/config/config/attributeslib.cfg b/minecraft/config/config/attributeslib.cfg new file mode 100644 index 0000000..5816963 --- /dev/null +++ b/minecraft/config/config/attributeslib.cfg @@ -0,0 +1,67 @@ +# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1 + +# + +general { + # If the Attributes GUI is available. + # Default: true + B:"Enable Attributes GUI"=true + + # If description tooltips will be added to potion items. + # Default: true + B:"Enable Potion Tooltips"=true + + # A list of attributes that will be hidden from the Attributes GUI. + # Default: [forge:nametag_distance], [attributeslib:creative_flight], [attributeslib:elytra_flight], [attributeslib:ghost_health] + S:"Hidden Attributes" < + forge:nametag_distance + attributeslib:creative_flight + attributeslib:elytra_flight + attributeslib:ghost_health + > +} + + +combat_rules { + # The protection damage reduction formula. + # Computed after Prot Pierce and Prot Shred are applied. + # Arguments: + # 'protPoints' - The number of protection points the user has after reductions. + # Output: + # The percentage of damage taken after protection has been applied, from 0 (no damage taken) to 1 (full damage taken). + # Reference: + # See https://github.com/ezylang/EvalEx#usage-examples for how to write expressions. + # + # Default: 1 - min(0.025 * protPoints, 0.85) + S:"Protection Formula"=1 - min(0.025 * protPoints, 0.85) + + # The a-value formula, which computes an intermediate used in the armor formula. + # Arguments: + # 'damage' - The damage of the incoming attack. + # Output: + # The a-value, which will be supplied as an argument to the armor formula. + # Reference: + # See https://github.com/ezylang/EvalEx#usage-examples for how to write expressions. + # + # Default: if(damage < 20, 10, 10 + (damage - 20) / 2) + S:"A-Value Formula"=if(damage < 20, 10, 10 + (damage - 20) / 2) + + # The armor damage reduction formula. + # Computed after Armor Pierce and Armor Shred are applied. + # Arguments: + # 'a' - The a-value computed by the a-value formula. + # 'damage' - The damage of the incoming attack. + # 'armor' - The armor value of the user after reductions. + # 'toughness' - The armor toughness value of the user. + # Output: + # The percentage of damage taken after armor has been applied, from 0 (no damage taken) to 1 (full damage taken). + # Reference: + # See https://github.com/ezylang/EvalEx#usage-examples for how to write expressions. + # Note: + # The vanilla formula is: 1 - min(max(armor - damage / (2 + toughness / 4), armor / 5), 20) / 25 + # + # Default: a / (a + armor) + S:"Armor Formula"=a / (a + armor) +} + + diff --git a/minecraft/config/config/biomesoplenty/biome_toggles.json b/minecraft/config/config/biomesoplenty/biome_toggles.json new file mode 100644 index 0000000..32a2dde --- /dev/null +++ b/minecraft/config/config/biomesoplenty/biome_toggles.json @@ -0,0 +1,68 @@ +{ + "aspen_glade_enabled": true, + "auroral_garden_enabled": true, + "bayou_enabled": true, + "bog_enabled": true, + "cold_desert_enabled": true, + "coniferous_forest_enabled": true, + "crag_enabled": true, + "crystalline_chasm_enabled": true, + "dead_forest_enabled": true, + "dryland_enabled": true, + "dune_beach_enabled": true, + "erupting_inferno_enabled": true, + "field_enabled": true, + "fir_clearing_enabled": true, + "floodplain_enabled": true, + "forested_field_enabled": true, + "fungal_jungle_enabled": true, + "glowing_grotto_enabled": true, + "grassland_enabled": true, + "gravel_beach_enabled": true, + "highland_enabled": true, + "hot_springs_enabled": true, + "jacaranda_glade_enabled": true, + "jade_cliffs_enabled": true, + "lavender_field_enabled": true, + "lush_desert_enabled": true, + "lush_savanna_enabled": true, + "maple_woods_enabled": true, + "marsh_enabled": true, + "mediterranean_forest_enabled": true, + "moor_enabled": true, + "muskeg_enabled": true, + "mystic_grove_enabled": true, + "old_growth_dead_forest_enabled": true, + "old_growth_woodland_enabled": true, + "ominous_woods_enabled": true, + "orchard_enabled": true, + "origin_valley_enabled": true, + "overgrown_greens_enabled": true, + "pasture_enabled": true, + "prairie_enabled": true, + "pumpkin_patch_enabled": true, + "rainforest_enabled": true, + "redwood_forest_enabled": true, + "rocky_rainforest_enabled": true, + "rocky_shrubland_enabled": true, + "scrubland_enabled": true, + "seasonal_forest_enabled": true, + "shrubland_enabled": true, + "snowblossom_grove_enabled": true, + "snowy_coniferous_forest_enabled": true, + "snowy_fir_clearing_enabled": true, + "snowy_maple_woods_enabled": true, + "spider_nest_enabled": true, + "tropics_enabled": true, + "tundra_enabled": true, + "undergrowth_enabled": true, + "visceral_heap_enabled": true, + "volcanic_plains_enabled": true, + "volcano_enabled": true, + "wasteland_enabled": true, + "wasteland_steppe_enabled": true, + "wetland_enabled": true, + "wintry_origin_valley_enabled": true, + "withered_abyss_enabled": true, + "woodland_enabled": true +} \ No newline at end of file diff --git a/minecraft/config/config/biomesoplenty/gameplay.toml b/minecraft/config/config/biomesoplenty/gameplay.toml new file mode 100644 index 0000000..69b9292 --- /dev/null +++ b/minecraft/config/config/biomesoplenty/gameplay.toml @@ -0,0 +1,5 @@ + +[general] + #Add various BOP resources to the Wandering Trader trade pool. + wandering_trader_trades = true + diff --git a/minecraft/config/config/biomesoplenty/generation.toml b/minecraft/config/config/biomesoplenty/generation.toml new file mode 100644 index 0000000..34ab229 --- /dev/null +++ b/minecraft/config/config/biomesoplenty/generation.toml @@ -0,0 +1,15 @@ + +[nether] + #The weighting of bop biome regions in the nether. + bop_nether_region_weight = 13 + #The weighting of rare bop biome regions in the nether. + bop_nether_rare_region_weight = 2 + +[overworld] + #The weighting of primary bop biome regions in the overworld. + bop_primary_overworld_region_weight = 10 + #The weighting of rare bop biome regions in the overworld. + bop_overworld_rare_region_weight = 2 + #The weighting of secondary bop biome regions in the overworld. + bop_secondary_overworld_region_weight = 8 + diff --git a/minecraft/config/config/bloodmagic-client.toml b/minecraft/config/config/bloodmagic-client.toml new file mode 100644 index 0000000..361990e --- /dev/null +++ b/minecraft/config/config/bloodmagic-client.toml @@ -0,0 +1,9 @@ + +#Always render the beams between routing nodes. +#If disabled, the beams will only render while the Node Router is held. +[client] + alwaysRenderRoutingLines = false + #When cycling through slots, the Sigil of Holding will skip over empty slots and move to the next occupied one. + #If disabled, it will behave identically to the default hotbar. + sigilHoldingSkipsEmptySlots = false + diff --git a/minecraft/config/config/bloodmagic-common.toml b/minecraft/config/config/bloodmagic-common.toml new file mode 100644 index 0000000..42a0948 --- /dev/null +++ b/minecraft/config/config/bloodmagic-common.toml @@ -0,0 +1,42 @@ +#Amount of LP the Sacrificial Dagger should provide for each damage dealt. Default value 100 +#Range: 0 ~ 10000 +sacrificialDaggerConversion = 100 +#Declares the amount of LP gained per HP sacrificed for the given entity. +#Setting the value to 0 will blacklist it. +#Use the registry name of the entity followed by a ';' and then the value you want. +#Vanilla entities do not require the modid. +sacrificialValues = ["villager;100", "slime;15", "enderman;10", "cow;100", "chicken;100", "horse;100", "sheep;100", "wolf;100", "ocelot;100", "pig;100", "rabbit;100", "dummmmmmy:target_dummy;0"] +#Stops the listed entities from being used in the Well of Suffering. +#Use the registry name of the entity. Vanilla entities do not require the modid. +wellOfSuffering = ["dummmmmmy:target_dummy"] +#Declares the amount of LP gained per HP sacrificed for any entity not defined specifically. Default value 25 +#Range: 0 ~ 10000 +defaultSacrificeValue = 25 +#Amount of upgrade points the living armour has by default. Default value 100 +#Range: 0 ~ 2000000000 +default_upgrade_points = 100 +#Amount of upgrade points the living armour has when evolved. Default value 300 +#Range: 0 ~ 2000000000 +evolved_upgrade_points = 300 +#State that the dungeon spawning ritual can only be activated when using a Creative Activation Crystal. +#Used on servers for if you do not trust your players to not destroy other people's bases. +makeDungeonRitualCreativeOnly = false + +["Geode Ritual"] + activation_cost = 50000 + refresh_cost = 50 + min_raw_will = 50.0 + min_corrosive_will = 50.0 + min_destructive_will = 50.0 + min_steadfast_will = 50.0 + min_vengeful_will = 50.0 + store_cost = 1.0 + harm_cost = 0.125 + fortune_cost = 1.0 + silk_touch_cost = 1.0 + growth_cost = 0.5 + hurt_damage = 2 + #Range: 1 ~ 15 + max_budding_blocks = 7 + max_harmed = 8 + diff --git a/minecraft/config/config/botania-client.toml b/minecraft/config/config/botania-client.toml new file mode 100644 index 0000000..51095e2 --- /dev/null +++ b/minecraft/config/config/botania-client.toml @@ -0,0 +1,45 @@ +#Set this to false to disable seasonal features, such as halloween and christmas. +seasonalFeatures = true +#Set to false to disable Botania's messages in the F3 debug screen +debugInfo = true +#Set this to false to disable the references in the flower tooltips. (You monster D:) +references = true +#Set this to false to disable Botania's splashes in the main menu. +splashes = true + +[rendering] + #Set this to false to disable the use of shaders for some of the mod's renders. (Requires game restart) + shaders = true + #Set this to false to disable the wireframe when looking a block bound to something (spreaders, flowers, etc). + boundBlockWireframe = true + #Set this to false to disable rendering of accessories in the player. + accessories = true + #The height of the mana display bar in above the XP bar. You can change this if you have a mod that changes where the XP bar is. + #Range: > 0 + manaBarHeight = 29 + #Set this to true if you use lots of floating flowers and are experiencing rendering lag. Will disable the floating flowers' animations and render them statically for a major performance boost. Hit F3+A in-world after toggling this. + staticFloaters = false + + [rendering.fancySkybox] + #Set this to false to disable the fancy skybox in Garden of Glass + enabled = true + #Set this to true to enable the fancy skybox in non Garden of Glass worlds. (Does not require Garden of Glass loaded to use, needs 'fancySkybox.enabled' to be true as well) + normalWorlds = false + + [rendering.lexicon] + #Set this to false to disable the rotating items in the petal and rune entries in the Lexica Botania. + rotatingItems = true + #Set this to false to disable the animated 3D render for the Lexica Botania. + render_3d = true + +[particles] + #Set this to true to set the power system's particles to be a lot more subtle. Good for low-end systems, if the particles are causing lag. + powerSystem = false + #Set this to true to use a static wand beam that shows every single position of the burst, similar to the way it used to work on old Botania versions. Warning: Disabled by default because it may be laggy. + staticWandBeam = false + #The frequency in which particles spawn from normal (worldgen) mystical flowers + #Range: 4.9E-324 ~ 1.7976931348623157E308 + flowerFrequency = 0.75 + #Set this to false to disable the particles in the elven portal. + elvenPortal = true + diff --git a/minecraft/config/config/botania-common.toml b/minecraft/config/config/botania-common.toml new file mode 100644 index 0000000..066ffcb --- /dev/null +++ b/minecraft/config/config/botania-common.toml @@ -0,0 +1,51 @@ +#Set this to false to disable the animation when an item is charging on top of a mana pool +chargeAnimation = true +#Turn this off ONLY IF you're on an extremely large world with an exaggerated count of Mana Spreaders/Mana Pools and are experiencing TPS lag. This toggles whether flowers are strict with their checking for connecting to pools/spreaders or just check whenever possible. +flowerBindingForceCheck = true +#Set to false to disable the ability for the Hand of Ender to pickpocket other players' ender chests +enderPickpocket = true +#Set this to false to disable the Mana Enchanter. Since some people find it OP or something. This only disables the entry and creation. Old ones that are already in the world will stay. +manaEnchanter = true +#Set this to false to disable the Relic System. This only disables the entries, drops and achievements. Old ones that are already in the world will stay. +relics = true +#Set this to true to invert the Ring of Magnetization's controls (from shift to stop to shift to work) +invertMagnetRing = false + +[blockBreakingParticles] + #Set this to false to remove the block breaking particles from the flowers and other items in the mod. + enabled = true + #Set this to false to remove the block breaking particles from the Terra Shatterer, as there can be a good amount in higher levels. + toolEnabled = true + +[manaSpreaders] + #Set this to true to disable the mana spreader shooting sound + silent = false + #How many ticks into the future will mana spreaders attempt to predict where mana bursts go? Setting this lower will improve spreader performance, but will cause them to not fire at targets that are too far away. + #Range: > 1 + traceTime = 400 + +[harvestLevels] + #The harvest level of the Mana Lens: Weight. 3 is diamond level. Defaults to 2 (iron level) + #Range: > 0 + weightLens = 2 + #The harvest level of the Mana Lens: Bore. 3 is diamond level. Defaults to 3 + #Range: > 0 + boreLens = 3 + +[gardenOfGlass] + #Set this to false to disable spawning with a Lexica Botania in Garden of Glass worlds, if you are modifying the modpack's progression to not start with Botania. + spawnWithLexicon = true + #The multiplier for island distances for multiplayer Garden of Glass worlds. + #Islands are placed on a grid with 256 blocks between points, with the spawn island always being placed on 256, 256. + #By default, the scale is 8, putting each island on points separated by 2048 blocks. + #Values below 4 (1024 block spacing) are not recommended due to Nether portal collisions. + #Range: 1 ~ 512 + islandScaleMultiplier = 8 + +[rannuncarpus] + #List of item registry names that will be ignored by rannuncarpuses when placing blocks. + itemBlacklist = [] + #List of mod names for rannuncarpuses to ignore. + #Ignores Storage Drawers by default due to crashes with placing drawer blocks without player involvement. + modBlacklist = ["storagedrawers"] + diff --git a/minecraft/config/config/botaniajei-client.toml b/minecraft/config/config/botaniajei-client.toml new file mode 100644 index 0000000..5cec9e2 --- /dev/null +++ b/minecraft/config/config/botaniajei-client.toml @@ -0,0 +1,6 @@ + +#JEI Text Color. Format: HEX or RGB (e.g 0x404040FF, 1077952767) +[colorizing] + #Range: > 0 + jeiTextColor = 0 + diff --git a/minecraft/config/config/chancecubes/chancecubes-server.toml b/minecraft/config/config/chancecubes/chancecubes-server.toml new file mode 100644 index 0000000..781db65 --- /dev/null +++ b/minecraft/config/config/chancecubes/chancecubes-server.toml @@ -0,0 +1,45 @@ + +["General Settings"] + #Set to false to disable a specific reward + #The minimum chance range value. Changes the range of chance that the chance block can pick from. i.e. If you have your rangemin set to 10 and range max set to 15. A chance cube with a chance value of 0 can get rewards of -10 to 15 in chance value. + #Range: 0 ~ 100 + ChanceRangeMin = 10 + #The maximum chance range value. Changes the range of chance that the chance block can pick from. i.e. If you have your rangemin set to 10 and range max set to 15. A chance cube with a chance value of 0 can get rewards of -10 to 15 in chance value. + #Range: 0 ~ 100 + ChanceRangeMax = 10 + #Set to true if the D20's should have any chance value from -100 to 100. Set to false to have the D20's only have a chance value of either -100 or 100 + D20UseNormalChanceValues = false + #Set to true if the mod should ignore chance values and give each reward and equal chance to be picked + RewardsEqualChance = false + #Set to true Giant Chance Cubes should be disabled + DisableGiantCC = false + #Set to true if the default rewards should be loaded, false if they shouldn't + EnableDefaultRewards = true + #Number of uses for a pendant + #Range: 0 ~ 1000 + PendantUses = 32 + #True if Chance Cubes should generate like ores with in the world. false if they should not + GenerateAsOre = true + #true if Chance Cubes should generate on the surface of the world. false if they should not + GenerateOnSurface = true + #Chance of a chunk to have a chance cube spawned on the surface. The math is 1/(surfaceGenerationAmount), so increase to make more rare, and decrease to make more common. + #Range: > 0 + SurfaceGenerationAmount = 100 + #Worlds that Chance cubes shold not generate in + BlockedWorlds = [] + #True if Chance Cubes should generate as chest loot in the world. false if they should not + ChestLoot = true + #Blocks that should not be replaced when rewards are "restored" after a reward is over, i.e don't remove graves when the boss dome get's cleared + BlockRestoreBlacklist = [] + #How many blocks above the Chance Cube that a block that will fall should be dropped from + #Range: 0 ~ 256 + FallingBlockDropHeight = 20 + #True if Chance Cubes should load in user specific rewards (for a select few only) + UserSpecificRewards = true + #True if Chance Cubes should check for globally disabled rewards (Rewards that are usually bugged or not working correctly). NOTE: The mod sends your Chance Cubes mod version to the web server to check for disabled rewards for your given version and the version number is subsequently logged. Feel free to make an inquiry if you wish to know more. + GloballyDisabledRewards = true + #Set to false if you wish to disable the super special holiday rewards. Why would you want to do that? + HolidayRewards = true + #Don't touch! Well I mean you can touch it, if you want. I can't stop you. I'm only text. + HolidayRewardTriggered = false + diff --git a/minecraft/config/config/chancecubes/custom_rewards/CustomSounds-Resourcepack.zip b/minecraft/config/config/chancecubes/custom_rewards/CustomSounds-Resourcepack.zip new file mode 100644 index 0000000..1d350b3 Binary files /dev/null and b/minecraft/config/config/chancecubes/custom_rewards/CustomSounds-Resourcepack.zip differ diff --git a/minecraft/config/config/chancecubes/custom_rewards/sounds/sounds.json b/minecraft/config/config/chancecubes/custom_rewards/sounds/sounds.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/minecraft/config/config/chancecubes/custom_rewards/sounds/sounds.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/minecraft/config/config/chancecubes/global_rewards.json b/minecraft/config/config/chancecubes/global_rewards.json new file mode 100644 index 0000000..913af7c --- /dev/null +++ b/minecraft/config/config/chancecubes/global_rewards.json @@ -0,0 +1,189 @@ +{ + "Comment": "This file is for enabling and disabling rewards for all users. You can use /chancecubes enableReward and /chancecubes disableReward to enable/ disable in game, though they will not change the value in this config.", + "rewards": { + "chancecubes:actual_invisible_ghast": true, + "chancecubes:anti_slab": true, + "chancecubes:bad_omen": true, + "chancecubes:bedrock": true, + "chancecubes:bees": true, + "chancecubes:roosevelts_stick": true, + "chancecubes:bookshelves": true, + "chancecubes:carpet": true, + "chancecubes:cave_spider_web": true, + "chancecubes:chance_cube_cube": true, + "chancecubes:chat_message": true, + "chancecubes:cookie_monster": true, + "chancecubes:cuteness": true, + "chancecubes:dark_o_the_wise": true, + "chancecubes:d-rude_sandstorm": true, + "chancecubes:divine_boots": true, + "chancecubes:divine_helmet": true, + "chancecubes:divine_chestplate": true, + "chancecubes:divine_leggings": true, + "chancecubes:divine_sword": true, + "chancecubes:diy_pie": true, + "chancecubes:enchanting": true, + "chancecubes:exp": true, + "chancecubes:exp_shower": true, + "chancecubes:explorer": true, + "chancecubes:explosion": true, + "chancecubes:farmer": true, + "chancecubes:fighter": true, + "chancecubes:fire_fox": true, + "chancecubes:fireworks": true, + "chancecubes:guardians": true, + "chancecubes:giant_chance_cube": false, + "chancecubes:giga_breaker": true, + "chancecubes:half_fishing_rod": true, + "chancecubes:have_another": true, + "chancecubes:hearts": true, + "chancecubes:help_me": true, + "chancecubes:horde": true, + "chancecubes:hot_tub": true, + "chancecubes:ice_cold": true, + "chancecubes:invisible_creeper": true, + "chancecubes:invisible_vexes": true, + "chancecubes:invizible_silverfish": true, + "chancecubes:knockback_zombie": true, + "chancecubes:finding_marlin": true, + "chancecubes:mitas": true, + "chancecubes:finding_nemo": true, + "chancecubes:nether_jelly_fish": true, + "chancecubes:nether_star": true, + "chancecubes:notch": true, + "chancecubes:one_shot": true, + "chancecubes:ores_galore": true, + "chancecubes:pig_of_destiny": true, + "chancecubes:poison": true, + "chancecubes:potion-works": true, + "chancecubes:pssst": true, + "chancecubes:quidditch": true, + "chancecubes:rancher": true, + "chancecubes:redstone_diamond": true, + "chancecubes:sail_away": true, + "chancecubes:saplings": true, + "chancecubes:sethbling_reward": true, + "chancecubes:silvermite_stacks": true, + "chancecubes:skeleton_bats": true, + "chancecubes:slime_man": true, + "chancecubes:spawn_amanda_panda": true, + "chancecubes:spawn_cluckington": true, + "chancecubes:spawn_dr_trayaurus": true, + "chancecubes:spawn_glenn": true, + "chancecubes:spawn_jerry": true, + "chancecubes:spawn_pickles": true, + "chancecubes:spongebob_squarepants": true, + "chancecubes:squid_horde": true, + "chancecubes:string": true, + "chancecubes:take_this": true, + "chancecubes:tnt_bats": true, + "chancecubes:tnt_structure": true, + "chancecubes:want_to_build_a_snowman": true, + "chancecubes:watch_world_burn": true, + "chancecubes:fire_aspect_fire": true, + "chancecubes:witch": true, + "chancecubes:wither_status_effect": true, + "chancecubes:wool": true, + "chancecubes:xp_crystal": true, + "chancecubes:lava_ring": true, + "chancecubes:rain": true, + "chancecubes:silverfish_surround": true, + "chancecubes:fish_dog": true, + "chancecubes:bone_cat": true, + "chancecubes:tnt_cat": true, + "chancecubes:diamond_block": true, + "chancecubes:tnt_diamond": true, + "chancecubes:fake_tnt": true, + "chancecubes:invisible_ghasts": true, + "chancecubes:no": true, + "chancecubes:coal_to_diamonds": true, + "chancecubes:one_man_army": true, + "chancecubes:arrow_trap": true, + "chancecubes:trampoline": true, + "chancecubes:path_to_succeed": true, + "chancecubes:beacon_build": true, + "chancecubes:half_heart": true, + "chancecubes:no_exp": true, + "chancecubes:smite": true, + "chancecubes:cookie-splosion": true, + "chancecubes:random_status_effect": true, + "chancecubes:arrow_spray": true, + "chancecubes:lingering_potions_ring": true, + "chancecubes:charged_creeper": true, + "chancecubes:disco": true, + "chancecubes:ender_crystal_timer": true, + "chancecubes:5_prongs": true, + "chancecubes:inventory_bomb": true, + "chancecubes:nuke": true, + "chancecubes:random_teleport": true, + "chancecubes:rotten_food": true, + "chancecubes:thrown_in_air": true, + "chancecubes:torches_to_creepers": true, + "chancecubes:traveller": true, + "chancecubes:troll_hole": true, + "chancecubes:saw_nothing_diamond": true, + "chancecubes:hand_enchant": true, + "chancecubes:anvil_rain": true, + "chancecubes:herobrine": true, + "chancecubes:surrounded": true, + "chancecubes:surrounded_creeper": true, + "chancecubes:wither": true, + "chancecubes:troll_tnt": true, + "chancecubes:wait_for_it": true, + "chancecubes:clear_inventory": false, + "chancecubes:item_of_destiny": true, + "chancecubes:juke_box": true, + "chancecubes:book_of_memes": true, + "chancecubes:table_flip": true, + "chancecubes:maze": true, + "chancecubes:one_is_lucky": true, + "chancecubes:sky_block": true, + "chancecubes:cake": true, + "chancecubes:item_rename": true, + "chancecubes:double_rainbow": true, + "chancecubes:wolves_to_creepers": true, + "chancecubes:did_you_know": true, + "chancecubes:armor_stand_armor": true, + "chancecubes:cats_and_dogs": true, + "chancecubes:item_chest": true, + "chancecubes:magic_feet": true, + "chancecubes:dig_build": true, + "chancecubes:cube_rename": true, + "chancecubes:countdown": true, + "chancecubes:mob_tower": true, + "chancecubes:monty_hall": true, + "chancecubes:matching": true, + "chancecubes:tic_tac_toe": true, + "chancecubes:boss_mimic": true, + "chancecubes:boss_evil_witch": true, + "chancecubes:boss_demonic_blaze": true, + "chancecubes:boss_ravager": true, + "chancecubes:cursed_head": true, + "chancecubes:wheel_spin": true, + "chancecubes:connect_4": true, + "chancecubes:loot_box": true, + "chancecubes:math": true, + "chancecubes:question": true, + "chancecubes:heads_or_tails": true, + "chancecubes:jar_guess": true, + "chancecubes:village": true, + "chancecubes:woodland_mansion": true, + "chancecubes:biodome": true, + "chancecubes:tnt_throw": true, + "chancecubes:throwables": true, + "chancecubes:ore_pillars": true, + "chancecubes:chuck_reverse": true, + "chancecubes:floor_is_lava": true, + "chancecubes:chunk_flip": true, + "chancecubes:ore_sphere": true, + "chancecubes:raining_potions": true, + "chancecubes:fluid_sphere": true, + "chancecubes:mixed_fluid_sphere": true, + "chancecubes:firework_show": true, + "chancecubes:sphere_snake": true, + "chancecubes:random_explosion": true, + "chancecubes:beacon_arena": true, + "chancecubes:world_infection": true, + "chancecubes:block_thrower": true + } +} \ No newline at end of file diff --git a/minecraft/config/config/chancecubes/reward_settings.json b/minecraft/config/config/chancecubes/reward_settings.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/minecraft/config/config/chancecubes/reward_settings.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/minecraft/config/config/computercraft-client.toml b/minecraft/config/config/computercraft-client.toml new file mode 100644 index 0000000..0251dff --- /dev/null +++ b/minecraft/config/config/computercraft-client.toml @@ -0,0 +1,13 @@ +#The renderer to use for monitors. Generally this should be kept at "best" - if +#monitors have performance issues, you may wish to experiment with alternative +#renderers. +#Allowed Values: BEST, TBO, VBO +monitor_renderer = "BEST" +#The maximum distance monitors will render at. This defaults to the standard tile +#entity limit, but may be extended if you wish to build larger monitors. +#Range: 16 ~ 1024 +monitor_distance = 64 +#The delay in seconds after which we'll notify about unhandled imports. Set to 0 to disable. +#Range: 0 ~ 60 +upload_nag_delay = 5 + diff --git a/minecraft/config/config/copycats-client.toml b/minecraft/config/config/copycats-client.toml new file mode 100644 index 0000000..7aa1fb9 --- /dev/null +++ b/minecraft/config/config/copycats-client.toml @@ -0,0 +1,10 @@ +#. +#Use more complex copycat models to improve appearance with certain materials. +useEnhancedModels = true +#. +#Disable warnings about graphics settings that may cause issues with the mod. +disableGraphicsWarnings = false +#. +#Colorize different parts of multi-state copycats to distinguish them visually. +colorizeMultiStates = false + diff --git a/minecraft/config/config/copycats-common.toml b/minecraft/config/config/copycats-common.toml new file mode 100644 index 0000000..51b41ea --- /dev/null +++ b/minecraft/config/config/copycats-common.toml @@ -0,0 +1,75 @@ +#. +#Disables the migration of placed copycats from old versions to new ones. Setting this to true may cause copycats to lose their textures when you upgrade this mod. Restart the game to apply changes. +disableMigration = false + +#. +#Enable/disable features. Values on server override clients +[features] + #. + copycat_stacked_half_layer = true + copycat_vertical_stairs = true + copycat_byte = true + copycat_vertical_slice = true + copycat_wooden_pressure_plate = true + copycat_block = true + copycat_shaft = true + copycat_large_cogwheel = true + copycat_fence = true + copycat_wall = true + copycat_cogwheel = true + copycat_vertical_step = true + copycat_sliding_door = true + copycat_folding_door = true + copycat_slope_layer = true + copycat_light_weighted_pressure_plate = true + copycat_stairs = true + copycat_fence_gate = true + copycat_slab = true + copycat_board = true + copycat_wooden_button = true + copycat_trapdoor = true + copycat_stone_pressure_plate = true + copycat_pane = true + copycat_half_panel = true + copycat_slice = true + copycat_beam = true + copycat_door = true + copycat_iron_door = true + copycat_byte_panel = true + copycat_corner_slice = true + copycat_flat_pane = true + copycat_ghost_block = true + copycat_fluid_pipe = true + copycat_heavy_weighted_pressure_plate = true + copycat_iron_trapdoor = true + copycat_half_layer = true + copycat_stone_button = true + copycat_ladder = true + copycat_layer = true + copycat_slope = true + copycat_vertical_slope = true + copycat_vertical_half_layer = true + +#. +#Enable/disable categories of features. Disabling a category hides all related features. Values on server override clients +[feature_categories] + #. + #. + #All copycats with a sloped surface + slopes = true + #. + #All copycats that support multiple materials in a single block + multistates = true + #. + #All copycats that can be resized by putting in more of the same copycat + stackables = true + #. + #All copycats that can emit a redstone signal + redstone = true + #. + #All copycats with extra functions/interactions + functional = true + #. + #All copycats mimicking blocks from Create + create = true + diff --git a/minecraft/config/config/create-client.toml b/minecraft/config/config/create-client.toml new file mode 100644 index 0000000..11da169 --- /dev/null +++ b/minecraft/config/config/create-client.toml @@ -0,0 +1,133 @@ + +#. +#Client-only settings - If you're looking for general settings, look inside your worlds serverconfig folder! +[client] + #. + #Show item descriptions on Shift and controls on Ctrl. + enableTooltips = true + #. + #Display a tooltip when looking at overstressed components. + enableOverstressedTooltip = true + #. + #Log a stack-trace when rendering issues happen within a moving contraption. + explainRenderErrors = false + #. + #Higher density means more spawned particles. + #Range: 0.0 ~ 1.0 + fanParticleDensity = 0.5 + #. + #[in Blocks] + #Maximum Distance to the player at which items in Blocks' filter slots will be displayed + #Range: 1.0 ~ 3.4028234663852886E38 + filterItemRenderDistance = 10.0 + #. + #Choose the menu row that the Create config button appears on in the main menu + #Set to 0 to disable the button altogether + #Range: 0 ~ 4 + mainMenuConfigButtonRow = 2 + #. + #Offset the Create config button in the main menu by this many pixels on the X axis + #The sign (-/+) of this value determines what side of the row the button appears on (left/right) + #Range: > -2147483648 + mainMenuConfigButtonOffsetX = -4 + #. + #Choose the menu row that the Create config button appears on in the in-game menu + #Set to 0 to disable the button altogether + #Range: 0 ~ 5 + ingameMenuConfigButtonRow = 3 + #. + #Offset the Create config button in the in-game menu by this many pixels on the X axis + #The sign (-/+) of this value determines what side of the row the button appears on (left/right) + #Range: > -2147483648 + ingameMenuConfigButtonOffsetX = -4 + #. + #Setting this to true will prevent Create from sending you a warning when playing with Fabulous graphics enabled + ignoreFabulousWarning = false + #. + #Disable to prevent being rotated while seated on a Moving Contraption + rotateWhenSeated = true + + #. + #Configure your vision range when submerged in Create's custom fluids + [client.fluidFogSettings] + #. + #The vision range through honey will be multiplied by this factor + #Range: 0.125 ~ 256.0 + honey = 1.0 + #. + #The vision range though chocolate will be multiplied by this factor + #Range: 0.125 ~ 256.0 + chocolate = 1.0 + + #. + #Settings for the Goggle Overlay + [client.goggleOverlay] + #. + #Offset the overlay from goggle- and hover- information by this many pixels on the respective axis; Use /create overlay + #Range: > -2147483648 + overlayOffsetX = 20 + #. + #Offset the overlay from goggle- and hover- information by this many pixels on the respective axis; Use /create overlay + #Range: > -2147483648 + overlayOffsetY = 0 + #. + #Enable this to use your custom colors for the Goggle- and Hover- Overlay + customColorsOverlay = false + #. + #The custom background color to use for the Goggle- and Hover- Overlays, if enabled + #[in Hex: #AaRrGgBb] + #[@cui:IntDisplay:#] + #Range: > -2147483648 + customBackgroundOverlay = -267386864 + #. + #The custom top color of the border gradient to use for the Goggle- and Hover- Overlays, if enabled + #[in Hex: #AaRrGgBb] + #[@cui:IntDisplay:#] + #Range: > -2147483648 + customBorderTopOverlay = 1347420415 + #. + #The custom bot color of the border gradient to use for the Goggle- and Hover- Overlays, if enabled + #[in Hex: #AaRrGgBb] + #[@cui:IntDisplay:#] + #Range: > -2147483648 + customBorderBotOverlay = 1344798847 + + #. + #Sound settings + [client.sound] + #. + #Make cogs rumble and machines clatter. + enableAmbientSounds = true + #. + #Maximum volume modifier of Ambient noise + #Range: 0.0 ~ 1.0 + ambientVolumeCap = 0.10000000149011612 + + #. + #Mod Integration and JEI + [client.jeiIntegration] + #. + #Whether to auto-update the JEI search when searching in the stock keeper UI + syncJeiSearch = true + + #. + #Railway related settings + [client.trains] + #. + #How far away the Camera should zoom when seated on a train + #Range: 0.0 ~ 3.4028234663852886E38 + mountedZoomMultiplier = 3.0 + #. + #Display nodes and edges of a Railway Network while f3 debug mode is active + showTrackGraphOnF3 = false + #. + #Additionally display materials of a Rail Network while f3 debug mode is active + showExtendedTrackGraphOnF3 = false + #. + #Display Track Networks and Trains on supported map mods + showTrainMapOverlay = true + #. + #Track Network Color on maps + #Allowed Values: RED, GREY, WHITE + trainMapColorTheme = "RED" + diff --git a/minecraft/config/config/create-common.toml b/minecraft/config/config/create-common.toml new file mode 100644 index 0000000..ab1174e --- /dev/null +++ b/minecraft/config/config/create-common.toml @@ -0,0 +1,9 @@ + +#. +#Modify Create's impact on your terrain +[worldgen] + #. + #. + #Prevents all worldgen added by Create from taking effect + disableWorldGen = false + diff --git a/minecraft/config/config/create-stuff-additions.toml b/minecraft/config/config/create-stuff-additions.toml new file mode 100644 index 0000000..d412552 --- /dev/null +++ b/minecraft/config/config/create-stuff-additions.toml @@ -0,0 +1,34 @@ + +["Jetpack Height Restriction"] + brassJetpackMaxHeight = 28.0 + andesiteJetpackMaxHeight = 18.0 + copperJetpackMaxHeight = 18.0 + netheriteJetpackMaxHeight = 28.0 + enableAboveCloudEnchant = false + +["Jetpack/Grapplin Speed"] + brassJetpackSpeed = 0.06 + andesiteJetpackSpeed = 0.08 + copperJetpackSpeed = 0.02 + netheriteJetpackSpeed = 0.08 + grapplinWhiskSpeed = 0.2 + +["Fuel/Water Capacity"] + gadgetCapacity = 1600.0 + smallTankCapacity = 800.0 + mediumTankCapacity = 1600.0 + largeTankCapacity = 3200.0 + +[Enchantments] + enableDiggingEnchant = true + enableImpactEnchant = true + enableGravityGunEnchant = true + enableHellfireEnchant = true + +["Drone Module"] + enableDrillDroneModule = true + enableFanDroneModule = true + enableMagnetDroneModule = true + enableVaultDroneModule = true + MagnetModuleBlockLimitation = false + diff --git a/minecraft/config/config/create_central_kitchen-common.toml b/minecraft/config/config/create_central_kitchen-common.toml new file mode 100644 index 0000000..39993c2 --- /dev/null +++ b/minecraft/config/config/create_central_kitchen-common.toml @@ -0,0 +1,37 @@ + +#. +#Config for Automation related components +[automation] + #. + #. + #Whether allowing Deployers to perform Cutting Board Recipes + enableCuttingBoardDeploying = true + #. + #List of Block Entities that can be boosted when placed on Blaze Stove + boostingCookerList = ["farmersdelight:cooking_pot", "farmersdelight:skillet", "miners_delight:copper_pot"] + +#. +#Config for Integration with other mods +[integration] + #. + #. + #Whether replacing vanilla and modded pies into Farmer's Delight style + #[@cui:RequiresReload:both] + enablePieOverhaul = true + #. + #Pie items in this list will not be included in pie overhaul + #[@cui:RequiresReload:both] + pieOverhaulBlackList = [] + #. + #For harvester to function properly, turning on this support will cause the collision shape of the overweight crop block to disappear. + #[@cui:RequiresReload:server] + enableHarvesterSupportForOverweightFarming = true + #. + #Basket of Farmers Delight has a 8 ticks transfer cooldown. Disable the cooldown for better automation. + #[@cui:RequiresReload:server] + disableTransferCooldownForFarmersDelightBasket = true + #. + #For harvester to function properly, turning on this support will cause the collision shape of Coffee Bush and Tea Bush block to disappear. + #[@cui:RequiresReload:server] + enableHarvesterSupportForFarmersRespite = true + diff --git a/minecraft/config/config/createbigcannons-client.toml b/minecraft/config/config/createbigcannons-client.toml new file mode 100644 index 0000000..20bac25 --- /dev/null +++ b/minecraft/config/config/createbigcannons-client.toml @@ -0,0 +1,157 @@ + +#. +#Client-side config for Create Big Cannons. +[client] + #. + showAutocannonPlumes = true + #. + showDropMortarPlumes = true + #. + showMortarStoneClouds = true + #. + #How many particles are in a Fluid Blob of any size. + #Range: 0 ~ 1000 + fluidBlobParticleCount = 20 + #. + #How many digits are after the angle decimal point on a block armor info tooltip. + #Range: 0 ~ 4 + blockArmorInfoPrecision = 2 + #. + #If true, some graphics will be changed to support shaders, such as those loaded with Iris/Oculus. + #NOTE: This may entail some visual downgrades. Affected graphics include: + #- Cannon smoke + #- Adaptive debris particles (splinters, leaves, glass shards) + useShaderCompatibleGraphics = false + #. + #[in Meters per Second] + #Range: 0.0 ~ 1000.0 + blastEffectDelaySpeed = 320.0 + #. + highlightFuzeInputOnShellBlocks = true + + #. + #Projectile Flyby Sounds + [client.projectileFlybySounds] + #. + enableBigCannonProjectileFlybySounds = true + #. + enableAutocannonProjectileFlybySounds = true + + #. + #Cannon Mount Goggle Tooltip + [client.cannonMountGoggleTooltip] + #. + #How many digits are after the angle decimal point on a cannon mount goggle tooltip. + #Range: 0 ~ 4 + anglePrecision = 2 + #. + #If true, the yaw angle on goggles ranges from +180 to -180º. If false, it ranges from 0 to +360º. + use180_180RangeForYaw = false + + #. + #Screen Shake + [client.screenShake] + #. + #Range: 0.0 ~ 2.0 + cannonScreenShakeIntensity = 1.2999999523162842 + #. + #Range: 0.009999999776482582 ~ 2.0 + cannonScreenShakeSpringiness = 0.07999999821186066 + #. + #Range: 0.009999999776482582 ~ 2.0 + cannonScreenShakeDecay = 0.30000001192092896 + + #. + #Big Cannon Blast + [client.bigCannonBlast] + #. + showBigCannonPlumes = true + #. + showExtraSmoke = true + #. + showExtraFlames = true + #. + #Range: 0.0 ~ 3.4028234663852886E38 + screenShakePowerMultiplier = 6.0 + #. + #[in Degrees] + #Range: 0.0 ~ 90.0 + screenShakePowerLimit = 45.0 + + #. + #Flak Clouds + [client.flakClouds] + #. + showFlakClouds = true + #. + showExtraFlames = true + #. + showExtraShockwave = true + #. + showExtraTrails = true + + #. + #Shrapnel Clouds + [client.shrapnelClouds] + #. + showShrapnelClouds = true + #. + showExtraFlames = true + #. + showExtraShockwave = true + + #. + #Fluid Shell Clouds + [client.fluidShellClouds] + #. + showFluidShellClouds = true + #. + showExtraFlames = true + #. + showExtraShockwave = true + + #. + #Projectile Splashes + [client.projectileSplashes] + #. + showProjectileSplashes = true + + #. + #Projectile Impacts + [client.projectileImpacts] + #. + showProjectileImpacts = true + + #. + #Sounds + [client.sounds] + #. + blastSoundAirAbsorption = true + + #. + #Shell Explosions + [client.shellExplosions] + #. + showShellExplosionClouds = true + #. + showExtraTrails = true + #. + #Range: 0.0 ~ 3.4028234663852886E38 + screenShakePowerMultiplier = 6.0 + #. + #[in Degrees] + #Range: 0.0 ~ 90.0 + screenShakePowerLimit = 45.0 + + #. + #Particle Wind Effect + [client.particleWindEffect] + #. + #[in Meters per second] + #Range: 0.0 ~ 10.0 + maximumWindSpeed = 1.25 + #. + #[in Degrees per tick] + #Range: 0.0 ~ 90.0 + maximumWindBearingChangeSpeed = 8.0 + diff --git a/minecraft/config/config/createoreexcavation-common.toml b/minecraft/config/config/createoreexcavation-common.toml new file mode 100644 index 0000000..da463bf --- /dev/null +++ b/minecraft/config/config/createoreexcavation-common.toml @@ -0,0 +1,8 @@ +#IMPORTANT NOTICE: +#THIS IS ONLY THE COMMON CONFIG. It does not contain all the values adjustable for Create Ore Excavation +#The settings have been moved to createoreexcavation-server.toml +#That file is PER WORLD, meaning you have to go into 'saves//serverconfig' to adjust it. Those changes will then only apply for THAT WORLD. +#You can then take that config file and put it in the 'defaultconfigs' folder to make it apply automatically to all NEW worlds you generate FROM THERE ON. +#This may appear confusing to many of you, but it is a new sensible way to handle configuration, because the server configuration is synced when playing multiplayer. +importantInfo = true + diff --git a/minecraft/config/config/curios-client.toml b/minecraft/config/config/curios-client.toml new file mode 100644 index 0000000..1c1d22b --- /dev/null +++ b/minecraft/config/config/curios-client.toml @@ -0,0 +1,23 @@ + +#Client only settings, mostly things related to rendering +[client] + #Set to true to enable rendering curios + renderCurios = true + #Set to true to enable the Curios GUI button + enableButton = true + #The X-Offset for the Curios GUI button + #Range: -100 ~ 100 + buttonXOffset = 0 + #The Y-Offset for the Curios GUI button + #Range: -100 ~ 100 + buttonYOffset = 0 + #The X-Offset for the Creative Curios GUI button + #Range: -100 ~ 100 + creativeButtonXOffset = 0 + #The Y-Offset for the Creative Curios GUI button + #Range: -100 ~ 100 + creativeButtonYOffset = 0 + #The corner for the Curios GUI button + #Allowed Values: TOP_LEFT, TOP_RIGHT, BOTTOM_LEFT, BOTTOM_RIGHT + buttonCorner = "TOP_LEFT" + diff --git a/minecraft/config/config/curios-common.toml b/minecraft/config/config/curios-common.toml new file mode 100644 index 0000000..a671ffb --- /dev/null +++ b/minecraft/config/config/curios-common.toml @@ -0,0 +1,5 @@ +#List of slots to create or modify. +#See documentation for syntax: https://docs.illusivesoulworks.com/curios/configuration#slot-configuration +# +slots = [] + diff --git a/minecraft/config/config/dungeon_crawl.toml b/minecraft/config/config/dungeon_crawl.toml new file mode 100644 index 0000000..39c9463 --- /dev/null +++ b/minecraft/config/config/dungeon_crawl.toml @@ -0,0 +1,58 @@ + +["Miscellaneous Settings"] + #----------------------------------------------------------------------------------------------------+ + # Enables the dungeon crawl developer tools. Do not use this for normal gameplay. + # + enable_tools = false + #----------------------------------------------------------------------------------------------------+ + # Enables extended debug logging to help detecting errors. Enabled by default. + # + extended_debug = true + +["World Generation"] + #----------------------------------------------------------------------------------------------------+ + # Whether falling blocks like sand or gravel should drop down after being placed during dungeon generation. + # + tick_falling_blocks = true + #----------------------------------------------------------------------------------------------------+ + # When enabled, the dungeons will ignore caves instead of trying to adjust to them (by not generating specific blocks). + # + solid = false + +["Dungeon Settings"] + #----------------------------------------------------------------------------------------------------+ + # Whether the dungeons should have secret rooms or not. + # + secret_rooms = true + #----------------------------------------------------------------------------------------------------+ + # Whether the hell stage should be built with blocks from the overworld instead from the nether. + # + no_nether_blocks = false + #----------------------------------------------------------------------------------------------------+ + # Whether loot tables of certain spawner entities should be overwritten. + # For example, wither skeletons from dungeon spawners will never drop skulls if this is enabled. + # + overwrite_entity_loot_tables = true + #----------------------------------------------------------------------------------------------------+ + # Whether custom mob spawners with equipment, etc.. should be used. + # + custom_spawners = true + #----------------------------------------------------------------------------------------------------+ + # + #Whether the dungeons should generate at a fixed height or not. Enable this if the dungeons are generating too high. + fixed_generation_height = false + #----------------------------------------------------------------------------------------------------+ + # The activation range for the spawners in the dungeons. + # + #Range: 1 ~ 64 + spawner_activation_range = 12 + #----------------------------------------------------------------------------------------------------+ + # Whether mobs from spawners should despawn naturally or not. + # + natural_despawn = true + #----------------------------------------------------------------------------------------------------+ + # The number of different entities per spawner. Increasing the number increases the diversity of the monster equipment. + # + #Range: 1 ~ 128 + spawner_entities = 6 + diff --git a/minecraft/config/config/embeddium-fingerprint.json b/minecraft/config/config/embeddium-fingerprint.json new file mode 100644 index 0000000..11d5e9f --- /dev/null +++ b/minecraft/config/config/embeddium-fingerprint.json @@ -0,0 +1 @@ +{"v":1,"s":"1dfea5a253d83bce639aa4dac0a98c9d6667b40bdd465360edd3bd499877d35f50b0a289bbb74dd79a0662f5b102255ea0f70c3be1aef3943355eb8d6d544714","u":"450ed04921b7c326e1422bf188f05ea6bf46eb650716ca3be660d428b6e78bf30c4c3b1a20621cc3c6bbd1519ad920dbcf93dd522aa85219f54eaca3e88bf281","p":"7b5655eb47c23b72735142392beb417de7fe2fdf3bc29175433c54d693cbc1812a8d630e66f5245f42268b8c3569cae2c8cb2d558ad2a86fd62fd36d6275141e","t":1766011386} \ No newline at end of file diff --git a/minecraft/config/config/embeddium-mixins.properties b/minecraft/config/config/embeddium-mixins.properties new file mode 100644 index 0000000..4e10829 --- /dev/null +++ b/minecraft/config/config/embeddium-mixins.properties @@ -0,0 +1,6 @@ +# This is the configuration file for Embeddium. +# +# You can find information on editing this file and all the available options here: +# https://github.com/jellysquid3/sodium-fabric/wiki/Configuration-File +# +# By default, this file will be empty except for this notice. diff --git a/minecraft/config/config/embeddium-options.json b/minecraft/config/config/embeddium-options.json new file mode 100644 index 0000000..f48e1fd --- /dev/null +++ b/minecraft/config/config/embeddium-options.json @@ -0,0 +1,30 @@ +{ + "quality": { + "weather_quality": "DEFAULT", + "leaves_quality": "DEFAULT", + "enable_vignette": true, + "use_quad_normals_for_shading": false + }, + "advanced": { + "enable_memory_tracing": false, + "use_advanced_staging_buffers": true, + "disable_incompatible_mod_warnings": false, + "cpu_render_ahead_limit": 3 + }, + "performance": { + "chunk_builder_threads": 0, + "always_defer_chunk_updates_v2": true, + "animate_only_visible_textures": true, + "use_entity_culling": true, + "use_fog_occlusion": false, + "use_block_face_culling": true, + "use_compact_vertex_format": true, + "use_translucent_face_sorting_v2": true, + "use_no_error_g_l_context": true + }, + "notifications": { + "force_disable_donation_prompts": false, + "has_cleared_donation_button": false, + "has_seen_donation_prompt": true + } +} \ No newline at end of file diff --git a/minecraft/config/config/emi.css b/minecraft/config/config/emi.css new file mode 100644 index 0000000..f1401fd --- /dev/null +++ b/minecraft/config/config/emi.css @@ -0,0 +1,490 @@ +/** EMI Config */ + +#general { + /** + * Whether EMI is enabled and visible. + */ + enabled: true; + + /** + * Whether cheating in items is enabled. + */ + cheat-mode: true; + + /** + * How much EMI should use tooltips and popups to show controls and information. + */ + help-level: verbose; + + /** + * Where EMI should pull stacks from to populate the index. + */ + index-source: creative-plus-registered; + + /** + * Which sidebar should be searched using the search bar. + */ + search-sidebar: right; + + /** + * Whether normal search queries should include the tooltip. + */ + search-tooltip-by-default: true; + + /** + * Whether normal search queries should include the mod name. + */ + search-mod-name-by-default: false; + + /** + * Whether normal search queries should include the stack's tags. + */ + search-tags-by-default: true; +} + +#ui { + /** + * Which action should be performed when clicking the recipe book. + */ + recipe-book-action: toggle-craftables; + + /** + * Where to display status effects in the inventory. + */ + effect-location: top; + + /** + * Whether to display a gray overlay when hovering over a stack. + */ + show-hover-overlay: true; + + /** + * Whether to add mod name to tooltips + */ + append-mod-id: true; + + /** + * Whether to add mod name to item tooltips, in case another mod provides behavior + */ + append-item-mod-id: true; + + /** + * Prevents recipes being quick crafted from shifting around under the cursor. + */ + miscraft-prevention: true; + + /** + * The unit to display fluids as. + */ + fluid-unit: liters; + + /** + * Whether to use the batched render system. Batching is faster, but may have + * incompatibilities with shaders or other mods. + */ + use-batched-renderer: true; + + /** + * Whether to have the search bar in the center of the screen, instead of to the + * side. + */ + center-search-bar: true; + + /** + * Which sidebar type to switch to when searching. + */ + search-sidebar-focus: index; + + /** + * Which sidebar type to focus when the search is empty. + */ + empty-search-sidebar-focus: none; + + /** + * Whether the EMI config button should be visible. + */ + emi-config-button-visibility: shown; + + /** + * Whether the recipe tree button should be visible. + */ + recipe-tree-button-visibility: shown; + + /** + * The maximum height the recipe screen will grow to be if space is available in + * pixels. + */ + maximum-recipe-screen-height: 256; + + /** + * The minimum width of the recipe screen in pixels. Controls how many tabs there + * can be, and where the page switching buttons go. The default is 176, the width + * of most screens. + */ + minimum-recipe-screen-width: 176; + + /** + * The amount of vertical margin to give in the recipe screen. + */ + vertical-margin: 20; + + /** + * Where to show workstations in the recipe screen + */ + workstation-location: bottom; + + /** + * Display cost per batch when hovering a recipe output + */ + show-cost-per-batch: true; + + /** + * Whether recipes should have a button to set as default. + */ + recipe-default-button: true; + + /** + * Whether recipes should have a button to show the recipe tree. + */ + recipe-tree-button: true; + + /** + * Whether recipes should have a button to fill the ingredients in a handler. + */ + recipe-fill-button: true; + + /** + * Whether recipes should have a button to take a screenshot of the recipe. + */ + recipe-screenshot-button: true; + + /** + * The GUI scale at which recipe screenshots are saved. Use 0 to use the current + * GUI scale. + */ + recipe-screenshot-scale: 0; + + /** + * The pages in the left sidebar + */ + left-sidebar-pages: favorites; + + /** + * The subpanels in the left sidebar + */ + left-sidebar-subpanels: lookup-history 3; + + /** + * How many columns and rows of ingredients to limit the left sidebar to + */ + left-sidebar-size: 12, 100; + + /** + * How much space to maintain between the left sidebar and obstructions, in pixels + */ + left-sidebar-margins: 2, 2, 2, 2; + + /** + * Where to position the left sidebar + */ + left-sidebar-align: left, top; + + /** + * Whether to render the header buttons and page count for the left sidebar + */ + left-sidebar-header: visible; + + /** + * Which theme to use for the left sidebar + */ + left-sidebar-theme: transparent; + + /** + * The pages in the right sidebar + */ + right-sidebar-pages: index, craftables; + + /** + * The subpanels in the right sidebar + */ + right-sidebar-subpanels: none; + + /** + * How many columns and rows of ingredients to limit the right sidebar to + */ + right-sidebar-size: 12, 100; + + /** + * How much space to maintain between the right sidebar and obstructions, in pixels + */ + right-sidebar-margins: 2, 2, 2, 2; + + /** + * Where to position the right sidebar + */ + right-sidebar-align: right, top; + + /** + * Whether to render the header buttons and page count for the right sidebar + */ + right-sidebar-header: visible; + + /** + * Which theme to use for the right sidebar + */ + right-sidebar-theme: transparent; + + /** + * The pages in the top sidebar + */ + top-sidebar-pages: none; + + /** + * The subpanels in the top sidebar + */ + top-sidebar-subpanels: none; + + /** + * How many columns and rows of ingredients to limit the top sidebar to + */ + top-sidebar-size: 9, 9; + + /** + * How much space to maintain between the top sidebar and obstructions, in pixels + */ + top-sidebar-margins: 2, 2, 2, 2; + + /** + * Where to position the top sidebar + */ + top-sidebar-align: center, center; + + /** + * Whether to render the header buttons and page count for the top sidebar + */ + top-sidebar-header: visible; + + /** + * Which theme to use for the top sidebar + */ + top-sidebar-theme: transparent; + + /** + * The pages in the bottom sidebar + */ + bottom-sidebar-pages: none; + + /** + * The subpanels in the bottom sidebar + */ + bottom-sidebar-subpanels: none; + + /** + * How many columns and rows of ingredients to limit the bottom sidebar to + */ + bottom-sidebar-size: 9, 9; + + /** + * How much space to maintain between the bottom sidebar and obstructions, in + * pixels + */ + bottom-sidebar-margins: 2, 2, 2, 2; + + /** + * Where to position the bottom sidebar + */ + bottom-sidebar-align: center, center; + + /** + * Whether to render the header buttons and page count for the bottom sidebar + */ + bottom-sidebar-header: visible; + + /** + * Which theme to use for the bottom sidebar + */ + bottom-sidebar-theme: transparent; +} + +#binds { + /** + * Toggle the visibility of EMI. + */ + toggle-visibility: "ctrl key.keyboard.o"; + + /** + * Focuses the search bar. + */ + focus-search: "ctrl key.keyboard.f"; + + /** + * Clears the search bar. + */ + clear-search: "key.keyboard.unknown"; + + /** + * Display the recipes for creating a stack. + */ + view-recipes: "key.keyboard.r"; + view-recipes: "key.mouse.left"; + + /** + * Display the recipes that can be created using a stack. + */ + view-uses: "key.keyboard.u"; + view-uses: "key.mouse.right"; + + /** + * Favorite the item to display on the side of the screen opposite of recipies for + * quick access. + */ + favorite: "key.keyboard.a"; + + /** + * Set the default recipe for a given stack in the output of a recipe to that + * recipe. + */ + default-stack: "ctrl key.mouse.left"; + + /** + * Display the recipe tree for a given stack. + */ + view-stack-tree: "key.keyboard.unknown"; + + /** + * Display the recipe tree. + */ + view-tree: "key.keyboard.unknown"; + + /** + * Return to the previous page in EMI. + */ + back: "key.keyboard.backspace"; + + /** + * Return to the next page in EMI after going back. + */ + forward: "key.keyboard.unknown"; + + /** + * When on a stack with an associated recipe: + * Move ingredients for a single result. + */ + craft-one: "key.mouse.left"; + + /** + * When on a stack with an associated recipe: + * Move ingredients for as many results as possible. + */ + craft-all: "shift key.mouse.left"; + + /** + * When on a stack with an associated recipe: + * Move ingredients for a single result and put in inventory if possible. + */ + craft-one-to-inventory: "key.keyboard.unknown"; + + /** + * When on a stack with an associated recipe: + * Move ingredients for as many results as possible and put in inventory if + * possible. + */ + craft-all-to-inventory: "key.keyboard.unknown"; + + /** + * When on a stack with an associated recipe: + * Move ingredients for a single result and put in cursor if possible. + */ + craft-one-to-cursor: "ctrl key.mouse.left"; + + /** + * Display the recipe that will be used to craft on a stack with no recipe context. + */ + show-craft: "key.keyboard.left.shift"; + + /** + * Cheat in one of an item into the inventory. + */ + cheat-one-to-inventory: "ctrl key.mouse.right"; + + /** + * Cheat in a stack of an item into the inventory. + */ + cheat-stack-to-inventory: "ctrl key.mouse.left"; + + /** + * Cheat in one of an item into the cursor. + */ + cheat-one-to-cursor: "ctrl key.mouse.middle"; + + /** + * Cheat in a stack of an item into the cursor. + */ + cheat-stack-to-cursor: "key.keyboard.unknown"; + + /** + * Delete the stack in the cursor when hovering the index + */ + delete-cursor-stack: "key.mouse.right"; + + /** + * Copies the hovered recipe's ID to the clipboard + */ + copy-recipe-id: "key.keyboard.0"; + + /** + * In edit mode, hide the hovered stack + */ + hide-stack: "ctrl key.mouse.left"; + + /** + * In edit mode, hide stacks with the hovered stack's id + */ + hide-stack-by-id: "ctrl shift key.mouse.left"; +} + +#dev { + /** + * Whether development functions should be enabled. Not recommended for general + * play. + */ + dev-mode: false; + + /** + * Whether editing the index is enabled + */ + edit-mode: false; + + /** + * Whether to log untranslated tags as warnings. + */ + log-untranslated-tags: false; + + /** + * Whether to log ingredients that don't have a representative tag as warnings. + */ + log-non-tag-ingredients: false; + + /** + * Whether hovering the output of a recipe should show the recipe's EMI ID. + */ + show-recipe-ids: true; + + /** + * Whether to display additional widgets added to recipes from other mods. + * These are typically developer facing and compatibility related, and not useful + * for players. + */ + show-recipe-decorators: true; + + /** + * Whether stacks in the index should display a highlight if they have a recipe + * default. + */ + highlight-defaulted: false; + + /** + * Whether to display exclusion areas + */ + highlight-exclusion-areas: false; +} diff --git a/minecraft/config/config/entityculling.json b/minecraft/config/config/entityculling.json new file mode 100644 index 0000000..16bc545 --- /dev/null +++ b/minecraft/config/config/entityculling.json @@ -0,0 +1,68 @@ +{ + "configVersion": 7, + "renderNametagsThroughWalls": true, + "blockEntityWhitelist": [ + "create:rope_pulley", + "botania:flame_ring", + "minecraft:beacon", + "create:hose_pulley", + "betterend:eternal_pedestal", + "botania:magic_missile", + "botania:falling_star" + ], + "entityWhitelist": [ + "botania:mana_burst", + "drg_flares:drg_flares", + "quark:soul_bead" + ], + "tracingDistance": 128, + "debugMode": false, + "sleepDelay": 10, + "hitboxLimit": 50, + "captureRate": 5, + "tickCulling": true, + "tickCullingWhitelist": [ + "minecraft:block_display", + "alexscaves:gum_worm", + "minecraft:jungle_boat", + "minecraft:spruce_boat", + "mts:builder_rendering", + "drg_flares:drg_flares", + "minecraft:mangrove_boat", + "mts:builder_existing", + "minecraft:acacia_boat", + "minecraft:birch_chest_boat", + "create:contraption", + "drg_flares:drg_flare", + "minecraft:birch_boat", + "minecraft:boat", + "mts:builder_seat", + "minecraft:cherry_boat", + "minecraft:spruce_chest_boat", + "alexscaves:gum_worm_segment", + "minecraft:dark_oak_boat", + "minecraft:oak_chest_boat", + "avm_staff:campfire_flame", + "minecraft:dark_oak_chest_boat", + "minecraft:text_display", + "create:gantry_contraption", + "minecraft:oak_boat", + "minecraft:pale_oak_boat", + "minecraft:acacia_chest_boat", + "minecraft:cherry_chest_boat", + "minecraft:item_display", + "create:stationary_contraption", + "minecraft:bamboo_raft", + "minecraft:firework_rocket", + "minecraft:jungle_chest_boat", + "create:carriage_contraption", + "minecraft:pale_oak_chest_boat", + "minecraft:bamboo_chest_raft", + "minecraft:mangrove_chest_boat", + "voidscape:corrupted_pawn" + ], + "disableF3": false, + "skipEntityCulling": false, + "skipBlockEntityCulling": false, + "blockEntityFrustumCulling": true +} \ No newline at end of file diff --git a/minecraft/config/config/ferritecore-mixin.toml b/minecraft/config/config/ferritecore-mixin.toml new file mode 100644 index 0000000..aed27fe --- /dev/null +++ b/minecraft/config/config/ferritecore-mixin.toml @@ -0,0 +1,23 @@ +#Use a slightly more compact, but also slightly slower representation for block states +compactFastMap = false +#Replace objects used to detect multi-threaded access to chunks by a much smaller field. This option is disabled by default due to very rare and very hard-to-reproduce crashes, use at your own risk! +useSmallThreadingDetector = false +#Cache the predicate instances used in multipart models +cacheMultipartPredicates = true +#Do not create a new MultipartBakedModel instance for each block state using the same multipartmodel. Requires cacheMultipartPredicates to be enabled +multipartDeduplication = true +#Deduplicate cached data for blockstates, most importantly collision and render shapes +blockstateCacheDeduplication = true +#Avoid creation of new strings when creating ModelResourceLocations +modelResourceLocations = true +#Use smaller data structures for "simple" models, especially models with few side-specific faces +modelSides = true +#Replace the blockstate neighbor table +replaceNeighborLookup = true +#Populate the neighbor table used by vanilla. Enabling this slightly increases memory usage, but can help with issues in the rare case where mods access it directly. +populateNeighborTable = false +#Do not store the properties of a state explicitly and read themfrom the replace neighbor table instead. Requires replaceNeighborLookup to be enabled +replacePropertyMap = true +#Deduplicate vertex data of baked quads in the basic model implementations +bakedQuadDeduplication = true + diff --git a/minecraft/config/config/flywheel-client.toml b/minecraft/config/config/flywheel-client.toml new file mode 100644 index 0000000..7f3b0d8 --- /dev/null +++ b/minecraft/config/config/flywheel-client.toml @@ -0,0 +1,14 @@ +#Select the backend to use. Set to "DEFAULT" to let Flywheel decide. +backend = "DEFAULT" +#Enable or disable instance update limiting with distance. +limitUpdates = true +#The number of worker threads to use. Set to -1 to let Flywheel decide. Set to 0 to disable parallelism. Requires a game restart to take effect. +#Range: -1 ~ 8 +workerThreads = -1 + +#Config options for Flywheel's built-in backends. +[flw_backends] + #How smooth Flywheel's shader-based lighting should be. May have a large performance impact. + #Allowed Values: FLAT, TRI_LINEAR, SMOOTH, SMOOTH_INNER_FACE_CORRECTED + lightSmoothness = "SMOOTH" + diff --git a/minecraft/config/config/fml.toml b/minecraft/config/config/fml.toml new file mode 100644 index 0000000..652ec55 --- /dev/null +++ b/minecraft/config/config/fml.toml @@ -0,0 +1,29 @@ +#Early window height +earlyWindowHeight = 480 +#Enable forge global version checking +versionCheck = true +#Should we control the window. Disabling this disables new GL features and can be bad for mods that rely on them. +earlyWindowControl = true +#Early window framebuffer scale +earlyWindowFBScale = 1 +#Early window provider +earlyWindowProvider = "fmlearlywindow" +#Early window width +earlyWindowWidth = 854 +#Early window starts maximized +earlyWindowMaximized = false +#Default config path for servers +defaultConfigPath = "defaultconfigs" +#Disables Optimized DFU client-side - already disabled on servers +disableOptimizedDFU = true +#Skip specific GL versions, may help with buggy graphics card drivers +earlyWindowSkipGLVersions = [] +#Whether to log a help message on first attempt, to aid troubleshooting. This setting should automatically disable itself after a successful launch +earlyWindowLogHelpMessage = false +#Max threads for early initialization parallelism, -1 is based on processor count +maxThreads = -1 +#Squir? +earlyWindowSquir = false +#Whether to show CPU usage stats in early window +earlyWindowShowCPU = false + diff --git a/minecraft/config/config/forestry-client.toml b/minecraft/config/config/forestry-client.toml new file mode 100644 index 0000000..845fc08 --- /dev/null +++ b/minecraft/config/config/forestry-client.toml @@ -0,0 +1,17 @@ +#Whether any of Forestry's particles are rendered. +particles = true +#Whether the "Did you know?" ledgers are shown in Forestry menus. +enable_hints = true +#Whether certain specimens, like Imperial Bees, will have enchantment glints on them. +enable_glints = true +#Whether alerts are enabled for Forestry's mail system. +mail_alerts_enable = true + +[jei_bees] + #Set to false to disable display of mutation requirements + show_requirements = true + #Set to false to disable display of secret mutations + show_secret_mutations = true + #Set to false to disable showing identified genome in recipes + show_analyzed_tooltip = true + diff --git a/minecraft/config/config/forge-client.toml b/minecraft/config/config/forge-client.toml new file mode 100644 index 0000000..32d3edc --- /dev/null +++ b/minecraft/config/config/forge-client.toml @@ -0,0 +1,26 @@ + +#Client only settings, mostly things related to rendering +[client] + #Enable Forge to queue all chunk updates to the Chunk Update thread. + #May increase FPS significantly, but may also cause weird rendering lag. + #Not recommended for computers without a significant number of cores available. + alwaysSetupTerrainOffThread = false + #EXPERIMENTAL: Enable the Forge block rendering pipeline - fixes the lighting of custom models. + experimentalForgeLightPipelineEnabled = false + #When enabled, Forge will show any warnings that occurred during loading. + showLoadWarnings = true + #Set to true to use a combined DEPTH_STENCIL attachment instead of two separate ones. + useCombinedDepthStencilAttachment = false + #[DEPRECATED] Does nothing anymore, IPv6 addresses will be compressed always + compressLanIPv6Addresses = true + #During block model baking, manually calculates the normal for all faces. + #This was the default behavior of forge between versions 31.0 and 47.1. + #May result in differences between vanilla rendering and forge rendering. + #Will only produce differences for blocks that contain non-axis aligned faces. + #You will need to reload your resources to see results. + calculateAllNormals = false + #When enabled, a slightly biased Direction#getNearest calculation will be used to prevent normal fighting on 45 degree angle faces. + stabilizeDirectionGetNearest = true + #When enabled, Forge will allow mipmaps to be lowered in real-time. This is the default behavior in vanilla. Use this if you experience issues with resource packs that use textures lower than 8x8. + allowMipmapLowering = false + diff --git a/minecraft/config/config/ftbquests/quests/chapter_groups.snbt b/minecraft/config/config/ftbquests/quests/chapter_groups.snbt new file mode 100644 index 0000000..db5f602 --- /dev/null +++ b/minecraft/config/config/ftbquests/quests/chapter_groups.snbt @@ -0,0 +1,6 @@ +{ + chapter_groups: [ + { id: "5DCD24AB1FDDFB39", title: "Mods" } + { id: "016A435AEE65B455", title: "Info" } + ] +} diff --git a/minecraft/config/config/ftbquests/quests/chapters/apotheosis.snbt b/minecraft/config/config/ftbquests/quests/chapters/apotheosis.snbt new file mode 100644 index 0000000..7784ea0 --- /dev/null +++ b/minecraft/config/config/ftbquests/quests/chapters/apotheosis.snbt @@ -0,0 +1,85 @@ +{ + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "apotheosis" + group: "016A435AEE65B455" + id: "5574DBFBFF9C1C9F" + order_index: 1 + quest_links: [ ] + quests: [ + { + dependencies: ["3FC33B1ABD69F9C5"] + description: ["I lied, this is another way to farm resources."] + id: "2238D4155A9B42BE" + rewards: [{ + exclude_from_claim_all: true + id: "3C720AE612B1F2FD" + table_id: 6597032566933791570L + type: "random" + }] + tasks: [{ + id: "75A15B1937EADF3A" + title: "Ore Creepers" + type: "checkmark" + }] + x: 6.0d + y: 1.0d + } + { + id: "3FC33B1ABD69F9C5" + rewards: [{ + exclude_from_claim_all: true + id: "2996E32E3ACA86A2" + table_id: 6597032566933791570L + type: "random" + }] + tasks: [{ + id: "7CA518E3DBEF54E6" + title: "Apotheosis" + type: "checkmark" + }] + x: -0.5d + y: 1.0d + } + { + dependencies: ["2238D4155A9B42BE"] + id: "27CA144F1BEDC3BB" + tasks: [{ + id: "0394CD370FA85AD9" + item: "ore_creeper:iron_creeper_spawn_egg" + type: "item" + }] + x: 6.0d + y: -1.5d + } + { + dependencies: ["2238D4155A9B42BE"] + id: "18489D8B06E58882" + tasks: [{ + id: "6C7C497EA9FBD88F" + item: "ore_creeper:gold_creeper_spawn_egg" + type: "item" + }] + x: 8.5d + y: 1.0d + } + { + dependencies: ["3FC33B1ABD69F9C5"] + id: "75DA0C4FC7BFC5A8" + tasks: [{ + id: "7ED003F7430547C4" + item: { + Count: 1 + id: "patchouli:guide_book" + tag: { + "patchouli:book": "apotheosis:apoth_chronicle" + } + } + type: "item" + }] + x: -0.5d + y: 0.0d + } + ] + title: "Apotheosis" +} diff --git a/minecraft/config/config/ftbquests/quests/chapters/ars_nouveau.snbt b/minecraft/config/config/ftbquests/quests/chapters/ars_nouveau.snbt new file mode 100644 index 0000000..ae352d9 --- /dev/null +++ b/minecraft/config/config/ftbquests/quests/chapters/ars_nouveau.snbt @@ -0,0 +1,223 @@ +{ + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "ars_nouveau" + group: "5DCD24AB1FDDFB39" + id: "093C0674CEC7CAF0" + order_index: 2 + quest_links: [ ] + quests: [ + { + id: "2F12B6DA3217BC6B" + rewards: [{ + exclude_from_claim_all: true + id: "72222ED84C4E28D6" + table_id: 6597032566933791570L + type: "loot" + }] + tasks: [{ + id: "6A40EC679EA69EF4" + title: "Intro to Ars Nouveau" + type: "checkmark" + }] + x: 0.0d + y: 2.0d + } + { + dependencies: ["2F12B6DA3217BC6B"] + id: "1EB368A7C6DDDA1B" + tasks: [{ + id: "21ED3273FCA65163" + item: { + Count: 1 + id: "minecraft:iron_shovel" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -1.5d + y: 2.5d + } + { + dependencies: ["2F12B6DA3217BC6B"] + id: "3376EE112CEFA2A4" + tasks: [{ + id: "7536995B01E8677E" + item: { + Count: 1 + id: "minecraft:iron_pickaxe" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -1.0d + y: 1.0d + } + { + dependencies: ["2F12B6DA3217BC6B"] + id: "29D0A9B8419D034B" + tasks: [{ + id: "50264464A93CD5FC" + item: { + Count: 1 + id: "minecraft:iron_axe" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 0.0d + y: 3.5d + } + { + dependencies: ["2F12B6DA3217BC6B"] + id: "1F7F1B1CA77299A6" + tasks: [{ + id: "68A507C05E45FCA6" + item: { + Count: 1 + id: "minecraft:iron_sword" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 1.5d + y: 2.5d + } + { + dependencies: ["2F12B6DA3217BC6B"] + id: "3CE97B66C0A866C3" + tasks: [{ + id: "6B2D8AC20EC899CA" + item: "minecraft:book" + type: "item" + }] + x: 1.0d + y: 1.0d + } + { + dependencies: [ + "1F7F1B1CA77299A6" + "29D0A9B8419D034B" + "1EB368A7C6DDDA1B" + "3376EE112CEFA2A4" + ] + id: "2831E449C70D3E84" + tasks: [{ + id: "711EE5B41FAC79B1" + item: "ars_nouveau:novice_spell_book" + type: "item" + }] + x: 0.0d + y: -0.5d + } + { + dependencies: ["2F12B6DA3217BC6B"] + id: "3068675FD0BF6961" + tasks: [{ + count: 4L + id: "6DEEE7AACF10ECFE" + item: { Count: 4, id: "ars_nouveau:archwood_planks" } + type: "item" + }] + x: 1.5d + y: 4.0d + } + { + dependencies: ["682594268B4F9A1E"] + id: "04471A256FA0FA87" + tasks: [{ + id: "4E11025FF2F5800C" + item: "ars_nouveau:source_jar" + type: "item" + }] + x: 2.5d + y: 2.0d + } + { + dependencies: ["3068675FD0BF6961"] + id: "7ED7C48958731888" + tasks: [{ + id: "35C01F1F6DD9EB3A" + item: "ars_nouveau:imbuement_chamber" + type: "item" + }] + title: "Magic making" + x: 2.5d + y: 5.0d + } + { + dependencies: ["7ED7C48958731888"] + id: "5E549E122D3D256B" + tasks: [{ + id: "42B3C261A6D9C983" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(minecraft:lapis_lazuli)item(minecraft:amethyst_shard))" + } + } + title: "Lapis/Amethyst" + type: "item" + }] + x: 3.0d + y: 4.0d + } + { + dependencies: ["5E549E122D3D256B"] + id: "682594268B4F9A1E" + rewards: [{ + exclude_from_claim_all: true + id: "317BA98890B36BCC" + table_id: 6588992146511430366L + type: "random" + }] + tasks: [{ + id: "1C94519DC8541883" + item: "ars_nouveau:source_gem" + type: "item" + }] + x: 3.5d + y: 3.0d + } + { + dependencies: ["682594268B4F9A1E"] + id: "7DDF429C5ED58989" + tasks: [{ + id: "65ED6170210CF48D" + item: "ars_nouveau:agronomic_sourcelink" + type: "item" + }] + title: "Making magic" + x: 4.5d + y: 2.0d + } + { + dependencies: ["7DDF429C5ED58989"] + id: "73F7E895F841EDF8" + tasks: [{ + id: "0EE9104BD6BB2323" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(ars_nouveau:volcanic_sourcelink)item(ars_nouveau:alchemical_sourcelink)item(ars_nouveau:vitalic_sourcelink)item(ars_nouveau:mycelial_sourcelink))" + } + } + title: "Source Link" + type: "item" + }] + x: 5.0d + y: 3.0d + } + ] + title: "Ars Nouveau" +} diff --git a/minecraft/config/config/ftbquests/quests/chapters/beginning.snbt b/minecraft/config/config/ftbquests/quests/chapters/beginning.snbt new file mode 100644 index 0000000..4de017d --- /dev/null +++ b/minecraft/config/config/ftbquests/quests/chapters/beginning.snbt @@ -0,0 +1,296 @@ +{ + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "beginning" + group: "" + id: "06425F9838F27742" + order_index: 0 + quest_links: [ ] + quests: [ + { + id: "63F52A0B304AD089" + rewards: [ + { + exclude_from_claim_all: true + id: "7DD97200BCA4C032" + table_id: 6597032566933791570L + type: "loot" + } + { + command: "/time set day" + elevate_perms: true + id: "091287A5F6C71997" + type: "command" + } + ] + tasks: [{ + id: "7BA94D6C130C1130" + title: "Intro" + type: "checkmark" + }] + x: 0.0d + y: 0.0d + } + { + dependencies: ["63F52A0B304AD089"] + id: "35978965A3A310A4" + rewards: [ + { + exclude_from_claim_all: true + id: "3AC68A24BF0BA6E7" + table_id: 6588992146511430366L + type: "loot" + } + { + exclude_from_claim_all: true + id: "23A504EA74FDE1A3" + table_id: 6597032566933791570L + type: "loot" + } + ] + tasks: [ + { + id: "59D7284BCF823C2E" + item: { + Count: 1 + id: "minecraft:iron_pickaxe" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "0BF3D0B4E01A6ED8" + item: { + Count: 1 + id: "minecraft:diamond_pickaxe" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "0D3F5D25FD5D6F17" + item: { + Count: 1 + id: "botania:terra_pick" + tag: { + Damage: 0 + } + } + match_nbt: false + type: "item" + } + ] + title: "Pickaxes" + x: 2.5d + y: -5.5d + } + { + dependencies: ["63F52A0B304AD089"] + id: "5278E586FA6CB09E" + rewards: [{ + exclude_from_claim_all: true + id: "5BEDDC4631E28BE4" + table_id: 6588992146511430366L + type: "random" + }] + tasks: [ + { + count: 10L + id: "27DF3FEAC6E7D4FB" + item: { Count: 10, id: "minecraft:obsidian" } + type: "item" + } + { + id: "5E4F48CA5DEB9A07" + item: { + Count: 1 + id: "minecraft:flint_and_steel" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "Nether" + x: 6.0d + y: -3.0d + } + { + dependencies: ["63F52A0B304AD089"] + id: "65749858B45508FA" + rewards: [{ + exclude_from_claim_all: true + id: "36216AFF9CEE129A" + table_id: 6588992146511430366L + type: "loot" + }] + tasks: [{ + count: 64L + id: "65741E464CF5C324" + item: { Count: 64, id: "minecraft:iron_ingot" } + type: "item" + }] + x: -2.5d + y: 4.5d + } + { + dependencies: ["63F52A0B304AD089"] + id: "1EE821795415A978" + rewards: [{ + exclude_from_claim_all: true + id: "31DB92DFA4FE1E7D" + table_id: 6588992146511430366L + type: "random" + }] + tasks: [{ + count: 32L + id: "6DDB892CE25CB7D4" + item: { Count: 32, id: "minecraft:diamond" } + type: "item" + }] + x: -1.0d + y: 4.5d + } + { + dependencies: ["63F52A0B304AD089"] + id: "0220EF9E04F85820" + rewards: [{ + exclude_from_claim_all: true + id: "3E13C82E5C80E7E4" + table_id: 6588992146511430366L + type: "random" + }] + tasks: [{ + count: 32L + id: "43C463E27D2C29DC" + item: { Count: 32, id: "minecraft:gold_ingot" } + type: "item" + }] + x: 1.0d + y: 4.5d + } + { + dependencies: ["63F52A0B304AD089"] + id: "778CC2E4BF1C27C7" + rewards: [{ + exclude_from_claim_all: true + id: "1DFDB94C6B50387F" + table_id: 6588992146511430366L + type: "random" + }] + tasks: [{ + count: 128L + id: "30C258DF6C8361F9" + item: { Count: 128, id: "minecraft:redstone" } + type: "item" + }] + x: 2.5d + y: 4.5d + } + { + dependencies: ["63F52A0B304AD089"] + id: "559A8741F4598839" + rewards: [{ + exclude_from_claim_all: true + id: "6CBC6AE95C70C6FC" + table_id: 6588992146511430366L + type: "loot" + }] + tasks: [{ + count: 256L + id: "25D625D7C56C2E37" + item: { Count: 256, id: "minecraft:cobblestone" } + type: "item" + }] + x: 0.0d + y: 3.0d + } + { + dependencies: ["5278E586FA6CB09E"] + icon: "minecraft:ender_eye" + id: "580F68EB4E84C86B" + rewards: [{ + exclude_from_claim_all: true + id: "24FE0CFDAD040E1B" + table_id: 6128321348330080280L + type: "random" + }] + tasks: [{ + dimension: "minecraft:the_end" + id: "65BECDA20094312E" + type: "dimension" + }] + x: 7.0d + y: -2.0d + } + { + dependencies: ["580F68EB4E84C86B"] + id: "69C8E981DD3E564E" + rewards: [{ + exclude_from_claim_all: true + id: "073DE799A74FEEEB" + table_id: 6128321348330080280L + type: "random" + }] + tasks: [{ + id: "25A0E02D4BD3B3B8" + item: { + Count: 1 + id: "minecraft:elytra" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 8.0d + y: -3.0d + } + { + dependencies: ["63F52A0B304AD089"] + description: ["Villagers can be spawned with a botania cocoon and emeralds, refer to the lexica botania for more info. Villagers can breed their population higher over time, assuming they have a food source (farmer villagers will farm land near their compost bin) villagers will not breed if there are more villagers than pathfind-able beds, some sort of automated villager collection system would allow them to infinitely repopulate."] + id: "41C120B7B3A50B17" + rewards: [{ + exclude_from_claim_all: true + id: "3A46D9C782BE010D" + table_id: 6588992146511430366L + type: "random" + }] + tasks: [{ + icon: "minecraft:villager_spawn_egg" + id: "2F46EF05782E9497" + observe_type: 5 + timer: 0L + to_observe: "minecraft:villager" + type: "observation" + }] + title: "Get Villagers" + x: 3.5d + y: 0.0d + } + { + dependencies: ["41C120B7B3A50B17"] + description: ["You don't need an iron farm, but i highly recommend to make one, as resource generation only comes later in the pack. You don't need a fancy youtube setup, just chuck at least 3 villagers with beds over a pit, place a zombie close enough to scare the villagers, some sort of system to allow the villagers to get at least 20~ seconds of sleep every night, and some sort of collection and killing system for the golems"] + id: "5F56A8911B45AA0D" + rewards: [{ + exclude_from_claim_all: true + id: "23DE35ABC20E97ED" + table_id: 6597032566933791570L + type: "loot" + }] + tasks: [{ + id: "3C4C6EDB8A9151E2" + title: "Iron" + type: "checkmark" + }] + x: 5.0d + y: 0.0d + } + ] + title: "Beginning" +} diff --git a/minecraft/config/config/ftbquests/quests/chapters/blood_magic.snbt b/minecraft/config/config/ftbquests/quests/chapters/blood_magic.snbt new file mode 100644 index 0000000..595d73e --- /dev/null +++ b/minecraft/config/config/ftbquests/quests/chapters/blood_magic.snbt @@ -0,0 +1,31 @@ +{ + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "blood_magic" + group: "5DCD24AB1FDDFB39" + id: "383450E6D43CF314" + order_index: 3 + quest_links: [ ] + quests: [{ + id: "62EFB4AD2F588217" + rewards: [{ + id: "7E841AB8A8EF8C5A" + item: { + Count: 1 + id: "patchouli:guide_book" + tag: { + "patchouli:book": "bloodmagic:guide" + } + } + type: "item" + }] + tasks: [{ + id: "565608A1879291BD" + title: "Sanguine Arts " + type: "checkmark" + }] + x: 0.0d + y: 0.0d + }] + title: "Blood Magic" +} diff --git a/minecraft/config/config/ftbquests/quests/chapters/botania.snbt b/minecraft/config/config/ftbquests/quests/chapters/botania.snbt new file mode 100644 index 0000000..efecd9e --- /dev/null +++ b/minecraft/config/config/ftbquests/quests/chapters/botania.snbt @@ -0,0 +1,1032 @@ +{ + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "botania" + group: "5DCD24AB1FDDFB39" + id: "5A3F9586AA46AE12" + order_index: 0 + quest_links: [ ] + quests: [ + { + description: ["Botania is the backbone of this pack, many of the recipes in the pack are gated behind, or have better alternatives through Botania."] + id: "24A19492CD9D8267" + rewards: [{ + exclude_from_claim_all: true + id: "3F2A2944296D01A1" + table_id: 6597032566933791570L + type: "loot" + }] + tasks: [{ + id: "2B8732213CA9C307" + title: "Intro to Botania" + type: "checkmark" + }] + x: -0.5d + y: -4.0d + } + { + dependencies: ["60284B32FBC1DA6F"] + id: "1B53F753EA0E04EF" + rewards: [{ + count: 8 + id: "0E76FFFFA57CCFCC" + item: "botania:manasteel_ingot" + type: "item" + }] + tasks: [{ + id: "15C8310AE043BD5B" + item: "botania:manasteel_ingot" + type: "item" + }] + x: 8.5d + y: -4.0d + } + { + dependencies: ["1B53F753EA0E04EF"] + description: ["You'll need more where this came from."] + hide_dependency_lines: false + id: "1007D5FF5E3520BF" + rewards: [{ + exclude_from_claim_all: true + id: "65789138D8AD2426" + table_id: 6128321348330080280L + type: "random" + }] + tasks: [{ + count: 64L + id: "302D9F78CAA1AEF9" + item: { Count: 64, id: "botania:manasteel_ingot" } + type: "item" + }] + x: 9.5d + y: -4.0d + } + { + dependencies: [ + "18E0577561D673D7" + "3100328263F49943" + "22DEF97163CAD532" + ] + id: "60284B32FBC1DA6F" + tasks: [{ + id: "3060CB4D516CAE9D" + item: "botania:mana_pool" + type: "item" + }] + x: 1.5d + y: -4.0d + } + { + dependencies: ["5703CEB8C9AA31FF"] + id: "43057E03FF3BEAF2" + rewards: [ + { + count: 2 + id: "2A8517971C99B859" + item: "botania:terrasteel_ingot" + type: "item" + } + { + exclude_from_claim_all: true + id: "602BCE9321F42068" + table_id: 6588992146511430366L + type: "random" + } + ] + tasks: [{ + id: "4DB79CFC85E36DC1" + item: "botania:terrasteel_ingot" + type: "item" + }] + x: 8.5d + y: 0.0d + } + { + dependencies: ["43057E03FF3BEAF2"] + id: "12C14F4A000F3587" + rewards: [{ + exclude_from_claim_all: true + id: "6F871953C34903DA" + table_id: 6128321348330080280L + type: "random" + }] + tasks: [{ + count: 64L + id: "7EBAA0803DF8656F" + item: { Count: 64, id: "botania:terrasteel_ingot" } + type: "item" + }] + x: 9.5d + y: 0.0d + } + { + dependencies: ["419AB81AD04D630F"] + description: ["Elementium is halved in price compared to vanilla botania."] + id: "2D3ABF8DDB03F07E" + rewards: [{ + exclude_from_claim_all: true + id: "2A7E926258DFE23C" + table_id: 6588992146511430366L + type: "random" + }] + tasks: [{ + id: "23CB3525839030C1" + item: { Count: 64, id: "botania:elementium_ingot" } + type: "item" + }] + x: 8.5d + y: -2.0d + } + { + dependencies: ["2D3ABF8DDB03F07E"] + id: "5258EBCC13048FDB" + rewards: [{ + exclude_from_claim_all: true + id: "5004972F6ECAE3D2" + table_id: 6128321348330080280L + type: "loot" + }] + tasks: [{ + count: 64L + id: "7048C41D6D7F2E87" + item: { Count: 64, id: "botania:elementium_ingot" } + type: "item" + }] + x: 9.5d + y: -2.0d + } + { + dependencies: ["1AF511C9AC8B1D8B"] + id: "18E0577561D673D7" + rewards: [{ + count: 2 + id: "25A91075CE411DC3" + item: "botania:floating_pure_daisy" + type: "item" + }] + tasks: [{ + id: "2CCDB0B8D9E830A3" + item: "botania:pure_daisy" + type: "item" + }] + x: -0.5d + y: -2.0d + } + { + dependencies: ["3CFAFECC8538DAB0"] + id: "1AF511C9AC8B1D8B" + tasks: [{ + id: "5A9150A2E2012DE8" + item: "botania:apothecary_default" + type: "item" + }] + x: -2.5d + y: -4.0d + } + { + dependencies: ["24A19492CD9D8267"] + id: "3CFAFECC8538DAB0" + rewards: [{ + exclude_from_claim_all: true + id: "0362054736529DBE" + table_id: 6597032566933791570L + type: "random" + }] + tasks: [{ + id: "3EA2009A99CB0578" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item_tag(botania:mystical_flowers)item_tag(botania:shimmering_mushrooms))" + } + } + title: "Mystical Flower or Mushroom" + type: "item" + }] + x: -0.5d + y: -6.0d + } + { + dependencies: ["6C33B19B0DD3E3C8"] + id: "441C60354881B6D3" + rewards: [{ + exclude_from_claim_all: true + id: "04624FE87F3E874D" + table_id: 6588992146511430366L + type: "random" + }] + tasks: [{ + id: "67A2EA3F926B4C76" + item: "botania:endoflame" + type: "item" + }] + x: -10.0d + y: -4.0d + } + { + dependencies: ["1AF511C9AC8B1D8B"] + description: ["These flowers generate mana given set conditions. You are going to have to craft and automate lots of these ASAP to save yourself a future headache."] + id: "6C33B19B0DD3E3C8" + rewards: [{ + exclude_from_claim_all: true + id: "600156157F0ED3CC" + table_id: 6597032566933791570L + type: "loot" + }] + tasks: [{ + id: "0994248B9C4A930F" + title: "Generating Flowers" + type: "checkmark" + }] + x: -8.0d + y: -4.0d + } + { + dependencies: ["18E0577561D673D7"] + description: ["Hook up a mana spreader to the mana pool, then place a generating flower nearby the spreader. A few endoflames should work well for your purposes (8-16 at least)."] + id: "3100328263F49943" + tasks: [{ + id: "6911BADEF211F2D6" + item: "botania:mana_spreader" + type: "item" + }] + x: 1.5d + y: -2.0d + } + { + dependencies: ["3CFAFECC8538DAB0"] + description: ["Plant petals on dirt or grass and bonemeal them, or make floral fertilizer to farm petals early on."] + id: "764382F0A8DDB493" + tasks: [ + { + id: "2C1F53C987075BE8" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(botania:petals)" + } + } + title: "Any Petals" + type: "item" + } + { + id: "2E51A9DAD3C430DF" + item: "botania:fertilizer" + type: "item" + } + ] + x: -0.5d + y: -8.0d + } + { + dependencies: ["24A19492CD9D8267"] + description: ["When in doubt, consult THE BOOK."] + icon: "botania:lexicon" + id: "6456BA74CC1A9E8E" + rewards: [{ + id: "329F0DA08A77F882" + item: "botania:lexicon" + type: "item" + }] + tasks: [{ + id: "50C0162DC938B32D" + title: "Check if cool." + type: "checkmark" + }] + x: 1.5d + y: -6.0d + } + { + dependencies: ["1AF511C9AC8B1D8B"] + id: "553DD37CF3E0FCFF" + rewards: [{ + exclude_from_claim_all: true + id: "29B1AE81EC1D0B2B" + table_id: 6597032566933791570L + type: "loot" + }] + tasks: [{ + id: "73A451B97C679764" + title: "Functional Flowers" + type: "checkmark" + }] + x: -8.0d + y: 2.0d + } + { + dependencies: ["6C33B19B0DD3E3C8"] + description: ["I HIGHLY recommend making this flower, as you will have to automate cakes anyways to beat the pack."] + id: "61960C2546AA32D6" + rewards: [{ + exclude_from_claim_all: true + id: "3D69F0B80D5D219E" + table_id: 6588992146511430366L + type: "random" + }] + tasks: [{ + id: "3EFFB431C234784C" + item: "botania:kekimurus" + type: "item" + }] + x: -8.0d + y: -2.0d + } + { + dependencies: [ + "1B53F753EA0E04EF" + "43057E03FF3BEAF2" + ] + description: ["THE BOOK"] + id: "419AB81AD04D630F" + rewards: [{ + exclude_from_claim_all: true + id: "4F42CA54344E96C7" + table_id: 6128321348330080280L + type: "loot" + }] + tasks: [ + { + count: 2L + id: "78FF66EF50F53421" + item: "botania:natura_pylon" + type: "item" + } + { + count: 2L + id: "7DBD8CA7FE330A0F" + item: { Count: 2, id: "botania:mana_pool" } + type: "item" + } + { + count: 8L + id: "66ED657313BAF952" + item: { Count: 8, id: "botania:livingwood" } + type: "item" + } + { + count: 3L + id: "1A24C3DB0D21973E" + item: { Count: 3, id: "botania:glimmering_livingwood" } + type: "item" + } + { + id: "2F408C7B499ABAE4" + item: "botania:alfheim_portal" + type: "item" + } + ] + title: "Portal to Alfheim" + x: -0.5d + y: 3.5d + } + { + dependencies: ["1F1C899D57852C1B"] + hide_dependent_lines: true + id: "22DEF97163CAD532" + tasks: [{ + id: "4930764EFDA4C3C5" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(botania:twig_wand))" + } + } + title: "Wand of the Forest" + type: "item" + }] + x: -2.5d + y: -2.0d + } + { + dependencies: ["419AB81AD04D630F"] + id: "1BC2A2AA0F91C07D" + tasks: [{ + id: "45AC20ED3B8CD5F1" + item: { + Count: 1 + id: "botania:lexicon" + tag: { + "botania:elven_unlock": 1b + } + } + type: "item" + }] + x: -0.5d + y: 2.5d + } + { + dependencies: ["2092ADECB58296C7"] + id: "5703CEB8C9AA31FF" + tasks: [{ + id: "17CAD6A1FFCE10BF" + item: "botania:terra_plate" + type: "item" + }] + x: 6.5d + y: -7.5d + } + { + dependencies: ["2092ADECB58296C7"] + id: "707965808BD2F8C8" + tasks: [{ + id: "3D682A4DE39CB981" + item: "botania:runic_altar" + type: "item" + }] + x: 4.5d + y: -7.5d + } + { + dependencies: ["2092ADECB58296C7"] + id: "449F3D013823D8DD" + tasks: [{ + id: "752FC26ADF616074" + item: "botania:mana_diamond" + type: "item" + }] + x: 4.5d + y: -12.0d + } + { + dependencies: ["2092ADECB58296C7"] + id: "3589539201E2731C" + tasks: [{ + id: "07F383A18E612642" + item: "botania:mana_pearl" + type: "item" + }] + x: 6.5d + y: -12.0d + } + { + dependencies: ["2092ADECB58296C7"] + id: "4AF8E9B2DA9CE8B7" + tasks: [{ + id: "0E93E337161048F2" + item: "botania:mana_powder" + type: "item" + }] + x: 5.5d + y: -12.0d + } + { + dependencies: ["60284B32FBC1DA6F"] + id: "2092ADECB58296C7" + rewards: [{ + exclude_from_claim_all: true + id: "5D638B43DD40985B" + table_id: 6597032566933791570L + type: "loot" + }] + tasks: [{ + id: "213B94ED56460699" + title: "Common Materials" + type: "checkmark" + }] + x: 5.5d + y: -10.5d + } + { + dependencies: ["18E0577561D673D7"] + description: ["You will need LOTS of these"] + id: "3E6942E18CEAAD63" + tasks: [{ + id: "45EE706C2A2D20BF" + item: "botania:livingrock" + type: "item" + }] + x: 0.0d + y: -1.0d + } + { + dependencies: ["18E0577561D673D7"] + description: ["You will need LOTS of these."] + id: "1F1C899D57852C1B" + tasks: [{ + id: "4E5D0461BE6DE8F8" + item: "botania:livingwood" + type: "item" + }] + x: -1.0d + y: -1.0d + } + { + dependencies: ["3CFAFECC8538DAB0"] + hide_dependency_lines: true + id: "76ECBD806DED2B5D" + tasks: [{ + id: "623F783C358E0CBF" + item: "botania:spark" + type: "item" + }] + title: "Quick Mana Transfer" + x: 5.5d + y: -6.0d + } + { + dependencies: ["76ECBD806DED2B5D"] + description: ["These are very useful so use them."] + id: "303BB3DBB2F2CB4E" + rewards: [{ + exclude_from_claim_all: true + id: "3E66947E969FD80F" + table_id: 6597032566933791570L + type: "loot" + }] + tasks: [{ + id: "54767ADABFBBC1D6" + title: "Spark Stuff" + type: "checkmark" + }] + x: 11.5d + y: -6.0d + } + { + dependencies: ["303BB3DBB2F2CB4E"] + id: "29B7586BB0F17240" + tasks: [{ + id: "0BF2158EDC559481" + item: "botania:spark_upgrade_dominant" + type: "item" + }] + x: 11.5d + y: -8.0d + } + { + dependencies: ["303BB3DBB2F2CB4E"] + id: "41AFD526CE06CF88" + tasks: [{ + id: "4BDEAC647B6FBF4F" + item: "botania:spark_upgrade_recessive" + type: "item" + }] + title: "Spark Augment: Submissive" + x: 13.0d + y: -7.5d + } + { + dependencies: ["303BB3DBB2F2CB4E"] + id: "1B6001E7E6D6B30E" + tasks: [{ + id: "08BB69CB158BE4AE" + item: "botania:spark_upgrade_dispersive" + type: "item" + }] + x: 13.5d + y: -6.0d + } + { + dependencies: ["303BB3DBB2F2CB4E"] + id: "5412B095A0A6D8AD" + tasks: [{ + id: "2C47FE3D6565495B" + item: "botania:spark_upgrade_isolated" + type: "item" + }] + x: 13.0d + y: -4.5d + } + { + dependencies: ["60284B32FBC1DA6F"] + description: ["A few examples of some useful QOL stuff that this mod offers."] + hide_dependency_lines: true + id: "1DA3E6CFFBF086F3" + rewards: [{ + exclude_from_claim_all: true + id: "2466C4A239BCE8AF" + table_id: 6597032566933791570L + type: "loot" + }] + tasks: [{ + id: "6017F44A054D6D71" + title: "The Useful Stuff" + type: "checkmark" + }] + x: -8.0d + y: -10.0d + } + { + dependencies: ["1DA3E6CFFBF086F3"] + id: "4F118C886A1DE9A1" + tasks: [{ + id: "136EF8F282A2E968" + item: "botania:brewery" + type: "item" + }] + x: -8.0d + y: -12.5d + } + { + dependencies: ["1DA3E6CFFBF086F3"] + id: "34105563FEDCBC7A" + tasks: [{ + id: "0972D3C24F1898CD" + item: "botania:incense_plate" + type: "item" + }] + x: -6.0d + y: -12.0d + } + { + dependencies: ["68EA44C7BCB26959"] + id: "1DBFB1C8EB7A1E48" + tasks: [{ + id: "285BD94B5C45FC35" + item: "botania:life_essence" + type: "item" + }] + x: -0.5d + y: 8.0d + } + { + dependencies: ["1DBFB1C8EB7A1E48"] + id: "2A7AA63F5440B4C4" + tasks: [{ + id: "5533A5F41BD6D8B3" + item: "botania:gaia_ingot" + type: "item" + }] + x: -1.5d + y: 9.0d + } + { + dependencies: ["2A7AA63F5440B4C4"] + description: ["OP when farmed."] + id: "6EE8D7BCC35B867B" + tasks: [{ + id: "3E1B80F1EF496F59" + item: "kubejs:token_gaia" + type: "item" + }] + x: -0.5d + y: 10.0d + } + { + dependencies: ["1DA3E6CFFBF086F3"] + description: ["This thing is actually pretty good."] + id: "557C02610F5F82B9" + tasks: [{ + id: "1A29B9D391369DC0" + item: "botania:crafty_crate" + type: "item" + }] + x: -5.5d + y: -10.0d + } + { + dependencies: ["1DA3E6CFFBF086F3"] + description: ["Make villagers easily(ish)"] + id: "6C978D32A8237E75" + tasks: [{ + id: "359C7C97EE007E5C" + item: "botania:cocoon" + type: "item" + }] + x: -6.0d + y: -8.0d + } + { + dependencies: ["1DA3E6CFFBF086F3"] + id: "5814455D3938046F" + tasks: [{ + id: "221201D1D0F6BB14" + item: { + Count: 1 + id: "botania:terra_pick" + tag: { + Damage: 0 + } + } + match_nbt: false + type: "item" + }] + x: -8.0d + y: -7.5d + } + { + dependencies: ["1DA3E6CFFBF086F3"] + id: "2BEDF02CA35BC356" + tasks: [{ + id: "35388BBF2FDB4797" + item: "botania:magnet_ring" + type: "item" + }] + x: -10.0d + y: -8.0d + } + { + dependencies: ["1DBFB1C8EB7A1E48"] + id: "6CE28DD52C4257C8" + tasks: [{ + id: "38CF7740B427DAA6" + item: "botania:dice" + type: "item" + }] + x: 0.5d + y: 9.0d + } + { + dependencies: ["1DA3E6CFFBF086F3"] + id: "6097BD314A6B4045" + tasks: [{ + id: "552B434D2B55AF8A" + item: "botania:cosmetic_cat_ears" + type: "item" + }] + x: -10.5d + y: -10.0d + } + { + dependencies: ["1DA3E6CFFBF086F3"] + id: "78205C73DA743075" + tasks: [{ + id: "130A44BD7B7BA68D" + item: "botania:hourglass" + type: "item" + }] + x: -10.0d + y: -12.0d + } + { + dependencies: ["6C33B19B0DD3E3C8"] + id: "0363111B1B5FD4AA" + tasks: [{ + id: "6B5574B7F59C7BE1" + item: "botania:hydroangeas" + type: "item" + }] + x: -9.5d + y: -2.5d + } + { + dependencies: ["6C33B19B0DD3E3C8"] + id: "7FBABB3C15352E89" + tasks: [{ + id: "5ED2BD25AA1257DB" + item: "botania:rosa_arcana" + type: "item" + }] + x: -6.5d + y: -2.5d + } + { + dependencies: ["6C33B19B0DD3E3C8"] + id: "702F6FC1545E1006" + tasks: [{ + id: "746707270FFD9A7C" + item: "botania:thermalily" + type: "item" + }] + x: -6.5d + y: -5.5d + } + { + dependencies: ["6C33B19B0DD3E3C8"] + id: "1F88CAE67CED23CE" + tasks: [{ + id: "7C61AECF414D5F65" + item: "botania:munchdew" + type: "item" + }] + x: -11.0d + y: -3.0d + } + { + dependencies: ["6C33B19B0DD3E3C8"] + id: "00BBA2AF158EE85B" + tasks: [{ + id: "6480054D25B28C61" + item: "botania:entropinnyum" + type: "item" + }] + x: -7.5d + y: -5.0d + } + { + dependencies: ["6C33B19B0DD3E3C8"] + id: "2291EC2A8DF6084B" + tasks: [{ + id: "59C066A060DC0773" + item: "botania:gourmaryllis" + type: "item" + }] + x: -9.0d + y: -4.5d + } + { + dependencies: ["6C33B19B0DD3E3C8"] + id: "181475B2D48A9B91" + tasks: [{ + id: "44F43C455F2D6888" + item: "botania:narslimmus" + type: "item" + }] + x: -7.0d + y: -3.5d + } + { + dependencies: ["1DA3E6CFFBF086F3"] + id: "67F28E5BE0C7253A" + tasks: [{ + id: "48016AEB54CBA143" + item: "botania:slime_bottle" + type: "item" + }] + x: -8.5d + y: -9.0d + } + { + dependencies: ["1DA3E6CFFBF086F3"] + id: "3FA993887165A7C2" + tasks: [{ + id: "4100412D266CE093" + item: "botania:animated_torch" + type: "item" + }] + x: -7.5d + y: -11.0d + } + { + dependencies: ["6C33B19B0DD3E3C8"] + id: "382982E2DD6A53D8" + tasks: [{ + id: "04281B34BB3B2D88" + item: "botania:spectrolus" + type: "item" + }] + x: -8.0d + y: -6.0d + } + { + dependencies: ["6C33B19B0DD3E3C8"] + id: "795D9DFCBED2D8E0" + tasks: [ + { + id: "389FDBD2B008F0D6" + item: "botania:dandelifeon" + type: "item" + } + { + id: "2154D51281BD040B" + item: "botania:cell_block" + type: "item" + } + ] + x: -9.5d + y: -5.5d + } + { + dependencies: ["6C33B19B0DD3E3C8"] + id: "4D65C4D7D23FEDE9" + tasks: [{ + id: "523698374D7084A6" + item: "botania:rafflowsia" + type: "item" + }] + x: -11.0d + y: -5.0d + } + { + dependencies: ["6C33B19B0DD3E3C8"] + id: "5A9C4253A58BC77F" + tasks: [{ + id: "3D00C765043CE79D" + item: "botania:shulk_me_not" + type: "item" + }] + x: -8.5d + y: -3.0d + } + { + dependencies: ["1DA3E6CFFBF086F3"] + id: "35BC58E2922D0BA0" + tasks: [{ + id: "6CCA374FC5D2AA66" + item: "botania:starfield" + type: "item" + }] + x: -7.0d + y: -9.5d + } + { + dependencies: ["553DD37CF3E0FCFF"] + id: "288F063620021029" + tasks: [{ + id: "1000CE28516C87E0" + item: "botania:orechid" + type: "item" + }] + x: -9.5d + y: 2.0d + } + { + dependencies: ["288F063620021029"] + id: "37F8FDC3DD98088E" + tasks: [{ + id: "58093D6976F488A5" + item: "botania:orechid_ignem" + type: "item" + }] + x: -10.5d + y: 2.0d + } + { + dependencies: ["553DD37CF3E0FCFF"] + id: "3FCBEC1CBAE29308" + tasks: [{ + id: "77061A92FC86E168" + item: "botania:hopperhock" + type: "item" + }] + x: -8.0d + y: 1.0d + } + { + dependencies: ["553DD37CF3E0FCFF"] + description: ["Important for growing crops quicker."] + id: "7BD3A92E5C565E80" + tasks: [{ + id: "69CEDDF7E8516FD5" + item: "botania:agricarnation" + type: "item" + }] + x: -8.0d + y: 3.0d + } + { + dependencies: ["764382F0A8DDB493"] + description: ["The Jaded Amaranthus is a nice way to automate production of mystical flowers"] + id: "544BC2111A2F11BA" + tasks: [{ + id: "7CF4275D03E367A0" + item: "botania:jaded_amaranthus" + type: "item" + }] + x: -0.5d + y: -9.5d + } + { + dependencies: ["553DD37CF3E0FCFF"] + id: "0E59DF80D2F1D347" + tasks: [{ + id: "7E7C514E93A26A10" + item: "botania:loonium" + type: "item" + }] + x: -7.0d + y: 2.0d + } + { + dependencies: ["553DD37CF3E0FCFF"] + id: "73FF50A944A11F81" + tasks: [{ + id: "0082CC77DFC9E985" + item: "botania:marimorphosis" + type: "item" + }] + x: -9.5d + y: 3.0d + } + { + dependencies: ["2BEDF02CA35BC356"] + id: "49BB870CB625E5AC" + tasks: [{ + id: "5E8A141B2CC344A0" + item: "botania:solegnolia" + type: "item" + }] + x: -11.0d + y: -7.0d + } + { + dependencies: [ + "419AB81AD04D630F" + "43057E03FF3BEAF2" + ] + id: "104CADB9FE439CBD" + tasks: [{ + count: 4L + id: "0823A86717B7D769" + item: "botania:gaia_pylon" + type: "item" + }] + x: -0.5d + y: 6.0d + } + { + dependencies: ["104CADB9FE439CBD"] + id: "68EA44C7BCB26959" + tasks: [{ + id: "45CE6918F960B687" + item: "minecraft:beacon" + type: "item" + }] + x: 0.5d + y: 7.0d + } + ] + title: "Botania" +} diff --git a/minecraft/config/config/ftbquests/quests/chapters/computer_craft.snbt b/minecraft/config/config/ftbquests/quests/chapters/computer_craft.snbt new file mode 100644 index 0000000..f334146 --- /dev/null +++ b/minecraft/config/config/ftbquests/quests/chapters/computer_craft.snbt @@ -0,0 +1,11 @@ +{ + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "computer_craft" + group: "016A435AEE65B455" + id: "5A2A67F508C4304B" + order_index: 4 + quest_links: [ ] + quests: [ ] + title: "Computer Craft" +} diff --git a/minecraft/config/config/ftbquests/quests/chapters/create.snbt b/minecraft/config/config/ftbquests/quests/chapters/create.snbt new file mode 100644 index 0000000..c86077e --- /dev/null +++ b/minecraft/config/config/ftbquests/quests/chapters/create.snbt @@ -0,0 +1,626 @@ +{ + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "create" + group: "5DCD24AB1FDDFB39" + id: "4DFBB6F8FC6C05F2" + order_index: 1 + quest_links: [ ] + quests: [ + { + description: ["Create is gated behind some basic botania setups, you will need to use both interchangeabley to avoid going insane completing this pack."] + id: "5C7C283228D76F25" + rewards: [{ + exclude_from_claim_all: true + id: "1AF3844F669FE595" + table_id: 6597032566933791570L + type: "loot" + }] + tasks: [{ + id: "350C086B301C9801" + title: "Intro to Create " + type: "checkmark" + }] + x: -0.5d + y: 0.0d + } + { + dependencies: [ + "5C7C283228D76F25" + "60284B32FBC1DA6F" + ] + description: ["Andesite alloy is made by dropping andesite in a mana pool."] + id: "54182735411E2793" + tasks: [{ + count: 8L + id: "52A97DF15AF46109" + item: { Count: 4, id: "create:andesite_alloy" } + type: "item" + }] + title: "Get to work lazy " + x: 1.5d + y: 0.0d + } + { + dependencies: ["54182735411E2793"] + id: "2169AD01BC4848C8" + tasks: [{ + count: 2L + id: "68CBD5598E8AD84F" + item: { Count: 2, id: "create:andesite_casing" } + type: "item" + }] + x: 3.0d + y: 0.0d + } + { + dependencies: ["54182735411E2793"] + id: "13BB7EBDDAF2A1BE" + tasks: [{ + count: 16L + id: "0EC8F9A794DE4854" + item: { Count: 16, id: "create:shaft" } + type: "item" + }] + x: 2.5d + y: -1.5d + } + { + dependencies: ["54182735411E2793"] + id: "2BD3BACC24F73004" + tasks: [ + { + count: 4L + id: "1269120BE1E5F3A5" + item: { Count: 4, id: "create:cogwheel" } + type: "item" + } + { + count: 4L + id: "25C96759862675C1" + item: { Count: 4, id: "create:large_cogwheel" } + type: "item" + } + ] + title: "Cogwheels and You" + x: 2.5d + y: 1.5d + } + { + dependencies: [ + "13BB7EBDDAF2A1BE" + "2BD3BACC24F73004" + ] + id: "6D12CB54D3D54F08" + tasks: [{ + id: "74E9F033A49E3593" + item: "create:water_wheel" + type: "item" + }] + title: "water power" + x: 4.5d + y: 0.0d + } + { + dependencies: ["6D12CB54D3D54F08"] + id: "62B32C08FCBAED1D" + tasks: [{ + id: "188F1D6ACD33B8E3" + item: "create:large_water_wheel" + type: "item" + }] + title: "EVEN MORE POWER!!" + x: 6.0d + y: 0.0d + } + { + dependencies: ["62B32C08FCBAED1D"] + id: "39425D04A3149523" + tasks: [{ + count: 4L + id: "5EDD4DBA576D528E" + item: { Count: 4, id: "create:belt_connector" } + type: "item" + }] + x: 6.0d + y: 1.5d + } + { + dependencies: ["39425D04A3149523"] + id: "34C5E838F0D830A6" + tasks: [{ + id: "7C411653BE731EE3" + item: "create:mechanical_press" + type: "item" + }] + title: "pressing isues" + x: 4.5d + y: 2.5d + } + { + dependencies: ["34C5E838F0D830A6"] + id: "3921C65756E729A8" + tasks: [{ + count: 5L + id: "6E4AEB63F578F955" + item: { Count: 5, id: "create:iron_sheet" } + type: "item" + }] + x: 2.5d + y: 3.0d + } + { + dependencies: ["3921C65756E729A8"] + id: "46014E24196314E7" + tasks: [{ + id: "4A7D1786DB8AF827" + item: "create:mechanical_mixer" + type: "item" + }] + x: 1.0d + y: 3.0d + } + { + dependencies: ["3921C65756E729A8"] + id: "3B2B79B6E6FD0F05" + tasks: [{ + id: "19E1A12423ECF6F6" + item: "create:encased_fan" + type: "item" + }] + x: 1.5d + y: 2.0d + } + { + dependencies: ["3921C65756E729A8"] + id: "3ED55DB32C910D54" + tasks: [{ + count: 5L + id: "66E2D7A01A0F4C88" + item: { Count: 5, id: "create:golden_sheet" } + type: "item" + }] + x: 2.5d + y: 4.5d + } + { + dependencies: ["3ED55DB32C910D54"] + id: "461577260E0837A5" + tasks: [{ + id: "012FA81988746E4C" + item: "create:goggles" + type: "item" + }] + title: "\"Am I doing this right?\"" + x: 1.5d + y: 5.5d + } + { + dependencies: ["3ED55DB32C910D54"] + id: "433EF8A355A9EA42" + tasks: [{ + id: "37396407C18C440C" + item: "create:wrench" + type: "item" + }] + x: 2.5d + y: 6.0d + } + { + dependencies: ["3ED55DB32C910D54"] + id: "3B4EA575E0A2C805" + tasks: [{ + id: "0A7361DFDF35B675" + item: "create:steam_engine" + type: "item" + }] + title: "Its getting steamy" + x: 4.0d + y: 4.5d + } + { + dependencies: ["3921C65756E729A8"] + id: "09517B70F395BE11" + tasks: [{ + count: 5L + id: "3CB080AC61BFFBF0" + item: { Count: 5, id: "create:copper_sheet" } + type: "item" + }] + x: 1.0d + y: 4.5d + } + { + dependencies: ["09517B70F395BE11"] + id: "5E2EDADAC53D1FE0" + tasks: [{ + count: 4L + id: "5FFCC71542787AE2" + item: { Count: 4, id: "create:fluid_tank" } + type: "item" + }] + x: -1.5d + y: 4.5d + } + { + dependencies: ["5E2EDADAC53D1FE0"] + id: "093D6204323A8E44" + tasks: [{ + count: 8L + id: "5ECA002B30690652" + item: { Count: 8, id: "create:fluid_pipe" } + type: "item" + }] + x: -0.5d + y: 3.5d + } + { + dependencies: ["093D6204323A8E44"] + id: "59A1E0D7FDEB6012" + tasks: [{ + id: "5E28D7FC25944082" + item: "create:mechanical_pump" + type: "item" + }] + x: -1.5d + y: 3.0d + } + { + dependencies: ["46014E24196314E7"] + id: "4BC4EA2B9F1EA9C1" + tasks: [{ + id: "2D12C12DD49C6595" + item: "create:basin" + type: "item" + }] + x: 0.0d + y: 2.0d + } + { + dependencies: ["5E2EDADAC53D1FE0"] + id: "035B7DCB8D01EF31" + tasks: [{ + count: 4L + id: "48EC5F84C3778962" + item: { Count: 4, id: "create:copper_casing" } + type: "item" + }] + x: -2.5d + y: 4.5d + } + { + dependencies: ["035B7DCB8D01EF31"] + id: "22CA4C95F8BFB28F" + tasks: [{ + id: "7A2EAC88656BE1C7" + item: "create:spout" + type: "item" + }] + x: -3.0d + y: 3.5d + } + { + dependencies: ["035B7DCB8D01EF31"] + id: "5B1A7B995C49FBF3" + tasks: [{ + id: "16C5576CC81D2B7C" + item: "create:item_drain" + type: "item" + }] + x: -4.0d + y: 4.5d + } + { + dependencies: [ + "3B4EA575E0A2C805" + "69B79177D36253F0" + ] + description: ["If you haven't been doing botania, well i bet you regret that now. "] + id: "3155C7634B06A597" + tasks: [{ + id: "3485DEC584D3FFC8" + item: "create:brass_ingot" + type: "item" + }] + title: "The hard part" + x: 5.5d + y: 3.5d + } + { + dependencies: ["3155C7634B06A597"] + id: "3815AA640E63010F" + tasks: [{ + count: 2L + id: "6B767ADE49E46D4D" + item: { Count: 2, id: "create:brass_casing" } + type: "item" + }] + x: 7.0d + y: 3.5d + } + { + dependencies: ["3921C65756E729A8"] + id: "46C4B304C7376CC6" + tasks: [{ + id: "35767214401A4325" + item: "create:empty_blaze_burner" + type: "item" + }] + title: "Not cool...." + x: 3.5d + y: 2.0d + } + { + dependencies: ["3B4EA575E0A2C805"] + dependency_requirement: "one_completed" + id: "16408D2B7FF2F173" + tasks: [{ + count: 4L + id: "1052D3E757B0FDBA" + item: { Count: 4, id: "create:rose_quartz" } + type: "item" + }] + x: 6.0d + y: 4.5d + } + { + dependencies: [ + "16408D2B7FF2F173" + "6A77550B73A065F7" + ] + id: "2C8B597BFA424E74" + tasks: [{ + count: 2L + id: "4E5193C7BA963823" + item: { Count: 2, id: "create:polished_rose_quartz" } + type: "item" + }] + x: 5.0d + y: 5.5d + } + { + dependencies: ["16408D2B7FF2F173"] + description: ["Sandpaper can be duplicated for almost nothing with botania."] + id: "6A77550B73A065F7" + tasks: [{ + id: "69B0C928A2BC4A77" + item: { + Count: 1 + id: "create:sand_paper" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 6.5d + y: 5.5d + } + { + dependencies: [ + "2C8B597BFA424E74" + "69B79177D36253F0" + ] + id: "63CA171442F4CFF9" + rewards: [{ + exclude_from_claim_all: true + id: "0503F6C2D94B55F7" + table_id: 6588992146511430366L + type: "random" + }] + tasks: [{ + count: 2L + id: "65A7990C1D1FD5C3" + item: { Count: 2, id: "create:electron_tube" } + type: "item" + }] + x: 5.0d + y: 7.0d + } + { + dependencies: ["3155C7634B06A597"] + id: "64FC6F5E99AA7EC1" + tasks: [{ + id: "75ABDDD2DEAE99EA" + item: "create:brass_sheet" + type: "item" + }] + x: 6.5d + y: 2.5d + } + { + dependencies: ["63CA171442F4CFF9"] + id: "342B4A9B9BBEBDB4" + tasks: [{ + id: "0DB6E59071AA040B" + item: "create:deployer" + type: "item" + }] + title: "Finger? I hardly know her!" + x: 8.0d + y: 7.0d + } + { + dependencies: [ + "3815AA640E63010F" + "63CA171442F4CFF9" + ] + id: "5B388019A5B9408B" + tasks: [{ + count: 3L + id: "5F3D269880C7D307" + item: "create:mechanical_crafter" + type: "item" + }] + x: 8.5d + y: 5.0d + } + { + dependencies: ["5B388019A5B9408B"] + id: "7BEA43EA24F7B29C" + tasks: [{ + count: 2L + id: "1CEA21DA10F3E720" + item: { Count: 2, id: "create:crushing_wheel" } + type: "item" + }] + x: 9.0d + y: 4.0d + } + { + dependencies: ["7BEA43EA24F7B29C"] + id: "4933AA0D92CDD8D5" + tasks: [{ + id: "40A012E9524B1951" + item: "create:wheat_flour" + type: "item" + }] + title: "The yummy part" + x: 9.0d + y: 0.0d + } + { + dependencies: ["4933AA0D92CDD8D5"] + id: "44C8081E57337EB7" + tasks: [{ + id: "1F73D969FD88BE2A" + item: "create:dough" + type: "item" + }] + x: 7.5d + y: -1.0d + } + { + dependencies: ["46C4B304C7376CC6"] + id: "11BB70D2883B568C" + tasks: [{ + id: "16D9D061E968E648" + item: "create:blaze_cake" + type: "item" + }] + title: "Pet food" + x: 4.5d + y: 1.0d + } + { + dependencies: ["44C8081E57337EB7"] + id: "5CDAB7162E7FBEB7" + tasks: [{ + id: "2C38A38C44339C47" + item: "minecraft:bread" + type: "item" + }] + title: "Do it the create way!" + x: 7.5d + y: -2.5d + } + { + dependencies: ["4933AA0D92CDD8D5"] + id: "44408E41DCBAD169" + tasks: [{ + id: "05248D9300D984DA" + item: "create:chocolate_bucket" + type: "item" + }] + x: 9.0d + y: -2.0d + } + { + dependencies: ["44408E41DCBAD169"] + id: "61665FC3823CE265" + tasks: [{ + id: "02B59F79B151A303" + item: "create:bar_of_chocolate" + type: "item" + }] + x: 9.0d + y: -3.5d + } + { + dependencies: ["44408E41DCBAD169"] + id: "34022DD86BB87744" + tasks: [{ + id: "18F3DA297E9E5A98" + item: "create:chocolate_glazed_berries" + type: "item" + }] + x: 10.0d + y: -3.0d + } + { + dependencies: ["5CDAB7162E7FBEB7"] + id: "2ABEBB3F489AA19C" + tasks: [{ + id: "6B403BB416C8C037" + item: "create:sweet_roll" + type: "item" + }] + x: 7.5d + y: -4.0d + } + { + dependencies: ["4933AA0D92CDD8D5"] + id: "386A19C9D3557651" + tasks: [{ + id: "10A3E945E419D81E" + item: "create:honeyed_apple" + type: "item" + }] + x: 10.0d + y: -1.0d + } + { + dependencies: ["4933AA0D92CDD8D5"] + id: "56AA4A70675C00C4" + tasks: [{ + id: "20F2F98A7A70635E" + item: "create:builders_tea" + type: "item" + }] + x: 10.5d + y: 0.0d + } + { + dependencies: ["342B4A9B9BBEBDB4"] + id: "1F540918A76684AE" + tasks: [{ + id: "30F7F45B7DBFC651" + item: "create:precision_mechanism" + type: "item" + }] + x: 10.0d + y: 5.5d + } + { + dependencies: ["1F540918A76684AE"] + id: "33747BDF025E5B4F" + tasks: [{ + id: "15A416C69CC76814" + item: "create:mechanical_arm" + type: "item" + }] + title: "More automation" + x: 11.5d + y: 5.5d + } + { + dependencies: ["419AB81AD04D630F"] + id: "69B79177D36253F0" + tasks: [{ + id: "5E68ED014D220E02" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(botania:terrasteel_ingot)item(botania:elementium_ingot)item(kubejs:token_gaia))" + } + } + title: "Botania Progression" + type: "item" + }] + x: 3.5d + y: 7.0d + } + ] + title: "Create" +} diff --git a/minecraft/config/config/ftbquests/quests/chapters/dark_utilities.snbt b/minecraft/config/config/ftbquests/quests/chapters/dark_utilities.snbt new file mode 100644 index 0000000..a1afd3c --- /dev/null +++ b/minecraft/config/config/ftbquests/quests/chapters/dark_utilities.snbt @@ -0,0 +1,11 @@ +{ + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "dark_utilities" + group: "016A435AEE65B455" + id: "2FCC4D31398ADDB5" + order_index: 3 + quest_links: [ ] + quests: [ ] + title: "Dark Utilities" +} diff --git a/minecraft/config/config/ftbquests/quests/chapters/endgame.snbt b/minecraft/config/config/ftbquests/quests/chapters/endgame.snbt new file mode 100644 index 0000000..e7f4eb5 --- /dev/null +++ b/minecraft/config/config/ftbquests/quests/chapters/endgame.snbt @@ -0,0 +1,114 @@ +{ + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "endgame" + group: "" + id: "155E0954AA8504AE" + order_index: 1 + quest_links: [ ] + quests: [ + { + description: ["type: \"seeditem\" (without the quotes) into the EMI search bar. You will need to automate every single one of these. You can acquire them my crafting gardens, which can then be bonemealed."] + id: "28273BAFA4C5C686" + tasks: [{ + id: "0BB1C9EFCD3E54B3" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(mod(pamhc2crops)mod(pamhc2foodcore)mod(pamhc2foodextended)mod(pamhc2trees))item_tag(forge:seeds)" + } + } + title: "All of the Seeds" + type: "item" + }] + title: "All of the seeds" + x: -0.5d + y: 0.0d + } + { + description: ["Get all of the fruit tree saplings, fruits can be cut off and replanted in a more convenient location with shears."] + id: "4BE86CC9BE349547" + tasks: [{ + id: "76AFE0AEDC932042" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + display: { + Name: "{\"text\":\"dumb filter\"}" + } + "ftbfiltersystem:filter": "mod(pamhc2trees)item_tag(forge:crops)" + } + } + title: "Pam's Saplings" + type: "item" + }] + x: 1.5d + y: 0.0d + } + { + can_repeat: true + dependencies: ["30151BB6311B1E9E"] + description: ["The final item"] + id: "64B0D91D1BC5E1C9" + rewards: [{ + command: "/kill @a" + elevate_perms: true + id: "1FE98BF1DA1CEE40" + silent: true + type: "command" + }] + tasks: [{ + consume_items: true + id: "35491E06A526BCDF" + item: "kubejs:hothotgrapincoo" + type: "item" + }] + x: 0.5d + y: -3.0d + } + { + dependencies: [ + "4BE86CC9BE349547" + "28273BAFA4C5C686" + ] + description: ["Even if you get all of the base resources for this craft, you have to somehow turn those into the final item."] + id: "30151BB6311B1E9E" + tasks: [{ + id: "6AD6CC3A5EC2CFBA" + title: "Some sort of crafting system" + type: "checkmark" + }] + x: 0.5d + y: -1.5d + } + { + dependencies: ["30151BB6311B1E9E"] + description: ["This is definitely possible with computer craft, more information coming soon..."] + hide_until_deps_complete: true + id: "18F2702656AA98D4" + tasks: [{ + id: "428F9DC1B4BC56A9" + title: "COMPUTERCRAFT" + type: "checkmark" + }] + x: 2.0d + y: -2.0d + } + { + dependencies: ["30151BB6311B1E9E"] + description: ["If you actually manage to complete this pack, feel free to shoot me an email or something and i can add your strategy here. email is: houngry@apexfight.net."] + hide_until_deps_complete: true + id: "50FBF9FFB7A4352E" + tasks: [{ + id: "6EBFDD5C0C5F139C" + title: "SOME OTHER WAY??" + type: "checkmark" + }] + x: -1.0d + y: -2.0d + } + ] + title: "Endgame" +} diff --git a/minecraft/config/config/ftbquests/quests/chapters/forestry.snbt b/minecraft/config/config/ftbquests/quests/chapters/forestry.snbt new file mode 100644 index 0000000..9c35fb3 --- /dev/null +++ b/minecraft/config/config/ftbquests/quests/chapters/forestry.snbt @@ -0,0 +1,11 @@ +{ + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "forestry" + group: "5DCD24AB1FDDFB39" + id: "75453F4AC51A5477" + order_index: 4 + quest_links: [ ] + quests: [ ] + title: "Forestry" +} diff --git a/minecraft/config/config/ftbquests/quests/chapters/miscellaneous.snbt b/minecraft/config/config/ftbquests/quests/chapters/miscellaneous.snbt new file mode 100644 index 0000000..36d7c73 --- /dev/null +++ b/minecraft/config/config/ftbquests/quests/chapters/miscellaneous.snbt @@ -0,0 +1,153 @@ +{ + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "miscellaneous" + group: "016A435AEE65B455" + id: "138B2180E1228677" + order_index: 5 + quest_links: [ ] + quests: [ + { + id: "2074410003107DB9" + tasks: [{ + id: "641D437C88A6B2E6" + title: "Misc" + type: "checkmark" + }] + x: -2.0d + y: -2.0d + } + { + dependencies: ["2074410003107DB9"] + id: "0CDA298BF179E48B" + tasks: [{ + id: "0EF5B74A9AB4DAC2" + item: "chancecubes:chance_cube" + type: "item" + }] + x: -2.0d + y: -7.5d + } + { + dependencies: ["0CDA298BF179E48B"] + description: ["Make one of these with a 3x3x3 build of chance cubes. DO NOT DO NOT DO NOT OPEN THESE ANYWHERE NEAR YOUR BASE, BE AT LEAST 10 CHUNKS AWAY, THIS BLOCK IS DESTRUCTIVE. "] + id: "6C561294B97C0BF7" + tasks: [{ + id: "05679571BCBBEE35" + item: "chancecubes:compact_giant_chance_cube" + type: "item" + }] + x: 0.0d + y: -7.5d + } + { + dependencies: ["0CDA298BF179E48B"] + description: ["rig the game in your favor."] + id: "3EB8B673C4133397" + tasks: [{ + id: "2790B427FF04B252" + item: { + Count: 1 + id: "chancecubes:chance_pendant_tier1" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -4.0d + y: -7.5d + } + { + dependencies: ["2074410003107DB9"] + description: ["There's vein miner in this pack."] + icon: { + Count: 1 + id: "minecraft:diamond_pickaxe" + tag: { + Damage: 0 + } + } + id: "5604F556898C3252" + tasks: [{ + id: "6B3FD8DEB94EB064" + title: "Vein Miner" + type: "checkmark" + }] + x: -2.0d + y: -0.5d + } + { + dependencies: ["2074410003107DB9"] + description: ["Easy way to automatically farm crops, without as many external systems. (if you plant this flower one block below your crops, it has increased range by one for some reason)"] + id: "72B048D11C21DA1E" + rewards: [{ + exclude_from_claim_all: true + id: "1CE655ECC3B3DF18" + table_id: 6588992146511430366L + type: "random" + }] + tasks: [{ + id: "3FEC83E20E76DAC9" + item: "botania:rannuncarpus" + type: "item" + }] + x: -0.5d + y: -3.5d + } + { + dependencies: ["72B048D11C21DA1E"] + description: ["Alongside the rannuncarpus, and some water, this flower could be used to make an extremely low profile farm, and send the drops anywhere, some sparks and mana pools (and a steady mana supply) could easily make a very nice automatic crop farm that could be sped up with an agricarnation."] + id: "65E81E823C245FCF" + rewards: [{ + exclude_from_claim_all: true + id: "1F04F4905A2F5652" + table_id: 6128321348330080280L + type: "random" + }] + tasks: [{ + id: "0795832C1FEB7F49" + item: "botania:spectranthemum" + type: "item" + }] + x: 1.0d + y: -3.5d + } + { + dependencies: ["2074410003107DB9"] + description: ["Flesh can be used as a meat replacement by centrifuging it, making it a nice low lag way to farm meat. additionally, when blood (found in the nether) interacts with most liquids it will make flesh. porous flesh is made when blood overtakes a non source block of liquid, flesh blocks are made when blood flows into a source block of liquid."] + id: "02ACE11D393A9E92" + rewards: [{ + exclude_from_claim_all: true + id: "21534E113F51591C" + table_id: 6588992146511430366L + type: "loot" + }] + tasks: [ + { + id: "5450F919B2B49D28" + item: "biomesoplenty:flesh" + type: "item" + } + { + id: "44071E65C89E09A3" + item: "biomesoplenty:porous_flesh" + type: "item" + } + { + id: "74F14107C745E1AB" + item: "biomesoplenty:blood_bucket" + type: "item" + } + { + id: "3F255452BE4F37C0" + item: "minecraft:water_bucket" + type: "item" + } + ] + x: -3.5d + y: -3.5d + } + ] + title: "Miscellaneous" +} diff --git a/minecraft/config/config/ftbquests/quests/chapters/rftools.snbt b/minecraft/config/config/ftbquests/quests/chapters/rftools.snbt new file mode 100644 index 0000000..efdc49e --- /dev/null +++ b/minecraft/config/config/ftbquests/quests/chapters/rftools.snbt @@ -0,0 +1,45 @@ +{ + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "rftools" + group: "5DCD24AB1FDDFB39" + id: "5E1117E94D05AD70" + order_index: 5 + quest_links: [ ] + quests: [ + { + id: "623E604110718D00" + tasks: [{ + id: "741640D88F2B1F9B" + title: "RFtools" + type: "checkmark" + }] + x: 6.5d + y: 2.5d + } + { + dependencies: ["623E604110718D00"] + id: "2B81895DE8B5C6CE" + tasks: [{ + id: "0F4B09D248372138" + item: "rftoolsutility:spawner" + type: "item" + }] + x: 13.0d + y: 2.5d + } + { + dependencies: ["2B81895DE8B5C6CE"] + description: ["you can look up usable items in the spawner with #rftoolsutility:living/highyield"] + id: "156D41C13C83405A" + tasks: [{ + id: "1A85874E71CB22A4" + title: "Yields" + type: "checkmark" + }] + x: 14.5d + y: 1.0d + } + ] + title: "RFTools" +} diff --git a/minecraft/config/config/ftbquests/quests/chapters/tokens.snbt b/minecraft/config/config/ftbquests/quests/chapters/tokens.snbt new file mode 100644 index 0000000..eec9f3b --- /dev/null +++ b/minecraft/config/config/ftbquests/quests/chapters/tokens.snbt @@ -0,0 +1,20 @@ +{ + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "tokens" + group: "016A435AEE65B455" + id: "641EF6E0F3827E3A" + order_index: 6 + quest_links: [ ] + quests: [{ + id: "40C0BCDF878D7211" + tasks: [{ + id: "3440702527B0A9B9" + item: "kubejs:token_gaia" + type: "item" + }] + x: -3.0d + y: -2.5d + }] + title: "Tokens" +} diff --git a/minecraft/config/config/ftbquests/quests/chapters/toms_storage.snbt b/minecraft/config/config/ftbquests/quests/chapters/toms_storage.snbt new file mode 100644 index 0000000..c29c153 --- /dev/null +++ b/minecraft/config/config/ftbquests/quests/chapters/toms_storage.snbt @@ -0,0 +1,11 @@ +{ + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "toms_storage" + group: "016A435AEE65B455" + id: "1D0FA9EDA643B833" + order_index: 2 + quest_links: [ ] + quests: [ ] + title: "Tom's Storage" +} diff --git a/minecraft/config/config/ftbquests/quests/chapters/wher_power.snbt b/minecraft/config/config/ftbquests/quests/chapters/wher_power.snbt new file mode 100644 index 0000000..6918af6 --- /dev/null +++ b/minecraft/config/config/ftbquests/quests/chapters/wher_power.snbt @@ -0,0 +1,115 @@ +{ + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "wher_power" + group: "016A435AEE65B455" + id: "6DE465690DC9D943" + order_index: 0 + quest_links: [ ] + quests: [ + { + dependencies: ["6EE8D7BCC35B867B"] + description: ["All power generators are gated behind \"Gaia Tokens\"."] + id: "3BAE0C733000583D" + rewards: [{ + exclude_from_claim_all: true + id: "3E6F887E2A48A360" + table_id: 6597032566933791570L + type: "random" + }] + tasks: [{ + id: "3B4DCB01244FE793" + title: "Where Power?!?!?!?" + type: "checkmark" + }] + x: 1.5d + y: -0.5d + } + { + dependencies: ["3BAE0C733000583D"] + id: "2BA39B6BF6609598" + tasks: [{ + id: "7977B6D99CCBB6CE" + item: "forestry:engine_peat" + type: "item" + }] + x: 1.5d + y: -6.0d + } + { + dependencies: ["3BAE0C733000583D"] + id: "3FAF34C61F002CE9" + tasks: [{ + id: "2432A26793945745" + item: "forestry:engine_clockwork" + type: "item" + }] + x: 1.0d + y: -5.0d + } + { + dependencies: ["3BAE0C733000583D"] + id: "1FD676C2DCF57675" + tasks: [{ + id: "31E6E1AE6B5576E8" + item: "forestry:engine_biogas" + type: "item" + }] + x: 2.0d + y: -4.5d + } + { + dependencies: ["3BAE0C733000583D"] + id: "3A3A2BFDDDBEA5AD" + tasks: [{ + id: "674D8EF029359232" + item: "rftoolspower:coalgenerator" + type: "item" + }] + x: 0.0d + y: -3.0d + } + { + dependencies: ["3BAE0C733000583D"] + id: "53146C0549106F48" + tasks: [{ + id: "750F22EBF3BD12EA" + item: "rftoolspower:blazing_generator" + type: "item" + }] + x: -0.5d + y: -1.5d + } + { + dependencies: ["3BAE0C733000583D"] + id: "37128D380927EE7D" + tasks: [ + { + id: "55210BF28D760128" + item: "rftoolspower:endergenic" + type: "item" + } + { + id: "77902CCF3E7E518F" + item: "rftoolspower:pearl_injector" + type: "item" + } + ] + title: "Endergenic Generator" + x: -1.5d + y: 0.5d + } + { + dependencies: ["3BAE0C733000583D"] + id: "68739A27BDA54D76" + tasks: [{ + id: "6E2E6537CBB85930" + item: "tfmg:generator" + type: "item" + }] + x: -2.0d + y: 2.0d + } + ] + title: "wher power???" +} diff --git a/minecraft/config/config/ftbquests/quests/data.snbt b/minecraft/config/config/ftbquests/quests/data.snbt new file mode 100644 index 0000000..2187a22 --- /dev/null +++ b/minecraft/config/config/ftbquests/quests/data.snbt @@ -0,0 +1,27 @@ +{ + default_autoclaim_rewards: "disabled" + default_consume_items: false + default_quest_disable_jei: false + default_quest_shape: "circle" + default_reward_team: false + detection_delay: 20 + disable_gui: false + drop_book_on_death: false + drop_loot_crates: false + emergency_items: [{ Count: 1, id: "minecraft:book" }] + emergency_items_cooldown: 300 + grid_scale: 0.5d + hide_excluded_quests: false + icon: "pamhc2foodextended:delightedmealitem" + lock_message: "" + loot_crate_no_drop: { + boss: 0 + monster: 600 + passive: 4000 + } + pause_game: false + progression_mode: "linear" + show_lock_icons: false + title: "Houngry I" + version: 13 +} diff --git a/minecraft/config/config/ftbquests/quests/reward_tables/boss_boxes.snbt b/minecraft/config/config/ftbquests/quests/reward_tables/boss_boxes.snbt new file mode 100644 index 0000000..f5e7584 --- /dev/null +++ b/minecraft/config/config/ftbquests/quests/reward_tables/boss_boxes.snbt @@ -0,0 +1,7 @@ +{ + id: "076BC75A3790B585" + loot_size: 1 + order_index: 1 + rewards: [ ] + title: "Boss Boxes" +} diff --git a/minecraft/config/config/ftbquests/quests/reward_tables/food_rewards.snbt b/minecraft/config/config/ftbquests/quests/reward_tables/food_rewards.snbt new file mode 100644 index 0000000..b527ade --- /dev/null +++ b/minecraft/config/config/ftbquests/quests/reward_tables/food_rewards.snbt @@ -0,0 +1,27 @@ +{ + id: "5B8D5E2AC3C5A352" + loot_size: 1 + order_index: 4 + rewards: [ + { count: 4, item: "pamhc2foodextended:delightedmealitem" } + { count: 8, item: "pamhc2foodextended:hamandcheesesandwichitem" } + { count: 8, item: "pamhc2foodextended:durianjellysandwichitem" } + { count: 8, item: "minecraft:bread" } + { count: 2, item: "pamhc2foodextended:gourmetporkburgeritem" } + { item: "pamhc2foodextended:gourmetbeefburgeritem" } + { count: 4, item: "pamhc2foodextended:jalapenoburgeritem" } + { count: 3, item: "pamhc2foodextended:loxbagelsandwichitem" } + { count: 3, item: "pamhc2foodextended:shepardspieitem" } + { count: 3, item: "pamhc2foodextended:plumpieitem" } + { count: 6, item: "pamhc2foodextended:hushpuppiesitem" } + { count: 3, item: "pamhc2foodextended:garlicchickenitem" } + { count: 32, item: "pamhc2foodextended:firmtofuitem" } + { count: 32, item: "pamhc2foodextended:silkentofuitem" } + { count: 4, item: "pamhc2crops:soybeanseeditem" } + { count: 2, item: "pamhc2foodextended:jackfruitpieitem" } + { count: 8, item: "pamhc2foodextended:gooseberrysmoothieitem" } + { count: 3, item: "pamhc2foodcore:chocolatecakeitem" } + { count: 6, item: "pamhc2foodcore:chocolatedonutitem" } + ] + title: "Food Rewards" +} diff --git a/minecraft/config/config/ftbquests/quests/reward_tables/good_quest_rewards.snbt b/minecraft/config/config/ftbquests/quests/reward_tables/good_quest_rewards.snbt new file mode 100644 index 0000000..23fd06e --- /dev/null +++ b/minecraft/config/config/ftbquests/quests/reward_tables/good_quest_rewards.snbt @@ -0,0 +1,13 @@ +{ + id: "550C2BCC0CA84818" + loot_size: 1 + order_index: 3 + rewards: [ + { count: 6, item: "kubejs:token_gaia" } + { count: 2, item: "botania:life_essence" } + { count: 2, item: "botania:terrasteel_ingot" } + { count: 32, item: "botania:manasteel_ingot" } + { count: 48, item: "botania:blacker_lotus" } + ] + title: "Good Quest Rewards" +} diff --git a/minecraft/config/config/ftbquests/quests/reward_tables/mob_boxes.snbt b/minecraft/config/config/ftbquests/quests/reward_tables/mob_boxes.snbt new file mode 100644 index 0000000..e519ea4 --- /dev/null +++ b/minecraft/config/config/ftbquests/quests/reward_tables/mob_boxes.snbt @@ -0,0 +1,7 @@ +{ + id: "5861C4E307F06227" + loot_size: 1 + order_index: 0 + rewards: [ ] + title: "Mob Boxes" +} diff --git a/minecraft/config/config/ftbquests/quests/reward_tables/quest_rewards.snbt b/minecraft/config/config/ftbquests/quests/reward_tables/quest_rewards.snbt new file mode 100644 index 0000000..8a4407c --- /dev/null +++ b/minecraft/config/config/ftbquests/quests/reward_tables/quest_rewards.snbt @@ -0,0 +1,36 @@ +{ + id: "5B70CD7280A702DE" + loot_size: 1 + order_index: 2 + rewards: [ + { count: 3, item: "kubejs:token_gaia", weight: 0.05f } + { + type: "xp_levels" + xp_levels: 10 + } + { count: 12, item: "botania:manasteel_ingot" } + { count: 4, item: "botania:black_lotus" } + { + type: "xp_levels" + xp_levels: 5 + } + { count: 4, item: "minecraft:diamond" } + { item: "minecraft:emerald_block" } + { item: "minecraft:iron_block" } + { count: 3, item: "minecraft:copper_block" } + { count: 4, item: "minecraft:lapis_block" } + { count: 4, item: "minecraft:redstone_block" } + { item: "computercraft:pocket_computer_normal" } + { count: 7, item: "minecraft:ender_pearl" } + { item: "minecraft:ender_chest" } + { count: 16, item: "minecraft:chest" } + { count: 64, item: "minecraft:bricks" } + { count: 64, item: "minecraft:stone" } + { item: "minecraft:coal_block" } + { item: "create:belt_connector" } + { item: "botania:magnet_ring", weight: 0.2f } + { count: 16, item: "minecraft:oak_log" } + { count: 32, item: "forestry:crated_dirt" } + ] + title: "Quest Rewards" +} diff --git a/minecraft/config/config/ftbxmodcompat.snbt b/minecraft/config/config/ftbxmodcompat.snbt new file mode 100644 index 0000000..89bc0f3 --- /dev/null +++ b/minecraft/config/config/ftbxmodcompat.snbt @@ -0,0 +1,13 @@ +{ + # Select the permissions implementation to use + # DEFAULT: use FTB Ranks then Luckperms in preference order, depending on mod availability + # Default: "default" + # Valid values: "default", "ftb_ranks", "luckperms" + permission_selector: "default" + + # Select the game stages implementation to use + # DEFAULT: use KubeJS, Game Stages, vanilla in preference order, depending on mod availability + # Default: "default" + # Valid values: "default", "vanilla", "kubejs", "gamestages" + stage_selector: "default" +} diff --git a/minecraft/config/config/inventoryprofilesnext/New World/prev-villager-trading-config.json b/minecraft/config/config/inventoryprofilesnext/New World/prev-villager-trading-config.json new file mode 100644 index 0000000..367edf4 --- /dev/null +++ b/minecraft/config/config/inventoryprofilesnext/New World/prev-villager-trading-config.json @@ -0,0 +1,56 @@ +{ + "globalBookmarks": { + "armorer": [], + "butcher": [], + "cartographer": [], + "cleric": [], + "farmer": [], + "fisherman": [], + "fletcher": [], + "leatherworker": [], + "librarian": [], + "mason": [], + "shepherd": [], + "toolsmith": [], + "weaponsmith": [], + "nitwit": [], + "none": [], + "___+++___ wandering ___+++___": [] + }, + "globalBookmarks1": { + "armorer": [], + "butcher": [], + "cartographer": [], + "cleric": [], + "farmer": [], + "fisherman": [], + "fletcher": [], + "leatherworker": [], + "librarian": [], + "mason": [], + "shepherd": [], + "toolsmith": [], + "weaponsmith": [], + "nitwit": [], + "none": [], + "___+++___ wandering ___+++___": [] + }, + "globalBookmarks2": { + "armorer": [], + "butcher": [], + "cartographer": [], + "cleric": [], + "farmer": [], + "fisherman": [], + "fletcher": [], + "leatherworker": [], + "librarian": [], + "mason": [], + "shepherd": [], + "toolsmith": [], + "weaponsmith": [], + "nitwit": [], + "none": [], + "___+++___ wandering ___+++___": [] + } +} \ No newline at end of file diff --git a/minecraft/config/config/inventoryprofilesnext/New World/villager-trading-config.json b/minecraft/config/config/inventoryprofilesnext/New World/villager-trading-config.json new file mode 100644 index 0000000..367edf4 --- /dev/null +++ b/minecraft/config/config/inventoryprofilesnext/New World/villager-trading-config.json @@ -0,0 +1,56 @@ +{ + "globalBookmarks": { + "armorer": [], + "butcher": [], + "cartographer": [], + "cleric": [], + "farmer": [], + "fisherman": [], + "fletcher": [], + "leatherworker": [], + "librarian": [], + "mason": [], + "shepherd": [], + "toolsmith": [], + "weaponsmith": [], + "nitwit": [], + "none": [], + "___+++___ wandering ___+++___": [] + }, + "globalBookmarks1": { + "armorer": [], + "butcher": [], + "cartographer": [], + "cleric": [], + "farmer": [], + "fisherman": [], + "fletcher": [], + "leatherworker": [], + "librarian": [], + "mason": [], + "shepherd": [], + "toolsmith": [], + "weaponsmith": [], + "nitwit": [], + "none": [], + "___+++___ wandering ___+++___": [] + }, + "globalBookmarks2": { + "armorer": [], + "butcher": [], + "cartographer": [], + "cleric": [], + "farmer": [], + "fisherman": [], + "fletcher": [], + "leatherworker": [], + "librarian": [], + "mason": [], + "shepherd": [], + "toolsmith": [], + "weaponsmith": [], + "nitwit": [], + "none": [], + "___+++___ wandering ___+++___": [] + } +} \ No newline at end of file diff --git a/minecraft/config/config/inventoryprofilesnext/integrationHints/exampleIntegrationHints.json b/minecraft/config/config/inventoryprofilesnext/integrationHints/exampleIntegrationHints.json new file mode 100644 index 0000000..0f246d5 --- /dev/null +++ b/minecraft/config/config/inventoryprofilesnext/integrationHints/exampleIntegrationHints.json @@ -0,0 +1,47 @@ +{ + "package.name.className": { + "ignore": false, + "playerSideOnly": false, + "force": false, + "buttonHints": { + "SORT": { + "horizontalOffset": 0, + "top": 0, + "bottom": 0 + }, + "SORT_COLUMNS": { + "horizontalOffset": 0, + "top": 0, + "bottom": 0 + }, + "SORT_ROWS": { + "horizontalOffset": 0, + "top": 0, + "bottom": 0 + }, + "MOVE_TO_CONTAINER": { + "horizontalOffset": 0, + "top": 0, + "bottom": 0 + }, + "MOVE_TO_PLAYER": { + "horizontalOffset": 0, + "top": 0, + "bottom": 0 + }, + "CONTINUOUS_CRAFTING": { + "horizontalOffset": 0, + "top": 0, + "bottom": 0 + }, + "PROFILE_SELECTOR": { + "horizontalOffset": 0, + "top": 0, + "bottom": 0, + "hide": true + } + } + }, + "another.package.name.className": { + } +} \ No newline at end of file diff --git a/minecraft/config/config/inventoryprofilesnext/integrationHints/player-defined.json b/minecraft/config/config/inventoryprofilesnext/integrationHints/player-defined.json new file mode 100644 index 0000000..ff34619 --- /dev/null +++ b/minecraft/config/config/inventoryprofilesnext/integrationHints/player-defined.json @@ -0,0 +1,37 @@ +{ + "net.minecraft.client.gui.screens.inventory.InventoryScreen": { + "buttonHints": { + "MOVE_TO_CONTAINER": { + "horizontalOffset": 164, + "bottom": -43 + }, + "SORT": { + "horizontalOffset": 140, + "bottom": 2 + }, + "SORT_COLUMNS": { + "horizontalOffset": 152, + "bottom": -9 + }, + "SORT_ROWS": { + "horizontalOffset": 164, + "bottom": -20 + }, + "CONTINUOUS_CRAFTING": { + "horizontalOffset": -5, + "bottom": 13 + }, + "PROFILE_SELECTOR": { + "bottom": 20 + }, + "SHOW_EDITOR": { + "horizontalOffset": 199, + "top": 66 + }, + "SETTINGS": { + "horizontalOffset": 190, + "top": 51 + } + } + } +} \ No newline at end of file diff --git a/minecraft/config/config/inventoryprofilesnext/inventoryprofiles.json b/minecraft/config/config/inventoryprofilesnext/inventoryprofiles.json new file mode 100644 index 0000000..a2cff41 --- /dev/null +++ b/minecraft/config/config/inventoryprofilesnext/inventoryprofiles.json @@ -0,0 +1,36 @@ +{ + "ModSettings": { + "villager_trading_group_1": { + "value": true + }, + "villager_trading_group_2": { + "value": true + }, + "enable_updates_check": false, + "for_modpack_devs": true, + "first_run": false + }, + "GuiSettings": { + "continuous_crafting_saved_value": false + }, + "AutoRefillSettings": { + "visual_durability_notification": { + "value": false + }, + "audio_durability_notification": { + "value": false + }, + "visual_replace_success_notification": { + "value": false + }, + "audio_replace_success_notification": { + "value": false + }, + "visual_replace_failed_notification": { + "value": false + }, + "audio_replace_failed_notification": { + "value": false + } + } +} \ No newline at end of file diff --git a/minecraft/config/config/inventoryprofilesnext/mc.apexfight.net&33642/prev-villager-trading-config.json b/minecraft/config/config/inventoryprofilesnext/mc.apexfight.net&33642/prev-villager-trading-config.json new file mode 100644 index 0000000..367edf4 --- /dev/null +++ b/minecraft/config/config/inventoryprofilesnext/mc.apexfight.net&33642/prev-villager-trading-config.json @@ -0,0 +1,56 @@ +{ + "globalBookmarks": { + "armorer": [], + "butcher": [], + "cartographer": [], + "cleric": [], + "farmer": [], + "fisherman": [], + "fletcher": [], + "leatherworker": [], + "librarian": [], + "mason": [], + "shepherd": [], + "toolsmith": [], + "weaponsmith": [], + "nitwit": [], + "none": [], + "___+++___ wandering ___+++___": [] + }, + "globalBookmarks1": { + "armorer": [], + "butcher": [], + "cartographer": [], + "cleric": [], + "farmer": [], + "fisherman": [], + "fletcher": [], + "leatherworker": [], + "librarian": [], + "mason": [], + "shepherd": [], + "toolsmith": [], + "weaponsmith": [], + "nitwit": [], + "none": [], + "___+++___ wandering ___+++___": [] + }, + "globalBookmarks2": { + "armorer": [], + "butcher": [], + "cartographer": [], + "cleric": [], + "farmer": [], + "fisherman": [], + "fletcher": [], + "leatherworker": [], + "librarian": [], + "mason": [], + "shepherd": [], + "toolsmith": [], + "weaponsmith": [], + "nitwit": [], + "none": [], + "___+++___ wandering ___+++___": [] + } +} \ No newline at end of file diff --git a/minecraft/config/config/inventoryprofilesnext/mc.apexfight.net&33642/villager-trading-config.json b/minecraft/config/config/inventoryprofilesnext/mc.apexfight.net&33642/villager-trading-config.json new file mode 100644 index 0000000..9710ab3 --- /dev/null +++ b/minecraft/config/config/inventoryprofilesnext/mc.apexfight.net&33642/villager-trading-config.json @@ -0,0 +1,59 @@ +{ + "globalBookmarks": { + "armorer": [], + "butcher": [], + "cartographer": [], + "cleric": [], + "farmer": [], + "fisherman": [], + "fletcher": [], + "leatherworker": [], + "librarian": [], + "mason": [], + "shepherd": [], + "toolsmith": [], + "weaponsmith": [], + "nitwit": [], + "none": [], + "___+++___ wandering ___+++___": [], + "advancedperipherals:computer_scientist": [] + }, + "globalBookmarks1": { + "armorer": [], + "butcher": [], + "cartographer": [], + "cleric": [], + "farmer": [], + "fisherman": [], + "fletcher": [], + "leatherworker": [], + "librarian": [], + "mason": [], + "shepherd": [], + "toolsmith": [], + "weaponsmith": [], + "nitwit": [], + "none": [], + "___+++___ wandering ___+++___": [], + "advancedperipherals:computer_scientist": [] + }, + "globalBookmarks2": { + "armorer": [], + "butcher": [], + "cartographer": [], + "cleric": [], + "farmer": [], + "fisherman": [], + "fletcher": [], + "leatherworker": [], + "librarian": [], + "mason": [], + "shepherd": [], + "toolsmith": [], + "weaponsmith": [], + "nitwit": [], + "none": [], + "___+++___ wandering ___+++___": [], + "advancedperipherals:computer_scientist": [] + } +} \ No newline at end of file diff --git a/minecraft/config/config/inventoryprofilesnext/villager-trading-config.json b/minecraft/config/config/inventoryprofilesnext/villager-trading-config.json new file mode 100644 index 0000000..c1d9ce9 --- /dev/null +++ b/minecraft/config/config/inventoryprofilesnext/villager-trading-config.json @@ -0,0 +1,53 @@ +{ + "globalBookmarks": { + "armorer": [], + "butcher": [], + "cartographer": [], + "cleric": [], + "farmer": [], + "fisherman": [], + "fletcher": [], + "leatherworker": [], + "librarian": [], + "mason": [], + "shepherd": [], + "toolsmith": [], + "weaponsmith": [], + "nitwit": [], + "none": [] + }, + "globalBookmarks1": { + "armorer": [], + "butcher": [], + "cartographer": [], + "cleric": [], + "farmer": [], + "fisherman": [], + "fletcher": [], + "leatherworker": [], + "librarian": [], + "mason": [], + "shepherd": [], + "toolsmith": [], + "weaponsmith": [], + "nitwit": [], + "none": [] + }, + "globalBookmarks2": { + "armorer": [], + "butcher": [], + "cartographer": [], + "cleric": [], + "farmer": [], + "fisherman": [], + "fletcher": [], + "leatherworker": [], + "librarian": [], + "mason": [], + "shepherd": [], + "toolsmith": [], + "weaponsmith": [], + "nitwit": [], + "none": [] + } +} \ No newline at end of file diff --git a/minecraft/config/config/jade/hide-blocks.json b/minecraft/config/config/jade/hide-blocks.json new file mode 100644 index 0000000..234be58 --- /dev/null +++ b/minecraft/config/config/jade/hide-blocks.json @@ -0,0 +1,6 @@ +{ + "__comment": "This is a blocklist for the target of Jade. You can add registry ids to the \"values\" list. Restart the game to apply changes.", + "values": [ + "minecraft:barrier" + ] +} \ No newline at end of file diff --git a/minecraft/config/config/jade/hide-entities.json b/minecraft/config/config/jade/hide-entities.json new file mode 100644 index 0000000..42747f4 --- /dev/null +++ b/minecraft/config/config/jade/hide-entities.json @@ -0,0 +1,10 @@ +{ + "__comment": "This is a blocklist for the target of Jade. You can add registry ids to the \"values\" list. Restart the game to apply changes.", + "values": [ + "minecraft:area_effect_cloud", + "minecraft:firework_rocket", + "minecraft:interaction", + "minecraft:text_display", + "minecraft:lightning_bolt" + ] +} \ No newline at end of file diff --git a/minecraft/config/config/jade/jade.json b/minecraft/config/config/jade/jade.json new file mode 100644 index 0000000..68e62c7 --- /dev/null +++ b/minecraft/config/config/jade/jade.json @@ -0,0 +1,41 @@ +{ + "general": { + "debug": false, + "itemModNameTooltip": false, + "bossBarOverlapMode": "PUSH_DOWN", + "builtinCamouflage": true, + "ttsMode": "PRESS", + "fluidMode": "ANY", + "reachDistance": 0.0, + "displayEntities": true, + "displayBosses": true, + "displayMode": "TOGGLE", + "displayTooltip": true, + "displayBlocks": true, + "hideFromDebug": true, + "hideFromTabList": true, + "enableTextToSpeech": false, + "hintOverlayToggle": true, + "hintNarratorToggle": true, + "previewOverlay": true + }, + "overlay": { + "alpha": 0.7, + "iconMode": "TOP", + "animation": true, + "disappearingDelay": 0.0, + "overlaySquare": false, + "flipMainHand": false, + "autoScaleThreshold": 0.4, + "overlayPosY": 1.0, + "overlayScale": 1.0, + "overlayAnchorX": 0.5, + "overlayAnchorY": 0.0, + "activeTheme": "jade:dark", + "themesHash": -328442023, + "overlayPosX": 0.5 + }, + "formatting": { + "modName": "§9§o%s" + } +} \ No newline at end of file diff --git a/minecraft/config/config/jade/plugins.json b/minecraft/config/config/jade/plugins.json new file mode 100644 index 0000000..eaca334 --- /dev/null +++ b/minecraft/config/config/jade/plugins.json @@ -0,0 +1,77 @@ +{ + "minecraft": { + "item_storage.show_name_amount": 5, + "furnace": true, + "harvest_tool.show_unbreakable": false, + "animal_owner": true, + "harvest_tool.effective_tool": true, + "item_storage.normal_amount": 9, + "item_storage": true, + "harvest_tool": true, + "armor_stand": true, + "fluid_storage.detailed": false, + "energy_storage": true, + "entity_armor.max_for_render": 40, + "breaking_progress": true, + "tnt_stability": true, + "item_storage.items_per_line": 9, + "item_frame": true, + "crop_progress": true, + "command_block": true, + "mob_growth": true, + "waxed": true, + "harvest_tool.new_line": false, + "entity_health.max_for_render": 40, + "entity_health.show_fractions": false, + "mob_spawner": true, + "redstone": true, + "fluid_storage": true, + "chicken_egg": true, + "jukebox": true, + "brewing_stand": true, + "energy_storage.detailed": false, + "note_block": true, + "beehive": true, + "item_storage.detailed_amount": 54, + "player_head": true, + "block_states": false, + "lectern": true, + "entity_armor": true, + "harvest_tool.creative": false, + "horse_stats": true, + "item_tooltip": true, + "entity_health": true, + "enchantment_power": true, + "zombie_villager": true, + "villager_profession": true, + "mob_breeding": true, + "entity_health.icons_per_line": 10, + "total_enchantment_power": true, + "potion_effects": true, + "painting": true, + "chiseled_bookshelf": true + }, + "ars_nouveau": { + "mob_jar": true + }, + "tombstone": { + "decorative_graves": true, + "player_graves": true + }, + "supplementaries": { + "hat_stand": true + }, + "jade": { + "coordinates.rel": false, + "distance": false, + "block_face": false, + "coordinates": false, + "registry_name": "OFF", + "mod_name": true + }, + "apotheosis": { + "adventure": true, + "ench": true, + "spawner": true + } +} \ No newline at end of file diff --git a/minecraft/config/config/jade/sort-order.json b/minecraft/config/config/jade/sort-order.json new file mode 100644 index 0000000..412584c --- /dev/null +++ b/minecraft/config/config/jade/sort-order.json @@ -0,0 +1,57 @@ +{ + "apotheosis:adventure": null, + "apotheosis:ench": null, + "apotheosis:spawner": null, + "ars_nouveau:mob_jar": null, + "jade:block_face": null, + "jade:distance": null, + "jade:mod_name": null, + "jade:object_name": null, + "jade:registry_name": null, + "minecraft:animal_owner": null, + "minecraft:armor_stand": null, + "minecraft:beehive": null, + "minecraft:block_display": null, + "minecraft:block_states": null, + "minecraft:brewing_stand": null, + "minecraft:campfire": null, + "minecraft:chicken_egg": null, + "minecraft:chiseled_bookshelf": null, + "minecraft:command_block": null, + "minecraft:crop_progress": null, + "minecraft:enchantment_power": null, + "minecraft:energy_storage": null, + "minecraft:entity_armor": null, + "minecraft:entity_health": null, + "minecraft:falling_block": null, + "minecraft:fluid_storage": null, + "minecraft:furnace": null, + "minecraft:harvest_tool": null, + "minecraft:horse_stats": null, + "minecraft:item_ber": null, + "minecraft:item_display": null, + "minecraft:item_frame": null, + "minecraft:item_storage": null, + "minecraft:item_tooltip": null, + "minecraft:jukebox": null, + "minecraft:lectern": null, + "minecraft:mob_breeding": null, + "minecraft:mob_growth": null, + "minecraft:mob_spawner": null, + "minecraft:note_block": null, + "minecraft:painting": null, + "minecraft:player_head": null, + "minecraft:potion_effects": null, + "minecraft:progress": null, + "minecraft:redstone": null, + "minecraft:tnt_stability": null, + "minecraft:total_enchantment_power": null, + "minecraft:villager_profession": null, + "minecraft:waxed": null, + "minecraft:zombie_villager": null, + "supplementaries:hat_stand": null, + "supplementaries:present": null, + "supplementaries:safe": null, + "tombstone:decorative_graves": null, + "tombstone:player_graves": null +} \ No newline at end of file diff --git a/minecraft/config/config/jaopca/custom_forms.json b/minecraft/config/config/jaopca/custom_forms.json new file mode 100644 index 0000000..e69de29 diff --git a/minecraft/config/config/jaopca/lang/en_us.json b/minecraft/config/config/jaopca/lang/en_us.json new file mode 100644 index 0000000..8e0eba1 --- /dev/null +++ b/minecraft/config/config/jaopca/lang/en_us.json @@ -0,0 +1,903 @@ +{ + "jaopca.material.activated_carbon": "", + "jaopca.material.adamantine": "", + "jaopca.material.adamantite": "", + "jaopca.material.adamantium": "", + "jaopca.material.advanced_alloy": "", + "jaopca.material.aeternium": "", + "jaopca.material.agar": "", + "jaopca.material.agate": "", + "jaopca.material.alexandrite": "", + "jaopca.material.alfsteel": "", + "jaopca.material.allthemodium": "", + "jaopca.material.almandine": "", + "jaopca.material.alugentum": "", + "jaopca.material.aluminium": "", + "jaopca.material.aluminium_sulfite": "", + "jaopca.material.aluminum": "", + "jaopca.material.aluminum_steel": "", + "jaopca.material.alunite": "", + "jaopca.material.amazonite": "", + "jaopca.material.amber": "", + "jaopca.material.americium": "", + "jaopca.material.amethyst": "", + "jaopca.material.amethyst_bronze": "", + "jaopca.material.ametrine": "", + "jaopca.material.ammolite": "", + "jaopca.material.ammonium_chloride": "", + "jaopca.material.andesite": "", + "jaopca.material.andradite": "", + "jaopca.material.angerite": "", + "jaopca.material.annealed_copper": "", + "jaopca.material.antihumoranium": "Anti-Humoranium", + "jaopca.material.antimony": "", + "jaopca.material.antimony_trifluoride": "", + "jaopca.material.antimony_trioxide": "", + "jaopca.material.apalachia": "", + "jaopca.material.apatite": "", + "jaopca.material.aquamarine": "", + "jaopca.material.aquatic": "", + "jaopca.material.arcane_crystal": "", + "jaopca.material.arcanium": "", + "jaopca.material.archaic_brick": "", + "jaopca.material.argonite": "", + "jaopca.material.arlemite": "", + "jaopca.material.arsenic": "", + "jaopca.material.arsenic_trioxide": "", + "jaopca.material.asbestos": "", + "jaopca.material.ash": "", + "jaopca.material.ashes": "", + "jaopca.material.ashstone": "", + "jaopca.material.astrite": "", + "jaopca.material.attuned_titanium": "", + "jaopca.material.australiansapphire": "Australian Sapphire", + "jaopca.material.azure_electrum": "", + "jaopca.material.azure_silver": "", + "jaopca.material.azurite": "", + "jaopca.material.baolian": "", + "jaopca.material.barite": "", + "jaopca.material.barium": "", + "jaopca.material.barium_sulfide": "", + "jaopca.material.baronyte": "", + "jaopca.material.basalt": "", + "jaopca.material.basaltic_mineral_sand": "", + "jaopca.material.bastnasite": "", + "jaopca.material.battery_alloy": "", + "jaopca.material.bauxite": "", + "jaopca.material.bendalloy": "", + "jaopca.material.benitoite": "", + "jaopca.material.bentonite": "", + "jaopca.material.beryllium": "", + "jaopca.material.bioterium": "", + "jaopca.material.biotite": "", + "jaopca.material.biphenyl": "", + "jaopca.material.bismuth": "", + "jaopca.material.bismuth_brass": "", + "jaopca.material.bismuth_bronze": "", + "jaopca.material.bismuth_steel": "", + "jaopca.material.bitripentium": "", + "jaopca.material.bixbite": "", + "jaopca.material.black_bronze": "", + "jaopca.material.black_diamond": "", + "jaopca.material.black_opal": "", + "jaopca.material.black_steel": "", + "jaopca.material.blackcatseye": "Black Cat's Eye", + "jaopca.material.blackdiamond": "Black Diamond", + "jaopca.material.blackopal": "Black Opal", + "jaopca.material.blackpearl": "Black Pearl", + "jaopca.material.blackstarsapphire": "Black Star Sapphire", + "jaopca.material.blackstone": "", + "jaopca.material.blastproof_alloy": "", + "jaopca.material.blaze": "", + "jaopca.material.blaze_gold": "", + "jaopca.material.blazegold": "", + "jaopca.material.blazing_copper": "", + "jaopca.material.blazium": "", + "jaopca.material.bloodgem": "", + "jaopca.material.bloodquartz": "", + "jaopca.material.bloodstone": "", + "jaopca.material.blue_alloy": "", + "jaopca.material.blue_steel": "", + "jaopca.material.blue_topaz": "", + "jaopca.material.bluecatseye": "Blue Cat's Eye", + "jaopca.material.bluepearl": "Blue Pearl", + "jaopca.material.bluestone": "", + "jaopca.material.blutonium": "", + "jaopca.material.bone": "", + "jaopca.material.borax": "", + "jaopca.material.bornite": "", + "jaopca.material.boron": "", + "jaopca.material.boron_arsenide": "", + "jaopca.material.boron_nitride": "", + "jaopca.material.borosilicate_glass": "", + "jaopca.material.bort": "", + "jaopca.material.brass": "", + "jaopca.material.brick": "", + "jaopca.material.brickerite": "", + "jaopca.material.bronze": "", + "jaopca.material.browndiamond": "Brown Diamond", + "jaopca.material.brownpearl": "Brown Pearl", + "jaopca.material.bscco": "BSCCO", + "jaopca.material.c_mn_blend": "", + "jaopca.material.cadmium": "", + "jaopca.material.caesium": "", + "jaopca.material.caesium_137": "Caesium-137", + "jaopca.material.calcite": "", + "jaopca.material.calcium": "", + "jaopca.material.calcium_carbonate": "", + "jaopca.material.calcium_chloride": "", + "jaopca.material.calcium_ferrocyanide": "", + "jaopca.material.calcium_hydroxide": "", + "jaopca.material.calcium_phosphide": "", + "jaopca.material.calcium_sulfate": "", + "jaopca.material.calorite": "", + "jaopca.material.caminite_brick": "", + "jaopca.material.caprolactam": "", + "jaopca.material.carbon": "", + "jaopca.material.carbon_manganese": "", + "jaopca.material.carbonic_fluix": "", + "jaopca.material.carminite": "", + "jaopca.material.carnelian": "", + "jaopca.material.carobbiite": "", + "jaopca.material.cassiterite": "", + "jaopca.material.cassiterite_sand": "", + "jaopca.material.cast_iron": "", + "jaopca.material.cats_eye": "Cat's Eye", + "jaopca.material.catseye": "Cat's Eye", + "jaopca.material.cave_magmite": "", + "jaopca.material.cerium": "", + "jaopca.material.certus_quartz": "", + "jaopca.material.chalcanthite": "", + "jaopca.material.chalcocite": "", + "jaopca.material.chalcopyrite": "", + "jaopca.material.chaos": "", + "jaopca.material.charcoal": "", + "jaopca.material.chloronium": "", + "jaopca.material.chorus_metal": "", + "jaopca.material.chrome": "", + "jaopca.material.chromite": "", + "jaopca.material.chromium": "", + "jaopca.material.chromium_trioxide": "", + "jaopca.material.chrysolite": "", + "jaopca.material.chrysoprase": "", + "jaopca.material.cinnabar": "", + "jaopca.material.citrine": "", + "jaopca.material.clay": "", + "jaopca.material.cloggrum": "", + "jaopca.material.coal": "", + "jaopca.material.coal_coke": "", + "jaopca.material.cobalt": "", + "jaopca.material.cobalt_brass": "", + "jaopca.material.cobalt_oxide": "", + "jaopca.material.cobaltite": "", + "jaopca.material.cocoa": "", + "jaopca.material.coke": "", + "jaopca.material.collagen": "", + "jaopca.material.composite_metal": "", + "jaopca.material.compressed_iron": "", + "jaopca.material.concrete": "", + "jaopca.material.conductive_alloy": "", + "jaopca.material.constantan": "", + "jaopca.material.cooperite": "", + "jaopca.material.copper": "", + "jaopca.material.copper_alloy": "", + "jaopca.material.copper_carbonate": "", + "jaopca.material.coral": "", + "jaopca.material.corrupted": "", + "jaopca.material.corruptedcybercrystal": "Corrupted Cyber Crystal", + "jaopca.material.corrupti": "", + "jaopca.material.crimson_iron": "", + "jaopca.material.crimson_steel": "", + "jaopca.material.crimsongold": "Crimson Gold", + "jaopca.material.crusteel": "", + "jaopca.material.crystal": "", + "jaopca.material.crystal_binder": "", + "jaopca.material.crystallite": "", + "jaopca.material.cupric_oxide": "", + "jaopca.material.cupronickel": "", + "jaopca.material.cyanemerald": "Cyan Emerald", + "jaopca.material.cyanite": "", + "jaopca.material.cyanstarsapphire": "Cyan Star Sapphire", + "jaopca.material.cyber_steel": "", + "jaopca.material.cybercrystal": "Cyber Crystal", + "jaopca.material.cyclohexanone_oxime": "", + "jaopca.material.damascus_steel": "", + "jaopca.material.dark_ash": "", + "jaopca.material.dark_ashes": "", + "jaopca.material.dark_steel": "", + "jaopca.material.darkbluediamond": "Dark Blue Diamond", + "jaopca.material.darkbluepearl": "Dark Blue Pearl", + "jaopca.material.darmstadtium": "", + "jaopca.material.dawnstone": "", + "jaopca.material.deepslate": "", + "jaopca.material.desh": "", + "jaopca.material.diamond": "", + "jaopca.material.diatomite": "", + "jaopca.material.diethylenetriaminepentaacetic_acid": "", + "jaopca.material.dilithium": "", + "jaopca.material.dimensional_blend": "", + "jaopca.material.diorite": "", + "jaopca.material.divine": "", + "jaopca.material.draconic": "", + "jaopca.material.dragonscale": "", + "jaopca.material.dragonsteel_fire": "Fire Dragonsteel", + "jaopca.material.dragonsteel_ice": "Ice Dragonsteel", + "jaopca.material.dragonsteel_lightning": "Lightning Dragonsteel", + "jaopca.material.dragonstone": "", + "jaopca.material.drenched_iron": "", + "jaopca.material.duralumin": "", + "jaopca.material.duranium": "", + "jaopca.material.durasteel": "", + "jaopca.material.eclipsealloy": "Eclipse Alloy", + "jaopca.material.eclipsediamond": "Eclipse Diamond", + "jaopca.material.eden": "", + "jaopca.material.eighzo": "", + "jaopca.material.elecanium": "", + "jaopca.material.electrical_copper": "", + "jaopca.material.electrified_netherite": "", + "jaopca.material.electrotine": "", + "jaopca.material.electrotine_alloy": "", + "jaopca.material.electrum": "", + "jaopca.material.elementium": "", + "jaopca.material.emberstone": "", + "jaopca.material.emerald": "", + "jaopca.material.end_steel": "", + "jaopca.material.end_stone": "", + "jaopca.material.ender": "", + "jaopca.material.ender_crystal": "", + "jaopca.material.ender_eye": "", + "jaopca.material.ender_pearl": "", + "jaopca.material.endereye": "", + "jaopca.material.enderium": "", + "jaopca.material.endorium": "", + "jaopca.material.endstone": "", + "jaopca.material.energetic_alloy": "", + "jaopca.material.energetic_blend": "", + "jaopca.material.energetic_copper": "", + "jaopca.material.energized_copper": "", + "jaopca.material.energized_gold": "", + "jaopca.material.enriched_naquadah": "", + "jaopca.material.enriched_naquadah_sulfate": "", + "jaopca.material.enriched_naquadah_trinium_europium_duranide": "", + "jaopca.material.enticing_crystal": "", + "jaopca.material.entro": "", + "jaopca.material.epidote": "", + "jaopca.material.epoxy": "", + "jaopca.material.erbium": "", + "jaopca.material.euclase": "", + "jaopca.material.eudialyte": "", + "jaopca.material.europium": "", + "jaopca.material.europium_155": "Europium-155", + "jaopca.material.extreme": "", + "jaopca.material.fairy": "", + "jaopca.material.felsteel": "", + "jaopca.material.ferricore": "", + "jaopca.material.ferrite_mixture": "", + "jaopca.material.ferroboron": "", + "jaopca.material.ferrosilite": "", + "jaopca.material.fiery": "", + "jaopca.material.fire_clay": "", + "jaopca.material.fireclay": "", + "jaopca.material.fireite": "", + "jaopca.material.fireopal": "Fire Opal", + "jaopca.material.flerovium": "", + "jaopca.material.flint": "", + "jaopca.material.flour": "", + "jaopca.material.flourite": "", + "jaopca.material.fluix": "", + "jaopca.material.fluix_iron": "", + "jaopca.material.fluix_steel": "", + "jaopca.material.fluorite": "", + "jaopca.material.flux_infused": "", + "jaopca.material.force": "", + "jaopca.material.forgotten_metal": "", + "jaopca.material.froststeel": "", + "jaopca.material.fullers_earth": "", + "jaopca.material.fyrite": "", + "jaopca.material.gadolinium": "", + "jaopca.material.galaxite": "", + "jaopca.material.galena": "", + "jaopca.material.gallium": "", + "jaopca.material.gallium_arsenide": "", + "jaopca.material.gallium_sulfide": "", + "jaopca.material.galu": "", + "jaopca.material.garnet": "", + "jaopca.material.garnet_sand": "", + "jaopca.material.garnierite": "", + "jaopca.material.gausum": "", + "jaopca.material.gelatin": "", + "jaopca.material.gelot": "", + "jaopca.material.gemenyte": "", + "jaopca.material.germanium": "", + "jaopca.material.ghastly": "", + "jaopca.material.ghoulish": "", + "jaopca.material.ghoulquartz": "Ghoul Quartz", + "jaopca.material.glass": "", + "jaopca.material.glauconite_sand": "", + "jaopca.material.glowstone": "", + "jaopca.material.glowtite": "", + "jaopca.material.gobber": "", + "jaopca.material.gobber_end": "End Gobber", + "jaopca.material.gobber_nether": "Nether Gobber", + "jaopca.material.goethite": "", + "jaopca.material.gold": "", + "jaopca.material.goshenite": "", + "jaopca.material.grains_of_infinity": "", + "jaopca.material.grains_of_pizeallity": "", + "jaopca.material.grains_of_prescience": "", + "jaopca.material.grains_of_the_end": "", + "jaopca.material.grains_of_vibrancy": "", + "jaopca.material.grandidierite": "", + "jaopca.material.granite": "", + "jaopca.material.granite_red": "", + "jaopca.material.granitic_mineral_sand": "", + "jaopca.material.graphene": "", + "jaopca.material.graphite": "", + "jaopca.material.green_sapphire": "", + "jaopca.material.greencatseye": "Green Cat's Eye", + "jaopca.material.greendiamond": "Green Diamond", + "jaopca.material.greengold": "Green Gold", + "jaopca.material.greenpearl": "Green Pearl", + "jaopca.material.greenstarsapphire": "Green Star Sapphire", + "jaopca.material.grindstone": "", + "jaopca.material.grossular": "", + "jaopca.material.gunpowder": "", + "jaopca.material.gypsum": "", + "jaopca.material.hackmantite": "", + "jaopca.material.hafnium": "", + "jaopca.material.hard_carbon": "", + "jaopca.material.hastelloy_c_276": "Hastelloy C-276", + "jaopca.material.hastelloy_x": "Hastelloy-X", + "jaopca.material.he_mox": "HE Mox", + "jaopca.material.he_uranium": "HE Uranium", + "jaopca.material.heliodor": "", + "jaopca.material.hellforged": "", + "jaopca.material.hellstone": "", + "jaopca.material.hematite": "", + "jaopca.material.hepatizon": "", + "jaopca.material.hercynite": "", + "jaopca.material.holmium": "", + "jaopca.material.hop_graphite": "HOP Graphite", + "jaopca.material.hsla_steel": "HSLA Steel", + "jaopca.material.hslasteel": "HSLA Steel", + "jaopca.material.hsse": "HSS-E", + "jaopca.material.hssg": "HSS-G", + "jaopca.material.hsss": "HSS-S", + "jaopca.material.humoranium": "", + "jaopca.material.hureaulite": "", + "jaopca.material.hydratedpotassium": "Hydrated Potassium", + "jaopca.material.ice": "", + "jaopca.material.iceopal": "Ice Opal", + "jaopca.material.iesnium": "", + "jaopca.material.ikegamini": "", + "jaopca.material.ikegamium": "", + "jaopca.material.ikegamonium": "", + "jaopca.material.illumenite": "", + "jaopca.material.ilmenite": "", + "jaopca.material.inanite": "", + "jaopca.material.incoloy_ma_956": "Incoloy MA-956", + "jaopca.material.indigolite": "", + "jaopca.material.indium": "", + "jaopca.material.indium_gallium_phosphide": "", + "jaopca.material.indium_phosphide": "", + "jaopca.material.indium_tin_barium_titanium_cuprate": "", + "jaopca.material.inert_metal_mixture": "", + "jaopca.material.infused_entro": "", + "jaopca.material.insanite": "", + "jaopca.material.invar": "", + "jaopca.material.iodine": "", + "jaopca.material.iolite": "", + "jaopca.material.iridium": "", + "jaopca.material.iridium_alloy": "", + "jaopca.material.iridium_chloride": "", + "jaopca.material.iridium_metal_residue": "", + "jaopca.material.irisagate": "Iris Agate", + "jaopca.material.iron": "", + "jaopca.material.ironwood": "", + "jaopca.material.irradiated_borax": "", + "jaopca.material.jade": "", + "jaopca.material.jasper": "", + "jaopca.material.jewelyte": "", + "jaopca.material.jungle": "", + "jaopca.material.kanthal": "", + "jaopca.material.kepu": "", + "jaopca.material.khnumite": "", + "jaopca.material.knightmetal": "", + "jaopca.material.knightslime": "", + "jaopca.material.kunzite": "", + "jaopca.material.kyanite": "", + "jaopca.material.labradorite": "", + "jaopca.material.lanthanum": "", + "jaopca.material.lapis": "", + "jaopca.material.lapotron": "", + "jaopca.material.large_amethyst": "", + "jaopca.material.larimar": "", + "jaopca.material.lavium": "", + "jaopca.material.lazurite": "", + "jaopca.material.le_mox": "LE Mox", + "jaopca.material.le_uranium": "LE Uranium", + "jaopca.material.lead": "", + "jaopca.material.lead_platinum": "", + "jaopca.material.lepidolite": "", + "jaopca.material.lightbluesapphire": "Light Blue Sapphire", + "jaopca.material.lignite_coal": "", + "jaopca.material.limonite": "", + "jaopca.material.lithium": "", + "jaopca.material.lithium_chloride": "", + "jaopca.material.lithium_manganese_dioxide": "", + "jaopca.material.ludicrite": "", + "jaopca.material.lumium": "", + "jaopca.material.lunar": "", + "jaopca.material.lutetium": "", + "jaopca.material.lyon": "", + "jaopca.material.magentite": "", + "jaopca.material.magma_steel": "", + "jaopca.material.magmite": "", + "jaopca.material.magnalium": "", + "jaopca.material.magnesia": "", + "jaopca.material.magnesite": "", + "jaopca.material.magnesium": "", + "jaopca.material.magnesium_chloride": "", + "jaopca.material.magnesium_diboride": "", + "jaopca.material.magnet": "", + "jaopca.material.magnetic_iron": "", + "jaopca.material.magnetic_neodymium": "", + "jaopca.material.magnetic_samarium": "", + "jaopca.material.magnetic_steel": "", + "jaopca.material.magnetite": "", + "jaopca.material.malachite": "", + "jaopca.material.mana": "", + "jaopca.material.mana_diamond": "", + "jaopca.material.manasteel": "", + "jaopca.material.manganese": "", + "jaopca.material.manganese_dioxide": "", + "jaopca.material.manganese_oxide": "", + "jaopca.material.manganese_phosphide": "", + "jaopca.material.manyullyn": "", + "jaopca.material.maradonyx": "", + "jaopca.material.maraging_steel_300": "", + "jaopca.material.marble": "", + "jaopca.material.maroondiamond": "Maroon Diamond", + "jaopca.material.massicot": "", + "jaopca.material.matizium": "", + "jaopca.material.matrixopal": "", + "jaopca.material.meat": "", + "jaopca.material.medusaquartz": "", + "jaopca.material.melodium": "", + "jaopca.material.mercury": "", + "jaopca.material.mercury_barium_calcium_cuprate": "", + "jaopca.material.metal_mixture": "", + "jaopca.material.meteorite": "", + "jaopca.material.mica": "", + "jaopca.material.mirabilite": "", + "jaopca.material.mithril": "", + "jaopca.material.mixed_metal": "", + "jaopca.material.moldavite": "", + "jaopca.material.molten": "", + "jaopca.material.molybdenite": "", + "jaopca.material.molybdenum": "", + "jaopca.material.molybdenum_disilicide": "", + "jaopca.material.monazite": "", + "jaopca.material.moonstone": "", + "jaopca.material.morganite": "", + "jaopca.material.mortum": "", + "jaopca.material.mundabitur": "", + "jaopca.material.mystite": "", + "jaopca.material.mystium": "", + "jaopca.material.mythril": "", + "jaopca.material.naquadah": "", + "jaopca.material.naquadah_alloy": "", + "jaopca.material.naquadria": "", + "jaopca.material.naquadria_sulfate": "", + "jaopca.material.nebu": "", + "jaopca.material.neodymium": "", + "jaopca.material.neon": "", + "jaopca.material.neonmeteorite": "Neon Meteorite", + "jaopca.material.neptunium": "", + "jaopca.material.nether_brick": "", + "jaopca.material.nether_quartz": "", + "jaopca.material.nether_star": "", + "jaopca.material.netherite": "", + "jaopca.material.netherite_scrap": "", + "jaopca.material.netherrack": "", + "jaopca.material.neutronium": "", + "jaopca.material.nichrome": "", + "jaopca.material.nickel": "", + "jaopca.material.nickel_zinc_ferrite": "", + "jaopca.material.nicrosil": "", + "jaopca.material.nighalite": "", + "jaopca.material.niobium": "", + "jaopca.material.niobium_nitride": "", + "jaopca.material.niobium_tin": "", + "jaopca.material.niobium_titanium": "", + "jaopca.material.niter": "", + "jaopca.material.novasteel": "", + "jaopca.material.obsidian": "", + "jaopca.material.oilsands": "", + "jaopca.material.olivediamond": "Olive Diamond", + "jaopca.material.olivepearl": "Olive Pearl", + "jaopca.material.olivine": "", + "jaopca.material.onyx": "", + "jaopca.material.opal": "", + "jaopca.material.orangecatseye": "Orange Cat's Eye", + "jaopca.material.orangediamond": "Orange Diamond", + "jaopca.material.orangepearl": "Orange Pearl", + "jaopca.material.orangestarsapphire": "Orange Star Sapphire", + "jaopca.material.orichalcum": "", + "jaopca.material.ornamyte": "", + "jaopca.material.osmiridium": "", + "jaopca.material.osmium": "", + "jaopca.material.osmium_tetroxide": "", + "jaopca.material.ostrum": "", + "jaopca.material.oxdrite": "", + "jaopca.material.painite": "", + "jaopca.material.palintinium": "", + "jaopca.material.palladium": "", + "jaopca.material.palladium_raw": "Raw Palladium", + "jaopca.material.paper": "", + "jaopca.material.paracetamol": "", + "jaopca.material.peacockore": "Peacock Ore", + "jaopca.material.peacocktopaz": "Peacock Topaz", + "jaopca.material.pearl": "", + "jaopca.material.pelenium": "", + "jaopca.material.pendorite_alloy": "", + "jaopca.material.pentlandite": "", + "jaopca.material.peridot": "", + "jaopca.material.perlite": "", + "jaopca.material.pewter": "", + "jaopca.material.phosphate": "", + "jaopca.material.phosphophyllite": "", + "jaopca.material.phosphorus": "", + "jaopca.material.phosphorus_pentoxide": "", + "jaopca.material.photovoltaic": "", + "jaopca.material.pig_iron": "", + "jaopca.material.pink_slime": "", + "jaopca.material.pinkdiamond": "Pink Diamond", + "jaopca.material.pinkpearl": "Pink Pearl", + "jaopca.material.pinkruby": "Pink Ruby", + "jaopca.material.pinkstarsapphire": "Pink Star Sapphire", + "jaopca.material.pinktigerseye": "Pink Tiger's Eye", + "jaopca.material.piroot": "", + "jaopca.material.pitambarineelam": "Pitambari Neelam", + "jaopca.material.pitchblende": "", + "jaopca.material.platinum": "", + "jaopca.material.platinum_group_sludge": "", + "jaopca.material.platinum_raw": "", + "jaopca.material.platinum_sludge_residue": "", + "jaopca.material.plutonium": "", + "jaopca.material.plutonium_239": "Plutonium-239", + "jaopca.material.plutonium_241": "Plutonium-241", + "jaopca.material.pollucite": "", + "jaopca.material.polonium": "", + "jaopca.material.polybenzimidazole": "", + "jaopca.material.polycaprolactam": "", + "jaopca.material.polydimethylsiloxane": "", + "jaopca.material.polyethylene": "", + "jaopca.material.polyphenylene_sulfide": "", + "jaopca.material.polytetrafluoroethylene": "", + "jaopca.material.polyvinyl_butyral": "", + "jaopca.material.polyvinyl_chloride": "", + "jaopca.material.potash": "", + "jaopca.material.potassium": "", + "jaopca.material.potassium_carbonate": "", + "jaopca.material.potassium_cyanide": "", + "jaopca.material.potassium_dichromate": "", + "jaopca.material.potassium_feldspar": "", + "jaopca.material.potassium_ferrocyanide": "", + "jaopca.material.potassium_fluoride": "", + "jaopca.material.potassium_hydroxide": "", + "jaopca.material.potassium_iodide": "", + "jaopca.material.potassium_sulfate": "", + "jaopca.material.potin": "", + "jaopca.material.powellite": "", + "jaopca.material.prescient_crystal": "", + "jaopca.material.prism": "", + "jaopca.material.prismalium": "", + "jaopca.material.prismarine": "", + "jaopca.material.prismatic": "", + "jaopca.material.prismide": "", + "jaopca.material.promethium_147": "Promethium-147", + "jaopca.material.protactinium_233": "Protactinium-233", + "jaopca.material.prussian_blue": "", + "jaopca.material.pulsating_alloy": "", + "jaopca.material.pulsating_crystal": "", + "jaopca.material.pure_copper": "", + "jaopca.material.pure_gold": "", + "jaopca.material.pure_iron": "", + "jaopca.material.pure_steel": "", + "jaopca.material.pure_titanium": "", + "jaopca.material.purplecatseye": "Purple Cat's Eye", + "jaopca.material.purplediamond": "Purple Diamond", + "jaopca.material.purplegold": "Purple Gold", + "jaopca.material.purplepearl": "Purple Pearl", + "jaopca.material.purplestarsapphire": "Purple Star Sapphire", + "jaopca.material.purpur": "", + "jaopca.material.pyrite": "", + "jaopca.material.pyrochlore": "", + "jaopca.material.pyrolitic_carbon": "", + "jaopca.material.pyrolusite": "", + "jaopca.material.pyrope": "", + "jaopca.material.qivium": "", + "jaopca.material.quantanium": "", + "jaopca.material.quartz": "", + "jaopca.material.quartz_sand": "", + "jaopca.material.quartzite": "", + "jaopca.material.queens_slime": "", + "jaopca.material.quicklime": "", + "jaopca.material.quicksilver": "", + "jaopca.material.rad_away": "", + "jaopca.material.radium": "", + "jaopca.material.rare_earth": "", + "jaopca.material.rareamethyst": "Rare Amethyst", + "jaopca.material.rarecitrine": "Rare Citrine", + "jaopca.material.rareearthmetal": "Rare Earth Metal", + "jaopca.material.raresapphire": "Rare Sapphire", + "jaopca.material.rarest_metal_mixture": "", + "jaopca.material.raretanzanite": "Rare Tanzanite", + "jaopca.material.raspberrydiamond": "Raspberry Diamond", + "jaopca.material.raw_novasteel": "", + "jaopca.material.raw_rubber": "", + "jaopca.material.raw_styrene_butadiene_rubber": "", + "jaopca.material.realgar": "", + "jaopca.material.realmite": "", + "jaopca.material.red_alloy": "", + "jaopca.material.red_beryl": "", + "jaopca.material.red_garnet": "", + "jaopca.material.red_granite": "", + "jaopca.material.red_steel": "", + "jaopca.material.redcatseye": "Red Cat's Eye", + "jaopca.material.reddiamond": "Red Diamond", + "jaopca.material.redpearl": "Red Pearl", + "jaopca.material.redrock": "", + "jaopca.material.redstone": "", + "jaopca.material.redstone_alloy": "", + "jaopca.material.refined_glowstone": "", + "jaopca.material.refined_iron": "", + "jaopca.material.refined_obsidian": "", + "jaopca.material.refined_radiance": "", + "jaopca.material.regalium": "", + "jaopca.material.reinforced_epoxy_resin": "", + "jaopca.material.resonating": "", + "jaopca.material.retium": "", + "jaopca.material.rhodium": "", + "jaopca.material.rhodium_plated_palladium": "", + "jaopca.material.rhodochrosite": "", + "jaopca.material.rhodonite": "", + "jaopca.material.ridiculite": "", + "jaopca.material.rock_salt": "", + "jaopca.material.rose_gold": "", + "jaopca.material.rose_quartz": "", + "jaopca.material.rosegold": "Rose Gold", + "jaopca.material.rosequartz": "Rose Quartz", + "jaopca.material.rosite": "", + "jaopca.material.rtm_alloy": "", + "jaopca.material.rubber": "", + "jaopca.material.ruby": "", + "jaopca.material.rupee": "", + "jaopca.material.ruridit": "", + "jaopca.material.ruthenium": "", + "jaopca.material.ruthenium_106": "Ruthenium-106", + "jaopca.material.ruthenium_tetroxide": "", + "jaopca.material.ruthenium_trinium_americium_neutronate": "", + "jaopca.material.rutile": "", + "jaopca.material.sal_ammoniac": "", + "jaopca.material.salt": "", + "jaopca.material.saltpeter": "", + "jaopca.material.samarium": "", + "jaopca.material.samarium_iron_arsenic_oxide": "", + "jaopca.material.sand": "", + "jaopca.material.sapphire": "", + "jaopca.material.sardonyx": "", + "jaopca.material.saw": "", + "jaopca.material.sawdust": "", + "jaopca.material.scandium": "", + "jaopca.material.scheelite": "", + "jaopca.material.seaborgium": "", + "jaopca.material.serpentine": "", + "jaopca.material.shadow": "", + "jaopca.material.shadow_steel": "", + "jaopca.material.shaka": "", + "jaopca.material.shibuichi": "", + "jaopca.material.shyregem": "", + "jaopca.material.shyrestone": "", + "jaopca.material.sic_sic_cmc": "SiC-SiC CMC", + "jaopca.material.signalum": "", + "jaopca.material.silica": "", + "jaopca.material.silicon": "", + "jaopca.material.silicon_bronze": "", + "jaopca.material.silicon_carbide": "", + "jaopca.material.silicon_dioxide": "", + "jaopca.material.silicone_rubber": "", + "jaopca.material.silver": "", + "jaopca.material.simoganium": "", + "jaopca.material.simonium": "", + "jaopca.material.skeletal": "", + "jaopca.material.skythern": "", + "jaopca.material.slag": "", + "jaopca.material.slimesteel": "", + "jaopca.material.smokyquartz": "Smoky Quartz", + "jaopca.material.snowflakeobsidian": "Snowflake Obsidian", + "jaopca.material.soapstone": "", + "jaopca.material.soda_ash": "", + "jaopca.material.sodalite": "", + "jaopca.material.sodium": "", + "jaopca.material.sodium_bicarbonate": "", + "jaopca.material.sodium_bisulfate": "", + "jaopca.material.sodium_fluoride": "", + "jaopca.material.sodium_hydroxide": "", + "jaopca.material.sodium_nitrite": "", + "jaopca.material.sodium_sulfide": "", + "jaopca.material.solardiamond": "Solar Diamond", + "jaopca.material.solarium": "", + "jaopca.material.soldering_alloy": "", + "jaopca.material.sonoranite": "", + "jaopca.material.soul_stained_steel": "", + "jaopca.material.soularium": "", + "jaopca.material.soulfire": "", + "jaopca.material.soulquartz": "Soul Quartz", + "jaopca.material.soulsand": "", + "jaopca.material.soulsteel": "", + "jaopca.material.source": "", + "jaopca.material.spessartine": "", + "jaopca.material.sphalerite": "", + "jaopca.material.spinel": "", + "jaopca.material.spodumene": "", + "jaopca.material.stainless_steel": "", + "jaopca.material.stainlesssteel": "Stainless Steel", + "jaopca.material.starmetal": "", + "jaopca.material.starruby": "Star Ruby", + "jaopca.material.starsapphire": "Star Sapphire", + "jaopca.material.steel": "", + "jaopca.material.steeleaf": "", + "jaopca.material.stellarium": "", + "jaopca.material.stellite_100": "Stellite-100", + "jaopca.material.sterling_silver": "", + "jaopca.material.stibnite": "", + "jaopca.material.stone": "", + "jaopca.material.strontium": "", + "jaopca.material.strontium_90": "Strontium-90", + "jaopca.material.styrene_butadiene_rubber": "", + "jaopca.material.sugar": "", + "jaopca.material.sugillite": "", + "jaopca.material.sulfur": "", + "jaopca.material.sunsetjasper": "Sunset Jasper", + "jaopca.material.sunstone": "", + "jaopca.material.super_alloy": "", + "jaopca.material.super_useless": "", + "jaopca.material.superconductive": "", + "jaopca.material.superconductor": "", + "jaopca.material.swift_alloy": "", + "jaopca.material.talc": "", + "jaopca.material.tantalite": "", + "jaopca.material.tantalum": "", + "jaopca.material.tantalum_carbide": "", + "jaopca.material.tanzanite": "", + "jaopca.material.tbp": "Protactinium-Enriched Thorium", + "jaopca.material.technetium": "", + "jaopca.material.tektite": "", + "jaopca.material.terbium": "", + "jaopca.material.terminite": "", + "jaopca.material.terran": "", + "jaopca.material.terrasteel": "", + "jaopca.material.tetrahedrite": "", + "jaopca.material.thallasium": "", + "jaopca.material.thallium": "", + "jaopca.material.thermite": "", + "jaopca.material.thermoconducting": "", + "jaopca.material.thorium": "", + "jaopca.material.thounite": "", + "jaopca.material.tigerseye": "Tiger's Eye", + "jaopca.material.tin": "", + "jaopca.material.tin_alloy": "", + "jaopca.material.tin_silver": "", + "jaopca.material.titanium": "", + "jaopca.material.titanium_carbide": "", + "jaopca.material.titanium_trifluoride": "", + "jaopca.material.titanium_tungsten_carbide": "", + "jaopca.material.titaniumcarbide": "", + "jaopca.material.topaz": "", + "jaopca.material.torridite": "", + "jaopca.material.tough_alloy": "", + "jaopca.material.tourmaline": "", + "jaopca.material.treated_wood": "", + "jaopca.material.tricalcium_phosphate": "", + "jaopca.material.trinium": "", + "jaopca.material.trinium_sulfide": "", + "jaopca.material.tritanium": "", + "jaopca.material.trona": "", + "jaopca.material.tungstate": "", + "jaopca.material.tungsten": "", + "jaopca.material.tungsten_carbide": "", + "jaopca.material.tungsten_steel": "", + "jaopca.material.tungstensteel": "", + "jaopca.material.tungstic_acid": "", + "jaopca.material.turquoise": "", + "jaopca.material.tyrian_steel": "", + "jaopca.material.ultimet": "", + "jaopca.material.unobtainium": "", + "jaopca.material.unobtainium_allthemodium_alloy": "", + "jaopca.material.unobtainium_vibranium_alloy": "", + "jaopca.material.unobtanium": "", + "jaopca.material.unstable": "", + "jaopca.material.uraninite": "", + "jaopca.material.uranium": "", + "jaopca.material.uranium_235": "", + "jaopca.material.uranium_238": "", + "jaopca.material.uranium_rhodium_dinaquadide": "", + "jaopca.material.uranium_triplatinum": "", + "jaopca.material.useless": "", + "jaopca.material.utherium": "", + "jaopca.material.uvarovite": "", + "jaopca.material.vanadium": "", + "jaopca.material.vanadium_gallium": "", + "jaopca.material.vanadium_magnetite": "", + "jaopca.material.vanadium_steel": "", + "jaopca.material.vanadiumsteel": "", + "jaopca.material.varsium": "", + "jaopca.material.vesuvianite": "", + "jaopca.material.vibranium": "", + "jaopca.material.vibranium_allthemodium_alloy": "", + "jaopca.material.vibrant_alloy": "", + "jaopca.material.vibrant_crystal": "", + "jaopca.material.villiaumite": "", + "jaopca.material.wakurium": "", + "jaopca.material.watermelontourmaline": "Watermelon Tourmaline", + "jaopca.material.watertight_steel": "", + "jaopca.material.wavy": "", + "jaopca.material.weather_crystal": "", + "jaopca.material.wheat": "", + "jaopca.material.white_diamond": "", + "jaopca.material.whitecatseye": "White Cat's Eye", + "jaopca.material.whitediamond": "White Diamond", + "jaopca.material.whitepearl": "White Pearl", + "jaopca.material.whitestone": "", + "jaopca.material.wildwood": "", + "jaopca.material.witheredsteel": "Withered Steel", + "jaopca.material.wood": "", + "jaopca.material.wrought_iron": "", + "jaopca.material.wulfenite": "", + "jaopca.material.xernium": "", + "jaopca.material.xychorium": "", + "jaopca.material.xychorium_blue": "Blue Xychorium", + "jaopca.material.xychorium_dark": "Dark Xychorium", + "jaopca.material.xychorium_green": "Green Xychorium", + "jaopca.material.xychorium_light": "Light Xychorium", + "jaopca.material.xychorium_red": "Red Xychorium", + "jaopca.material.yellorium": "", + "jaopca.material.yellow_diamond": "", + "jaopca.material.yellow_garnet": "", + "jaopca.material.yellow_limonite": "", + "jaopca.material.yellowcake": "", + "jaopca.material.yellowcatseye": "Yellow Cat's Eye", + "jaopca.material.yellowdiamond": "Yellow Diamond", + "jaopca.material.yellowonyx": "Yellow Onyx", + "jaopca.material.yellowpearl": "Yellow Pearl", + "jaopca.material.yellowstarsapphire": "Yellow Star Sapphire", + "jaopca.material.yokel": "", + "jaopca.material.ytterbium": "", + "jaopca.material.yttrium": "", + "jaopca.material.yttrium_barium_cuprate": "", + "jaopca.material.yurium": "", + "jaopca.material.zebrajasper": "Zebra Jasper", + "jaopca.material.zeolite": "", + "jaopca.material.zeron_100": "Zeron-100", + "jaopca.material.zinc": "", + "jaopca.material.zinc_sulfide": "", + "jaopca.material.zincite": "", + "jaopca.material.zircaloy": "", + "jaopca.material.zircon": "", + "jaopca.material.zirconeight": "Zircon", + "jaopca.material.zirconeleven": "Zircon", + "jaopca.material.zirconfive": "Zircon", + "jaopca.material.zirconfour": "Zircon", + "jaopca.material.zirconium": "", + "jaopca.material.zirconium_molybdenum": "", + "jaopca.material.zirconnine": "Zircon", + "jaopca.material.zirconone": "Zircon", + "jaopca.material.zirconseven": "Zircon", + "jaopca.material.zirconsix": "Zircon", + "jaopca.material.zirconten": "Zircon", + "jaopca.material.zirconthree": "Zircon", + "jaopca.material.zircontwelve": "Zircon", + "jaopca.material.zircontwo": "Zircon" +} \ No newline at end of file diff --git a/minecraft/config/config/jaopca/main.toml b/minecraft/config/config/jaopca/main.toml new file mode 100644 index 0000000..5b83b78 --- /dev/null +++ b/minecraft/config/config/jaopca/main.toml @@ -0,0 +1,113 @@ + +#Configurations related to materials. +[materials] + #Should the mod find ingot materials with ores. + ingot = true + #Should the mod find ingot materials with ores but without raw ores. + ingotLegacy = true + #Should the mod find gem materials with ores. + gem = true + #Should the mod find crystal materials with ores. + crystal = true + #Should the mod find dust materials with ores. + dust = true + #Should the mod find ingot materials without ores. + ingotPlain = true + #Should the mod find gem materials without ores. + gemPlain = true + #Should the mod find crystal materials without ores. + crystalPlain = true + #Should the mod find dust materials without ores. + dustPlain = true + +#Configurations related to material overrides. +[materialOverrides] + #List of materials that should be gems. + gem = [ + "diamond", + "emerald", + "lapis", + "prismarine", + "quartz" +] + #List of materials that should be crystals. + crystal = [] + #List of materials that should be dusts. + dust = [ + "glowstone", + "redstone" +] + +#Configurations related to item selection. +[itemSelection] + #List of mods that are preferred when selecting items in recipes. + preferredMods = [ + "minecraft" +] + +#Configurations related to block tags. +[blockTags] + #List of block tags that should not be added. + blacklist = [] + #List of block tags that should be considered as defined. + customDefined = [] + +#Configurations related to item tags. +[itemTags] + #List of item tags that should not be added. + blacklist = [] + #List of item tags that should be considered as defined. + customDefined = [] + +#Configurations related to fluid tags. +[fluidTags] + #List of fluid tags that should not be added. + blacklist = [] + #List of fluid tags that should be considered as defined. + customDefined = [] + +#Configurations related to entity type tags. +[entityTypeTags] + #List of entity type tags that should not be added. + blacklist = [] + #List of entity type tags that should be considered as defined. + customDefined = [] + +#Configurations related to recipes. +[recipes] + #List of recipes that should not be added. + blacklist = [] + #List of recipes by regex that should not be added. + regexBlacklist = [] + +#Configurations related to loot tables. +[lootTables] + #List of loot tables that should not be added. + blacklist = [] + +#Configurations related to advancements. +[advancements] + #List of advancements that should not be added. + blacklist = [] + +#Configurations related to data modules. +[data] + #List of data modules that should not be registered. + moduleBlacklist = [] + #List of custom tag entries to add. Use "item" as registry for item tags, "fluid" for fluid tags, etc. Format: "registry#namespace:entry=namespace:tag" + customTags = [] + +#Configurations related to color generation. +[colors] + #The gamma value used to blend colors. + gammaValue = 2.0 + #Should colors of all materials be reset on next startup. + resetColors = false + +#Configurations related to material localization. +[materialLocalization] + #Should the mod check for material localization updates. + checkL10nUpdates = true + #The update interval of localization files in days. + updateInterval = 3.0 + diff --git a/minecraft/config/config/jaopca/materials/aluminum.toml b/minecraft/config/config/jaopca/materials/aluminum.toml new file mode 100644 index 0000000..ad21649 --- /dev/null +++ b/minecraft/config/config/jaopca/materials/aluminum.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 11580602 + diff --git a/minecraft/config/config/jaopca/materials/amethyst.toml b/minecraft/config/config/jaopca/materials/amethyst.toml new file mode 100644 index 0000000..a9708b1 --- /dev/null +++ b/minecraft/config/config/jaopca/materials/amethyst.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = true + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + diff --git a/minecraft/config/config/jaopca/materials/apatite.toml b/minecraft/config/config/jaopca/materials/apatite.toml new file mode 100644 index 0000000..b70af55 --- /dev/null +++ b/minecraft/config/config/jaopca/materials/apatite.toml @@ -0,0 +1,19 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + diff --git a/minecraft/config/config/jaopca/materials/ash.toml b/minecraft/config/config/jaopca/materials/ash.toml new file mode 100644 index 0000000..f4cb3e7 --- /dev/null +++ b/minecraft/config/config/jaopca/materials/ash.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + #The color of this material. + color = 7763833 + diff --git a/minecraft/config/config/jaopca/materials/brass.toml b/minecraft/config/config/jaopca/materials/brass.toml new file mode 100644 index 0000000..590543b --- /dev/null +++ b/minecraft/config/config/jaopca/materials/brass.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/config/jaopca/materials/brick.toml b/minecraft/config/config/jaopca/materials/brick.toml new file mode 100644 index 0000000..6208a49 --- /dev/null +++ b/minecraft/config/config/jaopca/materials/brick.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 8081992 + diff --git a/minecraft/config/config/jaopca/materials/bronze.toml b/minecraft/config/config/jaopca/materials/bronze.toml new file mode 100644 index 0000000..590543b --- /dev/null +++ b/minecraft/config/config/jaopca/materials/bronze.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/config/jaopca/materials/cast_iron.toml b/minecraft/config/config/jaopca/materials/cast_iron.toml new file mode 100644 index 0000000..590543b --- /dev/null +++ b/minecraft/config/config/jaopca/materials/cast_iron.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/config/jaopca/materials/coal.toml b/minecraft/config/config/jaopca/materials/coal.toml new file mode 100644 index 0000000..25a0ee7 --- /dev/null +++ b/minecraft/config/config/jaopca/materials/coal.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + diff --git a/minecraft/config/config/jaopca/materials/coal_coke.toml b/minecraft/config/config/jaopca/materials/coal_coke.toml new file mode 100644 index 0000000..1eab1ff --- /dev/null +++ b/minecraft/config/config/jaopca/materials/coal_coke.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + #The color of this material. + color = 5328975 + diff --git a/minecraft/config/config/jaopca/materials/constantan.toml b/minecraft/config/config/jaopca/materials/constantan.toml new file mode 100644 index 0000000..590543b --- /dev/null +++ b/minecraft/config/config/jaopca/materials/constantan.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/config/jaopca/materials/copper.toml b/minecraft/config/config/jaopca/materials/copper.toml new file mode 100644 index 0000000..590543b --- /dev/null +++ b/minecraft/config/config/jaopca/materials/copper.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/config/jaopca/materials/diamond.toml b/minecraft/config/config/jaopca/materials/diamond.toml new file mode 100644 index 0000000..25a0ee7 --- /dev/null +++ b/minecraft/config/config/jaopca/materials/diamond.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + diff --git a/minecraft/config/config/jaopca/materials/dragonstone.toml b/minecraft/config/config/jaopca/materials/dragonstone.toml new file mode 100644 index 0000000..25a0ee7 --- /dev/null +++ b/minecraft/config/config/jaopca/materials/dragonstone.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + diff --git a/minecraft/config/config/jaopca/materials/elementium.toml b/minecraft/config/config/jaopca/materials/elementium.toml new file mode 100644 index 0000000..590543b --- /dev/null +++ b/minecraft/config/config/jaopca/materials/elementium.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/config/jaopca/materials/emerald.toml b/minecraft/config/config/jaopca/materials/emerald.toml new file mode 100644 index 0000000..25a0ee7 --- /dev/null +++ b/minecraft/config/config/jaopca/materials/emerald.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + diff --git a/minecraft/config/config/jaopca/materials/glowstone-1.toml.bak b/minecraft/config/config/jaopca/materials/glowstone-1.toml.bak new file mode 100644 index 0000000..25073f9 --- /dev/null +++ b/minecraft/config/config/jaopca/materials/glowstone-1.toml.bak @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + #The color of this material. + color = 0xBF894E + diff --git a/minecraft/config/config/jaopca/materials/glowstone-2.toml.bak b/minecraft/config/config/jaopca/materials/glowstone-2.toml.bak new file mode 100644 index 0000000..25073f9 --- /dev/null +++ b/minecraft/config/config/jaopca/materials/glowstone-2.toml.bak @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + #The color of this material. + color = 0xBF894E + diff --git a/minecraft/config/config/jaopca/materials/glowstone-3.toml.bak b/minecraft/config/config/jaopca/materials/glowstone-3.toml.bak new file mode 100644 index 0000000..25073f9 --- /dev/null +++ b/minecraft/config/config/jaopca/materials/glowstone-3.toml.bak @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + #The color of this material. + color = 0xBF894E + diff --git a/minecraft/config/config/jaopca/materials/glowstone-4.toml.bak b/minecraft/config/config/jaopca/materials/glowstone-4.toml.bak new file mode 100644 index 0000000..25073f9 --- /dev/null +++ b/minecraft/config/config/jaopca/materials/glowstone-4.toml.bak @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + #The color of this material. + color = 0xBF894E + diff --git a/minecraft/config/config/jaopca/materials/glowstone.toml b/minecraft/config/config/jaopca/materials/glowstone.toml new file mode 100644 index 0000000..c475e87 --- /dev/null +++ b/minecraft/config/config/jaopca/materials/glowstone.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + diff --git a/minecraft/config/config/jaopca/materials/gold.toml b/minecraft/config/config/jaopca/materials/gold.toml new file mode 100644 index 0000000..590543b --- /dev/null +++ b/minecraft/config/config/jaopca/materials/gold.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/config/jaopca/materials/hellforged.toml b/minecraft/config/config/jaopca/materials/hellforged.toml new file mode 100644 index 0000000..4b60e58 --- /dev/null +++ b/minecraft/config/config/jaopca/materials/hellforged.toml @@ -0,0 +1,21 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 10542032 + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + diff --git a/minecraft/config/config/jaopca/materials/iron.toml b/minecraft/config/config/jaopca/materials/iron.toml new file mode 100644 index 0000000..590543b --- /dev/null +++ b/minecraft/config/config/jaopca/materials/iron.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/config/jaopca/materials/lapis.toml b/minecraft/config/config/jaopca/materials/lapis.toml new file mode 100644 index 0000000..25a0ee7 --- /dev/null +++ b/minecraft/config/config/jaopca/materials/lapis.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + diff --git a/minecraft/config/config/jaopca/materials/lead.toml b/minecraft/config/config/jaopca/materials/lead.toml new file mode 100644 index 0000000..594ed49 --- /dev/null +++ b/minecraft/config/config/jaopca/materials/lead.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 5464937 + diff --git a/minecraft/config/config/jaopca/materials/lithium.toml b/minecraft/config/config/jaopca/materials/lithium.toml new file mode 100644 index 0000000..590543b --- /dev/null +++ b/minecraft/config/config/jaopca/materials/lithium.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/config/jaopca/materials/mana.toml b/minecraft/config/config/jaopca/materials/mana.toml new file mode 100644 index 0000000..e25b900 --- /dev/null +++ b/minecraft/config/config/jaopca/materials/mana.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + #The color of this material. + color = 5618113 + diff --git a/minecraft/config/config/jaopca/materials/mana_diamond.toml b/minecraft/config/config/jaopca/materials/mana_diamond.toml new file mode 100644 index 0000000..25a0ee7 --- /dev/null +++ b/minecraft/config/config/jaopca/materials/mana_diamond.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + diff --git a/minecraft/config/config/jaopca/materials/manasteel.toml b/minecraft/config/config/jaopca/materials/manasteel.toml new file mode 100644 index 0000000..590543b --- /dev/null +++ b/minecraft/config/config/jaopca/materials/manasteel.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/config/jaopca/materials/nether_brick.toml b/minecraft/config/config/jaopca/materials/nether_brick.toml new file mode 100644 index 0000000..b6b3e4c --- /dev/null +++ b/minecraft/config/config/jaopca/materials/nether_brick.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 4202790 + diff --git a/minecraft/config/config/jaopca/materials/netherite.toml b/minecraft/config/config/jaopca/materials/netherite.toml new file mode 100644 index 0000000..590543b --- /dev/null +++ b/minecraft/config/config/jaopca/materials/netherite.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/config/jaopca/materials/netherite_scrap.toml b/minecraft/config/config/jaopca/materials/netherite_scrap.toml new file mode 100644 index 0000000..3ffd9de --- /dev/null +++ b/minecraft/config/config/jaopca/materials/netherite_scrap.toml @@ -0,0 +1,21 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 5650738 + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + diff --git a/minecraft/config/config/jaopca/materials/nethersteel.toml b/minecraft/config/config/jaopca/materials/nethersteel.toml new file mode 100644 index 0000000..1ad566d --- /dev/null +++ b/minecraft/config/config/jaopca/materials/nethersteel.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 6049871 + diff --git a/minecraft/config/config/jaopca/materials/nickel-1.toml.bak b/minecraft/config/config/jaopca/materials/nickel-1.toml.bak new file mode 100644 index 0000000..d18c2c0 --- /dev/null +++ b/minecraft/config/config/jaopca/materials/nickel-1.toml.bak @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 0xADAEA6 + diff --git a/minecraft/config/config/jaopca/materials/nickel-2.toml.bak b/minecraft/config/config/jaopca/materials/nickel-2.toml.bak new file mode 100644 index 0000000..d18c2c0 --- /dev/null +++ b/minecraft/config/config/jaopca/materials/nickel-2.toml.bak @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 0xADAEA6 + diff --git a/minecraft/config/config/jaopca/materials/nickel-3.toml.bak b/minecraft/config/config/jaopca/materials/nickel-3.toml.bak new file mode 100644 index 0000000..d18c2c0 --- /dev/null +++ b/minecraft/config/config/jaopca/materials/nickel-3.toml.bak @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 0xADAEA6 + diff --git a/minecraft/config/config/jaopca/materials/nickel-4.toml.bak b/minecraft/config/config/jaopca/materials/nickel-4.toml.bak new file mode 100644 index 0000000..d18c2c0 --- /dev/null +++ b/minecraft/config/config/jaopca/materials/nickel-4.toml.bak @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 0xADAEA6 + diff --git a/minecraft/config/config/jaopca/materials/nickel-5.toml.bak b/minecraft/config/config/jaopca/materials/nickel-5.toml.bak new file mode 100644 index 0000000..d18c2c0 --- /dev/null +++ b/minecraft/config/config/jaopca/materials/nickel-5.toml.bak @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 0xADAEA6 + diff --git a/minecraft/config/config/jaopca/materials/nickel.toml b/minecraft/config/config/jaopca/materials/nickel.toml new file mode 100644 index 0000000..590543b --- /dev/null +++ b/minecraft/config/config/jaopca/materials/nickel.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/config/jaopca/materials/obsidian.toml b/minecraft/config/config/jaopca/materials/obsidian.toml new file mode 100644 index 0000000..004ee14 --- /dev/null +++ b/minecraft/config/config/jaopca/materials/obsidian.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + #The color of this material. + color = 2694205 + diff --git a/minecraft/config/config/jaopca/materials/plastic.toml b/minecraft/config/config/jaopca/materials/plastic.toml new file mode 100644 index 0000000..590543b --- /dev/null +++ b/minecraft/config/config/jaopca/materials/plastic.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/config/jaopca/materials/prismarine.toml b/minecraft/config/config/jaopca/materials/prismarine.toml new file mode 100644 index 0000000..f4a5022 --- /dev/null +++ b/minecraft/config/config/jaopca/materials/prismarine.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + #The color of this material. + color = 9942698 + diff --git a/minecraft/config/config/jaopca/materials/quartz.toml b/minecraft/config/config/jaopca/materials/quartz.toml new file mode 100644 index 0000000..a9708b1 --- /dev/null +++ b/minecraft/config/config/jaopca/materials/quartz.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = true + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + diff --git a/minecraft/config/config/jaopca/materials/redstone.toml b/minecraft/config/config/jaopca/materials/redstone.toml new file mode 100644 index 0000000..c475e87 --- /dev/null +++ b/minecraft/config/config/jaopca/materials/redstone.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + diff --git a/minecraft/config/config/jaopca/materials/rubber.toml b/minecraft/config/config/jaopca/materials/rubber.toml new file mode 100644 index 0000000..1080b02 --- /dev/null +++ b/minecraft/config/config/jaopca/materials/rubber.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 2566186 + diff --git a/minecraft/config/config/jaopca/materials/saltpeter-1.toml.bak b/minecraft/config/config/jaopca/materials/saltpeter-1.toml.bak new file mode 100644 index 0000000..4a007b7 --- /dev/null +++ b/minecraft/config/config/jaopca/materials/saltpeter-1.toml.bak @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + #The color of this material. + color = 0xC0C0BE + diff --git a/minecraft/config/config/jaopca/materials/saltpeter-2.toml.bak b/minecraft/config/config/jaopca/materials/saltpeter-2.toml.bak new file mode 100644 index 0000000..4a007b7 --- /dev/null +++ b/minecraft/config/config/jaopca/materials/saltpeter-2.toml.bak @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + #The color of this material. + color = 0xC0C0BE + diff --git a/minecraft/config/config/jaopca/materials/saltpeter-3.toml.bak b/minecraft/config/config/jaopca/materials/saltpeter-3.toml.bak new file mode 100644 index 0000000..4a007b7 --- /dev/null +++ b/minecraft/config/config/jaopca/materials/saltpeter-3.toml.bak @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + #The color of this material. + color = 0xC0C0BE + diff --git a/minecraft/config/config/jaopca/materials/saltpeter.toml b/minecraft/config/config/jaopca/materials/saltpeter.toml new file mode 100644 index 0000000..c475e87 --- /dev/null +++ b/minecraft/config/config/jaopca/materials/saltpeter.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + diff --git a/minecraft/config/config/jaopca/materials/silicon.toml b/minecraft/config/config/jaopca/materials/silicon.toml new file mode 100644 index 0000000..c3570a0 --- /dev/null +++ b/minecraft/config/config/jaopca/materials/silicon.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 10264767 + diff --git a/minecraft/config/config/jaopca/materials/source.toml b/minecraft/config/config/jaopca/materials/source.toml new file mode 100644 index 0000000..25a0ee7 --- /dev/null +++ b/minecraft/config/config/jaopca/materials/source.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + diff --git a/minecraft/config/config/jaopca/materials/steel.toml b/minecraft/config/config/jaopca/materials/steel.toml new file mode 100644 index 0000000..590543b --- /dev/null +++ b/minecraft/config/config/jaopca/materials/steel.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/config/jaopca/materials/sulfur.toml b/minecraft/config/config/jaopca/materials/sulfur.toml new file mode 100644 index 0000000..ba2942d --- /dev/null +++ b/minecraft/config/config/jaopca/materials/sulfur.toml @@ -0,0 +1,21 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + #The color of this material. + color = 12433020 + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + diff --git a/minecraft/config/config/jaopca/materials/terrasteel.toml b/minecraft/config/config/jaopca/materials/terrasteel.toml new file mode 100644 index 0000000..590543b --- /dev/null +++ b/minecraft/config/config/jaopca/materials/terrasteel.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/config/jaopca/materials/tin.toml b/minecraft/config/config/jaopca/materials/tin.toml new file mode 100644 index 0000000..8a6ab52 --- /dev/null +++ b/minecraft/config/config/jaopca/materials/tin.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 12175313 + diff --git a/minecraft/config/config/jaopca/materials/zinc.toml b/minecraft/config/config/jaopca/materials/zinc.toml new file mode 100644 index 0000000..de6d1ac --- /dev/null +++ b/minecraft/config/config/jaopca/materials/zinc.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 8626315 + diff --git a/minecraft/config/config/jaopca/modules/bloodmagic.toml b/minecraft/config/config/jaopca/modules/bloodmagic.toml new file mode 100644 index 0000000..1061dad --- /dev/null +++ b/minecraft/config/config/jaopca/modules/bloodmagic.toml @@ -0,0 +1,5 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + diff --git a/minecraft/config/config/jaopca/modules/bloodmagic_compat.toml b/minecraft/config/config/jaopca/modules/bloodmagic_compat.toml new file mode 100644 index 0000000..ea8fec0 --- /dev/null +++ b/minecraft/config/config/jaopca/modules/bloodmagic_compat.toml @@ -0,0 +1,9 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + +[recipes] + #The materials that should not have ARC to dust recipes added. + toDustMaterialBlacklist = [] + diff --git a/minecraft/config/config/jaopca/modules/create.toml b/minecraft/config/config/jaopca/modules/create.toml new file mode 100644 index 0000000..1061dad --- /dev/null +++ b/minecraft/config/config/jaopca/modules/create.toml @@ -0,0 +1,5 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + diff --git a/minecraft/config/config/jaopca/modules/create_compat.toml b/minecraft/config/config/jaopca/modules/create_compat.toml new file mode 100644 index 0000000..537c2ee --- /dev/null +++ b/minecraft/config/config/jaopca/modules/create_compat.toml @@ -0,0 +1,9 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + +[recipes] + #The materials that should not have pressing to plate recipes added. + toPlateMaterialBlacklist = [] + diff --git a/minecraft/config/config/jaopca/modules/create_non_ingot.toml b/minecraft/config/config/jaopca/modules/create_non_ingot.toml new file mode 100644 index 0000000..1061dad --- /dev/null +++ b/minecraft/config/config/jaopca/modules/create_non_ingot.toml @@ -0,0 +1,5 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + diff --git a/minecraft/config/config/jaopca/modules/custom.toml b/minecraft/config/config/jaopca/modules/custom.toml new file mode 100644 index 0000000..1061dad --- /dev/null +++ b/minecraft/config/config/jaopca/modules/custom.toml @@ -0,0 +1,5 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + diff --git a/minecraft/config/config/jaopca/modules/dusts.toml b/minecraft/config/config/jaopca/modules/dusts.toml new file mode 100644 index 0000000..a1aee27 --- /dev/null +++ b/minecraft/config/config/jaopca/modules/dusts.toml @@ -0,0 +1,7 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + #The materials to force generate passive forms for this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is whitelisted. These rules apply to all config material whitelists. + passiveMaterialWhitelist = [] + diff --git a/minecraft/config/config/jaopca/modules/molten.toml b/minecraft/config/config/jaopca/modules/molten.toml new file mode 100644 index 0000000..a1aee27 --- /dev/null +++ b/minecraft/config/config/jaopca/modules/molten.toml @@ -0,0 +1,7 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + #The materials to force generate passive forms for this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is whitelisted. These rules apply to all config material whitelists. + passiveMaterialWhitelist = [] + diff --git a/minecraft/config/config/jaopca/modules/nuggets.toml b/minecraft/config/config/jaopca/modules/nuggets.toml new file mode 100644 index 0000000..a1aee27 --- /dev/null +++ b/minecraft/config/config/jaopca/modules/nuggets.toml @@ -0,0 +1,7 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + #The materials to force generate passive forms for this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is whitelisted. These rules apply to all config material whitelists. + passiveMaterialWhitelist = [] + diff --git a/minecraft/config/config/jaopca/modules/raw_storage_blocks.toml b/minecraft/config/config/jaopca/modules/raw_storage_blocks.toml new file mode 100644 index 0000000..1061dad --- /dev/null +++ b/minecraft/config/config/jaopca/modules/raw_storage_blocks.toml @@ -0,0 +1,5 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + diff --git a/minecraft/config/config/jaopca/modules/small_dusts.toml b/minecraft/config/config/jaopca/modules/small_dusts.toml new file mode 100644 index 0000000..a1aee27 --- /dev/null +++ b/minecraft/config/config/jaopca/modules/small_dusts.toml @@ -0,0 +1,7 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + #The materials to force generate passive forms for this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is whitelisted. These rules apply to all config material whitelists. + passiveMaterialWhitelist = [] + diff --git a/minecraft/config/config/jaopca/modules/storage_blocks.toml b/minecraft/config/config/jaopca/modules/storage_blocks.toml new file mode 100644 index 0000000..1061dad --- /dev/null +++ b/minecraft/config/config/jaopca/modules/storage_blocks.toml @@ -0,0 +1,5 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + diff --git a/minecraft/config/config/jaopca/modules/tiny_dusts.toml b/minecraft/config/config/jaopca/modules/tiny_dusts.toml new file mode 100644 index 0000000..a1aee27 --- /dev/null +++ b/minecraft/config/config/jaopca/modules/tiny_dusts.toml @@ -0,0 +1,7 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + #The materials to force generate passive forms for this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is whitelisted. These rules apply to all config material whitelists. + passiveMaterialWhitelist = [] + diff --git a/minecraft/config/config/jecalculation/config.toml b/minecraft/config/config/jecalculation/config.toml new file mode 100644 index 0000000..2b135dc --- /dev/null +++ b/minecraft/config/config/jecalculation/config.toml @@ -0,0 +1,4 @@ + +[General] + clientMode = false + diff --git a/minecraft/config/config/jecalculation/record.json b/minecraft/config/config/jecalculation/record.json new file mode 100644 index 0000000..c837c3b --- /dev/null +++ b/minecraft/config/config/jecalculation/record.json @@ -0,0 +1,22 @@ +{ + "craft": { + "mode": "input", + "overlayPositionX": 0, + "amount": "", + "overlayDepth": 0, + "overlayOpen": 0b, + "recents": [], + "inventory": 0b, + "overlayPositionY": 0 + }, + "math": { + "current": "", + "last": "0", + "state": 0, + "operator": 0 + }, + "player": { + "recipes": {}, + "last": "" + } +} diff --git a/minecraft/config/config/jeed-client.toml b/minecraft/config/config/jeed-client.toml new file mode 100644 index 0000000..7b26073 --- /dev/null +++ b/minecraft/config/config/jeed-client.toml @@ -0,0 +1,13 @@ +#Show effect colors in tooltip +effect_color = true +#Draw a black box behind effect icons +effect_box = true +#A list of effects that should not be registered nor shown in JEI/REI. You can also use the 'hidden' mob_effect tag +hidden_effects = [""] +#Show ingredients list along with an effect description +ingredients_list = true +#Renders individual slots instead of a big one. Only works for REI +render_slots = false +#Removes vanilla tooltips rendered when an effect renders small (square box) +replace_vanilla_tooltips = true + diff --git a/minecraft/config/config/jei/blacklist.cfg b/minecraft/config/config/jei/blacklist.cfg new file mode 100644 index 0000000..e69de29 diff --git a/minecraft/config/config/jei/ingredient-list-mod-sort-order.ini b/minecraft/config/config/jei/ingredient-list-mod-sort-order.ini new file mode 100644 index 0000000..32becb3 --- /dev/null +++ b/minecraft/config/config/jei/ingredient-list-mod-sort-order.ini @@ -0,0 +1,45 @@ +Minecraft +Advanced Peripherals +Apotheosis +Apothic Attributes +Ars Nouveau +Biomes O' Plenty +Blood Magic +Botania +CC: Tweaked +Chance Cubes +Create +Create Big Cannons +Create Deco +Create Ore Excavation +Create Stuff & Additions +Create: Central Kitchen +Create: Copycats+ +Create: Steam 'n' Rails +Create: The Factory Must Grow +DarkUtilities +FTB Filter System +FTB Quests +Forestry +Gendustry +JAOPCA +Just Enough Calculation +KubeJS +Mo' Bees +Ore Creeper +Pam's HarvestCraft 2 - Crops +Pam's HarvestCraft 2 - Food Core +Pam's HarvestCraft 2 - Food Extended +Pam's HarvestCraft 2 - Trees +Patchouli +RFToolsBase +RFToolsDimensions +RFToolsPower +RFToolsUtility +Runelic +Supplementaries +Supplementaries Squared +Tom's Simple Storage Mod +Tome of Blood: Rebirth +Xaero's Minimap +Xaero's World Map diff --git a/minecraft/config/config/jei/ingredient-list-type-sort-order.ini b/minecraft/config/config/jei/ingredient-list-type-sort-order.ini new file mode 100644 index 0000000..f1cb2cb --- /dev/null +++ b/minecraft/config/config/jei/ingredient-list-type-sort-order.ini @@ -0,0 +1,4 @@ +net.minecraft.world.item.ItemStack +com.tom.createores.recipe.VeinRecipe +net.minecraft.world.effect.MobEffectInstance +net.minecraftforge.fluids.FluidStack diff --git a/minecraft/config/config/jei/jei-client.ini b/minecraft/config/config/jei/jei-client.ini new file mode 100644 index 0000000..31c3694 --- /dev/null +++ b/minecraft/config/config/jei/jei-client.ini @@ -0,0 +1,260 @@ +[appearance] + # Description: Move the JEI search bar to the bottom center of the screen. + # Valid Values: [true, false] + # Default Value: false + CenterSearch = false + + # Description: Max recipe GUI height. + # Valid Values: Any integer greater than or equal to 175 + # Default Value: 350 + RecipeGuiHeight = 350 + + +[cheat_mode] + # Description: Choose if JEI should give ingredients directly to the inventory or pick them up with the mouse. + # Valid Values: [INVENTORY, MOUSE_PICKUP] + # Default Value: MOUSE_PICKUP + GiveMode = MOUSE_PICKUP + + # Description: Enable cheating items into the hotbar by using Shift + numeric keys. + # Valid Values: [true, false] + # Default Value: false + CheatToHotbarUsingHotkeysEnabled = false + + # Description: Enable showing items that are not in the creative menu. + # Valid Values: [true, false] + # Default Value: false + ShowHiddenItems = false + + +[bookmarks] + # Description: Add new bookmarks to the front of the bookmark list instead of the end. + # Valid Values: [true, false] + # Default Value: false + AddBookmarksToFrontEnabled = false + + # Description: Extra features for bookmark tooltips. + # Valid Values: A comma-separated list containing values of: + # [PREVIEW, INGREDIENTS] + # Default Value: PREVIEW + BookmarkTooltipFeatures = PREVIEW + + # Description: Hold Shift to show bookmark tooltip features. + # Valid Values: [true, false] + # Default Value: true + HoldShiftToShowBookmarkTooltipFeatures = true + + # Description: Drag bookmarks to rearrange them in the list. + # Valid Values: [true, false] + # Default Value: true + DragToRearrangeBookmarksEnabled = true + + +[lookupHistory] + # Description: Display or hide the lookup history overlay. + # Valid Values: [true, false] + # Default Value: false + Enabled = false + + # Description: Max number of rows to display in the lookup history overlay. + # Valid Values: An integer in the range [1, 7] (inclusive) + # Default Value: 2 + MaxRows = 2 + + # Description: Max number of lookup history ingredients to save. + # Valid Values: An integer in the range [10, 1000] (inclusive) + # Default Value: 100 + MaxIngredients = 100 + + # Description: Side of the screen to display the lookup history overlay. + # Valid Values: [LEFT, RIGHT] + # Default Value: LEFT + DisplaySide = LEFT + + +[advanced] + # Description: Set low-memory mode (makes search very slow but uses less RAM). + # Valid Values: [true, false] + # Default Value: false + LowMemorySlowSearchEnabled = false + + # Description: Catch render errors from ingredients and attempt to recover from them instead of crashing. + # Valid Values: [true, false] + # Default Value: true + CatchRenderErrorsEnabled = true + + # Description: When looking up recipes with items that contain fluids, also look up recipes for the fluids. + # Valid Values: [true, false] + # Default Value: false + lookupFluidContentsEnabled = false + + # Description: When searching for item tags, also include tags for the default blocks contained in the items. + # Valid Values: [true, false] + # Default Value: true + lookupBlockTagsEnabled = true + + # Description: Show recipes for ingredient tags like item tags and block tags. + # Valid Values: [true, false] + # Default Value: false + showTagRecipesEnabled = false + + # Description: Show creative tab names in ingredient tooltips. + # Valid Values: [true, false] + # Default Value: false + showCreativeTabNamesEnabled = false + + +[input] + # Description: Number of milliseconds before a long mouse click is considered a drag operation. + # Valid Values: An integer in the range [0, 1000] (inclusive) + # Default Value: 150 + dragDelayInMilliseconds = 150 + + # Description: Scroll rate for scrolling the mouse wheel in smooth-scrolling scroll boxes. Measured in pixels. + # Valid Values: An integer in the range [1, 50] (inclusive) + # Default Value: 9 + smoothScrollRate = 9 + + +[sorting] + # Description: Sorting order for the ingredient list. + # Valid Values: A comma-separated list containing values of: + # [MOD_NAME, INGREDIENT_TYPE, ALPHABETICAL, CREATIVE_MENU, TAG, ARMOR, MAX_DURABILITY] + # Default Value: MOD_NAME, INGREDIENT_TYPE, CREATIVE_MENU + IngredientSortStages = MOD_NAME, INGREDIENT_TYPE, CREATIVE_MENU + + # Description: Sorting order for displayed recipes. + # Valid Values: A comma-separated list containing values of: + # [BOOKMARKED, CRAFTABLE] + # Default Value: BOOKMARKED, CRAFTABLE + RecipeSorterStages = BOOKMARKED, CRAFTABLE + + +[tags] + # Description: Show tag content in tooltips. + # Valid Values: [true, false] + # Default Value: true + TagContentTooltipEnabled = true + + # Description: Hide tags that only have 1 ingredient. + # Valid Values: [true, false] + # Default Value: true + HideSingleIngredientTagsEnabled = true + + +[search] + # Description: Search mode for mod names (prefix: @). + # Valid Values: [ENABLED, REQUIRE_PREFIX, DISABLED] + # Default Value: REQUIRE_PREFIX + ModNameSearchMode = REQUIRE_PREFIX + + # Description: Search mode for tooltips (prefix: #). + # Valid Values: [ENABLED, REQUIRE_PREFIX, DISABLED] + # Default Value: ENABLED + TooltipSearchMode = ENABLED + + # Description: Search mode for tags (prefix: $). + # Valid Values: [ENABLED, REQUIRE_PREFIX, DISABLED] + # Default Value: REQUIRE_PREFIX + TagSearchMode = REQUIRE_PREFIX + + # Description: Search mode for colors (prefix: ^). + # Valid Values: [ENABLED, REQUIRE_PREFIX, DISABLED] + # Default Value: DISABLED + ColorSearchMode = DISABLED + + # Description: Search mode for resource locations (prefix: &). + # Valid Values: [ENABLED, REQUIRE_PREFIX, DISABLED] + # Default Value: DISABLED + ResourceLocationSearchMode = DISABLED + + # Description: Search mode for creative mode tab names (prefix: %). + # Valid Values: [ENABLED, REQUIRE_PREFIX, DISABLED] + # Default Value: DISABLED + CreativeTabSearchMode = DISABLED + + # Description: Search in advanced tooltips (visible with F3 + H). + # Valid Values: [true, false] + # Default Value: false + SearchAdvancedTooltips = false + + # Description: Search mod IDs in addition to mod names. + # Valid Values: [true, false] + # Default Value: true + SearchModIds = true + + # Description: Search by the shorthand first letters of a mod's name. + # Valid Values: [true, false] + # Default Value: true + SearchShortModNames = true + + # Description: Search ingredient aliases (alternative names) that are added by plugins, in addition to ingredient names. + # Valid Values: [true, false] + # Default Value: true + SearchIngredientAliases = true + + +[IngredientList] + # Description: Max number of rows shown. + # Valid Values: An integer in the range [1, 100] (inclusive) + # Default Value: 16 + MaxRows = 16 + + # Description: Max number of columns shown. + # Valid Values: An integer in the range [4, 100] (inclusive) + # Default Value: 9 + MaxColumns = 9 + + # Description: Horizontal alignment of the ingredient grid inside the available area. + # Valid Values: [LEFT, CENTER, RIGHT] + # Default Value: RIGHT + HorizontalAlignment = RIGHT + + # Description: Vertical alignment of the ingredient grid inside the available area. + # Valid Values: [TOP, CENTER, BOTTOM] + # Default Value: TOP + VerticalAlignment = TOP + + # Description: Visibility of the top page buttons. Use AUTO_HIDE to only show it when there are multiple pages. + # Valid Values: [ENABLED, AUTO_HIDE, DISABLED] + # Default Value: ENABLED + ButtonNavigationVisibility = ENABLED + + # Description: Enable this to draw a background texture behind the GUI. + # Valid Values: [true, false] + # Default Value: false + DrawBackground = false + + +[BookmarkList] + # Description: Max number of rows shown. + # Valid Values: An integer in the range [1, 100] (inclusive) + # Default Value: 16 + MaxRows = 16 + + # Description: Max number of columns shown. + # Valid Values: An integer in the range [4, 100] (inclusive) + # Default Value: 9 + MaxColumns = 9 + + # Description: Horizontal alignment of the ingredient grid inside the available area. + # Valid Values: [LEFT, CENTER, RIGHT] + # Default Value: LEFT + HorizontalAlignment = LEFT + + # Description: Vertical alignment of the ingredient grid inside the available area. + # Valid Values: [TOP, CENTER, BOTTOM] + # Default Value: TOP + VerticalAlignment = TOP + + # Description: Visibility of the top page buttons. Use AUTO_HIDE to only show it when there are multiple pages. + # Valid Values: [ENABLED, AUTO_HIDE, DISABLED] + # Default Value: ENABLED + ButtonNavigationVisibility = ENABLED + + # Description: Enable this to draw a background texture behind the GUI. + # Valid Values: [true, false] + # Default Value: false + DrawBackground = false + + diff --git a/minecraft/config/config/jei/jei-colors.ini b/minecraft/config/config/jei/jei-colors.ini new file mode 100644 index 0000000..a0ce6e5 --- /dev/null +++ b/minecraft/config/config/jei/jei-colors.ini @@ -0,0 +1,8 @@ +[colors] + # Description: Color values to search for. + # Valid Values: A comma-separated list containing values of: + # Any color name and an RGB hex color, separated by a ':' + # Default Value: White:EEEEEE, LightBlue:7492CC, Cyan:00EEEE, Blue:2222DD, LapisBlue:25418B, Teal:008080, Yellow:CACB58, GoldenYellow:EED700, Orange:D97634, Pink:D1899D, HotPink:FC0FC0, Magenta:B24BBB, Purple:813EB9, EvilPurple:2E1649, Lavender:B57EDC, Indigo:480082, Sand:DBD3A0, Tan:BB9B63, LightBrown:A0522D, Brown:634B33, DarkBrown:3A2D13, LimeGreen:43B239, SlimeGreen:83CB73, Green:008000, DarkGreen:224D22, GrassGreen:548049, Red:963430, BrickRed:B0604B, NetherBrick:2A1516, Redstone:CE3E36, Black:181515, CharcoalGray:464646, IronGray:646464, Gray:808080, Silver:C0C0C0 + SearchColors = White:EEEEEE, LightBlue:7492CC, Cyan:00EEEE, Blue:2222DD, LapisBlue:25418B, Teal:008080, Yellow:CACB58, GoldenYellow:EED700, Orange:D97634, Pink:D1899D, HotPink:FC0FC0, Magenta:B24BBB, Purple:813EB9, EvilPurple:2E1649, Lavender:B57EDC, Indigo:480082, Sand:DBD3A0, Tan:BB9B63, LightBrown:A0522D, Brown:634B33, DarkBrown:3A2D13, LimeGreen:43B239, SlimeGreen:83CB73, Green:008000, DarkGreen:224D22, GrassGreen:548049, Red:963430, BrickRed:B0604B, NetherBrick:2A1516, Redstone:CE3E36, Black:181515, CharcoalGray:464646, IronGray:646464, Gray:808080, Silver:C0C0C0 + + diff --git a/minecraft/config/config/jei/jei-debug.ini b/minecraft/config/config/jei/jei-debug.ini new file mode 100644 index 0000000..a13e270 --- /dev/null +++ b/minecraft/config/config/jei/jei-debug.ini @@ -0,0 +1,32 @@ +[debug] + # Description: Debug mode enabled. + # Valid Values: [true, false] + # Default Value: false + DebugMode = false + + # Description: Debug GUIs enabled. + # Valid Values: [true, false] + # Default Value: false + DebugGuis = false + + # Description: Debug inputs enabled. + # Valid Values: [true, false] + # Default Value: false + DebugInputs = false + + # Description: Add debug information to ingredient tooltips when advanced tooltips are enabled. + # Valid Values: [true, false] + # Default Value: false + debugInfoTooltipsEnabled = false + + # Description: Adds ingredients to JEI that intentionally crash, to help debug JEI. + # Valid Values: [true, false] + # Default Value: false + CrashingTestItemsEnabled = false + + # Description: Log information about the suffix trees used for searching, to help debug JEI. + # Valid Values: [true, false] + # Default Value: false + logSuffixTreeStats = false + + diff --git a/minecraft/config/config/jei/jei-mod-id-format.ini b/minecraft/config/config/jei/jei-mod-id-format.ini new file mode 100644 index 0000000..11464f2 --- /dev/null +++ b/minecraft/config/config/jei/jei-mod-id-format.ini @@ -0,0 +1,11 @@ +[modname] + # Description: Formatting for the mod names in tooltips for JEI GUIs. Leave blank to disable. + # Valid Values: A chat formatting string. + # Use these formatting colors: + # black dark_blue dark_green dark_aqua dark_red dark_purple gold gray dark_gray blue green aqua red light_purple yellow white + # With these formatting options: + # obfuscated bold strikethrough underline italic + # Default Value: blue italic + ModNameFormat = blue italic + + diff --git a/minecraft/config/config/jei/recipe-category-sort-order.ini b/minecraft/config/config/jei/recipe-category-sort-order.ini new file mode 100644 index 0000000..f10099b --- /dev/null +++ b/minecraft/config/config/jei/recipe-category-sort-order.ini @@ -0,0 +1,103 @@ +minecraft:crafting +minecraft:anvil +minecraft:blasting +minecraft:brewing +minecraft:campfire +minecraft:compostable +minecraft:fuel +minecraft:furnace +minecraft:smithing +minecraft:smoking +minecraft:stonecutting +apotheosis:enchanting +apotheosis:fletching +apotheosis:gem_cutting +apotheosis:salvaging +apotheosis:smithing +apotheosis:spawner_modifiers +ars_nouveau:armor_upgrade +ars_nouveau:budding_conversion +ars_nouveau:crush +ars_nouveau:enchanting_apparatus +ars_nouveau:enchantment_apparatus +ars_nouveau:glyph_recipe +ars_nouveau:imbuement +ars_nouveau:scry_ritual +bloodmagic:alchemyarray +bloodmagic:alchemytable +bloodmagic:altar +bloodmagic:arc +bloodmagic:arcfurnace +bloodmagic:potion +bloodmagic:soulforge +create:automatic_brewing +create:automatic_packing +create:automatic_shaped +create:automatic_shapeless +create:block_cutting +create:crushing +create:deploying +create:draining +create:fan_blasting +create:fan_haunting +create:fan_smoking +create:fan_washing +create:item_application +create:mechanical_crafting +create:milling +create:mixing +create:mystery_conversion +create:packing +create:pressing +create:sandpaper_polishing +create:sawing +create:sequenced_assembly +create:spout_filling +createbigcannons:built_up_heating +createbigcannons:cannon_casting +createbigcannons:drill_boring +createbigcannons:incomplete_cannon_blocks +createbigcannons:melting +createoreexcavation:drilling +createoreexcavation:extractor +createoreexcavation:veins +forestry:bee_species_mutations +forestry:bee_species_products +forestry:butterfly_species_mutations +forestry:carpenter +forestry:centrifuge +forestry:charcoal.pile +forestry:fabricator +forestry:farming +forestry:fermenter +forestry:moistener +forestry:rainmaker +forestry:squeezer +forestry:still +forestry:tree_species_mutations +forestry:tree_species_products +gendustry:dna_extractor +gendustry:mutagen_producer +gendustry:protein_liquefier +jei:information +jeresources:dungeon +jeresources:enchantment +jeresources:mob +jeresources:plant +jeresources:villager +jeresources:worldgen +just_enough_beacons:beacon_base_block +just_enough_beacons:beacon_payment +just_enough_beacons:conduit_frame_block +justenoughprofessions:professions +tfmg:advanced_distillation +tfmg:casting +tfmg:chemical_vat +tfmg:coking +tfmg:hot_blast +tfmg:industrial_blasting +tfmg:polarizing +tfmg:winding +ftbquests:loot_crate +ftbquests:quest +tombstone:combine diff --git a/minecraft/config/config/jei/world/local/New_World__2/bookmarks.ini b/minecraft/config/config/jei/world/local/New_World__2/bookmarks.ini new file mode 100644 index 0000000..920e6d4 --- /dev/null +++ b/minecraft/config/config/jei/world/local/New_World__2/bookmarks.ini @@ -0,0 +1 @@ +T:{Count:1b,id:"kubejs:hothotgrapincoo"} diff --git a/minecraft/config/config/jei/world/local/New_World__2/lookupHistory.ini b/minecraft/config/config/jei/world/local/New_World__2/lookupHistory.ini new file mode 100644 index 0000000..d3392c2 --- /dev/null +++ b/minecraft/config/config/jei/world/local/New_World__2/lookupHistory.ini @@ -0,0 +1,4 @@ +T:{Count:1b,id:"kubejs:hothotgrapincoo"} +T:{Count:1b,id:"kubejs:graeldcracracrabanbar"} +T:{Count:1b,id:"kubejs:barbeljuteldmul"} +T:{Count:1b,id:"kubejs:belcaucelchichicofcorcotcra"} diff --git a/minecraft/config/config/jeresources-common.toml b/minecraft/config/config/jeresources-common.toml new file mode 100644 index 0000000..0dd954f --- /dev/null +++ b/minecraft/config/config/jeresources-common.toml @@ -0,0 +1,11 @@ +#Range: 1 ~ 4 +itemsPerColumn = 4 +#Range: 1 ~ 4 +itemsPerRow = 4 +diyData = true +showDevData = false +enchantsBlacklist = ["flimflam", "soulBound"] +hiddenTabs = [] +dimensionsBlacklist = [-11] +disableLootManagerReloading = false + diff --git a/minecraft/config/config/jeresources.toml b/minecraft/config/config/jeresources.toml new file mode 100644 index 0000000..a4f9f5b --- /dev/null +++ b/minecraft/config/config/jeresources.toml @@ -0,0 +1,11 @@ +disableLootManagerReloading = false +hiddenTabs = [] +#Range: 1 ~ 4 +itemsPerRow = 4 +enchantsBlacklist = ["flimflam", "soulBound"] +showDevData = false +dimensionsBlacklist = [-11] +diyData = true +#Range: 1 ~ 4 +itemsPerColumn = 4 + diff --git a/minecraft/config/config/loooxbotania-common.toml b/minecraft/config/config/loooxbotania-common.toml new file mode 100644 index 0000000..6a3856e --- /dev/null +++ b/minecraft/config/config/loooxbotania-common.toml @@ -0,0 +1,4 @@ +#Mana Pool +#Range: > 1000000 +maxMana = 1000000000 + diff --git a/minecraft/config/config/mcjtylib-client.toml b/minecraft/config/config/mcjtylib-client.toml new file mode 100644 index 0000000..1f8f6c8 --- /dev/null +++ b/minecraft/config/config/mcjtylib-client.toml @@ -0,0 +1,144 @@ + +#Style settings for all mods using mcjtylib +[style] + #Color: slider top left border + colorSliderTopLeft = "2b2b2b" + #Color: slider bottom right border + colorSliderBottomRight = "ffffff" + #Color: slider background + colorSliderFiller = "636363" + #Color: slider knob top left border + colorSliderKnobTopLeft = "eeeeee" + #Color: slider knob bottom right border + colorSliderKnobBottomRight = "333333" + #Color: slider knob background + colorSliderKnobFiller = "8b8b8b" + #Color: slider knob top left border while dragging + colorSliderKnobDraggingTopLeft = "5c669d" + #Color: slider knob bottom right border while dragging + colorSliderKnobDraggingBottomRight = "bcc5ff" + #Color: slider knob background while dragging + colorSliderKnobDraggingFiller = "7f89bf" + #Color: slider knob top left border while hovering + colorSliderKnobHoveringTopLeft = "a5aac5" + #Color: slider knob bottom right border while hovering + colorSliderKnobHoveringBottomRight = "777c99" + #Color: slider knob background while hovering + colorSliderKnobHoveringFiller = "858aa5" + #Color: slider knob little marker lines + colorSliderKnobMarkerLine = "4e4e4e" + #Color: text normal + colorTextNormal = "303030" + #Color: text as used in lists + colorTextInListNormal = "151515" + #Color: text disabled + colorTextDisabled = "a0a0a0" + #Color: textfield top left border + colorTextFieldTopLeft = "2b2b2b" + #Color: textfield bottom right border + colorTextFieldBottomRight = "ffffff" + #Color: textfield background + colorTextFieldFiller = "c6c6c6" + #Color: textfield backbground while focused + colorTextFieldFocusedFiller = "eeeeee" + #Color: textfield backbground while hovering + colorTextFieldHoveringFiller = "dadada" + #Color: textfield cursor + colorTextFieldCursor = "0" + #Color: energy bar top left border + colorEnergyBarTopLeft = "2b2b2b" + #Color: energy bar bottom right border + colorEnergyBarBottomRight = "ffffff" + #Color: energy bar high energy level + colorEnergyBarHighEnergy = "dd0000" + #Color: energy bar low energy level + colorEnergyBarLowEnergy = "631111" + #Color: energy bar spacer (between every energy level bar) + colorEnergyBarSpacer = "430000" + #Color: energy bar text + colorEnergyBarText = "ffffff" + #Color: list background + colorListBackground = "8b8b8b" + #Color: list separator line + colorListSeparatorLine = "5c5c5c" + #Color: list selected and highlighted gradient + colorListSelectedHighlightedGradient1 = "bbbb00" + #Color: list selected and highlighted gradient + colorListSelectedHighlightedGradient2 = "999900" + #Color: list selected gradient + colorListSelectedGradient1 = "616161" + #Color: list selected gradient + colorListSelectedGradient2 = "414141" + #Color: list highlighted gradient + colorListHighlightedGradient1 = "717120" + #Color: list highlighted gradient + colorListHighlightedGradient2 = "515110" + #Color: standard bevel bright border color + colorBackgroundBevelBright = "ffffff" + #Color: standard bevel dark border color + colorBackgroundBevelDark = "2b2b2b" + #Color: standard background color + colorBackgroundFiller = "c6c6c6" + #Color: toggle button normal top left border + colorToggleNormalBorderTopLeft = "eeeeee" + #Color: toggle button normal bottom right border + colorToggleNormalBorderBottomRight = "777777" + #Color: toggle button normal background + colorToggleNormalFiller = "c6c6c6" + #Color: toggle button disabled top left border + colorToggleDisabledBorderTopLeft = "eeeeee" + #Color: toggle button disabled bottom right border + colorToggleDisabledBorderBottomRight = "777777" + #Color: toggle button disabled background + colorToggleDisabledFiller = "c6c6c6" + #Color: toggle button normal text + colorToggleTextNormal = "303030" + #Color: toggle button disabled text + colorToggleTextDisabled = "a0a0a0" + #Color: cycle button small triangle + colorCycleButtonTriangleNormal = "0" + #Color: cycle button disabled small triangle + colorCycleButtonTriangleDisabled = "888888" + #Color: external border around buttons and some other components + colorButtonExternalBorder = "0" + #Color: button top left border + colorButtonBorderTopLeft = "eeeeee" + #Color: button bottom right border + colorButtonBorderBottomRight = "777777" + #Color: button background + colorButtonFiller = "c6c6c6" + #Color: button background gradient + colorButtonFillerGradient1 = "b1b1b1" + #Color: button background gradient + colorButtonFillerGradient2 = "e1e1e1" + #Color: disabled button top left border + colorButtonDisabledBorderTopLeft = "eeeeee" + #Color: disabled button bottom right border + colorButtonDisabledBorderBottomRight = "777777" + #Color: disabled button background + colorButtonDisabledFiller = "c6c6c6" + #Color: disabled button background gradient + colorButtonDisabledFillerGradient1 = "b1b1b1" + #Color: disabled button background gradient + colorButtonDisabledFillerGradient2 = "e1e1e1" + #Color: selected button top left border + colorButtonSelectedBorderTopLeft = "5c669d" + #Color: selected button bottom right border + colorButtonSelectedBorderBottomRight = "bcc5ff" + #Color: selected button background + colorButtonSelectedFiller = "7f89bf" + #Color: selected button background gradient + colorButtonSelectedFillerGradient1 = "6a74aa" + #Color: selected button background gradient + colorButtonSelectedFillerGradient2 = "949ed4" + #Color: hovering button top left border + colorButtonHoveringBorderTopLeft = "a5aac5" + #Color: hovering button bottom right border + colorButtonHoveringBorderBottomRight = "999ebb" + #Color: hovering button background + colorButtonHoveringFiller = "a2a7c2" + #Color: hovering button background gradient + colorButtonHoveringFillerGradient1 = "8d92ad" + #Color: hovering button background gradient + colorButtonHoveringFillerGradient2 = "babfda" + diff --git a/minecraft/config/config/modernfix-common.toml b/minecraft/config/config/modernfix-common.toml new file mode 100644 index 0000000..41413ef --- /dev/null +++ b/minecraft/config/config/modernfix-common.toml @@ -0,0 +1,3 @@ +#These JEI plugins will be loaded on the main thread +blacklist_async_jei_plugins = ["jepb:jei_plugin"] + diff --git a/minecraft/config/config/modernfix-mixins.properties b/minecraft/config/config/modernfix-mixins.properties new file mode 100644 index 0000000..480b38e --- /dev/null +++ b/minecraft/config/config/modernfix-mixins.properties @@ -0,0 +1,111 @@ +# This is the configuration file for ModernFix. +# In general, prefer using the config screen to editing this file. It can be accessed +# via the standard mod menu on your respective mod loader. Changes will, however, +# require restarting the game to take effect. +# +# The following options can be enabled or disabled if there is a compatibility issue. +# Add a line with your option name and =true or =false at the bottom of the file to enable +# or disable a rule. For example: +# mixin.perf.dynamic_resources=true +# Do not include the #. You may reset to defaults by deleting this file. +# +# Available options: +# mixin.bugfix.buffer_builder_leak=true # (default) +# mixin.bugfix.chunk_deadlock=true # (default) +# mixin.bugfix.cofh_core_crash=true # (default) +# mixin.bugfix.concurrency=true # (default) +# mixin.bugfix.ctm_resourceutil_cme=true # (default) +# mixin.bugfix.ender_dragon_leak=true # (default) +# mixin.bugfix.entity_pose_stack=true # (default) +# mixin.bugfix.extra_experimental_screen=true # (default) +# mixin.bugfix.fix_config_crashes=true # (default) +# mixin.bugfix.forge_at_inject_error=true # (default) +# mixin.bugfix.forge_vehicle_packets=true # (default) +# mixin.bugfix.missing_block_entities=false # (default) +# mixin.bugfix.model_data_manager_cme=true # (default) +# mixin.bugfix.packet_leak=false # (default) +# mixin.bugfix.paper_chunk_patches=true # (default) +# mixin.bugfix.recipe_book_type_desync=true # (default) +# mixin.bugfix.registry_ops_cme=true # (default) +# mixin.bugfix.removed_dimensions=true # (default) +# mixin.bugfix.restore_old_dragon_movement=false # (default) +# mixin.bugfix.unsafe_modded_shape_caches=true # (default) +# mixin.bugfix.world_leaks=true # (default) +# mixin.bugfix.world_screen_skipped=true # (default) +# mixin.devenv=false # (default) +# mixin.feature.blockentity_incorrect_thread=false # (default) +# mixin.feature.branding=true # (default) +# mixin.feature.cause_lag_by_disabling_threads=false # (default) +# mixin.feature.direct_stack_trace=false # (default) +# mixin.feature.disable_unihex_font=false # (default) +# mixin.feature.integrated_server_watchdog=true # (default) +# mixin.feature.log_stdout_in_log_files=true # (default) +# mixin.feature.mcfunction_profiling=true # (default) +# mixin.feature.measure_time=true # (default) +# mixin.feature.registry_event_progress=false # (default) +# mixin.feature.remove_chat_signing=false # (default) +# mixin.feature.remove_telemetry=true # (default) +# mixin.feature.snapshot_easter_egg=true # (default) +# mixin.feature.spam_thread_dump=false # (default) +# mixin.feature.spark_profile_launch=false # (default) +# mixin.feature.spark_profile_world_join=false # (default) +# mixin.feature.stalled_chunk_load_detection=false # (default) +# mixin.feature.suppress_narrator_stacktrace=true # (default) +# mixin.feature.warn_missing_perf_mods=true # (default) +# mixin.launch.class_search_cache=true # (default) +# mixin.perf.blast_search_trees=true # (default) +# mixin.perf.blast_search_trees.force=false # (default) +# mixin.perf.cache_blockstate_cache_arrays=true # (default) +# mixin.perf.cache_model_materials=true # (default) +# mixin.perf.cache_profile_texture_url=true # (default) +# mixin.perf.cache_strongholds=true # (default) +# mixin.perf.cache_upgraded_structures=true # (default) +# mixin.perf.chunk_meshing=true # (default) +# mixin.perf.clear_mixin_classinfo=false # (default) +# mixin.perf.compact_bit_storage=true # (default) +# mixin.perf.compact_mojang_registries=true # (default) +# mixin.perf.compress_unihex_font=true # (default) +# mixin.perf.datapack_reload_exceptions=true # (default) +# mixin.perf.dedicated_reload_executor=true # (default) +# mixin.perf.deduplicate_climate_parameters=false # (default) +# mixin.perf.deduplicate_location=false # (default) +# mixin.perf.deduplicate_wall_shapes=true # (default) +# mixin.perf.dynamic_dfu=true # (default) +# mixin.perf.dynamic_entity_renderers=false # (default) +# mixin.perf.dynamic_resources=false # (default) +# mixin.perf.dynamic_resources.ctm=true # (default) +# mixin.perf.dynamic_resources.ldlib=true # (default) +# mixin.perf.dynamic_resources.supermartijncore=true # (default) +# mixin.perf.dynamic_structure_manager=true # (default) +# mixin.perf.fast_forge_dummies=true # (default) +# mixin.perf.fast_registry_validation=true # (default) +# mixin.perf.faster_ingredients=true # (default) +# mixin.perf.faster_item_rendering=false # (default) +# mixin.perf.faster_structure_location=true # (default) +# mixin.perf.faster_texture_stitching=true # (default) +# mixin.perf.fix_loop_spin_waiting=true # (default) +# mixin.perf.forge_cap_retrieval=true # (default) +# mixin.perf.forge_registry_alloc=true # (default) +# mixin.perf.forge_registry_lambda=true # (default) +# mixin.perf.ingredient_item_deduplication=false # (default) +# mixin.perf.kubejs=true # (default) +# mixin.perf.lazy_search_tree_registry=true # (default) +# mixin.perf.memoize_creative_tab_build=true # (default) +# mixin.perf.model_optimizations=true # (default) +# mixin.perf.mojang_registry_size=true # (default) +# mixin.perf.patchouli_deduplicate_books=true # (default) +# mixin.perf.potential_spawns_alloc=true # (default) +# mixin.perf.reduce_blockstate_cache_rebuilds=true # (default) +# mixin.perf.remove_biome_temperature_cache=true # (default) +# mixin.perf.remove_spawn_chunks=false # (default) +# mixin.perf.resourcefullib_highlight_deduplication=true # (default) +# mixin.perf.resourcepacks=true # (default) +# mixin.perf.smart_ingredient_sync=true # (default) +# mixin.perf.state_definition_construct=true # (default) +# mixin.perf.tag_id_caching=true # (default) +# mixin.perf.thread_priorities=true # (default) +# mixin.perf.ticking_chunk_alloc=true # (default) +# mixin.perf.worldgen_allocation=true # (default) +# mixin.safety=true # (default) +# +# User overrides go here. diff --git a/minecraft/config/config/moonlight-client.toml b/minecraft/config/config/moonlight-client.toml new file mode 100644 index 0000000..4653f82 --- /dev/null +++ b/minecraft/config/config/moonlight-client.toml @@ -0,0 +1,13 @@ + +[general] + #Merge all dynamic resource packs from all mods that use this library into a single pack + merge_dynamic_resource_packs = true + #Prevents map texture from being upladed to GPU when only map markers have changed.Could increase performance + lazy_map_upload = true + #Renders map textures using mipmap. Vastly improves look from afar as well when inside a Map Atlas from Map Atlases or similar. Set to 0 to have no mipmap like vanilla + #Range: 0 ~ 4 + maps_mipmap = 3 + #Fix minecraft entity shading to be exactly the same that blocks use. (1 for up,0.8 for north, 0.6 for west and 0.5 for down).This means that if you have a model and render it with a tile renderer or entity it will appear identical as one rendered via baked models.Using no gui will prevent it from changing item rendered in GUIs, in case you dont like that look.Note there is a known compat issue with Figura mod. Keep this True or False with that one + #Allowed Values: FALSE, NO_GUI, TRUE + consistent_entity_renderer_shading = "NO_GUI" + diff --git a/minecraft/config/config/moonlight-common.toml b/minecraft/config/config/moonlight-common.toml new file mode 100644 index 0000000..0dbf52d --- /dev/null +++ b/minecraft/config/config/moonlight-common.toml @@ -0,0 +1,9 @@ + +[general] + #Clears dynamic models and textures from the mod dynamic pack once resource reload is done. This can save up some RAM. Turning off if you notice inconsistencies with pack loading + clear_dynamic_resources = false + #ONLY for debugging purpose. Turns one some debug functionality like more logging or blocktypes_debug.txt, the file can be found in ~/.minecraft/debug/dynamic_registry_dump... + extra_debug = false + #Enable this will list each BlockTypes' Children. The List of BlockTypes' children will be also in the same file via EXTRA_DEBUG. NOTE: To enable this, EXTRA_DEBUG must be enabled, too. + extra_children_debug = false + diff --git a/minecraft/config/config/ore-creeper-base.toml b/minecraft/config/config/ore-creeper-base.toml new file mode 100644 index 0000000..4d7e3f3 --- /dev/null +++ b/minecraft/config/config/ore-creeper-base.toml @@ -0,0 +1,68 @@ + +[General] + #Range: 0.0 ~ 100.0 + "explosion radius" = 4.0 + +["Spawn Chances"] + + #Configure Mob spawn weight & min/max group size. Set weight to 0 to disable. + ["Spawn Chances"."Coal Creeper"] + #Range: 0.0 ~ 100.0 + "explosion radius" = 3.75 + #Range: -64 ~ 320 + "max spawn Y level" = 320 + + ["Spawn Chances"."Copper Creeper"] + #Range: 0.0 ~ 100.0 + "explosion radius" = 3.75 + #Range: -64 ~ 320 + "max spawn Y level" = 320 + + ["Spawn Chances"."Diamond Creeper"] + #Range: 0.0 ~ 100.0 + "explosion radius" = 3.75 + #Range: -64 ~ 320 + "max spawn Y level" = 320 + + ["Spawn Chances"."Emerald Creeper"] + #Range: 0.0 ~ 100.0 + "explosion radius" = 3.75 + #Range: -64 ~ 320 + "max spawn Y level" = 320 + + ["Spawn Chances"."Gold Creeper"] + #Range: 0.0 ~ 100.0 + "explosion radius" = 3.75 + #Range: -64 ~ 320 + "max spawn Y level" = 320 + + ["Spawn Chances"."Iron Creeper"] + #Range: 0.0 ~ 100.0 + "explosion radius" = 3.75 + #Range: -64 ~ 320 + "max spawn Y level" = 320 + + ["Spawn Chances"."Lapis Lazuli Creeper"] + #Range: 0.0 ~ 100.0 + "explosion radius" = 3.75 + #Range: -64 ~ 320 + "max spawn Y level" = 320 + + ["Spawn Chances"."Nether Gold Creeper"] + #Range: 0.0 ~ 100.0 + "explosion radius" = 3.75 + #Range: -64 ~ 320 + "max spawn Y level" = 320 + + ["Spawn Chances"."Nether Quartz Creeper"] + #Range: 0.0 ~ 100.0 + "explosion radius" = 3.75 + #Range: -64 ~ 320 + "max spawn Y level" = 320 + + ["Spawn Chances"."Redstone Creeper"] + #Range: 0.0 ~ 100.0 + "explosion radius" = 3.75 + #Range: -64 ~ 320 + "max spawn Y level" = 320 + diff --git a/minecraft/config/config/pamhc2crops.toml b/minecraft/config/config/pamhc2crops.toml new file mode 100644 index 0000000..adadc0f --- /dev/null +++ b/minecraft/config/config/pamhc2crops.toml @@ -0,0 +1,9 @@ + +["Miscellaneous Features"] + #Disable/enable fern blocks dropping seeds. + "Enable fern blocks dropping seeds" = true + #Disable/enable tall grass blocks dropping seeds. + "Enable tall grass blocks dropping seeds" = true + #Disable/enable grass blocks dropping seeds. + "Enable grass blocks dropping seeds" = true + diff --git a/minecraft/config/config/pamhc2trees.toml b/minecraft/config/config/pamhc2trees.toml new file mode 100644 index 0000000..4f4761a --- /dev/null +++ b/minecraft/config/config/pamhc2trees.toml @@ -0,0 +1,5 @@ + +["Right-click Fruit Tree Harvesting Settings"] + #Disable/enable right-click harvesting of tree fruits + "Enable right-click harvesting for tree fruits" = true + diff --git a/minecraft/config/config/patchouli-client.toml b/minecraft/config/config/patchouli-client.toml new file mode 100644 index 0000000..ecdf233 --- /dev/null +++ b/minecraft/config/config/patchouli-client.toml @@ -0,0 +1,16 @@ +#Set this to true to disable advancement locking for ALL books, making all entries visible at all times. Config Flag: advancements_disabled +disableAdvancementLocking = false +#Granular list of Book ID's to disable advancement locking for, e.g. [ "botania:lexicon" ]. Config Flags: advancements_disabled_ +noAdvancementBooks = [] +#Enable testing mode. By default this doesn't do anything, but you can use the config flag in your books if you want. Config Flag: testing_mode +testingMode = false +#Set this to the ID of a book to have it show up in players' inventories, replacing the recipe book. +inventoryButtonBook = "" +#Set this to true to use Shift instead of Ctrl for the inventory quick lookup feature. +useShiftForQuickLookup = false +#Set how text overflow should be coped with: overflow the text off the page, truncate overflowed text, or resize everything to fit. Relogin after changing. +#Allowed Values: OVERFLOW, TRUNCATE, RESIZE +textOverflowMode = "RESIZE" +#How long in ticks the quick lookup key needs to be pressed before the book opens +quickLookupTime = 10 + diff --git a/minecraft/config/config/ponder-client.toml b/minecraft/config/config/ponder-client.toml new file mode 100644 index 0000000..dbf745d --- /dev/null +++ b/minecraft/config/config/ponder-client.toml @@ -0,0 +1,20 @@ +#. +#Slow down a ponder scene whenever there is text on screen. +comfyReading = false +#. +#Show additional info in the ponder view and reload scene scripts more frequently. +editingMode = false + +#. +#Settings for the Placement Assist +[placementAssist] + #. + #What indicator should be used when showing where the assisted placement ends up relative to your crosshair + #Choose 'NONE' to disable the Indicator altogether + #Allowed Values: TEXTURE, TRIANGLE, NONE + indicatorType = "TEXTURE" + #. + #Change the size of the Indicator by this multiplier + #Range: 0.0 ~ 3.4028234663852886E38 + indicatorScale = 1.0 + diff --git a/minecraft/config/config/railways-client.toml b/minecraft/config/config/railways-client.toml new file mode 100644 index 0000000..41aea19 --- /dev/null +++ b/minecraft/config/config/railways-client.toml @@ -0,0 +1,66 @@ + +#. +#Client-only settings - If you're looking for general settings, look inside your worlds serverconfig folder! +[client] + #. + #Show extended debug info in coupler goggle overlay + showExtendedCouplerDebug = false + #. + #Skip clientside train derailing. This prevents stuttering when a train places tracks, but trains will not appear derailed when they crash + skipClientDerailing = false + #. + #Use a scanline shader when spying through a conductor + useConductorSpyShader = true + #. + #Vertical offset for track overlays + #Range: -256.0 ~ 256.0 + trackOverlayOffset = 0.0 + #. + #Whether to actually apply the dev cape (ignored for non-devs) + #This setting may require a relog to take effect + useDevCape = true + #. + #Should the normal create conductor cap be rendered on top of the conductors existing hat? + renderNormalCap = true + #. + #Should flywheels and blocks extending the FlywheelBlock class be animated when apart of trains? + animatedFlywheels = true + + #. + #Smoke Settings + [client.smoke] + #. + #Smoke particle style + #Allowed Values: VANILLA, OLD, CARTOON + smokeType = "CARTOON" + + #. + #Old-style Smoke Settings + [client.smoke.old] + #. + #[in Ticks] + #Lifetime of smoke particles emitted by contraptions + #Range: 20 ~ 1000 + smokeLifetime = 500 + #. + #Smoke emission rate on contraptions + #Range: 0.0 ~ 10.0 + smokePercentage = 0.75 + #. + #Smoke texture quality + #Allowed Values: LOW, MEDIUM, HIGH, ULTRA + smokeQuality = "HIGH" + #. + #Thicker smoke (renders 2 extra layers per particle) + thickerSmoke = true + + #. + #Cartoon-style Smoke Settings + [client.smoke.cartoon] + #. + #Spawn faster-rising small puffs of smoke on an interval + spawnFasterPuffs = true + #. + #Spawn steam on an interval + spawnSteam = false + diff --git a/minecraft/config/config/railways-common.toml b/minecraft/config/config/railways-common.toml new file mode 100644 index 0000000..2845004 --- /dev/null +++ b/minecraft/config/config/railways-common.toml @@ -0,0 +1,9 @@ +#. +#Register integration tracks for mods that are not present +#[@cui:RequiresReload:both] +registerMissingTracks = false +#. +#Disable Steam 'n' Rails datafixers. Do not enable this config if your world contains pre-Create 0.5.1 monobogeys, because then they will be destroyed +#[@cui:RequiresReload:both] +disableDatafixer = false + diff --git a/minecraft/config/config/rftoolsdim-common.toml b/minecraft/config/config/rftoolsdim-common.toml new file mode 100644 index 0000000..9ce9c04 --- /dev/null +++ b/minecraft/config/config/rftoolsdim-common.toml @@ -0,0 +1,10 @@ +#Maximum health of the common blob +#Range: > 0 +commonBlobMaxHealth = 30 +#Maximum health of the rare blob +#Range: > 0 +rareBlobMaxHealth = 250 +#Maximum health of the legendary blob +#Range: > 0 +legendaryBlobMaxHealth = 5000 + diff --git a/minecraft/config/config/rftoolsdim/README.txt b/minecraft/config/config/rftoolsdim/README.txt new file mode 100644 index 0000000..d3c70bd --- /dev/null +++ b/minecraft/config/config/rftoolsdim/README.txt @@ -0,0 +1,13 @@ +NOTE to all whom it may concern (likely those configuring rftools dimensions.): + + +rftoolsdim configs may not be exactly clear, to config rftools, you have to basically edit the individual saves config in minecraft/saves/worldname/serverconfig/rftoolsdim-server.toml + +this is exempt by dimlets, which can be modified by placing them in minecraft/config/rftoolsdim + +it is likely an empty folder at first, you need to drop your own custom configs in here +to see some example configs, or to copy them over for small modifications, see the default files in the rftools source code at https://github.com/McJtyMods/RFToolsDimensions/tree/1.20/src/main/resources/data/rftoolsdim/dimletpackages + + +- Packager of the Houngry I Pack. + diff --git a/minecraft/config/config/rftoolsdim/base.json b/minecraft/config/config/rftoolsdim/base.json new file mode 100644 index 0000000..c0a0646 --- /dev/null +++ b/minecraft/config/config/rftoolsdim/base.json @@ -0,0 +1,943 @@ +[ + { + "type": "admin", + "key": "cheater", + "rarity": "common", + "create": 0, + "maintain": 0, + "ticks": 0, + "worldgen": false, + "dimlet": true + }, + { + "type": "admin", + "key": "owner", + "rarity": "common", + "create": 0, + "maintain": 0, + "ticks": 0, + "worldgen": false, + "dimlet": true + }, + { + "type": "digit", + "key": "0", + "rarity": "common", + "create": 0, + "maintain": 0, + "ticks": 0, + "worldgen": true, + "dimlet": true + }, + { + "type": "digit", + "key": "1", + "rarity": "common", + "create": 0, + "maintain": 0, + "ticks": 0, + "worldgen": true, + "dimlet": true + }, + { + "type": "digit", + "key": "2", + "rarity": "common", + "create": 0, + "maintain": 0, + "ticks": 0, + "worldgen": true, + "dimlet": true + }, + { + "type": "digit", + "key": "3", + "rarity": "common", + "create": 0, + "maintain": 0, + "ticks": 0, + "worldgen": true, + "dimlet": true + }, + { + "type": "digit", + "key": "4", + "rarity": "common", + "create": 0, + "maintain": 0, + "ticks": 0, + "worldgen": true, + "dimlet": true + }, + { + "type": "digit", + "key": "5", + "rarity": "common", + "create": 0, + "maintain": 0, + "ticks": 0, + "worldgen": true, + "dimlet": true + }, + { + "type": "digit", + "key": "6", + "rarity": "common", + "create": 0, + "maintain": 0, + "ticks": 0, + "worldgen": true, + "dimlet": true + }, + { + "type": "digit", + "key": "7", + "rarity": "common", + "create": 0, + "maintain": 0, + "ticks": 0, + "worldgen": true, + "dimlet": true + }, + { + "type": "digit", + "key": "8", + "rarity": "common", + "create": 0, + "maintain": 0, + "ticks": 0, + "worldgen": true, + "dimlet": true + }, + { + "type": "digit", + "key": "9", + "rarity": "common", + "create": 0, + "maintain": 0, + "ticks": 0, + "worldgen": true, + "dimlet": true + }, + { + "type": "sky", + "key": "default", + "rarity": "common", + "create": 5, + "maintain": 5, + "ticks": 5, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:stone" + } + }, + { + "type": "sky", + "key": "end", + "rarity": "common", + "create": 5, + "maintain": 5, + "ticks": 5, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:end_stone" + } + }, + { + "type": "sky", + "key": "infernal", + "rarity": "common", + "create": 5, + "maintain": 5, + "ticks": 5, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:netherrack" + } + }, + { + "type": "sky", + "key": "black", + "rarity": "common", + "create": 5, + "maintain": 5, + "ticks": 5, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:ink_sac" + } + }, + { + "type": "sky", + "key": "stars", + "rarity": "common", + "create": 5, + "maintain": 5, + "ticks": 5, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:quartz" + } + }, + { + "type": "sky", + "key": "nebula", + "rarity": "common", + "create": 5, + "maintain": 5, + "ticks": 5, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:redstone" + } + }, + { + "type": "sky", + "key": "noclouds", + "rarity": "common", + "create": 5, + "maintain": 5, + "ticks": 5, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:gray_wool" + } + }, + { + "type": "sky", + "key": "blackfog", + "rarity": "common", + "create": 5, + "maintain": 5, + "ticks": 5, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:black_stained_glass" + } + }, + { + "type": "sky", + "key": "redfog", + "rarity": "common", + "create": 5, + "maintain": 5, + "ticks": 5, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:red_stained_glass" + } + }, + { + "type": "sky", + "key": "whitefog", + "rarity": "common", + "create": 5, + "maintain": 5, + "ticks": 5, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:white_stained_glass" + } + }, + + { + "type": "sky", + "key": "thickblackfog", + "rarity": "common", + "create": 5, + "maintain": 5, + "ticks": 5, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:black_wool" + } + }, + { + "type": "sky", + "key": "thickredfog", + "rarity": "common", + "create": 5, + "maintain": 5, + "ticks": 5, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:red_wool" + } + }, + { + "type": "sky", + "key": "thickwhitefog", + "rarity": "common", + "create": 5, + "maintain": 5, + "ticks": 5, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:white_wool" + } + }, + + { + "type": "time", + "key": "normal", + "rarity": "uncommon", + "create": 30, + "maintain": 20, + "ticks": 10, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:redstone" + } + }, + { + "type": "time", + "key": "night", + "rarity": "rare", + "create": 300, + "maintain": 100, + "ticks": 100, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:black_dye" + } + }, + { + "type": "time", + "key": "day", + "rarity": "rare", + "create": 300, + "maintain": 500, + "ticks": 100, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:glowstone_dust" + } + }, + { + "type": "attribute", + "key": "default", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 10, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:paper" + } + }, + { + "type": "attribute", + "key": "cities", + "rarity": "uncommon", + "create": 50, + "maintain": 50, + "ticks": 50, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:bricks" + } + }, + { + "type": "attribute", + "key": "nooceans", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 10, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:sponge" + } + }, + { + "type": "attribute", + "key": "waterworld", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 10, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:water_bucket" + } + }, + { + "type": "attribute", + "key": "noblobs", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 10, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "rftoolsdim:common_essence" + } + }, + { + "type": "terrain", + "key": "void", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 10, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:obsidian" + } + }, + { + "type": "terrain", + "key": "cavern", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 10, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:netherrack" + } + }, + { + "type": "terrain", + "key": "chaotic", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 10, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:gunpowder" + } + }, + { + "type": "terrain", + "key": "grid", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 10, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:iron_bars" + } + }, + { + "type": "terrain", + "key": "platforms", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 10, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:stone_pressure_plate" + } + }, + { + "type": "terrain", + "key": "islands", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 10, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:feather" + } + }, + { + "type": "terrain", + "key": "flat", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 20, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:paper" + } + }, + { + "type": "terrain", + "key": "waves", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 20, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:nether_wart" + } + }, + { + "type": "terrain", + "key": "maze", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 20, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:redstone_wire" + } + }, + { + "type": "terrain", + "key": "ravine", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 20, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:gravel" + } + }, + { + "type": "terrain", + "key": "normal", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 10, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:dirt" + } + }, + { + "type": "terrain", + "key": "spikes", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 10, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:dripstone_block" + } + }, + { + "type": "biome_category", + "key": "none", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 1, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:obsidian" + } + }, + { + "type": "biome_category", + "key": "taiga", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 1, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:white_terracotta" + } + }, + { + "type": "biome_category", + "key": "extreme_hills", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 1, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:dripstone_block" + } + }, + { + "type": "biome_category", + "key": "jungle", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 1, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:jungle_sapling" + } + }, + { + "type": "biome_category", + "key": "mesa", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 1, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:orange_terracotta" + } + }, + { + "type": "biome_category", + "key": "plains", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 1, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:dirt" + } + }, + { + "type": "biome_category", + "key": "savanna", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 1, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:red_sandstone" + } + }, + { + "type": "biome_category", + "key": "icy", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 1, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:ice" + } + }, + { + "type": "biome_category", + "key": "the_end", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 1, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:end_stone" + } + }, + { + "type": "biome_category", + "key": "beach", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 1, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:dead_tube_coral_block" + } + }, + { + "type": "biome_category", + "key": "forest", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 1, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:spruce_sapling" + } + }, + { + "type": "biome_category", + "key": "ocean", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 1, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:water_bucket" + } + }, + { + "type": "biome_category", + "key": "desert", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 1, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:sand" + } + }, + { + "type": "biome_category", + "key": "river", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 1, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:bucket" + } + }, + { + "type": "biome_category", + "key": "swamp", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 1, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:slime_ball" + } + }, + { + "type": "biome_category", + "key": "mushroom", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 1, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:brown_mushroom" + } + }, + { + "type": "biome_category", + "key": "nether", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 1, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:netherrack" + } + }, + { + "type": "biome_category", + "key": "underground", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 1, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:deepslate" + } + }, + { + "type": "biome_category", + "key": "mountain", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 1, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:cobblestone" + } + }, + { + "type": "biome_controller", + "key": "default", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 1, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:dirt" + } + }, + { + "type": "biome_controller", + "key": "checker", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 1, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:stone" + } + }, + { + "type": "biome_controller", + "key": "single", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 1, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:redstone" + } + }, + { + "type": "feature", + "key": "none", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 1, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:redstone" + } + }, + { + "type": "feature", + "key": "tendrils", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 1, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:string" + } + }, + { + "type": "feature", + "key": "spheres", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 1, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:clay_ball" + } + }, + { + "type": "feature", + "key": "hollow_spheres", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 1, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:slime_ball" + } + }, + { + "type": "feature", + "key": "liquid_spheres", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 1, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:snowball" + } + }, + { + "type": "feature", + "key": "cubes", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 1, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:stone" + } + }, + { + "type": "feature", + "key": "hollow_cubes", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 1, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:glass" + } + }, + { + "type": "feature", + "key": "liquid_cubes", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 1, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:ice" + } + } +] \ No newline at end of file diff --git a/minecraft/config/config/rftoolsdim/vanilla_structures.json b/minecraft/config/config/rftoolsdim/vanilla_structures.json new file mode 100644 index 0000000..2fdcec5 --- /dev/null +++ b/minecraft/config/config/rftoolsdim/vanilla_structures.json @@ -0,0 +1,258 @@ +[ + { + "type": "structure", + "key": "none", + "rarity": "common", + "create": 5, + "maintain": 5, + "ticks": 5, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:wool" + } + }, + { + "type": "structure", + "key": "default", + "rarity": "common", + "create": 5, + "maintain": 5, + "ticks": 5, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:stone" + } + }, + { + "type": "structure", + "key": "minecraft:pillager_outpost", + "rarity": "uncommon", + "create": 200, + "maintain": 200, + "ticks": 200, + "worldgen": true, + "dimlet": true + }, + { + "type": "structure", + "key": "minecraft:mineshaft", + "rarity": "uncommon", + "create": 300, + "maintain": 300, + "ticks": 200, + "worldgen": true, + "dimlet": true + }, + { + "type": "structure", + "key": "minecraft:mansion", + "rarity": "rare", + "create": 1000, + "maintain": 400, + "ticks": 400, + "worldgen": true, + "dimlet": true + }, + { + "type": "structure", + "key": "minecraft:jungle_pyramid", + "rarity": "uncommon", + "create": 300, + "maintain": 300, + "ticks": 200, + "worldgen": true, + "dimlet": true + }, + { + "type": "structure", + "key": "minecraft:desert_pyramid", + "rarity": "uncommon", + "create": 300, + "maintain": 300, + "ticks": 200, + "worldgen": true, + "dimlet": true + }, + { + "type": "structure", + "key": "minecraft:igloo", + "rarity": "uncommon", + "create": 300, + "maintain": 300, + "ticks": 200, + "worldgen": true, + "dimlet": true + }, + { + "type": "structure", + "key": "minecraft:ruined_portal", + "rarity": "uncommon", + "create": 100, + "maintain": 100, + "ticks": 100, + "worldgen": true, + "dimlet": true + }, + { + "type": "structure", + "key": "minecraft:shipwreck", + "rarity": "uncommon", + "create": 200, + "maintain": 200, + "ticks": 200, + "worldgen": true, + "dimlet": true + }, + { + "type": "structure", + "key": "minecraft:swamp_hut", + "rarity": "uncommon", + "create": 100, + "maintain": 100, + "ticks": 100, + "worldgen": true, + "dimlet": true + }, + { + "type": "structure", + "key": "minecraft:stronghold", + "rarity": "uncommon", + "create": 200, + "maintain": 200, + "ticks": 150, + "worldgen": true, + "dimlet": true + }, + { + "type": "structure", + "key": "minecraft:monument", + "rarity": "uncommon", + "create": 200, + "maintain": 200, + "ticks": 200, + "worldgen": true, + "dimlet": true + }, + { + "type": "structure", + "key": "minecraft:ocean_ruin_cold", + "rarity": "uncommon", + "create": 150, + "maintain": 150, + "ticks": 150, + "worldgen": true, + "dimlet": true + }, + { + "type": "structure", + "key": "minecraft:ocean_ruin_warm", + "rarity": "uncommon", + "create": 150, + "maintain": 150, + "ticks": 150, + "worldgen": true, + "dimlet": true + }, + { + "type": "structure", + "key": "minecraft:fortress", + "rarity": "uncommon", + "create": 200, + "maintain": 200, + "ticks": 200, + "worldgen": true, + "dimlet": true + }, + { + "type": "structure", + "key": "minecraft:end_city", + "rarity": "uncommon", + "create": 800, + "maintain": 500, + "ticks": 300, + "worldgen": true, + "dimlet": true + }, + { + "type": "structure", + "key": "minecraft:buried_treasure", + "rarity": "uncommon", + "create": 600, + "maintain": 500, + "ticks": 300, + "worldgen": true, + "dimlet": true + }, + { + "type": "structure", + "key": "minecraft:village_plains", + "rarity": "rare", + "create": 1000, + "maintain": 1000, + "ticks": 500, + "worldgen": true, + "dimlet": true + }, + { + "type": "structure", + "key": "minecraft:village_desert", + "rarity": "rare", + "create": 1000, + "maintain": 1000, + "ticks": 500, + "worldgen": true, + "dimlet": true + }, + { + "type": "structure", + "key": "minecraft:village_snowy", + "rarity": "rare", + "create": 1000, + "maintain": 1000, + "ticks": 500, + "worldgen": true, + "dimlet": true + }, + { + "type": "structure", + "key": "minecraft:village_savanna", + "rarity": "rare", + "create": 1000, + "maintain": 1000, + "ticks": 500, + "worldgen": true, + "dimlet": true + }, + { + "type": "structure", + "key": "minecraft:village_taiga", + "rarity": "rare", + "create": 1000, + "maintain": 1000, + "ticks": 500, + "worldgen": true, + "dimlet": true + }, + { + "type": "structure", + "key": "minecraft:nether_fossil", + "rarity": "uncommon", + "create": 100, + "maintain": 100, + "ticks": 100, + "worldgen": true, + "dimlet": true + }, + { + "type": "structure", + "key": "minecraft:bastion_remnant", + "rarity": "uncommon", + "create": 100, + "maintain": 100, + "ticks": 100, + "worldgen": true, + "dimlet": true + } +] \ No newline at end of file diff --git a/minecraft/config/config/rftoolsdim/vanilla_tags.json b/minecraft/config/config/rftoolsdim/vanilla_tags.json new file mode 100644 index 0000000..bb7ff22 --- /dev/null +++ b/minecraft/config/config/rftoolsdim/vanilla_tags.json @@ -0,0 +1,106 @@ +[ + { + "type": "tag", + "key": "forge:ores", + "rarity": "legendary", + "create": 2000, + "maintain": 3000, + "ticks": 200, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:nether_star" + } + }, + { + "type": "tag", + "key": "minecraft:planks", + "rarity": "uncommon", + "create": 100, + "maintain": 100, + "ticks": 40, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:oak_planks" + } + }, + { + "type": "tag", + "key": "minecraft:wool", + "rarity": "uncommon", + "create": 100, + "maintain": 100, + "ticks": 40, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:white_wool" + } + }, + { + "type": "tag", + "key": "minecraft:logs", + "rarity": "uncommon", + "create": 200, + "maintain": 200, + "ticks": 80, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:oak_log" + } + }, + { + "type": "tag", + "key": "minecraft:ice", + "rarity": "uncommon", + "create": 100, + "maintain": 100, + "ticks": 40, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:ice" + } + }, + { + "type": "tag", + "key": "forge:glass", + "rarity": "uncommon", + "create": 100, + "maintain": 100, + "ticks": 40, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:glass" + } + }, + { + "type": "tag", + "key": "minecraft:dirt", + "rarity": "common", + "create": 10, + "maintain": 10, + "ticks": 10, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:dirt" + } + }, + { + "type": "tag", + "key": "forge:pamcrops", + "rarity": "uncommon", + "create": 100, + "maintain": 1000, + "ticks": 20, + "worldgen": true, + "dimlet": true, + "essence": { + "item": "minecraft:apple" + } + } +] \ No newline at end of file diff --git a/minecraft/config/config/rftoolsutility-client.toml b/minecraft/config/config/rftoolsutility-client.toml new file mode 100644 index 0000000..31b725b --- /dev/null +++ b/minecraft/config/config/rftoolsutility-client.toml @@ -0,0 +1,15 @@ + +#Settings for the screen system +[screen] + #Set to true for TrueType font, set to false for vanilla font + useTruetype = false + #Set to true for force TrueType to be disabled in all cases. Use this in case the truetype font is causing issues + forceNoTruetype = false + #The default truetype font to use + fontName = "rftoolsutility:ubuntu" + #The size of the font + #Range: 0.0 ~ 1000000.0 + fontSize = 40.0 + #Additional characters that should be supported by the truetype system + additionalCharacters = "" + diff --git a/minecraft/config/config/sidebar_buttons.json b/minecraft/config/config/sidebar_buttons.json new file mode 100644 index 0000000..33b4b88 --- /dev/null +++ b/minecraft/config/config/sidebar_buttons.json @@ -0,0 +1,14 @@ +{ + "ftbteams": { + "my_team": true + }, + "ftbquests": { + "quests": true + }, + "ftblibrary": { + "toggle.gamemode": true, + "toggle.rain": true, + "toggle.day": true, + "toggle.night": true + } +} \ No newline at end of file diff --git a/minecraft/config/config/supplementaries-client.toml b/minecraft/config/config/supplementaries-client.toml new file mode 100644 index 0000000..0b08f16 --- /dev/null +++ b/minecraft/config/config/supplementaries-client.toml @@ -0,0 +1,260 @@ + +#Tweak and change the various block animations. +#Only cosmetic stuff in here so to leave default if not interested. +#Remember to delete this and server configs and let it refresh every once in a while since I might have tweaked it +[blocks] + + [blocks.globe] + #Enable a random globe texture for each world + random_world = true + #Displays current coordinates when using a globe + show_coordinates = true + + [blocks.notice_board] + #Allows notice board displayed text to be centered instead of being left aligned + centered_text = true + + [blocks.bunting] + #Makes buntings use normal block models with no animation for faster performance. When off this is only active when viewed from a distance + fast_buntings = false + + [blocks.clock_block] + #Display 24h time format. False for 12h format + 24h_format = true + + [blocks.pedestal] + #Enable displayed item spin + spin = true + #Spin speed + #Range: 0.0 ~ 100.0 + speed = 2.0 + #Enable special display types for items like swords, tridents or end crystals + fancy_renderers = true + + [blocks.bubble_block] + #Wobbling intensity. set to 0 to disable + #Range: 0.0 ~ 1.0 + wobble = 0.2 + #How fast it grows when created. 1 to be instant + #Range: 0.0 ~ 1.0 + grow_speed = 0.4 + + [blocks.item_shelf] + #Translate down displayed 3d blocks so that they are touching the shelf. + #Note that they will not be centered vertically this way + supported_blocks = true + + [blocks.wind_vane] + #Wind vane animation swings according to this equation: + #pitch(time) = max_angle_1*sin(2pi*time*pow/period_1) + *sin(2pi*time*pow/) + #where: + # - pow = max(1,redstone_power*) + # - time = time in ticks + # - redstone_power = block redstone power + # = how much frequency changes depending on power. 2 means it spins twice as fast each power level (2* for rain, 4* for thunder) + #increase to have more distinct indication when weather changes + #Range: 1.0 ~ 100.0 + power_scaling = 3.0 + #Amplitude (maximum pitch) of first sine wave + #Range: 0.0 ~ 360.0 + max_angle_1 = 30.0 + #Range: 0.0 ~ 360.0 + max_angle_2 = 10.0 + #Base period in ticks at 0 power of first sine wave + #Range: 0.0 ~ 2000.0 + period_1 = 450.0 + #This should be kept period_1/3 for a symmetric animation + #Range: 0.0 ~ 2000.0 + period_2 = 150.0 + + [blocks.flag] + #How slow a flag will oscillate. (Period of oscillation) + #Lower value = faster oscillation + #Range: 0 ~ 10000 + slowness = 100 + #How wavy the animation will be in pixels. (Wavelength) + #Range: 0.001 ~ 100.0 + wavyness = 4.0 + #How tall the wave lobes will be. (Wave amplitude) + #Range: 0.0 ~ 100.0 + intensity = 1.0 + #How much the wave amplitude increases each pixel. (Amplitude increment per pixel) + #Range: 0.0 ~ 10.0 + intensity_increment = 0.3 + #At which graphic settings flags will have a fancy renderer: 0=fast, 1=fancy, 2=fabulous + #Allowed Values: FAST, FANCY, FABULOUS + fanciness = "FABULOUS" + #Makes flags render as sideways banner. Ignores many of the previously defined configs + render_as_banner = false + + [blocks.captured_mobs] + #THIS IS ONLY FOR VISUALS! To allow more entities in cages you need to edit the respective tags! + #A list of mobs that can be ticked on client side when inside jars. Mainly used for stuff that has particles. Can cause issues and side effects so use with care + tickable_inside_jars = ["iceandfire:pixie", "druidcraft:dreadfish", "druidcraft:lunar_moth", "alexsmobs:hummingbird"] + + [blocks.hat_stand] + + [blocks.hat_stand.swing_physics] + min_angle = 0.0 + collision_force = 15.0 + damping = 1.625 + collision_inertia = 1.5 + collision_considers_entity_hitbox = true + frequency = 1.5 + max_angle = 54.999996 + + [blocks.turn_table] + #Display visual particles when a block is rotated + turn_particles = true + + [blocks.speaker_block] + #Mute speaker block incoming narrator messages and displays them in chat instead + mute_narrator = false + + [blocks.rope] + #Amplitude of rope wobbling effect + #Range: 0.0 ~ 20.0 + wobbling_amplitude = 1.2 + #Period of rope wobbling effect + #Range: 0.01 ~ 200.0 + wobbling_period = 12.0 + +#Particle parameters +[particles] + + #Rotation particle + [particles.turn_particle] + #An RGBA color + initial_color = "#002A77EA" + #An RGBA color + fade_color = "#0032BEFA" + +#General settings +[general] + #Disables Optifine warn screen + no_optifine_warn_screen = false + #Disables Amendments suggestion screen + no_amendments_screen = true + #Disable incompatible mods warning screen + no_incompatible_mods_screen = false + #Enable Quark style config button on main menu. Needs Configured installed to work + config_button = false + #Config button Y offset + #Range: -10000 ~ 10000 + config_button_y_offset = 0 + #Show some tooltip hints to guide players through the mod + tooltip_hints = true + #Show tooltips items that have been made placeable + placeable_tooltips = true + #Enables custom Configured config screen + custom_configured_screen = true + #I am very boring + unfunny = false + #ignore this + #Range: -10.0 ~ 10.0 + test1 = 0.0 + #ignore this + #Range: -10.0 ~ 10.0 + test2 = 0.0 + #ignore this + #Range: -10.0 ~ 10.0 + test3 = 0.0 + +#Game tweaks +[tweaks] + #Show a slime overlay when you hit an entity with a slimeball + overlay = true + #Allow to right click with a clock to display current time in numerical form + clock_right_click = true + #Adds an overlay to projectile weapons in gui displaying currently selected ammo + projectile_weapon_overlay = true + #Allow to right click with a compass to display current coordinates in numerical form + compass_right_click = false + #Renders an enchantment glint on placeable enchanted booksNote that turning this on will make book piles use tile renderer instead of baked models making them slower to render + placeable_books_glint = false + #Placeable books random colors + placeable_books_random_colors = ["brown", "orange", "yellow", "red", "green", "lime", "cyan", "blue", "purple"] + #Enables banner pattern tooltip image preview + banner_pattern_tooltip = true + #Enables paintings tooltip image preview + paintings_tooltip = true + #Enables sherds tooltip image preview + sherds_tooltip = true + #Size of the tooltip image used for Sherds, Blackboards, Banner patterns and Paintings + #Range: 1 ~ 255 + tooltip_image_size = 80 + #Wearing mob heads will apply post processing + mob_head_shaders = true + #Sends your current chat when you die while typing + send_chat_on_death = true + #Makes enderman heads use vanilla texture. Enable for texture pack support + enderman_head_texture_pack_support = true + + [tweaks.colored_maps] + #Needs the server config with same name on. If on here it will ignore the server one and keep vanilla colors + tinted_blocks_on_maps = true + #Colors tall grass same color as grass + tall_grass_color = true + #Makes colored maps a bit more accurate. Might affect performance + accurate_colors = false + +[items] + + [items.slingshot] + #Adds an overlay to slingshots in gui displaying currently selected ammo + overlay = true + #Render the block outline for distant blocks that are reachable with a slingshot enchanted with Stasis + stasis_block_outline = true + #An RGBA color for the block outline in hex format, for example 0x00000066 for vanilla outline colors + block_outline_color = "#FFFFFFFF" + #How big should a slingshot projectile look + #Range: 0.0 ~ 1.0 + projectile_scale = 0.5 + + [items.lunch_basket] + #Adds an overlay to lunch boxes in gui displaying currently selected food + overlay = true + + [items.altimeter] + #Click action for depth meter which displays current depth + click_action = true + #Allows depth meter to have unique textures per each dimension. Add more dimensions IDs and a matching texture in the correct path replacing ':' with '_' + #This is a list. Add more entries with syntax [[...]] + extra_dimension_textures = ["minecraft:the_nether", "minecraft:the_end"] + #Increasing this to be more than 1 will result in delth meter display image to be shown in float amounts instead of pixel perfect ones + #Range: 1 ~ 10 + texture_precision_multiplier = 1 + + [items.cannonball] + #Render cannonballs as 3D models + 3d_model = true + + [items.quiver] + #Z offset for quiver render when wearing armor. Useful for when you have custom armor bigger than vanilla to void clipping. Leave at -1 for automatic offset + #Range: -1.0 ~ 1.0 + armor_render_offset = -1.0 + #How quivers should render onto players + #Allowed Values: HIDDEN, BACK, HIP, THIGH + render_mode = "THIGH" + #How skeleton with quivers should render it + #Allowed Values: HIDDEN, BACK, HIP, THIGH + skeleton_render_mode = "THIGH" + #Adds an overlay to quivers in gui displaying currently selected arrow + overlay = true + #Allows using your mouse to select an arrow in the quiver GUI + mouse_movement_in_gui = true + #Quiver GUI X offset from default position + #Range: -1000 ~ 1000 + gui_x_offset = 0 + #Quiver GUI Y offset from default position + #Range: -1000 ~ 1000 + gui_y_offset = 0 + + [items.wrench] + #Display visual particles when a block is rotated + turn_particles = true + + [items.flute] + #Display visual particles when a playing a flute + note_particles = true + diff --git a/minecraft/config/config/supplementaries-common.toml b/minecraft/config/config/supplementaries-common.toml new file mode 100644 index 0000000..daea0a6 --- /dev/null +++ b/minecraft/config/config/supplementaries-common.toml @@ -0,0 +1,681 @@ + +[redstone] + wind_vane = true + clock_block = true + redstone_illuminator = true + crank = true + cog_block = true + gold_door = true + gold_trapdoor = true + lock_block = true + relayer = true + + [redstone.speaker_block] + enabled = true + #Enable/disable speaker block narrator mode + narrator_enabled = true + #Max text + #Range: 0 ~ 10000 + max_text = 32 + #Maximum block range + #Range: 0 ~ 100000000 + range = 64 + + [redstone.bellows] + enabled = true + #bellows pushes air following this equation: + #air=(sin(2PI*ticks/period)<0), with period = base_period-(redstone_power-1)*power_scaling + #represents base period at 1 power + #Range: 1 ~ 512 + base_period = 78 + #entities with velocity greater than this won't be pushed + #Range: 0.0 ~ 16.0 + power_scaling = 2.0 + #velocity increase uses this equation: + #vel = base_vel*((range-entity_distance)/range) with base_vel = base_velocity_scaling/period + #note that the block will push further the faster it's pulsing + #Range: 0.0 ~ 64.0 + base_velocity_scaling = 5.0 + #maximum range + #note that it will still only keep alive the two fire blocks closer to it + #Range: 0 ~ 16 + range = 5 + + [redstone.spring_launcher] + enabled = true + #spring launcher launch speed + #Range: 0.0 ~ 16.0 + velocity = 1.5 + #fall distance needed to trigger the automatic spring launch + #Range: 0 ~ 512 + fall_height_required = 5 + + [redstone.enderman_head] + enabled = true + drop_head = true + #Time to increase 1 power level when being looked at + #Range: 0 ~ 10000 + ticks_to_increase_power = 15 + #do enderman heads work when looked from any side? + work_from_any_side = false + + [redstone.turn_table] + enabled = true + #can rotate entities standing on it? + rotate_entities = true + #Allows turn table to shuffle containers content when rotated over horizontal axis + shuffle_containers = true + + [redstone.pulley_block] + enabled = true + #Chance for a new mineshaft elevator piece to spawn + #Range: 0.0 ~ 1.0 + mineshaft_elevator = 0.035 + + [redstone.dispenser_minecart] + enabled = true + #Makes projectiles shot from dispenser minecart retain the minecart velocity and be shot at an angle when the minecart is on a rail slope + adjust_projectile_angle = true + + [redstone.faucet] + enabled = true + #Turn off to prevent faucets from dropping items + spill_items = true + #Allows faucets to fill entities inventories + fill_entities_below = false + + [redstone.crystal_display] + enabled = true + #Allows chaining 2 crystal displays, letting one power the other to its left IF its own power exceeds 10. Given power will be its own divided by 10. Note that to work the decimal display must NOT have power directly behind it. Doing so will override the behavior to non chaining mode + chaining = true + +[functional] + fodder = true + hourglass = true + + [functional.rope] + #Allows ropes to be supported & attached to solid block sides + block_side_attachment = true + #Makes sliding down ropes as fast as free falling, still negating fall damage + slide_on_fall = true + #In case you want to disable supplementaries ropes you can specify here another mod rope and they will be used for rope arrows and in mineshafts instead + rope_override = "supplementaries:rope" + #Enables horizontal placement of ropes. Disabling will make ropes always non solid + horizontal_ropes = true + #Use this config to turn allow supplementaries to replace all items tagged as #supplementaies:ropes with supplementaries own rope or turn them to air instead. This is applied to all loot tables (chests and drops) + #Allowed Values: REPLACE, NONE, REMOVE + replace_in_loot_tables = "NONE" + + [functional.jar] + enabled = true + #Jar liquid capacity: leave at 12 for pixel accuracy + #Range: 0 ~ 1024 + capacity = 12 + #Allow right click to instantly eat or drink food or potions inside a placed jar. + #Disable if you think this ability is op (honey for example). Cookies are excluded + drink_from_jar = false + #Allows the player to directly drink from jar items + drink_from_jar_item = false + #Dynamically allows all small mobs inside jars depending on their hitbox size + jar_auto_detect = false + #Allow Jars to capture small mobs + jar_capture = true + #Allow Jars to hold cookies + jar_cookies = true + #Allow Jars to hold liquids from bottles, buckets and bowls + jar_liquids = true + + [functional.cage] + enabled = true + #Allows all entities to be captured by cages and jars. Not meant for survival + allow_all_mobs = false + #Allows all baby mobs to be captured by cages + cage_allow_all_babies = false + #Dynamically allows all small mobs inside cages depending on their hitbox size + cage_auto_detect = false + #Makes it so all (hostile) mobs captured by cages and jars will be set to persistent so they won't despawn when released + persistent_mobs = false + #Health percentage under which mobs will be allowed to be captured by cages and jars. Leave at 100 to accept any health level + #Range: 1 ~ 100 + health_threshold = 100 + #When on, if a mob is tameable, it will only be capturable when tamed. + require_taming = true + + [functional.safe] + enabled = true + #Makes safes only breakable by their owner or by a player in creative + prevent_breaking = false + #Make safes simpler so they do not require keys: + #they will be bound to the first person that opens one and only that person will be able to interact with them + simple_safes = false + + [functional.sack] + enabled = true + #Penalize the player with slowness effect when carrying too many sacks + sack_penalty = true + #Maximum number of sacks after which the overencumbered effect will be applied. Each multiple of this number will increase the effect strength by one + #Range: 0 ~ 50 + sack_increment = 2 + #How many slots should a sack have + #Range: 1 ~ 27 + slots = 9 + + [functional.bamboo_spikes] + enabled = true + tipped_spikes = true + #Allows entities killed by spikes to drop loot as if they were killed by a player + player_loot = false + #Alternative mode for bamboo spikes. Allows only harmful effects to be applied on them and they obtain infinite durability + only_allow_harmful_effects = true + #Populate the creative inventory with all tipped spikes variations + populate_creative_tab = true + + [functional.urn] + enabled = true + #Chance for an urn to spawn a critter from the urn_spawn tag + #Range: 0.0 ~ 1.0 + critter_spawn_chance = 0.01 + cave_urns = true + + [functional.soap] + enabled = true + #Dyed Bock types that cannot be cleaned with soap + clean_blacklist = ["minecraft:glazed_terracotta", "botania:mystical_flower", "mna:chimerite_crystal", "botania:floating_flower", ",minecraft:mushroom", "botania:mushroom", "botania:tall_mystical_flower", "botania:petal_block", "morered:network_cable", "xycraft_world:glowing_shiny_aurey_block", "xycraft_world:shiny_aurey_block", "xycraft_world:rgb_lamp", "xycraft_world:glowing_rgb_viewer", "xycraft_world:glowing_matte_rgb_block", "xycraft_world:rgb_lamp_pole"] + + #This is a map of special blocks that can be cleaned with soap + [functional.soap.special_blocks] + "quark:dirty_glass_pane" = "minecraft:glass_pane" + "quark:dirty_glass" = "minecraft:glass" + "#alexscaves:cave_paintings" = "alexscaves:smooth_limestone" + + [functional.cannon] + enabled = true + #Makes TNT-like block shot from a cannon explode on impact + #Allowed Values: IGNITE, IGNITE_ON_IMPACT, NONE + explode_tnt = "IGNITE" + #Cannon fire power multiplier + #Range: 0.0 ~ 5.0 + fire_power = 0.6 + #Time for a cannon to fire a projectile after it has been lit up + #Range: 0 ~ 500 + fuse_time = 40 + #Time for a cannon to be able to fire again after it has been fired + #Range: 0 ~ 500 + cooldown = 60 + music_disc_heave_ho = true + + [functional.cannon.cannonball] + enabled = true + #Cannonball power scaling. Higher values will make cannonballs have more energy. Reminder that the damage and breaking power of a cannonball is proportional to its energy (speed squared) times this constant + #Range: 0.0 ~ 100.0 + power_scaling = 3.5 + #Radius of the 'explosion' when a cannonball hits a block. Set to 0 to disable + #Range: 0.0 ~ 10.0 + break_radius = 1.1 + + [functional.present] + enabled = true + trapped_present = true + + [functional.flax] + enabled = true + wild_flax = true + + [functional.lumisene] + enabled = true + #Gives the flammable effext also when merely stepping on lumisene. Turning this off if you think effects are not something that should be applied like that and just by drinking it. + #Range: 0 ~ 10000 + flammable_from_lumisene_block_duration = 50 + + [functional.lumisene.lumisene_bottle] + #Enables lumisene bottles and the flammable effect and lumisene bottles. Turn off if you think its over the top and doesnt match with existing effects + enabled = true + #Duration of the flammable effect when you drink a lumisene bottle + #Range: 0 ~ 10000 + flammable_duration = 300 + #Duration of the glowing effect when you drink a lumisene bottle + #Range: 0 ~ 10000 + glowing_duration = 200 + +[building] + lapis_bricks = true + deepslate_lamp = true + end_stone_lamp = true + blackstone_lamp = true + stone_lamp = true + stone_tile = true + blackstone_tile = true + bunting = true + sconce = true + sconce_lever = true + pancake = true + checker_block = true + raked_gravel = true + feather_block = true + statue = true + doormat = true + flint_block = true + fine_wood = true + candle_holder = true + fire_pit = true + wicker_fence = true + + [building.blackboard] + enabled = true + #Enable to draw directly on a blackboard using any dye. Gui still only works in black and white + colored_blackboard = false + #Interaction mode for blackboards + #Allowed Values: BOTH, GUI, MANUAL + interaction_mode = "BOTH" + + [building.gravel_bricks] + enabled = true + + [building.slidy_block] + enabled = true + #Slidy block speed + #Range: 0.0 ~ 1.0 + speed = 0.125 + + [building.timber_frame] + enabled = true + #Allow placing a timber frame directly on a block by holding shift + swap_on_shift = false + #Allows axes to remove a framed block leaving the contained block intact + axes_strip = true + #Replace a timber frame with wattle and daub block when daub is placed in it + replace_daub = true + + [building.iron_gate] + enabled = true + #Allows two iron gates to be opened simultaneously when on top of the other + double_opening = true + #Makes iron (ang gold) gates behave like their door counterpart so for example iron gates will only be openable by redstone + door-like_gates = false + + [building.item_shelf] + enabled = true + #Makes item shelves climbable + climbable_shelves = false + + [building.sugar_cube] + enabled = true + #Makes sugar cubes dissolve in rain + dissolve_in_rain = true + #Duration in seconts of speed effect garanted to horses that eat a sugar cube + #Range: 0 ~ 1000 + horse_speed_duration = 10 + + [building.planter] + enabled = true + #Makes so saplings that grow in a planter will break it turning into rooted dirt + broken_by_sapling = false + #When Farmers Delight is on planter will also act like rich soil and use it in its recipe + rich_soil_planter = true + + [building.notice_board] + enabled = true + #Allows notice boards to accept and display any item, not just maps and books + allow_any_item = false + #Enables a GUI for the block. Not needed as the block just holds one item which you can place by clicking on it + gui = true + + [building.pedestal] + enabled = true + #If enabled end crystals placed on a pedestals will provide an enchantment power bonus equivalent to 3 bookshelves + #Range: 0.0 ~ 100.0 + crystal_enchanting = 3.0 + + [building.ash] + enabled = true + #Burnable blocks will have a chance to create ash layers when burned. Greater this number the greater the chance will be + #Range: 0.0 ~ 1.0 + ash_from_fire_chance = 1.0 + #Burning mobs will drop ash when they die + ash_from_burning_mobs = true + #Allows rain to wash away ash layers overtime + rain_wash_ash = true + #Use a datapack to tweak rarity + basalt_ash = true + + [building.flag] + enabled = true + #Allows right/left clicking on a stick to lower/raise a flag attached to it + stick_pole = true + #Maximum allowed pole length + #Range: 0 ~ 256 + pole_length = 16 + + [building.goblet] + enabled = true + #Allows drinking from goblets + allow_drinking = true + + [building.globe] + enabled = true + sepia_globe = true + + [building.sign_post] + enabled = true + + [building.sign_post.way_sign] + #Entirely disables them from spawning + enabled = true + #With this option road signs will display the distance to the structure that they are pointing to + show_distance_text = true + + [building.daub] + enabled = true + wattle_and_daub = true + + [building.ash_bricks] + enabled = true + + [building.hat_stand] + enabled = true + #Allow all items to go on hat stand + unrestricted = false + + [building.awning] + enabled = true + #Allows having slanted awnings. Disabled if you feel its cursed. + slant = true + #Allows entities to fall through awnings, when shifting. + shift_through = true + #Bouncing angle of slanted awnings + #Range: 0.0 ~ 90.0 + angle = 69.44395478041653 + + [building.flower_box] + enabled = true + #Makes so flower boxes can only contain one tall flower item per block + simple_mode = true + + [building.netherite_doors] + door = true + trapdoor = true + +[tools] + candy = true + stasis = true + altimeter = true + confetti_popper = true + + [tools.quiver] + enabled = true + #Allows using a quiver without being slowed down + use_without_slow = true + #Arrow stacks that can fit inside a quiver. Requires reboot + #Range: 1 ~ 9 + slots = 6 + #Increase this number to alter the probability for a Skeleton with quiver to spawn. + #Range: 0.0 ~ 1.0 + quiver_skeleton_spawn_chance = 0.025 + #If the chance for a skeleton to spawn with a quiver will be affected by local difficulty. If true, you wont ever see them on easy and very rarely on normal. Similar logic to equipment + quiver_skeleton_spawn_affected_by_local_difficulty = true + #Allows quiver to only be used when in offhand or in curio slot + only_works_in_curio = false + #Arrows you pickup will try to go in a quiver if available provided it has some arrow of the same type + quiver_pickup = true + + [tools.lunch_basket] + enabled = true + #Allows lunch baskets to be placed on the ground + placeable = true + #Arrow stacks that can fit inside a lunch basket. Requires reboot + #Range: 1 ~ 9 + slots = 6 + + [tools.slice_map] + enabled = true + #Multiplier that will be applied by slice maps to lower their range compared to normal maps + #Range: 0.0 ~ 1.0 + range_multiplier = 0.25 + + [tools.bubble_blower] + enabled = true + #Amount of soap consumed per bubble block placed + #Range: 1 ~ 25 + stasis_cost = 5 + + [tools.bubble_blower.bubble_block] + #Max lifetime of bubble blocks. Set to 10000 to have it infinite + #Range: 1 ~ 10000 + lifetime = 1200 + #Can bubble break when touched on? + break_when_touched = true + #If true feather falling prevents breaking bubbles when stepping on them + feather_falling_prevents_breaking = true + + [tools.wrench] + enabled = true + #Allows wrenches to bypass a block interaction action prioritizing their own when on said hand + #Allowed Values: MAIN_HAND, OFF_HAND, BOTH, NONE + bypass_when_on = "MAIN_HAND" + + [tools.rope_arrow] + enabled = true + #Max number of rope items allowed to be stored inside a rope arrow + #Range: 1 ~ 256 + capacity = 32 + #Makes rope arrows exclusive to crossbows + exclusive_to_crossbows = false + + [tools.flute] + enabled = true + #Radius in which an unbound flute will search pets + #Range: 0 ~ 500 + unbound_radius = 64 + #Max distance at which a bound flute will allow a pet to teleport + #Range: 0 ~ 500 + bound_distance = 64 + + [tools.bomb] + enabled = true + #Bomb explosion radius (damage depends on this) + #Range: 0.1 ~ 10.0 + explosion_radius = 2.0 + #Do bombs break blocks like tnt? + #Allowed Values: ALL, WEAK, NONE + break_blocks = "WEAK" + #Put here any number other than 0 to have your bombs explode after a certain amount of ticks instead than on contact + #Range: 0 ~ 100000 + bomb_fuse = 0 + #Enable bomb item cooldown + cooldown = true + + [tools.bomb.blue_bomb] + #Bomb explosion radius (damage depends on this) + #Range: 0.1 ~ 10.0 + explosion_radius = 5.15 + #Do bombs break blocks like tnt? + #Allowed Values: ALL, WEAK, NONE + break_blocks = "WEAK" + + [tools.slingshot] + enabled = true + #Slingshot range multiplier. Affect the initial projectile speed + #Range: 0.0 ~ 5.0 + range_multiplier = 1.0 + #Time in ticks to fully charge a slingshot + #Range: 0 ~ 100 + charge_time = 20 + #Deceleration for the stasis projectile + #Range: 0.1 ~ 1.0 + stasis_deceleration = 0.9625 + #Allow enderman to intercept any slingshot projectile + unrestricted_enderman_intercept = true + #Allows buckets to be thrown by slingshots. Thrown buckets will place their content when they land + allow_buckets = true + #Damage that items in the 'supplementaries:slingshot_damageable' tag will deal. Scales with thrown speed. Tag is empty by default. + #Range: 0.0 ~ 100.0 + damageable_damage = 0.5 + #Allows splash potions to be thrown by slingshots + allow_splash_potions = false + #Allows bombs to be thrown by slingshots + allow_bombs = false + #Allows fire charges to be thrown by slingshots + allow_fire_charges = false + #Allows snowballs to be thrown by slingshots + allow_snowballs = false + #Allows enderpearls to be thrown by slingshots + allow_enderpearls = false + + [tools.antique_ink] + enabled = true + +#General settings +[general] + #Enable Creative Tab + creative_tab = false + #Set to false to disable custom dispenser behaviors (i.e: filling jars) if for some reason they are causing trouble + dispensers = true + #Creates a creative tab full of filled jars + jar_tab = false + #Save generated resources to disk in a 'debug' folder in your game directory. Mainly for debug purposes but can be used to generate assets in all wood types for your mods :0 + debug_save_dynamic_pack = false + #Turn this on to disable any interaction on blocks placed by other players. This affects item shelves, signs, flower pots, and boards. Useful for protected servers. Note that it will affect only blocks placed after this is turned on and such blocks will keep being protected after this option is disabled + server_protection = false + #Disable startup messages and sanity check that the mod performs to inform of possible detected crashes that might occur due to issues + sanity_checks_messages = true + #slightly increase this or decrease this number to tweak the red merchant spawn chance. Won't spawn at 0 and will spawn twice as often on 2 + #Range: 0.0 ~ 10.0 + red_merchant_spawn_multiplier = 1.0 + +#Vanilla tweaks +[tweaks] + + [tweaks.dragon_banner_pattern] + #Adds dragon banner pattern made from dragon head + enabled = true + + [tweaks.shulker_helmet] + #Allows wearing shulker shells + enabled = true + + [tweaks.golden_apple_disenchant] + enabled = true + + [tweaks.traders_open_doors] + #Allows traders to open doors (because they couldn't apparently) + enabled = true + + [tweaks.dispenser_tweaks] + #Allows dispensers to use axes on blocks to strip logs and scrape off copper oxidation and wax + axe_strip = true + #Enables shooting ender pearls with dispensers + shoot_ender_pearls = true + #Enables extracting bundles items with dispensers + extract_from_bundles = true + + [tweaks.throwable_bricks] + #Throw bricks at your foes! Might break glass blocks + enabled = true + + [tweaks.placeable_sticks] + #Allow placeable sticks + sticks = true + #Allow placeable blaze rods + blaze_rods = true + + [tweaks.placeable_gunpowder] + #Allow placeable gunpowder + enabled = true + #Number of ticks it takes for gunpowder to burn 1 stage (out of 8). Increase to slow it down + #Range: 0 ~ 20 + speed = 2 + #Age at which it spread to the next gunpowder block. Also affects speed + #Range: 0 ~ 8 + spread_age = 2 + + [tweaks.raked_gravel] + #allow gravel to be raked with a hoe + enabled = true + + [tweaks.bottle_xp] + #Allow bottling up xp by using a bottle on an enchanting table + enabled = false + #bottling health cost + #Range: 0 ~ 20 + cost = 2 + #Block that should be clicked on for bottling to work. Leave blank for enchanting table. You can put another block here from another mod if you find it more fitting + target_block = "" + + [tweaks.map_tweaks] + #Cartographers will sell 'adventurer maps' that will lead to a random vanilla structure (choosen from a thought out preset list). + #Best kept disabled if you are adding custom adventurer maps with datapack (check the wiki for more) + random_adventurer_maps = true + #Select a random structure to look for instead of iterating through all of the ones in the tag returning the closest. Turning on will make ones that have diff structures (aka all different ruined portals) show up more. On could take much more time to compute + random_adventurer_maps_select_random_structure = true + #Enables beacons, lodestones, respawn anchors, beds, conduits, portals to be displayed on maps by clicking one of them with a map + block_map_markers = true + #Shows a death marker on your map when you die. Requires a recovery compass in player inventory or similar + #Allowed Values: OFF, WITH_COMPASS, ALWAYS + death_marker = "WITH_COMPASS" + #If Quark is installed adventurer maps will be replaced by adventurer quills. These will not lag the server when generating + quill_adventurer_maps = true + #If Quark is installed replaces buried treasure and mansion maps with their equivalent quill form. This removes the lag spike they create when generating + quill_vanilla_maps = true + #Miminum search radius for quill. Used to incrase the radius of vanilla searches. For reference buried treasures are at 50 and locate is at 100 chunks + #Range: 10 ~ 600 + min_search_radius = 75 + #Makes blocks tagged as 'tinted_on_map' use their tint color. This allows for accurate biome colors for water and grass as well as other custom block that use any tint + tinted_blocks_on_maps = true + + [tweaks.placeable_books] + #Allows written books to be placed down. Requires shift clicking + written_books = true + #Allow books and enchanted books to be placed on the ground + enabled = true + #Enchantment power bonus given by normal book piles with 4 books. Piles with less books will have their respective fraction of this total. For reference a vanilla bookshelf provides 1 + #Range: 0.0 ~ 5.0 + book_power = 1.0 + #Enchantment power bonus given by normal book piles with 4 books. Piles with less books will have their respective fraction of this total. For reference a vanilla bookshelf provides 1 + #Range: 0.0 ~ 5.0 + enchanted_book_power = 1.334 + #Allow all books to be placed both vertically and horizontally + mixed_books = false + + [tweaks.zombie_horse] + #Feed a stack of rotten flesh to a skeleton horse to buff him up to a zombie horse + zombie_horse_conversion = true + #Amount of rotten flesh needed + #Range: 1 ~ 1000 + rotten_flesh = 64 + #Allows zombie horses to be ridden underwater + rideable_underwater = true + #Convert a zombie horse back by feeding it a golden carrot + zombie_horse_inverse_conversion = true + + [tweaks.noteblocks_scare] + #Noteblocks with a zombie head will scare off villagers + enabled = true + + [tweaks.bad_luck_tweaks] + #Hit a void cat, get the unluck + cat_unluck = true + #If you have unluck you are more likely to get hit by a lighting + lightning_unluck = true + + [tweaks.item_lore] + #Adds a recipe to add 'lore' strings to an item by combining it with a named nametag + enabled = true + + [tweaks.sus_recipes] + #Adds recipes to craft suspicious gravel and suspicious sand + enabled = true + + [tweaks.slimed_effect] + enabled = true + #Allow slimeballs to be thrown + throwable_slimeballs = true + #Thrown slimeballs will shortly nerf the player jump height. Disable if you don't want this effect as it can be quite powerful + #Allowed Values: NEVER, ALWAYS, NORMAL_DIFFICULTY, HARD_DIFFICULTY + hinders_jump = "NORMAL_DIFFICULTY" + #Duration of the slimed effect in ticks + #Range: 0 ~ 1000 + duration = 300 + #Chance that a slime mob will apply slimed effect on successful attack. Multiplied by the slime size + #Range: 0.0 ~ 1.0 + chance_per_slime_size = 0.15 + diff --git a/minecraft/config/config/suppsquared-common.toml b/minecraft/config/config/suppsquared-common.toml new file mode 100644 index 0000000..09b203d --- /dev/null +++ b/minecraft/config/config/suppsquared-common.toml @@ -0,0 +1,7 @@ + +[features] + #Enable plaques + plaques = true + #Enable lanterns + lanterns = true + diff --git a/minecraft/config/config/terrablender.toml b/minecraft/config/config/terrablender.toml new file mode 100644 index 0000000..5b07633 --- /dev/null +++ b/minecraft/config/config/terrablender.toml @@ -0,0 +1,18 @@ +#General settings +general = {} + +#Generation settings +[generation_settings] + #The size of overworld biome regions from each mod that uses TerraBlender. + #Range: 2-6 + overworld_region_size = 3 + #The weighting of vanilla biome regions in the nether. + #Range: 0-2147483647 + vanilla_nether_region_weight = 10 + #The size of nether biome regions from each mod that uses TerraBlender. + #Range: 2-6 + nether_region_size = 2 + #The weighting of vanilla biome regions in the overworld. + #Range: 0-2147483647 + vanilla_overworld_region_weight = 10 + diff --git a/minecraft/config/config/tfmg-common.toml b/minecraft/config/config/tfmg-common.toml new file mode 100644 index 0000000..65aec06 --- /dev/null +++ b/minecraft/config/config/tfmg-common.toml @@ -0,0 +1,153 @@ + +#. +#Config options for TFMG's machinery +[machines] + #. + #. + #Changes the radius fire extinguishers can remove fire in. + #Range: > 0 + fireExtinguisherClearRadius = 1 + #. + #Determines the minimum power an electric motor can run on. + #Range: > 1 + electricMotorMinimumPower = 250 + #. + #Determines the minimum voltage an electric motor can run on. + #Range: > 1 + electricMotorMinimumVoltage = 150 + #. + #Sets the internal resistance of the electric motor. + #Range: 0.0 ~ 3.4028234663852886E38 + electricMotorInternalResistance = 15.0 + #. + #Determines the maximum size of coke ovens. + #Range: > 1 + cokeOvenMaxSize = 5 + #. + #How much Forge Energy is in one watt-tick. + #Range: 0.0 ~ 3.4028234663852886E38 + FEtoWattTickConversionRate = 1.0 + #. + #The minimum electric current that will make graphite electrodes superheated. + #Range: > 1 + graphiteElectrodeCurrent = 10 + #. + #The minimum electric current that will make electrolyzers operational. + #Range: > 1 + electrolysisMinimumCurrent = 5 + #. + #The maximum length of engines. + #Range: > 1 + engineMaxLength = 5 + #. + #Y level surface scanner scan at. + #Range: > -512 + surfaceScannerScanDepth = -64 + #. + #How much FE can polarizer charge per tick. + #Range: > 1 + polarizerItemChargingRate = 1000 + + #. + #Accumulator + [machines.accumulator] + #. + #Determines the storage space of accumulators. + #Range: > 1 + accumulatorStorage = 100000 + #. + #Determines the voltage accumulators output. + #Range: > 1 + accumulatorVoltage = 12 + #. + #Sets the maximum amperage an accumulator can provide. + #Range: > 1 + accumulatorMaxAmpOutput = 20 + #. + #Sets the maximum charging rate of accumulators. + #Range: > 1 + accumulatorChargingRate = 100 + + #. + #Converter + [machines.converter] + #. + #Determines the storage space of converters. + #Range: > 1 + converterStorage = 100000 + #. + #Determines the voltage converters output. + #Range: > 1 + converterVoltage = 12 + #. + #Sets the maximum charging rate of converters. + #Range: > 1 + converterChargingRate = 1000 + + #. + #Firebox + [machines.firebox] + #. + #If set to true,fireboxes will require exhaust management. + fireboxExhaustRequirement = true + #. + #Determines the amount of fuel a firebox needs to run for 3 seconds. + #Range: > 1 + fireboxFuelConsumption = 100 + + #. + #Engines + [machines.engines] + #. + #Changes the volume of engines. + #Range: 0.0 ~ 3.4028234663852886E38 + engineLoudness = 1.0 + + #. + #Generators + [machines.generators] + #. + #Determines how powerful the large generator is. + #Range: 0.0 ~ 3.4028234663852886E38 + largeGeneratorModifier = 4.0 + #. + #Changes the lowest speed the large generator can work on. + #Range: 0.0 ~ 3.4028234663852886E38 + largeGeneratorMinSpeed = 70.0 + #. + #Determines how powerful the generator is. + #Range: 0.0 ~ 3.4028234663852886E38 + GeneratorModifier = 1.399999976158142 + #. + #Changes the lowest speed the generator can work on. + #Range: 0.0 ~ 3.4028234663852886E38 + generatorMinSpeed = 40.0 + + #. + #Blast Furnace + [machines.blast_furnace] + #. + #Changes the maximum height of the blast furnace. + #Range: > 3 + blastFurnaceMaxHeight = 10 + #. + #Sets the maximum time that can be saved by increasing blast furnace height. + #Range: 0.10000000149011612 ~ 3.4028234663852886E38 + blastFurnaceHeightSpeedModifier = 1.0 + #. + #Determines how many ticks does it take to consume one fuel. + #Range: > 1 + blastFurnaceFuelConsumption = 600 + +#. +#Worldgen Settings +[deposits] + #. + #. + #Sets the maximum oil reserves a deposit can have. + #Range: > 1000 + depositMaxReserves = 10000 + #. + #Makes deposits bottomless. + infiniteDeposits = false + diff --git a/minecraft/config/config/tombstone-client.toml b/minecraft/config/config/tombstone-client.toml new file mode 100644 index 0000000..72fc349 --- /dev/null +++ b/minecraft/config/config/tombstone-client.toml @@ -0,0 +1,80 @@ + +#Personal Options that can be edited even on server +[client] + #Shows the magic circles when using some items [false/true|default:true] + show_magic_circle = true + #Shows all the infos in the tooltip of items [false/true|default:true] + show_enhanced_tooltips = true + #Highlights the tomb from far when holding the key [false/true|default:true] + highlight = true + #Skips the Respawn Screen [false/true|default:false] + skip_respawn_screen = false + #Shows shield particles on villager [false/true|default:true] + show_shield_particle = true + #Allows the ghost to appear around you during Halloween [false/true|default:true] + allow_halloween_ghost = true + #Shows only the elapsed minecraft days since the death on graves [false/true|default:false] + date_in_mc_time = false + #Display or not the messages of gain of points in knowledge of death [false/true|default:true] + display_knowledge_message = true + #Display or not the messages of earned of points in Alignment [false/true|default:true] + display_alignment_message = true + #Equips elytra in priority when recovering your lost items [false/true|default:false] + equip_elytra_in_priority = false + #Equips shield in priority when recovering your lost items [false/true|default:false] + equip_shield_in_priority = false + #Sorts the inventory by filling the last slots first [false/true|default:false] + reverse_inventory_sorting = false + #Automatically equip magic books in Curios slot [false/true|default:false] + equip_curio_slot_magic_book = false + #Shows the use of the Tombstone's enchantments in tooltip [false/true|default:true] + show_info_on_enchantment = true + #Favor the tools on the hotbar when recovering a grave [false/true|default:false] + priorize_tool_on_hotbar = false + #Allows to activate a grave by sneaking [false/true|default:true] + activate_grave_by_sneaking = true + #Allows your grave to appear in water [false/true|default:true] + allow_grave_in_water = true + #Decimal value for the color of the particles when using magic items [0..16777215|default:125656] + #Range: 0 ~ 16777215 + particle_casting_color = 14937088 + #Decimal value for the color of the grave text [0..16777215|default:2962496] + #Range: 0 ~ 16777215 + text_color_death_date = 2962496 + #Decimal value for the color of the grave text [0..16777215|default:2962496] + #Range: 0 ~ 16777215 + text_color_rip = 2962496 + #Decimal value for the color of the grave text [0..16777215|default:5991302] + #Range: 0 ~ 16777215 + text_color_owner = 5991302 + #Decimal value of the fog color [0..16777215|default:125656] + #Range: 0 ~ 16777215 + fog_color = 16777215 + #Fog density around the graves [NONE/LOW/NORMAL/HIGH|default:NORMAL] + #Allowed Values: NONE, LOW, NORMAL, HIGH + fog_density = "NORMAL" + #Favorite grave + #Allowed Values: GRAVE_SIMPLE, GRAVE_NORMAL, GRAVE_CROSS, TOMBSTONE, SUBARAKI_GRAVE, GRAVE_ORIGINAL + favorite_grave = "GRAVE_SIMPLE" + #Favorite grave marble + #Allowed Values: DARK, WHITE, BLUE, GREEN, CARMIN + favorite_grave_marble = "CARMIN" + #Defines the rule to use for grave's skin [DEFAULT/FORCE_NORMAL/FORCE_HALLOWEEN|default:DEFAULT] + #Allowed Values: DEFAULT, FORCE_NORMAL, FORCE_HALLOWEEN, FORCE_CHRISTMAS, FORCE_SPRING_BLOOM + grave_skin_rule = "DEFAULT" + #Defines when to automatically equip your items [NEVER/GRAVE_RECOVERY/DEATH_RESPAWN/ALWAYS|default:ALWAYS] + #Allowed Values: NEVER, GRAVE_RECOVERY, DEATH_RESPAWN, ALWAYS + auto_equip_rule = "ALWAYS" + #Defines the type of marker when holding in hand some items like the Grave's Key [WING/SPARK/NOTE/BOX|default:WING] + #Allowed Values: WING, SPARK, NOTE, BOX + marker_type = "WING" + #Defines the font to use in Tombstone's screens (only for english, french and spanish languages) [FANTASY/VANILLA|default:FANTASY] + #Allowed Values: FANTASY, VANILLA + font_rule = "FANTASY" + #Display the combinations in item tooltip [false/true|default:true] + show_tooltip_combine = true + #Prevent night vision from flashing when less than 5 seconds left [false/true|default:true] + no_blinking_nightvision = true + #Scales Tombstone guiscreens to be larger as possible [false/true|default:true] + scale_guiscreens = true + diff --git a/minecraft/config/config/tombstone-common.toml b/minecraft/config/config/tombstone-common.toml new file mode 100644 index 0000000..d462c32 --- /dev/null +++ b/minecraft/config/config/tombstone-common.toml @@ -0,0 +1,205 @@ + +#Options related to player's death +[player_death] + #Whether to unlock access to a grave if the player has been killed by another player [false/true|default:true] + pvp_unlock_grave = true + #Whether to restore beneficial effects after a player dies [false/true|default:true] + restore_effects_on_death = false + #Only abandoned graves can have losses of items (based on the decay_time) [false/true|default:true] + loss_on_death_only_for_abandoned_grave = true + #Only stackable items can be lost on death [false/true|default:true] + loss_on_death_only_for_stackable_items = true + #Prevents death outside the borders of the world [false/true|default:true] + prevent_death_outside_world_border = true + #Prevents death outside the build height [false/true|default:false] + prevent_death_outside_build_height = false + #Allows to fill an existing grave instead of creating a new one [false/true|default:true] + allow_to_fill_existing_grave = true + #Caps the duration of Ghostly Shape effect to 10 seconds when teleporting with a Grave's Key [false/true|default:true] + nerf_ghostly_shape_teleport_with_key = true + #The radius in which items should be collected when a grave is spawned [1..10|default:5] + #Range: 1 ~ 10 + sniffer_range = 5 + #The chance that creatures appear after the contents of a grave are retrieved [0..100|default:0] + #Range: 0 ~ 100 + chance_mob_on_grave_recovery = 0 + #Percent of stolen experience by killing a player when PvP mode is enabled [0..100|default:30] + #Range: 0 ~ 100 + pvp_stolen_xp = 30 + #The chance that some items are lost on death [0..100|default:0] + #Range: 0 ~ 100 + chance_loss_on_death = 0 + #The percentage of items that are lost on death [0..100|default:0] + #Range: 0 ~ 100 + percent_loss_on_death = 0 + #Graveless Dimensions + no_grave_dimension = [] + +#Options related to player's alignment +[alignment] + #Points for freeing a soul in a receptacle [0..500|default:50] + #Range: 0 ~ 500 + points_free_soul_receptacle = 50 + #Points for plundering a player's grave [-500..0|default:-10] + #Range: -500 ~ 0 + points_plunder_player_grave = -10 + #Points for zombie villager exorcism [0..500|default:20] + #Range: 0 ~ 500 + points_exorcism_zombie_villager = 20 + #Points for zombifying a villager [-500..0|default:-20] + #Range: -500 ~ 0 + points_zombify_villager = -20 + #Points for killing some entities decreasing alignment [-500..0|default:-10] + #Range: -500 ~ 0 + points_kill_decreasing_alignment = -10 + #Points for killing some entities increasing alignment [0..500|default:10] + #Range: 0 ~ 500 + points_kill_increasing_alignment = 10 + #Points for tablet of cupidity [-500..0|default:-10] + #Range: -500 ~ 0 + points_tablet_of_cupidity = -10 + #Points for Pray of Protection [0..500|default:20] + #Range: 0 ~ 500 + points_pray_of_protection = 20 + #Points for using a Potion of Earthly Garden [0..500|default:10] + #Range: 0 ~ 500 + points_earthly_garden = 10 + #Points for killing one of your tamed creatures [-500..0|default:-10] + #Range: -500 ~ 0 + points_kill_tamed_creature = -10 + +#Miscellaneous options +[general] + #Allows teleportation to other dimensions [false/true|default:true] + teleport_dim = true + #Increases the minimum time without sleeping for phantom spawn around player based on their level in Knowledge of Death [false/true|default:true] + knowledge_reduce_phantom_spawn = true + #Minimum time without sleeping for phantom to spawn around players [1200..MAX|default:72000] + #Range: > 1200 + time_for_phantom_spawn = 72000 + #Cooldown in minutes to use the command tbrequestteleport [-1..1440|default:-1] + #Range: -1 ~ 1440 + cooldown_request_teleport = -1 + #Cooldown in minutes to use the command tbteleportdeath [-1..1440|default:-1] + #Range: -1 ~ 1440 + cooldown_teleport_death = -1 + #Beneficial effects that can't used by certain features such as ankh of prayer, lollipop, scroll of preservation, alchemy perk and magic siphon enchantment + unhandled_beneficial_effects = ["astralsorcery:potiontimefreeze"] + #Harmful effects that can't used by certain features such as tablet of cupidity and the enchantment plague bringer + unhandled_harmful_effects = ["minecraft:nausea"] + #Allows to limit the damages done by Decrepitude + #Range: > 1 + decrepitude_max_damage = 2147483647 + +#Allows to define the conditions for a village siege to begin +[village_siege] + #Allows to handle village sieges [false/true|default:true] + handle_village_siege = true + #Logs the different states of a village siege while searching for an adequate place [false/true|default:false] + log_siege_state = false + #The creatures of the siege have a glowing effect (only uses this for test purposes) [false/true|default:false] + glowing_creature_test = false + #Allows to use the positions of creative players to define the siege location [false/true|default:true] + allow_creative_players_for_siege = true + #Undeads always wear a helm when sieging [false/true|default:false] + undead_wear_helm_in_siege = false + #Mobs in siege are persistent [false/true|default:false] + persistent_mob_in_siege = false + #Shuffles the list of players before testing the siege location [false/true|default:true] + shuffle_players_for_siege = true + #Chance for a siege to occur [0..100|default:10] + #Range: 0 ~ 100 + siege_chance = 10 + #Maximum of creatures appearing in a siege [0..100|default:20] + #Range: 0 ~ 100 + siege_max_creature = 20 + #Delay in seconds for a second test of siege when the first failed [0..1200|default:200] + #Range: 0 ~ 1200 + delay_siege_test = 200 + +#For settings related to magic items +[magic_item] + #Damaged items can be recycled with the Book of Recycling + can_recycle_damaged_item = true + #The items that can't be recycled by the Book of Recycling + denied_item_to_recycle = [] + #Allows to disenchant enchanted books with the Book of Disenchantment + can_disenchant_enchanted_book = false + #Allows lost tablets to find locations outside the current world [false/true|default:true] + lost_tablet_search_outside_world = true + #Allows lost tablets to find modded structures [false/true|default:true] + lost_tablet_modded_structure = true + #The structures that can't be discovered by lost tablets + lost_tablet_denied_structures = [] + #The worlds that can't be discovered by lost tablets + lost_tablet_denied_worlds = [] + +#For settings related to decorative tombs and magic items +[decorative_grave] + #Allows to replace a grave plate already set on a grave [false/true|default:true] + can_replace_grave_plate = true + #Allows the merchant grave gardian [false/true|default:true] + allow_grave_gardian = true + #Minimum distance between Grave Gardians to spawn [10..200|default:100] + #Range: 10 ~ 200 + distance_between_grave_guardian = 100 + #Time in minutes for a Grave Guardian to restock its offers [1..1000|default:60] + #Range: 1 ~ 1000 + restock_time_grave_guardian = 60 + #Time in minutes to check if a soul appears on a grave [1..10000|default:10] + #Range: 1 ~ 10000 + soul_time = 10 + #Chance on 100 that a soul appears on a grave [0..100|default:25] + #Range: 0 ~ 100 + soul_chance = 25 + +#Options related to the command recovery and auto-save of players +[recovery] + #Enables to backup automatically players [false/true|default:true] + recovery_player_enable = true + #Backup players on death [false/true|default:false] + backup_on_death = true + #Time in minutes between players' backups [10..1000|default:40] + #Range: 5 ~ 1000 + recovery_player_timer = 19 + #Maximum number of backups per player [5..100|default:15] + #Range: 5 ~ 100 + recovery_player_max_saves = 15 + #Log when players are automatically back up [false/true|default:false] + log_auto_backup = false + +#Options related to looted items +[loot] + #Maximum xp rewarded with a Lost Page of Erdös [100..200000|default:2000] + #Range: 100 ~ 200000 + max_xp_lost_page = 2000 + #Denied mods for equipment drops + denied_modid_for_equipment = ["tombstone"] + #Only vanilla drops for equipment [false/true|default:false] + only_vanilla_for_equipment = false + +#Allows to enable some features related to others mods +[compatibility] + #Allows to auto-equip the slots from Curio mod [false/true|default:true] + curio_auto_equip = true + #Allows to provide a default support for bundle in Curio mod [false/true|default:true] + curio_bundle_support = true + #Allows to provide a magic book slot in Curio mod used to enchant with a soul [false/true|default:true] + curio_magic_book_support = true + #Keeps the cosmetic armor when you die [false/true|default:true] + keep_cosmetic_armor = true + #Ensure the potion effects to stay on the player after returning from end conquered [false/true|default:true] + preserve_effects_on_return_end_conquered = true + +#Allows to enable special events +[special_events] + #Allows Halloween [false/true|default:true] + allow_halloween = true + #Allows Christmas [false/true|default:true] + allow_christmas = true + #Allows Spring Bloom [false/true|default:true] + allow_spring_bloom = true + #Allows you to set a Special Event as permanent [NONE/HALLOWEEN/CHRISTMAS/SPRING_BLOOM|default:NONE] + #Allowed Values: NONE, HALLOWEEN, CHRISTMAS, SPRING_BLOOM + force_special_event = "NONE" + diff --git a/minecraft/config/config/tombstone-server.toml b/minecraft/config/config/tombstone-server.toml new file mode 100644 index 0000000..23bdba5 --- /dev/null +++ b/minecraft/config/config/tombstone-server.toml @@ -0,0 +1,191 @@ + +#Options related to player's death +[player_death] + #The time in minutes before a grave is unlocked to anyone [-1..MAX|default:-1|disabled:-1] + #Range: > -1 + decay_time = -1 + #Experience lost on death [0..100|default:95] + #Range: 0 ~ 100 + xp_loss_on_death = 95 + #The duration of the Ghostly Shape effect in seconds [0..MAX|default:120] + #Range: > 0 + ghostly_shape_duration = 120 + +#Allows to customize or disable the enchantments +[enchantments] + #Enables the enchantment Spectral Bite [false/true|default:true] + enable_enchantment_spectral_bite = true + #Enables the enchantment Soulbound [false/true|default:true] + enable_enchantment_soulbound = true + #Enables the enchantment Magic Siphon [false/true|default:true] + enable_enchantment_magic_siphon = true + #Enables the enchantment Plague Bringer [false/true|default:true] + enable_enchantment_plague_bringer = true + #Enables the enchantment Curse of Bones [false/true|default:true] + enable_enchantment_curse_of_bones = true + #Enables the enchantment Blessing [false/true|default:true] + enable_enchantment_blessing = true + #Enables the enchantment Frostbite [false/true|default:true] + enable_enchantment_frostbite = true + #Enables the enchantment Spectral Conjurer [false/true|default:true] + enable_enchantment_spectral_conjurer = true + #Enables the enchantment Incurable Wounds [false/true|default:true] + enable_enchantment_incurable_wounds = true + #Enables the enchantment Decrepitude [false/true|default:true] + enable_enchantment_decrepitude = true + #Enables the enchantment Sanctified [false/true|default:true] + enable_enchantment_sanctified = true + #Enables the enchantment Ruthless Strike [false/true|default:true] + enable_enchantment_ruthless_strike = true + #Allows Soulbound at enchanting table [false/true|default:false] + soulbound_enchanting_table = true + #Allows Spectral Bite at enchanting table [false/true|default:false] + spectral_bite_enchanting_table = true + #Allows Magic Siphon at enchanting table [false/true|default:false] + magic_siphon_enchanting_table = true + #Allows Plague Bringer at enchanting table [false/true|default:false] + plague_bringer_enchanting_table = true + #Allows Curse of Bones at enchanting table [false/true|default:false] + curse_of_bones_enchanting_table = true + #Allows Blessing at enchanting table [false/true|default:false] + blessing_enchanting_table = true + #Allows Frostbite at enchanting table [false/true|default:false] + frostbite_enchanting_table = true + #Allows Spectral Conjurer at enchanting table [false/true|default:false] + spectral_conjurer_enchanting_table = true + #Allows Incurable Wounds at enchanting table [false/true|default:false] + incurable_wounds_enchanting_table = true + #Allows Decrepitude at enchanting table [false/true|default:false] + decrepitude_enchanting_table = true + #Allows Sanctified at enchanting table [false/true|default:false] + sanctified_enchanting_table = true + #Allows Ruthless Strike at enchanting table [false/true|default:false] + ruthless_strike_enchanting_table = true + +#Allows to customize or disable the potions +[potions] + #Allows Earthly Garden [false/true|default:true] + allow_earthly_garden = true + #Allows Bait [false/true|default:true] + allow_bait = true + #Allows Frostbite [false/true|default:true] + allow_frostbite = true + #Allows Darkness [false/true|default:true] + allow_darkness = true + #Allows Discretion [false/true|default:true] + allow_discretion = true + #Allows Restoration [false/true|default:true] + allow_restoration = true + +#For settings related to magic items +[magic_item] + #Chance for players to obtain an enchanted Grave's Key on death (-1 disables the Perk Jailer) [-1..100|default:0] + #Range: -1 ~ 100 + chance_enchanted_grave_key = 0 + #Prevents to craft Enchanted Grave Key [false/true|default:false] + disable_enchanted_grave_key_recipe = false + #Scroll duration [1200..120000|default:12000] + #Range: 1200 ~ 120000 + scroll_duration = 12000 + #Defines experience lost when storing experience in a Scroll of Knowledge + #Range: 0 ~ 90 + scroll_of_knowledge_loss = 0 + #Cooldown in second after using a tablet [60..1200|default:300] + #Range: 60 ~ 1200 + tablet_cooldown = 300 + #The cooldown in minutes to reset the perks with the Book of Oblivion [20..1440|default:120] + #Range: 20 ~ 1440 + cooldown_reset_perk = 120 + +#For settings related to decorative tombs and magic items +[decorative_grave] + #The cooldown in minutes to pray with the Ankh [1..60|default:60] + #Range: 1 ~ 60 + prayer_cooldown = 60 + +#Allows to disable some magic items +[allowedMagicItems] + #Voodoo Poppet [false/true|default:true] + allow_voodoo_poppet = true + #Receptacle of Familiar [false/true|default:true] + allow_receptacle_of_familiar = true + #Book of Disenchantment [false/true|default:true] + allow_book_of_disenchantment = true + #Scroll of Preservation [false/true|default:true] + allow_scroll_of_preservation = true + #Grave's Key [false/true|default:true] + allow_grave_key = true + #Scroll of Knowledge [false/true|default:true] + allow_scroll_of_knowledge = true + #Tablet of Recall [false/true|default:true] + allow_tablet_of_recall = true + #Tablet of Home [false/true|default:true] + allow_tablet_of_home = true + #Tablet of Assistance [false/true|default:true] + allow_tablet_of_assistance = true + #Tablet of Guard [false/true|default:true] + allow_tablet_of_guard = true + #Tablet of Cupidity [false/true|default:true] + allow_tablet_of_cupidity = true + #Scroll of Unstable Intangibility [false/true|default:true] + allow_scroll_of_unstable_intangibility = true + #Scroll of Feather Fall [false/true|default:true] + allow_scroll_of_feather_fall = true + #Scroll of Purification [false/true|default:true] + allow_scroll_of_purification = true + #Scroll of True Sight [false/true|default:true] + allow_scroll_of_true_sight = true + #Lost Tablet [false/true|default:true] + allow_lost_tablet = true + #Scroll of Reach [false/true|default:true] + allow_scroll_of_reach = true + #Scroll of Lightning Resistance [false/true|default:true] + allow_scroll_of_lightning_resistance = true + #Scroll of Frost Resistance [false/true|default:true] + allow_scroll_of_frost_resistance = true + #Scroll of Aquatic Life [false/true|default:true] + allow_scroll_of_aquatic_life = true + #Scroll of Mercy [false/true|default:true] + allow_scroll_of_mercy = true + #Dust of Vanishing [false/true|default:true] + allow_dust_of_vanishing = true + #Dust of Frost [false/true|default:true] + allow_dust_of_frost = true + #Enchanted Bundle [false/true|default:true] + allow_enchanted_bundle = true + #Book of Recycling [false/true|default:true] + allow_book_of_recycling = true + #Book of Repairing [false/true|default:true] + allow_book_of_repairing = true + #Book of Magic Impregnation [false/true|default:true] + allow_book_of_magic_impregnation = true + #Book of Scribe [false/true|default:true] + allow_book_of_scribe = true + #Book of Soulbound [false/true|default:true] + allow_book_of_soulbound = true + #Book of Oblivion [false/true|default:true] + allow_book_of_oblivion = true + #Smoke Ball [false/true|default:true] + allow_smoke_ball = true + #Seeker Rod [false/true|default:true] + allow_seeker_rod = true + #Christmas Hat [false/true|default:true] + allow_christmas_hat = true + #Bag of Seeds [false/true|default:true] + allow_bag_of_seeds = true + #Magic Scroll [false/true|default:true] + allow_magic_scroll = true + #Gemstone of Familiar [false/true|default:true] + allow_gemstone_of_familiar = true + #Gemstone of Merchant [false/true|default:true] + allow_gemstone_of_merchant = true + #Gemstone of Prayer [false/true|default:true] + allow_gemstone_of_prayer = true + #Gemstone of Guardian [false/true|default:true] + allow_gemstone_of_guardian = true + +#Allows to enable some features related to others mods +[compatibility] + #fix the RepairCost:0 added by the anvil & grindstone in nbt preventing theses items to stack [false/true|default:true] + fix_repair_cost_zero = true + diff --git a/minecraft/config/config/tombstone/loottables/tombstone-pool-abandoned_grave.json b/minecraft/config/config/tombstone/loottables/tombstone-pool-abandoned_grave.json new file mode 100644 index 0000000..3e726e9 --- /dev/null +++ b/minecraft/config/config/tombstone/loottables/tombstone-pool-abandoned_grave.json @@ -0,0 +1,114 @@ +{ + "name": "tombstone:abandoned_grave", + "rolls": { + "type": "minecraft:uniform", + "min": 3.0, + "max": 5.0 + }, + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "weight": 10, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:essence_of_undeath" + }, + { + "type": "minecraft:item", + "weight": 50, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + } + ], + "name": "tombstone:receptacle_of_familiar" + }, + { + "type": "minecraft:item", + "weight": 200, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + } + ], + "name": "tombstone:magic_scroll" + }, + { + "type": "minecraft:item", + "weight": 50, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + }, + { + "function": "minecraft:set_nbt", + "tag": "{ancient:1b}" + } + ], + "name": "tombstone:magic_scroll" + }, + { + "type": "minecraft:item", + "weight": 200, + "functions": [ + { + "function": "minecraft:enchant_randomly" + } + ], + "name": "minecraft:book" + }, + { + "type": "minecraft:item", + "weight": 100, + "functions": [ + { + "function": "tombstone:enchanted_equipment", + "type": 0, + "enchantedChance": 50, + "randomEnchantability": 60 + } + ], + "name": "minecraft:book" + }, + { + "type": "minecraft:item", + "weight": 100, + "functions": [ + { + "function": "tombstone:enchanted_equipment", + "type": 2, + "enchantedChance": 50, + "randomEnchantability": 60 + } + ], + "name": "minecraft:book" + }, + { + "type": "minecraft:item", + "weight": 400, + "functions": [ + { + "function": "tombstone:enchanted_equipment", + "type": 1, + "enchantedChance": 50, + "randomEnchantability": 60 + } + ], + "name": "minecraft:book" + }, + { + "type": "minecraft:item", + "weight": 300, + "functions": [ + { + "function": "tombstone:random_potion" + } + ], + "name": "minecraft:potion" + } + ] +} \ No newline at end of file diff --git a/minecraft/config/config/tombstone/loottables/tombstone-pool-archaeology.json b/minecraft/config/config/tombstone/loottables/tombstone-pool-archaeology.json new file mode 100644 index 0000000..9f8bcb5 --- /dev/null +++ b/minecraft/config/config/tombstone/loottables/tombstone-pool-archaeology.json @@ -0,0 +1,88 @@ +{ + "name": "tombstone:archeology_treasure", + "rolls": 1.0, + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "weight": 20, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:essence_of_undeath" + }, + { + "type": "minecraft:item", + "weight": 20, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:ritual_flute" + }, + { + "type": "minecraft:item", + "weight": 20, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:receptacle_of_soul" + }, + { + "type": "minecraft:item", + "weight": 300, + "functions": [ + { + "function": "tombstone:random_magic_tablet", + "ancient": false + } + ], + "name": "tombstone:strange_tablet" + }, + { + "type": "minecraft:item", + "weight": 150, + "functions": [ + { + "function": "tombstone:random_magic_tablet", + "ancient": true + } + ], + "name": "tombstone:strange_tablet" + }, + { + "type": "minecraft:item", + "weight": 20, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:gemstone_of_familiar" + }, + { + "type": "minecraft:item", + "weight": 50, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + } + ], + "name": "tombstone:receptacle_of_familiar" + }, + { + "type": "minecraft:empty", + "weight": 5800 + } + ], + "conditions": [ + { + "condition": "tombstone:check_player" + } + ] +} \ No newline at end of file diff --git a/minecraft/config/config/tombstone/loottables/tombstone-pool-cat_morning.json b/minecraft/config/config/tombstone/loottables/tombstone-pool-cat_morning.json new file mode 100644 index 0000000..b36a24f --- /dev/null +++ b/minecraft/config/config/tombstone/loottables/tombstone-pool-cat_morning.json @@ -0,0 +1,67 @@ +{ + "name": "tombstone:cat_morning", + "rolls": 1.0, + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "weight": 100, + "functions": [ + { + "function": "tombstone:check_enabled" + }, + { + "function": "tombstone:trigger_cat_morning" + }, + { + "function": "minecraft:set_count", + "count": { + "type": "minecraft:uniform", + "min": 1.0, + "max": 3.0 + }, + "add": false + } + ], + "name": "tombstone:grave_dust" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:essence_of_undeath" + }, + { + "type": "minecraft:item", + "weight": 20, + "name": "minecraft:bundle" + }, + { + "type": "minecraft:item", + "weight": 20, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:bag_of_seeds" + }, + { + "type": "minecraft:item", + "weight": 20, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:gemstone_of_familiar" + }, + { + "type": "minecraft:empty", + "weight": 483 + } + ] +} \ No newline at end of file diff --git a/minecraft/config/config/tombstone/loottables/tombstone-pool-chest_treasure.json b/minecraft/config/config/tombstone/loottables/tombstone-pool-chest_treasure.json new file mode 100644 index 0000000..89eebc7 --- /dev/null +++ b/minecraft/config/config/tombstone/loottables/tombstone-pool-chest_treasure.json @@ -0,0 +1,107 @@ +{ + "name": "tombstone:chest_treasure", + "rolls": { + "type": "minecraft:uniform", + "min": 1.0, + "max": 3.0 + }, + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "weight": 20, + "name": "minecraft:bundle" + }, + { + "type": "minecraft:item", + "weight": 20, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:bag_of_seeds" + }, + { + "type": "minecraft:item", + "weight": 100, + "functions": [ + { + "function": "tombstone:random_scroll_buff", + "ancient": false + } + ], + "name": "tombstone:strange_scroll" + }, + { + "type": "minecraft:item", + "weight": 20, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + } + ], + "name": "tombstone:scroll_of_knowledge" + }, + { + "type": "minecraft:item", + "weight": 50, + "functions": [ + { + "function": "tombstone:random_magic_tablet", + "ancient": false + } + ], + "name": "tombstone:strange_tablet" + }, + { + "type": "minecraft:item", + "weight": 50, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + } + ], + "name": "tombstone:magic_scroll" + }, + { + "type": "minecraft:item", + "weight": 10, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:gemstone_of_familiar" + }, + { + "type": "minecraft:item", + "weight": 10, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + } + ], + "name": "tombstone:voodoo_poppet" + }, + { + "type": "minecraft:item", + "weight": 10, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + } + ], + "name": "tombstone:receptacle_of_familiar" + }, + { + "type": "minecraft:empty", + "weight": 870 + } + ], + "conditions": [ + { + "condition": "tombstone:check_player" + } + ] +} \ No newline at end of file diff --git a/minecraft/config/config/tombstone/loottables/tombstone-pool-lost_treasure.json b/minecraft/config/config/tombstone/loottables/tombstone-pool-lost_treasure.json new file mode 100644 index 0000000..42f0690 --- /dev/null +++ b/minecraft/config/config/tombstone/loottables/tombstone-pool-lost_treasure.json @@ -0,0 +1,153 @@ +{ + "name": "tombstone:lost_treasure", + "rolls": 1.0, + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "weight": 10, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:essence_of_undeath" + }, + { + "type": "minecraft:item", + "weight": 10, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:ritual_flute" + }, + { + "type": "minecraft:item", + "weight": 40, + "functions": [ + { + "function": "tombstone:random_in_tag", + "rl": "minecraft:decorated_pot_sherds" + } + ], + "name": "minecraft:book" + }, + { + "type": "minecraft:item", + "weight": 20, + "name": "minecraft:bundle" + }, + { + "type": "minecraft:item", + "weight": 20, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:bag_of_seeds" + }, + { + "type": "minecraft:item", + "weight": 15, + "functions": [ + { + "function": "tombstone:random_magic_tablet", + "ancient": true + } + ], + "name": "tombstone:strange_tablet" + }, + { + "type": "minecraft:item", + "weight": 20, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + } + ], + "name": "tombstone:scroll_of_knowledge" + }, + { + "type": "minecraft:item", + "weight": 50, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + } + ], + "name": "tombstone:magic_scroll" + }, + { + "type": "minecraft:item", + "weight": 10, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:gemstone_of_familiar" + }, + { + "type": "minecraft:item", + "weight": 10, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + } + ], + "name": "tombstone:voodoo_poppet" + }, + { + "type": "minecraft:item", + "weight": 10, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + } + ], + "name": "tombstone:receptacle_of_familiar" + }, + { + "type": "minecraft:item", + "weight": 20, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + } + ], + "name": "tombstone:fishing_rod_of_misadventure" + }, + { + "type": "minecraft:item", + "weight": 100, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:lost_tablet" + }, + { + "type": "minecraft:empty", + "weight": 3350 + } + ], + "conditions": [ + { + "condition": "tombstone:check_player" + }, + { + "condition": "minecraft:entity_properties", + "predicate": { + "type_specific": { + "in_open_water": true, + "type": "fishing_hook" + } + }, + "entity": "this" + } + ] +} \ No newline at end of file diff --git a/minecraft/config/config/tombstone/loottables/tombstone-pool-seeker_rod.json b/minecraft/config/config/tombstone/loottables/tombstone-pool-seeker_rod.json new file mode 100644 index 0000000..ae9a00f --- /dev/null +++ b/minecraft/config/config/tombstone/loottables/tombstone-pool-seeker_rod.json @@ -0,0 +1,69 @@ +{ + "name": "tombstone:seeker_rod", + "rolls": 1.0, + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "weight": 5, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:essence_of_undeath" + }, + { + "type": "minecraft:item", + "weight": 15, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:receptacle_of_soul" + }, + { + "type": "minecraft:item", + "weight": 25, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:gemstone_of_familiar" + }, + { + "type": "minecraft:item", + "weight": 25, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + } + ], + "name": "tombstone:receptacle_of_familiar" + }, + { + "type": "minecraft:item", + "weight": 10, + "functions": [ + { + "function": "minecraft:set_potion", + "id": "tombstone:restoration" + } + ], + "name": "minecraft:potion" + }, + { + "type": "minecraft:item", + "weight": 20, + "functions": [ + { + "function": "tombstone:random_scroll_buff", + "ancient": true + } + ], + "name": "tombstone:strange_scroll" + } + ] +} \ No newline at end of file diff --git a/minecraft/config/config/tombstone/loottables/tombstone-pool-sniffer_digging.json b/minecraft/config/config/tombstone/loottables/tombstone-pool-sniffer_digging.json new file mode 100644 index 0000000..13e2ded --- /dev/null +++ b/minecraft/config/config/tombstone/loottables/tombstone-pool-sniffer_digging.json @@ -0,0 +1,21 @@ +{ + "name": "tombstone:sniffer_digging", + "rolls": 1.0, + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "weight": 5, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:grave_dust" + }, + { + "type": "minecraft:empty", + "weight": 95 + } + ] +} \ No newline at end of file diff --git a/minecraft/config/config/tombstone/loottables/tombstone-pool-undead_boss.json b/minecraft/config/config/tombstone/loottables/tombstone-pool-undead_boss.json new file mode 100644 index 0000000..9ad8303 --- /dev/null +++ b/minecraft/config/config/tombstone/loottables/tombstone-pool-undead_boss.json @@ -0,0 +1,96 @@ +{ + "name": "tombstone:undead_boss", + "rolls": 1.0, + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "weight": 100, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + } + ], + "name": "tombstone:magic_scroll" + }, + { + "type": "minecraft:item", + "weight": 20, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:essence_of_undeath" + }, + { + "type": "minecraft:item", + "weight": 20, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:ritual_flute" + }, + { + "type": "minecraft:item", + "weight": 20, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:gemstone_of_familiar" + }, + { + "type": "minecraft:item", + "weight": 100, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:receptacle_of_soul" + }, + { + "type": "minecraft:item", + "weight": 100, + "functions": [ + { + "function": "tombstone:random_scroll_buff", + "ancient": true + } + ], + "name": "tombstone:strange_scroll" + }, + { + "type": "minecraft:item", + "weight": 50, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + }, + { + "function": "minecraft:set_nbt", + "tag": "{ancient:1b}" + } + ], + "name": "tombstone:magic_scroll" + }, + { + "type": "minecraft:item", + "weight": 100, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + } + ], + "name": "tombstone:receptacle_of_familiar" + }, + { + "type": "minecraft:empty", + "weight": 2550 + } + ] +} \ No newline at end of file diff --git a/minecraft/config/config/tombstone/loottables/tombstone-pool-undead_mob.json b/minecraft/config/config/tombstone/loottables/tombstone-pool-undead_mob.json new file mode 100644 index 0000000..ec9c3b7 --- /dev/null +++ b/minecraft/config/config/tombstone/loottables/tombstone-pool-undead_mob.json @@ -0,0 +1,75 @@ +{ + "name": "tombstone:undead_mob", + "rolls": 1.0, + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "weight": 100, + "functions": [ + { + "function": "tombstone:check_enabled" + }, + { + "function": "minecraft:set_count", + "count": { + "type": "minecraft:uniform", + "min": 1.0, + "max": 2.0 + }, + "add": false + } + ], + "name": "tombstone:grave_dust" + }, + { + "type": "minecraft:item", + "weight": 20, + "name": "minecraft:bundle" + }, + { + "type": "minecraft:item", + "weight": 10, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:bag_of_seeds" + }, + { + "type": "minecraft:item", + "weight": 20, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + } + ], + "name": "tombstone:magic_scroll" + }, + { + "type": "minecraft:item", + "weight": 5, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:essence_of_undeath" + }, + { + "type": "minecraft:item", + "weight": 5, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:ritual_flute" + }, + { + "type": "minecraft:empty", + "weight": 800 + } + ] +} \ No newline at end of file diff --git a/minecraft/config/config/tombstone/loottables/tombstone-table-chest_treasure.json b/minecraft/config/config/tombstone/loottables/tombstone-table-chest_treasure.json new file mode 100644 index 0000000..7da75c3 --- /dev/null +++ b/minecraft/config/config/tombstone/loottables/tombstone-table-chest_treasure.json @@ -0,0 +1 @@ +{"loottables":["minecraft:chests/bastion_treasure","minecraft:chests/ruined_portal","minecraft:chests/shipwreck_supply","minecraft:chests/stronghold_corridor","minecraft:chests/bastion_other","minecraft:chests/ancient_city_ice_box","minecraft:chests/simple_dungeon","minecraft:chests/nether_bridge","minecraft:chests/underwater_ruin_small","minecraft:chests/igloo_chest","minecraft:chests/buried_treasure","minecraft:chests/abandoned_mineshaft","minecraft:chests/bastion_hoglin_stable","minecraft:chests/ancient_city","minecraft:chests/stronghold_crossing","minecraft:chests/shipwreck_treasure","minecraft:chests/jungle_temple","minecraft:chests/desert_pyramid","minecraft:chests/pillager_outpost","minecraft:chests/stronghold_library","minecraft:chests/underwater_ruin_big","minecraft:chests/shipwreck_map","minecraft:chests/jungle_temple_dispenser","minecraft:chests/woodland_mansion","minecraft:chests/end_city_treasure","minecraft:chests/bastion_bridge"]} \ No newline at end of file diff --git a/minecraft/config/config/tombstone/version.info b/minecraft/config/config/tombstone/version.info new file mode 100644 index 0000000..51c9281 --- /dev/null +++ b/minecraft/config/config/tombstone/version.info @@ -0,0 +1 @@ +9.0.9 \ No newline at end of file diff --git a/minecraft/config/config/tomeofblood/base-common.toml b/minecraft/config/config/tomeofblood/base-common.toml new file mode 100644 index 0000000..66c981f --- /dev/null +++ b/minecraft/config/config/tomeofblood/base-common.toml @@ -0,0 +1,5 @@ +#Conversion rate of LP into player mana +conversionRate = 10 +#Scale at which Living Mage Armor gains experience compared to normal Living Armor +livingExpScale = 0.8 + diff --git a/minecraft/config/config/tomeofblood/glyph_sentient_harm.toml b/minecraft/config/config/tomeofblood/glyph_sentient_harm.toml new file mode 100644 index 0000000..b0331f2 --- /dev/null +++ b/minecraft/config/config/tomeofblood/glyph_sentient_harm.toml @@ -0,0 +1,36 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 25 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = ["ars_nouveau:glyph_amplify=2"] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Range: 0.0 ~ 2.147483647E9 + damage = 4.0 + #Range: 0.0 ~ 2.147483647E9 + amplify = 2.0 + #Potion duration, in seconds + #Range: > 0 + potion_time = 5 + #Extend time duration, in seconds + #Range: > 0 + extend_time = 5 + diff --git a/minecraft/config/config/tomeofblood/glyph_sentient_wrath.toml b/minecraft/config/config/tomeofblood/glyph_sentient_wrath.toml new file mode 100644 index 0000000..a291835 --- /dev/null +++ b/minecraft/config/config/tomeofblood/glyph_sentient_wrath.toml @@ -0,0 +1,36 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 40 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 2 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = ["ars_nouveau:glyph_amplify=2"] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Range: 0.0 ~ 2.147483647E9 + damage = 3.0 + #Range: 0.0 ~ 2.147483647E9 + amplify = 2.0 + #Potion duration, in seconds + #Range: > 0 + potion_time = 20 + #Extend time duration, in seconds + #Range: > 0 + extend_time = 5 + diff --git a/minecraft/config/config/toms_storage-common.toml b/minecraft/config/config/toms_storage-common.toml new file mode 100644 index 0000000..f6f77e9 --- /dev/null +++ b/minecraft/config/config/toms_storage-common.toml @@ -0,0 +1,14 @@ +#IMPORTANT NOTICE: +#THIS IS ONLY THE COMMON CONFIG. It does not contain all the values adjustable for Tom's Simple Storage +#The settings have been moved to toms_storage-server.toml +#That file is PER WORLD, meaning you have to go into 'saves//serverconfig' to adjust it. Those changes will then only apply for THAT WORLD. +#You can then take that config file and put it in the 'defaultconfigs' folder to make it apply automatically to all NEW worlds you generate FROM THERE ON. +#This may appear confusing to many of you, but it is a new sensible way to handle configuration, because the server configuration is synced when playing multiplayer. +importantInfo = true +#List of multiblock inventory blocks +multiblockInv = [""] +#List of mod ids whose blocks is ignored by the inventory connector +blockedMods = [""] +#List of block ids ignored by the inventory connector +blockedBlocks = [""] + diff --git a/minecraft/config/config/transition.json b/minecraft/config/config/transition.json new file mode 100644 index 0000000..652c133 --- /dev/null +++ b/minecraft/config/config/transition.json @@ -0,0 +1,4 @@ +{ + "version": 1, + "userConsentedToSendCrashReports": false +} \ No newline at end of file diff --git a/minecraft/config/config/trender.json b/minecraft/config/config/trender.json new file mode 100644 index 0000000..f07510e --- /dev/null +++ b/minecraft/config/config/trender.json @@ -0,0 +1,4 @@ +{ + "version": 1, + "style": "VANILLA_OLD" +} \ No newline at end of file diff --git a/minecraft/config/config/xaerominimap-common.txt b/minecraft/config/config/xaerominimap-common.txt new file mode 100644 index 0000000..34539fa --- /dev/null +++ b/minecraft/config/config/xaerominimap-common.txt @@ -0,0 +1,5 @@ +allowCaveModeOnServer:true +allowNetherCaveModeOnServer:true +allowRadarOnServer:true +registerStatusEffects:true +everyoneTracksEveryone:false diff --git a/minecraft/config/config/xaerominimap.txt b/minecraft/config/config/xaerominimap.txt new file mode 100644 index 0000000..f619256 --- /dev/null +++ b/minecraft/config/config/xaerominimap.txt @@ -0,0 +1,133 @@ +#CONFIG ONLY OPTIONS +ignoreUpdate:0 +settingsButton:false +allowWrongWorldTeleportation:false +differentiateByServerAddress:true +debugEntityIcons:false +debugEntityVariantIds:false +radarHideInvisibleEntities:true +allowInternetAccess:true +#INGAME SETTINGS (DO NOT EDIT!) +updateNotification:true +minimap:true +caveMaps:2 +caveZoom:1 +showWaypoints:true +showIngameWaypoints:true +displayRedstone:true +deathpoints:true +oldDeathpoints:true +distance:1 +lockNorth:false +zoom:0 +minimapSize:0 +chunkGrid:-1 +slimeChunks:false +mapSafeMode:false +minimapOpacity:100.0 +waypointsIngameIconScale:0 +waypointsIngameDistanceScale:0 +waypointsIngameNameScale:0 +waypointsIngameCloseScale:1.0 +antiAliasing:true +blockColours:0 +lighting:true +dotsStyle:0 +dotNameScale:1.0 +compassOverEverything:true +showFlowers:true +keepWaypointNames:true +waypointsDistanceExp:0 +waypointsDistanceMin:0.0 +defaultWaypointTPCommandFormat:/tp @s {x} {y} {z} +defaultWaypointTPCommandRotationFormat:/tp @s {x} {y} {z} {yaw} ~ +arrowScale:1.5 +arrowColour:0 +smoothDots:true +worldMap:true +terrainDepth:true +terrainSlopes:2 +mainEntityAs:0 +blockTransparency:true +waypointOpacityIngame:80 +waypointOpacityMap:90 +hideWorldNames:1 +openSlimeSettings:true +alwaysShowDistance:false +renderLayerIndex:1 +crossDimensionalTp:true +biomeColorsVanillaMode:false +lookingAtAngle:10 +lookingAtAngleVertical:180 +centeredEnlarged:false +zoomOnEnlarged:0 +minimapTextAlign:0 +waypointsMutualEdit:true +compassLocation:1 +compassDirectionScale:0 +caveMapsDepth:30 +hideWaypointCoordinates:false +renderAllSets:false +playerArrowOpacity:100 +waypointsBottom:false +minimapShape:0 +lightOverlayType:0 +lightOverlayMaxLight:7 +lightOverlayMinLight:0 +lightOverlayColor:13 +uiScale:0 +bossHealthPushBox:1 +potionEffectPushBox:1 +minimapFrame:0 +minimapFrameColor:9 +compassColor:9 +northCompassColor:-1 +displayMultipleWaypointInfo:1 +entityRadar:true +adjustHeightForCarpetLikeBlocks:true +autoConvertWaypointDistanceToKmThreshold:10000 +waypointDistancePrecision:1 +mainDotSize:2 +partialYTeleportation:true +deleteReachedDeathpoints:true +hideMinimapUnderScreen:true +hideMinimapUnderF3:true +manualCaveModeStartAuto:true +manualCaveModeStart:-1 +chunkGridLineWidth:1 +temporaryWaypointsGlobal:true +keepUnlockedWhenEnlarged:false +enlargedMinimapAToggle:false +displayStainedGlass:true +waypointOnMapScale:0 +switchToAutoOnDeath:true +infoDisplayBackgroundOpacity:40 +caveModeToggleTimer:1000 +legibleCaveMaps:false +biomeBlending:true +displayTrackedPlayersOnMap:true +displayTrackedPlayersInWorld:true +dimensionScaledMaxWaypointDistance:true +trackedPlayerWorldIconScale:0 +trackedPlayerWorldNameScale:0 +trackedPlayerMinimapIconScale:0 +displayClaims:true +displayCurrentClaim:true +claimsFillOpacity:46 +claimsBorderOpacity:80 +infoDisplayOrder:coords:overworld_coords:chunk_coords:angles:dimension:biome:weather:light_level:time:real_time:highlights:light_overlay_indicator:manual_cave_mode_indicator:custom_sub_world +infoDisplay:coords:true:15:-1 +infoDisplay:overworld_coords:false:15:-1 +infoDisplay:chunk_coords:false:15:-1 +infoDisplay:angles:false:15:-1 +infoDisplay:dimension:false:15:-1 +infoDisplay:biome:false:15:-1 +infoDisplay:weather:false:15:-1 +infoDisplay:light_level:0:15:-1 +infoDisplay:time:0:15:-1 +infoDisplay:real_time:0:15:-1 +infoDisplay:highlights:true:15:-1 +infoDisplay:light_overlay_indicator:true:15:-1 +infoDisplay:manual_cave_mode_indicator:true:15:-1 +infoDisplay:custom_sub_world:true:15:-1 +module;id=xaerominimap:minimap;active=true;x=0;y=0;centered=false;fromRight=false;fromBottom=false;flippedVer=false;flippedHor=false; diff --git a/minecraft/config/config/xaerominimap_entities.json b/minecraft/config/config/xaerominimap_entities.json new file mode 100644 index 0000000..93efd90 --- /dev/null +++ b/minecraft/config/config/xaerominimap_entities.json @@ -0,0 +1,191 @@ +{ + "hardInclude": "anything", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [ + "minecraft:glow_item_frame", + "minecraft:item_frame" + ], + "name": "gui.xaero_entity_category_root", + "protection": true, + "settingOverrides": { + "displayHeight": 0.0, + "displayed": true, + "heightBasedFade": true, + "renderOrder": 0.0, + "color": 13.0, + "displayNameWhenIconFails": true, + "entityNumber": 1000.0, + "alwaysDisplayNametags": false, + "startFadingAt": 0.0, + "dotSize": 2.0, + "renderOverMinimapFrame": 1.0, + "icons": 1.0, + "heightLimit": 20.0, + "names": 0.0, + "iconScale": 1.0 + }, + "subCategories": [ + { + "hardInclude": "living", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [ + "minecraft:armor_stand" + ], + "name": "gui.xaero_entity_category_living", + "protection": true, + "settingOverrides": { + "renderOrder": 2.0, + "color": 14.0 + }, + "subCategories": [ + { + "hardInclude": "players", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_players", + "protection": true, + "settingOverrides": { + "renderOrder": 6.0, + "heightLimit": 2050.0, + "color": 15.0 + }, + "subCategories": [ + { + "hardInclude": "nothing", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_friend", + "protection": true, + "settingOverrides": {}, + "subCategories": [] + }, + { + "hardInclude": "tracked", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_tracked", + "protection": true, + "settingOverrides": { + "icons": 2.0 + }, + "subCategories": [] + }, + { + "hardInclude": "same-team", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_same_team", + "protection": true, + "settingOverrides": {}, + "subCategories": [] + }, + { + "hardInclude": "anything", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_other_teams", + "protection": true, + "settingOverrides": { + "renderOrder": 7.0 + }, + "subCategories": [] + } + ] + }, + { + "hardInclude": "hostile", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_hostile", + "protection": true, + "settingOverrides": { + "renderOrder": 3.0 + }, + "subCategories": [ + { + "hardInclude": "tamed", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_hostile_tamed", + "protection": true, + "settingOverrides": { + "renderOrder": 5.0 + }, + "subCategories": [] + } + ] + }, + { + "hardInclude": "anything", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_friendly", + "protection": true, + "settingOverrides": {}, + "subCategories": [ + { + "hardInclude": "tamed", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_friendly_tamed", + "protection": true, + "settingOverrides": { + "renderOrder": 4.0 + }, + "subCategories": [] + } + ] + } + ] + }, + { + "hardInclude": "items", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_items", + "protection": true, + "settingOverrides": { + "renderOrder": 1.0, + "color": 12.0 + }, + "subCategories": [] + }, + { + "hardInclude": "anything", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_other_entities", + "protection": true, + "settingOverrides": { + "color": 5.0 + }, + "subCategories": [] + } + ] +} \ No newline at end of file diff --git a/minecraft/config/config/xaeropatreon.txt b/minecraft/config/config/xaeropatreon.txt new file mode 100644 index 0000000..e69de29 diff --git a/minecraft/config/config/xaeroworldmap-common.txt b/minecraft/config/config/xaeroworldmap-common.txt new file mode 100644 index 0000000..0caae0c --- /dev/null +++ b/minecraft/config/config/xaeroworldmap-common.txt @@ -0,0 +1,4 @@ +allowCaveModeOnServer:true +allowNetherCaveModeOnServer:true +registerStatusEffects:true +everyoneTracksEveryone:false diff --git a/minecraft/config/config/xaeroworldmap.txt b/minecraft/config/config/xaeroworldmap.txt new file mode 100644 index 0000000..574155d --- /dev/null +++ b/minecraft/config/config/xaeroworldmap.txt @@ -0,0 +1,55 @@ +ignoreUpdate:0 +updateNotification:true +allowInternetAccess:true +differentiateByServerAddress:true +caveMapsAllowed:true +debug:false +lighting:true +colours:0 +loadChunks:true +updateChunks:true +terrainSlopes:2 +terrainDepth:true +footsteps:true +flowers:true +coordinates:true +hoveredBiome:true +biomeColorsVanillaMode:false +waypoints:true +renderArrow:true +displayZoom:true +worldmapWaypointsScale:1.0 +openMapAnimation:true +reloadVersion:0 +reloadEverything:false +zoomButtons:true +waypointBackgrounds:true +detectAmbiguousY:true +showDisabledWaypoints:false +closeWaypointsWhenHopping:true +adjustHeightForCarpetLikeBlocks:true +onlyCurrentMapWaypoints:false +minZoomForLocalWaypoints:0.0 +arrowColour:-2 +minimapRadar:true +renderWaypoints:true +partialYTeleportation:true +displayStainedGlass:true +caveModeDepth:30 +caveModeStart:2147483647 +autoCaveMode:-1 +legibleCaveMaps:false +displayCaveModeStart:true +caveModeToggleTimer:1000 +defaultCaveModeType:1 +biomeBlending:true +trackedPlayers:true +multipleImagesExport:false +nightExport:false +highlightsExport:false +exportScaleDownSquare:20 +mapWritingDistance:-1 +displayClaims:true +claimsFillOpacity:46 +claimsBorderOpacity:80 +globalVersion:1 diff --git a/minecraft/config/config/xnet-client.toml b/minecraft/config/config/xnet-client.toml new file mode 100644 index 0000000..3c4b653 --- /dev/null +++ b/minecraft/config/config/xnet-client.toml @@ -0,0 +1,9 @@ + +#General settings +[general] + #Maximum size of the packet used to send copy/pasted channels/connectors to the server. -1 means no maximum (packets are split) + #Range: -1 ~ 1000000000 + controllerMaxPaste = -1 + #If true then cables are also shown when sneaking even if they are not in a facade + showNonFacadedCablesWhileSneaking = true + diff --git a/minecraft/config/ftbquests/quests/chapters/botania.snbt b/minecraft/config/ftbquests/quests/chapters/botania.snbt index efecd9e..ada0cbf 100644 --- a/minecraft/config/ftbquests/quests/chapters/botania.snbt +++ b/minecraft/config/ftbquests/quests/chapters/botania.snbt @@ -362,13 +362,13 @@ { count: 8L id: "66ED657313BAF952" - item: { Count: 8, id: "botania:livingwood" } + item: "botania:livingwood_log" type: "item" } { count: 3L id: "1A24C3DB0D21973E" - item: { Count: 3, id: "botania:glimmering_livingwood" } + item: "botania:glimmering_livingwood_log" type: "item" } { diff --git a/minecraft/config/ftbquests/quests/chapters/test.snbt b/minecraft/config/ftbquests/quests/chapters/test.snbt new file mode 100644 index 0000000..707f678 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/test.snbt @@ -0,0 +1,11 @@ +{ + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "test" + group: "5DCD24AB1FDDFB39" + id: "0491303980FD7808" + order_index: 6 + quest_links: [ ] + quests: [ ] + title: "test" +} diff --git a/minecraft/config/ftbquests/quests/reward_tables/commonseed.snbt b/minecraft/config/ftbquests/quests/reward_tables/commonseed.snbt new file mode 100644 index 0000000..dcec2d7 --- /dev/null +++ b/minecraft/config/ftbquests/quests/reward_tables/commonseed.snbt @@ -0,0 +1,15 @@ +{ + id: "46B63E7F34B18C54" + loot_size: 1 + order_index: 5 + rewards: [{ + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item_tag(forge:seeds))" + } + } + }] + title: "commonseed" +} diff --git a/minecraft/config/jade/server-plugin-overrides.json b/minecraft/config/jade/server-plugin-overrides.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/minecraft/config/jade/server-plugin-overrides.json @@ -0,0 +1 @@ +{} \ No newline at end of file