import pack
This commit is contained in:
commit
745c5ea479
2
.gitattributes
vendored
Normal file
2
.gitattributes
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
# Disable Git line ending conversion, to prevent packwiz index hashes changing when committing from Windows
|
||||
* -text
|
8
.gitignore
vendored
Normal file
8
.gitignore
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
# Exclude exported CurseForge zip files
|
||||
/*.zip
|
||||
|
||||
# Exclude exported Modrinth modpacks
|
||||
*.mrpack
|
||||
|
||||
# Exclude packwiz binary
|
||||
packwiz.exe
|
5
.packwizignore
Normal file
5
.packwizignore
Normal file
@ -0,0 +1,5 @@
|
||||
# .packwizignore follows the same format as .gitignore, and can be used to exclude unwanted files from pack exports
|
||||
# See https://git-scm.com/docs/gitignore
|
||||
|
||||
# Exclude README
|
||||
/README.md
|
153
config/Advancedperipherals/peripherals.toml
Normal file
153
config/Advancedperipherals/peripherals.toml
Normal file
@ -0,0 +1,153 @@
|
||||
|
||||
#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 = 100000000
|
||||
#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
|
||||
|
||||
[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 = false
|
||||
#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
|
||||
|
||||
[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
|
||||
|
||||
[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.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
|
||||
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: > 1000
|
||||
chatMessageCooldown = 1000
|
||||
|
||||
[Peripherals.Pocket_Peripherals]
|
||||
#If true, pockets will have infinite fuel
|
||||
disablePocketFuelConsumption = true
|
||||
|
11
config/Advancedperipherals/world.toml
Normal file
11
config/Advancedperipherals/world.toml
Normal file
@ -0,0 +1,11 @@
|
||||
|
||||
#Config to adjust world settings
|
||||
[World]
|
||||
#Enable the villager structures for the computer scientist.
|
||||
enableVillagerStructures = true
|
||||
#Gives the ap documentation to new players.
|
||||
givePlayerBookOnJoin = false
|
||||
#The weight of the villager structures.
|
||||
#Range: 0 ~ 16000
|
||||
villagerStructureWeight = 10
|
||||
|
232
config/Mekanism/general.toml
Normal file
232
config/Mekanism/general.toml
Normal file
@ -0,0 +1,232 @@
|
||||
|
||||
#General Config. This config is synced from server to client.
|
||||
[general]
|
||||
#Log Mekanism packet names. Debug setting.
|
||||
logPackets = false
|
||||
#Disable to make the anchor upgrade not do anything.
|
||||
allowChunkloading = false
|
||||
#Enable this to allow dragging items from JEI into the target slot of Digital Miner filters.
|
||||
easyMinerFilters = false
|
||||
#How many ticks must pass until a block's active state is synced with the client, if it has been rapidly changing.
|
||||
#Range: 0 ~ 1200
|
||||
blockDeactivationDelay = 60
|
||||
#Any mod ids added to this list will not be able to have any of their blocks, picked up by the cardboard box. For example: ["mekanism"]
|
||||
cardboardModBlacklist = []
|
||||
#Allow right clicking on Cables/Pipes/Tubes with alloys to upgrade the tier.
|
||||
transmitterAlloyUpgrade = true
|
||||
#Base factor for working out machine performance with upgrades - UpgradeModifier * (UpgradesInstalled/UpgradesPossible).
|
||||
#Range: > 1
|
||||
maxUpgradeMultiplier = 10
|
||||
#How much Boiler heat is immediately usable to convert water to steam.
|
||||
#Range: 0.01 ~ 1.0
|
||||
boilerWaterConductivity = 0.7
|
||||
#Amount of heat produced per fuel tick of a fuel's burn time in the Fuelwood Heater.
|
||||
#Range: 0.1 ~ 4000000.0
|
||||
heatPerFuelTick = 400.0
|
||||
#Number of ticks to burn an item at in a Fuelwood Heater. Use this config option to effectively make Fuelwood Heater's burn faster but produce the same amount of heat per item.
|
||||
#Range: 1 ~ 1000
|
||||
fuelwoodTickMultiplier = 1
|
||||
#How much heat energy is created from one Joule of regular energy in the Resistive Heater.
|
||||
#Range: 0.0 ~ 1.0
|
||||
resistiveHeaterEfficiency = 0.6
|
||||
#Amount of heat each Boiler heating element produces.
|
||||
#Range: 0.1 ~ 1.024E9
|
||||
superheatingHeatTransfer = 1.6E7
|
||||
#Peak processing rate for the Solar Neutron Activator. Note: It can go higher than this value in some extreme environments.
|
||||
#Range: 1 ~ 1024
|
||||
maxSolarNeutronActivatorRate = 64
|
||||
|
||||
#Dynamic Tank Settings
|
||||
[general.dynamic_tank]
|
||||
#Amount of fluid (mB) that each block of the dynamic tank contributes to the volume. Max = volume * fluidPerTank
|
||||
#Range: 1 ~ 368224
|
||||
fluidPerTank = 350000
|
||||
#Amount of chemical (mB) that each block of the dynamic tank contributes to the volume. Max = volume * chemicalPerTank
|
||||
#Range: 1 ~ 1581510980256305
|
||||
chemicalPerTank = 16000000
|
||||
|
||||
#Auto Eject Settings
|
||||
[general.auto_eject]
|
||||
#Rate at which fluid gets auto ejected from tiles.
|
||||
#Range: > 1
|
||||
fluid = 1024
|
||||
#Rate at which chemicals gets auto ejected from tiles.
|
||||
#Range: 1 ~ 9223372036854775807
|
||||
chemical = 1024
|
||||
#The percentage of a tank's capacity to leave contents in when set to dumping excess.
|
||||
#Range: 0.001 ~ 1.0
|
||||
dumpExcessKeepRatio = 0.9
|
||||
|
||||
#Prefilled Tanks
|
||||
[general.prefilled]
|
||||
#Add filled creative fluid tanks to creative/JEI.
|
||||
fluidTanks = true
|
||||
#Add filled creative gas tanks to creative/JEI.
|
||||
gasTanks = true
|
||||
#Add filled creative infusion tanks to creative/JEI.
|
||||
infusionTanks = true
|
||||
#Add filled creative pigment tanks to creative/JEI.
|
||||
pigmentTanks = true
|
||||
#Add filled creative slurry tanks to creative/JEI.
|
||||
slurryTanks = true
|
||||
|
||||
#Energy Conversion Rate Settings
|
||||
[general.energy_conversion]
|
||||
#Disables IC2 power integration. Requires world restart (server-side option in SMP).
|
||||
blacklistIC2 = false
|
||||
#Conversion multiplier from EU to Joules (EU * euConversionRate = Joules)
|
||||
euConversionRate = "10"
|
||||
#Disables Forge Energy (FE,RF,IF,uF,CF) power integration. Requires world restart (server-side option in SMP).
|
||||
blacklistForge = false
|
||||
#Conversion multiplier from Forge Energy to Joules (FE * feConversionRate = Joules)
|
||||
feConversionRate = "2.5000"
|
||||
#Disables Flux Networks higher throughput Forge Energy (FE,RF,IF,uF,CF) power integration. Requires world restart (server-side option in SMP). Note: Disabling Forge Energy integration also disables this.
|
||||
blacklistFluxNetworks = false
|
||||
#How much energy is produced per mB of Hydrogen, also affects Electrolytic Separator usage, Ethylene burn rate and Gas generator energy capacity.
|
||||
HydrogenEnergyDensity = "200"
|
||||
#Maximum Joules per mB of Steam. Also affects Thermoelectric Boiler.
|
||||
maxEnergyPerSteam = "10"
|
||||
|
||||
#Radiation Settings
|
||||
[general.radiation]
|
||||
#Enable worldwide radiation effects. Don't be a downer and disable this.
|
||||
radiationEnabled = true
|
||||
#The radius of chunks checked when running radiation calculations. The algorithm is efficient, but don't abuse it by making this crazy high.
|
||||
#Range: 1 ~ 100
|
||||
chunkCheckRadius = 5
|
||||
#Radiation sources are multiplied by this constant roughly once per second to represent their emission decay. At the default rate, it takes roughly 10 hours to remove a 1,000 Sv/h (crazy high) source.
|
||||
#Range: 0.0 ~ 1.0
|
||||
sourceDecayRate = 0.9995
|
||||
#Radiated objects and entities are multiplied by this constant roughly once per second to represent their dosage decay.
|
||||
#Range: 0.0 ~ 1.0
|
||||
targetDecayRate = 0.9995
|
||||
#Defines the minimum severity radiation dosage severity (scale of 0 to 1) for which negative effects can take place. Set to 1 to disable negative effects completely.
|
||||
#Range: 0.0 ~ 1.0
|
||||
negativeEffectsMinSeverity = 0.1
|
||||
#Amount of gas (mB) that can be stored in a Radioactive Waste Barrel.
|
||||
#Range: 1 ~ 9223372036854775807
|
||||
radioactiveWasteBarrelMaxGas = 512000
|
||||
#Number of ticks required for radioactive gas stored in a Radioactive Waste Barrel to decay radioactiveWasteBarrelDecayAmount mB.
|
||||
#Range: > 1
|
||||
radioactiveWasteBarrelProcessTicks = 20
|
||||
#Number of mB of gas that decay every radioactiveWasteBarrelProcessTicks ticks when stored in a Radioactive Waste Barrel. Set to zero to disable decay all together. (Gases in the mekanism:waste_barrel_decay_blacklist tag will not decay).
|
||||
#Range: 0 ~ 9223372036854775807
|
||||
radioactiveWasteBarrelDecayAmount = 1
|
||||
|
||||
#Digital Miner Settings
|
||||
[general.digital_miner]
|
||||
#Energy multiplier for using silk touch mode with the Digital Miner.
|
||||
#Range: > 1
|
||||
silkMultiplier = 12
|
||||
#Maximum radius in blocks that the Digital Miner can reach. (Increasing this may have negative effects on stability and/or performance. We strongly recommend you leave it at the default value).
|
||||
#Range: > 1
|
||||
maxRadius = 32
|
||||
#Number of ticks required to mine a single block with a Digital Miner (without any upgrades).
|
||||
#Range: > 1
|
||||
ticksPerMine = 80
|
||||
|
||||
#Laser Settings
|
||||
[general.laser]
|
||||
#If enabled, lasers can break blocks and the flamethrower starts fires.
|
||||
aestheticWorldDamage = true
|
||||
#How far (in blocks) a laser can travel.
|
||||
#Range: 1 ~ 1024
|
||||
range = 64
|
||||
#Energy needed to destroy or attract blocks with a Laser (per block hardness level).
|
||||
energyNeededPerHardness = "100000"
|
||||
#Energy used per half heart of damage being transferred to entities.
|
||||
energyPerDamage = "2500"
|
||||
|
||||
#Oredictionificator Settings
|
||||
[general.oredictionificator]
|
||||
#The list of valid tag prefixes for the Oredictionificator. Note: It is highly recommended to only include well known/defined tag prefixes otherwise it is very easy to potentially add in accidental conversions of things that are not actually equivalent.
|
||||
validItemFilters = ["forge:dusts/", "forge:ingots/", "forge:nuggets/", "forge:ores/", "forge:raw_materials/", "forge:storage_blocks/", "forge:gems/"]
|
||||
|
||||
#Pump Settings
|
||||
[general.pump]
|
||||
#Maximum block distance to pull fluid from for the Electric Pump.
|
||||
#Range: 1 ~ 512
|
||||
maxPumpRange = 80
|
||||
#If enabled makes Water and Heavy Water blocks be removed from the world on pump.
|
||||
pumpWaterSources = false
|
||||
#mB of Heavy Water that is extracted per block of Water by the Electric Pump with a Filter Upgrade.
|
||||
#Range: 1 ~ 1000
|
||||
pumpHeavyWaterAmount = 10
|
||||
#Fluidic Plenisher stops after this many blocks.
|
||||
#Range: 1 ~ 1000000
|
||||
maxPlenisherNodes = 4000
|
||||
|
||||
#Quantum Entangloporter Settings
|
||||
[general.quantum_entangloporter]
|
||||
#Maximum energy buffer (Mekanism Joules) of an Entangoloporter frequency - i.e. the maximum transfer per tick per frequency. Default is ultimate tier energy cube capacity.
|
||||
energyBuffer = "256000000"
|
||||
#Maximum fluid buffer (mb) of an Entangoloporter frequency - i.e. the maximum transfer per tick per frequency. Default is ultimate tier tank capacity.
|
||||
#Range: > 1
|
||||
fluidBuffer = 256000
|
||||
#Maximum chemical buffer (mb) of an Entangoloporter frequency - i.e. the maximum transfer per tick per frequency. Default is ultimate tier tank capacity.
|
||||
#Range: 1 ~ 9223372036854775807
|
||||
chemicalBuffer = 8192000
|
||||
|
||||
#Block security/protection Settings
|
||||
[general.security]
|
||||
#Enable the security system for players to prevent others from accessing their machines. Does NOT affect Frequencies.
|
||||
allowProtection = true
|
||||
#If this is enabled then players with the 'mekanism.bypass_security' permission (default ops) can bypass the block and item security restrictions.
|
||||
opsBypassRestrictions = false
|
||||
|
||||
#Nutritional Paste Settings
|
||||
[general.nutritional_paste]
|
||||
#Saturation level of Nutritional Paste when eaten.
|
||||
#Range: 0.0 ~ 100.0
|
||||
saturation = 0.8
|
||||
#How much mB of Nutritional Paste equates to one 'half-food.'
|
||||
#Range: > 1
|
||||
mbPerFood = 50
|
||||
|
||||
#Boiler Settings
|
||||
[general.boiler]
|
||||
#Amount of fluid (mB) that each block of the boiler's water portion contributes to the volume. Max = volume * waterPerTank
|
||||
#Range: 1 ~ 368224
|
||||
waterPerTank = 16000
|
||||
#Amount of steam (mB) that each block of the boiler's steam portion contributes to the volume. Max = volume * steamPerTank
|
||||
#Range: 10 ~ 1581510980256305
|
||||
steamPerTank = 160000
|
||||
#Amount of steam (mB) that each block of the boiler's heated coolant portion contributes to the volume. Max = volume * heatedCoolantPerTank
|
||||
#Range: 1 ~ 1581510980256305
|
||||
heatedCoolantPerTank = 256000
|
||||
#Amount of steam (mB) that each block of the boiler's cooled coolant portion contributes to the volume. Max = volume * cooledCoolantPerTank
|
||||
#Range: 1 ~ 1581510980256305
|
||||
cooledCoolantPerTank = 256000
|
||||
|
||||
#Thermal Evaporation Plant Settings
|
||||
[general.thermal_evaporation]
|
||||
#Thermal Evaporation Tower heat loss per tick.
|
||||
#Range: 0.001 ~ 1000.0
|
||||
heatDissipation = 0.02
|
||||
#Temperature to amount produced ratio for Thermal Evaporation Tower.
|
||||
#Range: 0.001 ~ 1000000.0
|
||||
tempMultiplier = 0.4
|
||||
#Heat to absorb per Solar Panel array of Thermal Evaporation Tower.
|
||||
#Range: 0.001 ~ 1000000.0
|
||||
solarMultiplier = 0.2
|
||||
#Heat capacity of Thermal Evaporation Tower layers (increases amount of energy needed to increase temperature).
|
||||
#Range: 1.0 ~ 1000000.0
|
||||
heatCapacity = 100.0
|
||||
#Amount of fluid (mB) that each block of the evaporation plant contributes to the input tank capacity. Max = volume * fluidPerTank
|
||||
#Range: 1 ~ 29826161
|
||||
fluidPerTank = 64000
|
||||
#Amount of output fluid (mB) that the evaporation plant can store.
|
||||
#Range: > 1
|
||||
outputTankCapacity = 10000
|
||||
|
||||
#SPS Settings
|
||||
[general.sps]
|
||||
#How much input gas (polonium) in mB must be processed to make 1 mB of antimatter. Input tank capacity is 2x this value.
|
||||
#Range: > 1
|
||||
inputPerAntimatter = 1000
|
||||
#Amount of output gas (mB, antimatter) that the SPS can store.
|
||||
#Range: 1 ~ 9223372036854775807
|
||||
outputTankCapacity = 1000
|
||||
#Energy needed to process 1 mB of input (inputPerAntimatter * energyPerInput = energy to produce 1 mB of antimatter).
|
||||
energyPerInput = "500000"
|
||||
|
149
config/Mekanism/generators.toml
Normal file
149
config/Mekanism/generators.toml
Normal file
@ -0,0 +1,149 @@
|
||||
|
||||
#Mekanism Generators Config. This config is synced between server and client.
|
||||
[generators]
|
||||
#Affects the Injection Rate, Max Temp, and Ignition Temp.
|
||||
energyPerFusionFuel = "10000000"
|
||||
#Peak output for the Solar Generator. Note: It can go higher than this value in some extreme environments.
|
||||
solarGeneration = "50"
|
||||
#Peak output for the Advanced Solar Generator. Note: It can go higher than this value in some extreme environments.
|
||||
advancedSolarGeneration = "300"
|
||||
|
||||
#Bio Generator Settings
|
||||
[generators.bio_generator]
|
||||
#Amount of energy in Joules the Bio Generator produces per tick.
|
||||
bioGeneration = "1250"
|
||||
#The capacity in mB of the fluid tank in the Bio Generator.
|
||||
#Range: > 1
|
||||
tankCapacity = 24000
|
||||
|
||||
#Heat Generator Settings
|
||||
[generators.heat_generator]
|
||||
#Amount of energy in Joules the Heat Generator produces per tick. heatGeneration + heatGenerationLava * lavaSides + heatGenerationNether. Note: lavaSides is how many sides are adjacent to lava, this includes the block itself if it is lava logged allowing for a max of 7 "sides".
|
||||
heatGeneration = "200"
|
||||
#Multiplier of effectiveness of Lava that is adjacent to the Heat Generator.
|
||||
heatGenerationLava = "30"
|
||||
#Add this amount of Joules to the energy produced by a heat generator if it is in an 'ultrawarm' dimension, in vanilla this is just the Nether.
|
||||
heatGenerationNether = "100"
|
||||
#The capacity in mB of the fluid tank in the Heat Generator.
|
||||
#Range: > 1
|
||||
tankCapacity = 24000
|
||||
#The amount of lava in mB that gets consumed to transfer heatGeneration Joules to the Heat Generator.
|
||||
heatGenerationFluidRate = 10
|
||||
|
||||
#Gas-Burning Generator Settings
|
||||
[generators.gas_generator]
|
||||
#The capacity in mB of the gas tank in the Gas-Burning Generator.
|
||||
#Range: 1 ~ 9223372036854775807
|
||||
tankCapacity = 18000
|
||||
#The number of ticks each mB of Ethylene burns for in the Gas-Burning Generator.
|
||||
#Range: > 1
|
||||
ethyleneBurnTicks = 20
|
||||
#Multiplier for calculating the energy density of Ethylene (1 mB Hydrogen + 2 * bioGeneration * densityMultiplier).
|
||||
ethyleneDensityMultiplier = "0.50"
|
||||
|
||||
#Turbine Settings
|
||||
[generators.turbine]
|
||||
#The number of blades on each turbine coil per blade applied.
|
||||
#Range: 1 ~ 12
|
||||
turbineBladesPerCoil = 4
|
||||
#The rate at which steam is vented into the turbine.
|
||||
#Range: 0.1 ~ 1024000.0
|
||||
turbineVentGasFlow = 32000.0
|
||||
#The rate at which steam is dispersed into the turbine.
|
||||
#Range: 0.1 ~ 1024000.0
|
||||
turbineDisperserGasFlow = 1280.0
|
||||
#Amount of energy (J) that each block of the turbine contributes to the total energy capacity. Max = volume * energyCapacityPerVolume
|
||||
energyCapacityPerVolume = "16000000"
|
||||
#Amount of gas (mB) that each block of the turbine's steam cavity contributes to the volume. Max = volume * gasPerTank
|
||||
#Range: 1 ~ 1773043451913643
|
||||
gasPerTank = 64000
|
||||
#The rate at which steam is condensed in the turbine.
|
||||
#Range: 1 ~ 2000000
|
||||
condenserRate = 64000
|
||||
|
||||
#Wind Generator Settings
|
||||
[generators.wind_generator]
|
||||
#Minimum base generation value of the Wind Generator.
|
||||
windGenerationMin = "60"
|
||||
#Maximum base generation value of the Wind Generator.
|
||||
generationMax = "240"
|
||||
#The minimum Y value that affects the Wind Generators Power generation. This value gets clamped at the world's min height.
|
||||
#Range: -2032 ~ 2030
|
||||
minY = 24
|
||||
#The maximum Y value that affects the Wind Generators Power generation. This value gets clamped at the world's logical height.
|
||||
maxY = 2031
|
||||
#The list of dimension ids that the Wind Generator will not generate power in.
|
||||
windGenerationDimBlacklist = []
|
||||
|
||||
#Fusion Settings
|
||||
[generators.fusion_reactor]
|
||||
#The fraction of the heat dissipated from the case that is converted to Joules.
|
||||
#Range: 0.0 ~ 1.0
|
||||
thermocoupleEfficiency = 0.05
|
||||
#The fraction fraction of heat from the casing that can be transferred to all sources that are not water. Will impact max heat, heat transfer to thermodynamic conductors, and power generation.
|
||||
#Range: 0.001 ~ 1.0
|
||||
casingThermalConductivity = 0.1
|
||||
#The fraction of the heat from the casing that is dissipated to water when water cooling is in use. Will impact max heat, and steam generation.
|
||||
#Range: 0.0 ~ 1.0
|
||||
waterHeatingRatio = 0.3
|
||||
#Amount of fuel (mB) that the fusion reactor can store.
|
||||
#Range: 2 ~ 1000000
|
||||
fuelCapacity = 1000
|
||||
#Amount of energy (J) the fusion reactor can store.
|
||||
energyCapacity = "1000000000"
|
||||
#Amount of water (mB) per injection rate that the fusion reactor can store. Max = injectionRate * waterPerInjection
|
||||
#Range: 1 ~ 21913098
|
||||
waterPerInjection = 1000000
|
||||
#Amount of steam (mB) per injection rate that the fusion reactor can store. Max = injectionRate * steamPerInjection
|
||||
#Range: 1 ~ 94116041192395671
|
||||
steamPerInjection = 100000000
|
||||
|
||||
#Hohlraum Settings
|
||||
[generators.hohlraum]
|
||||
#Hohlraum capacity in mB.
|
||||
#Range: 1 ~ 9223372036854775807
|
||||
maxGas = 10
|
||||
#Amount of DT-Fuel Hohlraum can accept per tick.
|
||||
#Range: 1 ~ 9223372036854775807
|
||||
fillRate = 1
|
||||
|
||||
#Fission Reactor Settings
|
||||
[generators.fission_reactor]
|
||||
#Amount of energy created (in heat) from each whole mB of fission fuel.
|
||||
energyPerFissionFuel = "1000000"
|
||||
#The heat capacity added to a Fission Reactor by a single casing block. Increase to require more energy to raise the reactor temperature.
|
||||
#Range: 1.0 ~ 1000000.0
|
||||
casingHeatCapacity = 1000.0
|
||||
#The average surface area of a Fission Reactor's fuel assemblies to reach 100% boil efficiency. Higher values make it harder to cool the reactor.
|
||||
#Range: 1.0 ~ 1.7976931348623157E308
|
||||
surfaceAreaTarget = 4.0
|
||||
#Whether catastrophic meltdowns can occur from Fission Reactors. If disabled instead of melting down the reactor will turn off and not be able to be turned back on until the damage level decreases.
|
||||
meltdownsEnabled = true
|
||||
#The radius of the explosion that occurs from a meltdown.
|
||||
#Range: 1.0 ~ 500.0
|
||||
meltdownRadius = 8.0
|
||||
#The chance of a meltdown occurring once damage passes 100%. Will linearly scale as damage continues increasing.
|
||||
#Range: 0.0 ~ 1.0
|
||||
meltdownChance = 0.001
|
||||
#How much radioactivity of fuel/waste contents are multiplied during a meltdown.
|
||||
#Range: 0.1 ~ 1000000.0
|
||||
meltdownRadiationMultiplier = 50.0
|
||||
#Damage to reset the reactor to after a meltdown.
|
||||
#Range: 0.0 ~ 100.0
|
||||
postMeltdownDamage = 75.0
|
||||
#The default burn rate of the fission reactor.
|
||||
#Range: 0.001 ~ 1.0
|
||||
defaultBurnRate = 0.1
|
||||
#The burn rate increase each fuel assembly provides. Max Burn Rate = fuelAssemblies * burnPerAssembly
|
||||
#Range: 1 ~ 1000000
|
||||
burnPerAssembly = 1
|
||||
#Amount of fuel (mB) that each assembly contributes to the fuel and waste capacity. Max = fuelAssemblies * maxFuelPerAssembly
|
||||
#Range: 1 ~ 2251799813685247
|
||||
maxFuelPerAssembly = 8000
|
||||
#Amount of cooled coolant (mB) that each block of the fission reactor contributes to the volume. Max = volume * cooledCoolantPerTank
|
||||
#Range: 1 ~ 368224
|
||||
cooledCoolantPerTank = 100000
|
||||
#Amount of heated coolant (mB) that each block of the fission reactor contributes to the volume. Max = volume * heatedCoolantPerTank
|
||||
#Range: 1000 ~ 1581510980256305
|
||||
heatedCoolantPerTank = 1000000
|
||||
|
460
config/Mekanism/world.toml
Normal file
460
config/Mekanism/world.toml
Normal file
@ -0,0 +1,460 @@
|
||||
|
||||
#World generation settings for Mekanism. This config is synced from server to client
|
||||
[world_generation]
|
||||
#Allows chunks to retrogen Mekanism ore blocks.
|
||||
enableRegeneration = false
|
||||
#Change this value to cause Mekanism to regen its ore in all loaded chunks.
|
||||
#Range: > 0
|
||||
userWorldGenVersion = 0
|
||||
|
||||
#Generation Settings for tin ore.
|
||||
[world_generation.tin]
|
||||
#Determines if tin ore should be added to world generation.
|
||||
shouldGenerate = false
|
||||
|
||||
#small tin vein Generation Settings.
|
||||
[world_generation.tin.small]
|
||||
#Determines if small tin veins should be added to world generation. Note: Requires generating tin ore to be enabled.
|
||||
shouldGenerate = false
|
||||
#Chance that small tin veins generates in a chunk.
|
||||
#Range: 1 ~ 256
|
||||
perChunk = 14
|
||||
#Maximum number of blocks in a small tin vein.
|
||||
#Range: 1 ~ 64
|
||||
maxVeinSize = 4
|
||||
#Chance that blocks that are directly exposed to air in a small tin vein are not placed.
|
||||
#Range: 0.0 ~ 1.0
|
||||
discardChanceOnAirExposure = 0.0
|
||||
#Distribution shape for placing small tin veins.
|
||||
#Allowed Values: TRAPEZOID, UNIFORM
|
||||
shape = "TRAPEZOID"
|
||||
#Half length of short side of trapezoid, only used if shape is TRAPEZOID. A value of zero means the shape is a triangle.
|
||||
plateau = 0
|
||||
|
||||
#Minimum (inclusive) height anchor for small tin veins.
|
||||
[world_generation.tin.small.minInclusive]
|
||||
#Type of anchor.
|
||||
#Absolute -> y = value
|
||||
#Above Bottom -> y = minY + value
|
||||
#Below Top -> y = depth - 1 + minY - value
|
||||
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
|
||||
type = "ABSOLUTE"
|
||||
#Value used for calculating y for the anchor based on the type.
|
||||
value = -20
|
||||
|
||||
#Maximum (inclusive) height anchor for small tin veins.
|
||||
[world_generation.tin.small.maxInclusive]
|
||||
#Type of anchor.
|
||||
#Absolute -> y = value
|
||||
#Above Bottom -> y = minY + value
|
||||
#Below Top -> y = depth - 1 + minY - value
|
||||
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
|
||||
type = "ABSOLUTE"
|
||||
#Value used for calculating y for the anchor based on the type.
|
||||
value = 94
|
||||
|
||||
#large tin vein Generation Settings.
|
||||
[world_generation.tin.large]
|
||||
#Determines if large tin veins should be added to world generation. Note: Requires generating tin ore to be enabled.
|
||||
shouldGenerate = false
|
||||
#Chance that large tin veins generates in a chunk.
|
||||
#Range: 1 ~ 256
|
||||
perChunk = 12
|
||||
#Maximum number of blocks in a large tin vein.
|
||||
#Range: 1 ~ 64
|
||||
maxVeinSize = 9
|
||||
#Chance that blocks that are directly exposed to air in a large tin vein are not placed.
|
||||
#Range: 0.0 ~ 1.0
|
||||
discardChanceOnAirExposure = 0.0
|
||||
#Distribution shape for placing large tin veins.
|
||||
#Allowed Values: TRAPEZOID, UNIFORM
|
||||
shape = "TRAPEZOID"
|
||||
#Half length of short side of trapezoid, only used if shape is TRAPEZOID. A value of zero means the shape is a triangle.
|
||||
plateau = 0
|
||||
|
||||
#Minimum (inclusive) height anchor for large tin veins.
|
||||
[world_generation.tin.large.minInclusive]
|
||||
#Type of anchor.
|
||||
#Absolute -> y = value
|
||||
#Above Bottom -> y = minY + value
|
||||
#Below Top -> y = depth - 1 + minY - value
|
||||
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
|
||||
type = "ABSOLUTE"
|
||||
#Value used for calculating y for the anchor based on the type.
|
||||
value = -32
|
||||
|
||||
#Maximum (inclusive) height anchor for large tin veins.
|
||||
[world_generation.tin.large.maxInclusive]
|
||||
#Type of anchor.
|
||||
#Absolute -> y = value
|
||||
#Above Bottom -> y = minY + value
|
||||
#Below Top -> y = depth - 1 + minY - value
|
||||
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
|
||||
type = "ABSOLUTE"
|
||||
#Value used for calculating y for the anchor based on the type.
|
||||
value = 72
|
||||
|
||||
#Generation Settings for osmium ore.
|
||||
[world_generation.osmium]
|
||||
#Determines if osmium ore should be added to world generation.
|
||||
shouldGenerate = false
|
||||
|
||||
#upper osmium vein Generation Settings.
|
||||
[world_generation.osmium.upper]
|
||||
#Determines if upper osmium veins should be added to world generation. Note: Requires generating osmium ore to be enabled.
|
||||
shouldGenerate = false
|
||||
#Chance that upper osmium veins generates in a chunk.
|
||||
#Range: 1 ~ 256
|
||||
perChunk = 65
|
||||
#Maximum number of blocks in a upper osmium vein.
|
||||
#Range: 1 ~ 64
|
||||
maxVeinSize = 7
|
||||
#Chance that blocks that are directly exposed to air in a upper osmium vein are not placed.
|
||||
#Range: 0.0 ~ 1.0
|
||||
discardChanceOnAirExposure = 0.0
|
||||
#Distribution shape for placing upper osmium veins.
|
||||
#Allowed Values: TRAPEZOID, UNIFORM
|
||||
shape = "TRAPEZOID"
|
||||
#Half length of short side of trapezoid, only used if shape is TRAPEZOID. A value of zero means the shape is a triangle.
|
||||
plateau = 8
|
||||
|
||||
#Minimum (inclusive) height anchor for upper osmium veins.
|
||||
[world_generation.osmium.upper.minInclusive]
|
||||
#Type of anchor.
|
||||
#Absolute -> y = value
|
||||
#Above Bottom -> y = minY + value
|
||||
#Below Top -> y = depth - 1 + minY - value
|
||||
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
|
||||
type = "ABSOLUTE"
|
||||
#Value used for calculating y for the anchor based on the type.
|
||||
value = 72
|
||||
|
||||
#Maximum (inclusive) height anchor for upper osmium veins.
|
||||
[world_generation.osmium.upper.maxInclusive]
|
||||
#Type of anchor.
|
||||
#Absolute -> y = value
|
||||
#Above Bottom -> y = minY + value
|
||||
#Below Top -> y = depth - 1 + minY - value
|
||||
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
|
||||
type = "BELOW_TOP"
|
||||
#Value used for calculating y for the anchor based on the type.
|
||||
value = -24
|
||||
|
||||
#middle osmium vein Generation Settings.
|
||||
[world_generation.osmium.middle]
|
||||
#Determines if middle osmium veins should be added to world generation. Note: Requires generating osmium ore to be enabled.
|
||||
shouldGenerate = false
|
||||
#Chance that middle osmium veins generates in a chunk.
|
||||
#Range: 1 ~ 256
|
||||
perChunk = 6
|
||||
#Maximum number of blocks in a middle osmium vein.
|
||||
#Range: 1 ~ 64
|
||||
maxVeinSize = 9
|
||||
#Chance that blocks that are directly exposed to air in a middle osmium vein are not placed.
|
||||
#Range: 0.0 ~ 1.0
|
||||
discardChanceOnAirExposure = 0.0
|
||||
#Distribution shape for placing middle osmium veins.
|
||||
#Allowed Values: TRAPEZOID, UNIFORM
|
||||
shape = "TRAPEZOID"
|
||||
#Half length of short side of trapezoid, only used if shape is TRAPEZOID. A value of zero means the shape is a triangle.
|
||||
plateau = 0
|
||||
|
||||
#Minimum (inclusive) height anchor for middle osmium veins.
|
||||
[world_generation.osmium.middle.minInclusive]
|
||||
#Type of anchor.
|
||||
#Absolute -> y = value
|
||||
#Above Bottom -> y = minY + value
|
||||
#Below Top -> y = depth - 1 + minY - value
|
||||
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
|
||||
type = "ABSOLUTE"
|
||||
#Value used for calculating y for the anchor based on the type.
|
||||
value = -32
|
||||
|
||||
#Maximum (inclusive) height anchor for middle osmium veins.
|
||||
[world_generation.osmium.middle.maxInclusive]
|
||||
#Type of anchor.
|
||||
#Absolute -> y = value
|
||||
#Above Bottom -> y = minY + value
|
||||
#Below Top -> y = depth - 1 + minY - value
|
||||
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
|
||||
type = "ABSOLUTE"
|
||||
#Value used for calculating y for the anchor based on the type.
|
||||
value = 56
|
||||
|
||||
#small osmium vein Generation Settings.
|
||||
[world_generation.osmium.small]
|
||||
#Determines if small osmium veins should be added to world generation. Note: Requires generating osmium ore to be enabled.
|
||||
shouldGenerate = false
|
||||
#Chance that small osmium veins generates in a chunk.
|
||||
#Range: 1 ~ 256
|
||||
perChunk = 8
|
||||
#Maximum number of blocks in a small osmium vein.
|
||||
#Range: 1 ~ 64
|
||||
maxVeinSize = 4
|
||||
#Chance that blocks that are directly exposed to air in a small osmium vein are not placed.
|
||||
#Range: 0.0 ~ 1.0
|
||||
discardChanceOnAirExposure = 0.0
|
||||
#Distribution shape for placing small osmium veins.
|
||||
#Allowed Values: TRAPEZOID, UNIFORM
|
||||
shape = "UNIFORM"
|
||||
#Half length of short side of trapezoid, only used if shape is TRAPEZOID. A value of zero means the shape is a triangle.
|
||||
plateau = 0
|
||||
|
||||
#Minimum (inclusive) height anchor for small osmium veins.
|
||||
[world_generation.osmium.small.minInclusive]
|
||||
#Type of anchor.
|
||||
#Absolute -> y = value
|
||||
#Above Bottom -> y = minY + value
|
||||
#Below Top -> y = depth - 1 + minY - value
|
||||
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
|
||||
type = "ABOVE_BOTTOM"
|
||||
#Value used for calculating y for the anchor based on the type.
|
||||
value = 0
|
||||
|
||||
#Maximum (inclusive) height anchor for small osmium veins.
|
||||
[world_generation.osmium.small.maxInclusive]
|
||||
#Type of anchor.
|
||||
#Absolute -> y = value
|
||||
#Above Bottom -> y = minY + value
|
||||
#Below Top -> y = depth - 1 + minY - value
|
||||
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
|
||||
type = "ABSOLUTE"
|
||||
#Value used for calculating y for the anchor based on the type.
|
||||
value = 64
|
||||
|
||||
#Generation Settings for uranium ore.
|
||||
[world_generation.uranium]
|
||||
#Determines if uranium ore should be added to world generation.
|
||||
shouldGenerate = false
|
||||
|
||||
#small uranium vein Generation Settings.
|
||||
[world_generation.uranium.small]
|
||||
#Determines if small uranium veins should be added to world generation. Note: Requires generating uranium ore to be enabled.
|
||||
shouldGenerate = false
|
||||
#Chance that small uranium veins generates in a chunk.
|
||||
#Range: 1 ~ 256
|
||||
perChunk = 4
|
||||
#Maximum number of blocks in a small uranium vein.
|
||||
#Range: 1 ~ 64
|
||||
maxVeinSize = 4
|
||||
#Chance that blocks that are directly exposed to air in a small uranium vein are not placed.
|
||||
#Range: 0.0 ~ 1.0
|
||||
discardChanceOnAirExposure = 0.0
|
||||
#Distribution shape for placing small uranium veins.
|
||||
#Allowed Values: TRAPEZOID, UNIFORM
|
||||
shape = "TRAPEZOID"
|
||||
#Half length of short side of trapezoid, only used if shape is TRAPEZOID. A value of zero means the shape is a triangle.
|
||||
plateau = 0
|
||||
|
||||
#Minimum (inclusive) height anchor for small uranium veins.
|
||||
[world_generation.uranium.small.minInclusive]
|
||||
#Type of anchor.
|
||||
#Absolute -> y = value
|
||||
#Above Bottom -> y = minY + value
|
||||
#Below Top -> y = depth - 1 + minY - value
|
||||
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
|
||||
type = "ABOVE_BOTTOM"
|
||||
#Value used for calculating y for the anchor based on the type.
|
||||
value = 0
|
||||
|
||||
#Maximum (inclusive) height anchor for small uranium veins.
|
||||
[world_generation.uranium.small.maxInclusive]
|
||||
#Type of anchor.
|
||||
#Absolute -> y = value
|
||||
#Above Bottom -> y = minY + value
|
||||
#Below Top -> y = depth - 1 + minY - value
|
||||
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
|
||||
type = "ABSOLUTE"
|
||||
#Value used for calculating y for the anchor based on the type.
|
||||
value = 8
|
||||
|
||||
#buried uranium vein Generation Settings.
|
||||
[world_generation.uranium.buried]
|
||||
#Determines if buried uranium veins should be added to world generation. Note: Requires generating uranium ore to be enabled.
|
||||
shouldGenerate = false
|
||||
#Chance that buried uranium veins generates in a chunk.
|
||||
#Range: 1 ~ 256
|
||||
perChunk = 7
|
||||
#Maximum number of blocks in a buried uranium vein.
|
||||
#Range: 1 ~ 64
|
||||
maxVeinSize = 9
|
||||
#Chance that blocks that are directly exposed to air in a buried uranium vein are not placed.
|
||||
#Range: 0.0 ~ 1.0
|
||||
discardChanceOnAirExposure = 0.75
|
||||
#Distribution shape for placing buried uranium veins.
|
||||
#Allowed Values: TRAPEZOID, UNIFORM
|
||||
shape = "TRAPEZOID"
|
||||
#Half length of short side of trapezoid, only used if shape is TRAPEZOID. A value of zero means the shape is a triangle.
|
||||
plateau = 16
|
||||
|
||||
#Minimum (inclusive) height anchor for buried uranium veins.
|
||||
[world_generation.uranium.buried.minInclusive]
|
||||
#Type of anchor.
|
||||
#Absolute -> y = value
|
||||
#Above Bottom -> y = minY + value
|
||||
#Below Top -> y = depth - 1 + minY - value
|
||||
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
|
||||
type = "ABOVE_BOTTOM"
|
||||
#Value used for calculating y for the anchor based on the type.
|
||||
value = -24
|
||||
|
||||
#Maximum (inclusive) height anchor for buried uranium veins.
|
||||
[world_generation.uranium.buried.maxInclusive]
|
||||
#Type of anchor.
|
||||
#Absolute -> y = value
|
||||
#Above Bottom -> y = minY + value
|
||||
#Below Top -> y = depth - 1 + minY - value
|
||||
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
|
||||
type = "ABOVE_BOTTOM"
|
||||
#Value used for calculating y for the anchor based on the type.
|
||||
value = 56
|
||||
|
||||
#Generation Settings for fluorite ore.
|
||||
[world_generation.fluorite]
|
||||
#Determines if fluorite ore should be added to world generation.
|
||||
shouldGenerate = true
|
||||
|
||||
#normal fluorite vein Generation Settings.
|
||||
[world_generation.fluorite.normal]
|
||||
#Determines if normal fluorite veins should be added to world generation. Note: Requires generating fluorite ore to be enabled.
|
||||
shouldGenerate = true
|
||||
#Chance that normal fluorite veins generates in a chunk.
|
||||
#Range: 1 ~ 256
|
||||
perChunk = 5
|
||||
#Maximum number of blocks in a normal fluorite vein.
|
||||
#Range: 1 ~ 64
|
||||
maxVeinSize = 5
|
||||
#Chance that blocks that are directly exposed to air in a normal fluorite vein are not placed.
|
||||
#Range: 0.0 ~ 1.0
|
||||
discardChanceOnAirExposure = 0.0
|
||||
#Distribution shape for placing normal fluorite veins.
|
||||
#Allowed Values: TRAPEZOID, UNIFORM
|
||||
shape = "UNIFORM"
|
||||
#Half length of short side of trapezoid, only used if shape is TRAPEZOID. A value of zero means the shape is a triangle.
|
||||
plateau = 0
|
||||
|
||||
#Minimum (inclusive) height anchor for normal fluorite veins.
|
||||
[world_generation.fluorite.normal.minInclusive]
|
||||
#Type of anchor.
|
||||
#Absolute -> y = value
|
||||
#Above Bottom -> y = minY + value
|
||||
#Below Top -> y = depth - 1 + minY - value
|
||||
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
|
||||
type = "ABOVE_BOTTOM"
|
||||
#Value used for calculating y for the anchor based on the type.
|
||||
value = 0
|
||||
|
||||
#Maximum (inclusive) height anchor for normal fluorite veins.
|
||||
[world_generation.fluorite.normal.maxInclusive]
|
||||
#Type of anchor.
|
||||
#Absolute -> y = value
|
||||
#Above Bottom -> y = minY + value
|
||||
#Below Top -> y = depth - 1 + minY - value
|
||||
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
|
||||
type = "ABSOLUTE"
|
||||
#Value used for calculating y for the anchor based on the type.
|
||||
value = 23
|
||||
|
||||
#buried fluorite vein Generation Settings.
|
||||
[world_generation.fluorite.buried]
|
||||
#Determines if buried fluorite veins should be added to world generation. Note: Requires generating fluorite ore to be enabled.
|
||||
shouldGenerate = true
|
||||
#Chance that buried fluorite veins generates in a chunk.
|
||||
#Range: 1 ~ 256
|
||||
perChunk = 3
|
||||
#Maximum number of blocks in a buried fluorite vein.
|
||||
#Range: 1 ~ 64
|
||||
maxVeinSize = 13
|
||||
#Chance that blocks that are directly exposed to air in a buried fluorite vein are not placed.
|
||||
#Range: 0.0 ~ 1.0
|
||||
discardChanceOnAirExposure = 1.0
|
||||
#Distribution shape for placing buried fluorite veins.
|
||||
#Allowed Values: TRAPEZOID, UNIFORM
|
||||
shape = "TRAPEZOID"
|
||||
#Half length of short side of trapezoid, only used if shape is TRAPEZOID. A value of zero means the shape is a triangle.
|
||||
plateau = 0
|
||||
|
||||
#Minimum (inclusive) height anchor for buried fluorite veins.
|
||||
[world_generation.fluorite.buried.minInclusive]
|
||||
#Type of anchor.
|
||||
#Absolute -> y = value
|
||||
#Above Bottom -> y = minY + value
|
||||
#Below Top -> y = depth - 1 + minY - value
|
||||
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
|
||||
type = "ABOVE_BOTTOM"
|
||||
#Value used for calculating y for the anchor based on the type.
|
||||
value = 0
|
||||
|
||||
#Maximum (inclusive) height anchor for buried fluorite veins.
|
||||
[world_generation.fluorite.buried.maxInclusive]
|
||||
#Type of anchor.
|
||||
#Absolute -> y = value
|
||||
#Above Bottom -> y = minY + value
|
||||
#Below Top -> y = depth - 1 + minY - value
|
||||
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
|
||||
type = "ABSOLUTE"
|
||||
#Value used for calculating y for the anchor based on the type.
|
||||
value = 4
|
||||
|
||||
#Generation Settings for lead ore.
|
||||
[world_generation.lead]
|
||||
#Determines if lead ore should be added to world generation.
|
||||
shouldGenerate = false
|
||||
|
||||
#normal lead vein Generation Settings.
|
||||
[world_generation.lead.normal]
|
||||
#Determines if normal lead veins should be added to world generation. Note: Requires generating lead ore to be enabled.
|
||||
shouldGenerate = false
|
||||
#Chance that normal lead veins generates in a chunk.
|
||||
#Range: 1 ~ 256
|
||||
perChunk = 8
|
||||
#Maximum number of blocks in a normal lead vein.
|
||||
#Range: 1 ~ 64
|
||||
maxVeinSize = 9
|
||||
#Chance that blocks that are directly exposed to air in a normal lead vein are not placed.
|
||||
#Range: 0.0 ~ 1.0
|
||||
discardChanceOnAirExposure = 0.25
|
||||
#Distribution shape for placing normal lead veins.
|
||||
#Allowed Values: TRAPEZOID, UNIFORM
|
||||
shape = "TRAPEZOID"
|
||||
#Half length of short side of trapezoid, only used if shape is TRAPEZOID. A value of zero means the shape is a triangle.
|
||||
plateau = 0
|
||||
|
||||
#Minimum (inclusive) height anchor for normal lead veins.
|
||||
[world_generation.lead.normal.minInclusive]
|
||||
#Type of anchor.
|
||||
#Absolute -> y = value
|
||||
#Above Bottom -> y = minY + value
|
||||
#Below Top -> y = depth - 1 + minY - value
|
||||
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
|
||||
type = "ABOVE_BOTTOM"
|
||||
#Value used for calculating y for the anchor based on the type.
|
||||
value = -24
|
||||
|
||||
#Maximum (inclusive) height anchor for normal lead veins.
|
||||
[world_generation.lead.normal.maxInclusive]
|
||||
#Type of anchor.
|
||||
#Absolute -> y = value
|
||||
#Above Bottom -> y = minY + value
|
||||
#Below Top -> y = depth - 1 + minY - value
|
||||
#Allowed Values: ABSOLUTE, ABOVE_BOTTOM, BELOW_TOP
|
||||
type = "ABSOLUTE"
|
||||
#Value used for calculating y for the anchor based on the type.
|
||||
value = 64
|
||||
|
||||
#Generation Settings for salt.
|
||||
[world_generation.salt]
|
||||
#Determines if salt should be added to world generation.
|
||||
shouldGenerate = true
|
||||
#Chance that salt generates in a chunk.
|
||||
#Range: 1 ~ 256
|
||||
perChunk = 2
|
||||
#Base radius of a vein of salt.
|
||||
#Range: 1 ~ 4
|
||||
minRadius = 2
|
||||
#Extended variability (spread) for the radius in a vein of salt.
|
||||
maxRadius = 3
|
||||
#Number of blocks to extend up and down when placing a vein of salt.
|
||||
#Range: 0 ~ 2031
|
||||
halfHeight = 1
|
||||
|
118
config/ae2/common.json
Normal file
118
config/ae2/common.json
Normal file
@ -0,0 +1,118 @@
|
||||
{
|
||||
"general": {
|
||||
"unsupportedDeveloperTools": false,
|
||||
"matterCannonBlockDamage_comment": "Enables the ability of the Matter Cannon to break blocks.",
|
||||
"matterCannonBlockDamage": true,
|
||||
"tinyTntBlockDamage_comment": "Enables the ability of Tiny TNT to break blocks.",
|
||||
"tinyTntBlockDamage": true,
|
||||
"channels_comment": "Changes the channel capacity that cables provide in AE2.",
|
||||
"channels": "default",
|
||||
"pathfindingStepsPerTick_comment": "The number of pathfinding steps that are taken per tick and per grid that is booting. Lower numbers will mean booting takes longer, but less work is done per tick.",
|
||||
"pathfindingStepsPerTick": 4,
|
||||
"spatialAnchorEnableRandomTicks_comment": "Whether Spatial Anchors should force random chunk ticks and entity spawning.",
|
||||
"spatialAnchorEnableRandomTicks": false
|
||||
},
|
||||
"automation": {
|
||||
"formationPlaneEntityLimit": 128
|
||||
},
|
||||
"facades": {
|
||||
"allowBlockEntities_comment": "Unsupported: Allows whitelisting block entities as facades. Could work, have render issues, or corrupt your world. USE AT YOUR OWN RISK.",
|
||||
"allowBlockEntities": false
|
||||
},
|
||||
"craftingCPU": {
|
||||
"craftingCalculationTimePerTick": 5,
|
||||
"craftingSimulatedExtraction_comment": "When true: simulate extraction of all the network\u0027s contents when starting a crafting job calculation. When false: use the cached available content list (same as terminals). Enabling might work a bit better, but it will significantly reduce performance.",
|
||||
"craftingSimulatedExtraction": false
|
||||
},
|
||||
"crafting": {
|
||||
"disassemblyCrafting_comment": "Enable shift-clicking with the crafting units in hand to disassemble them.",
|
||||
"disassemblyCrafting": true,
|
||||
"growthAccelerator_comment": "Number of ticks between two crystal growth accelerator ticks",
|
||||
"growthAccelerator": 10
|
||||
},
|
||||
"spatialio": {
|
||||
"spatialPowerMultiplier": 1250.0,
|
||||
"spatialPowerExponent": 1.35
|
||||
},
|
||||
"logging": {
|
||||
"blockUpdateLog": false,
|
||||
"packetLog": false,
|
||||
"craftingLog": false,
|
||||
"debugLog": false,
|
||||
"gridLog": false,
|
||||
"chunkLoggerTrace_comment": "Enable stack trace logging for the chunk loading debug command",
|
||||
"chunkLoggerTrace": false
|
||||
},
|
||||
"battery": {
|
||||
"chargerChargeRate_comment": "The chargers charging rate factor, which is applied to the charged items charge rate. 2 means it charges everything twice as fast. 0.5 half as fast.",
|
||||
"chargerChargeRate": 1.0,
|
||||
"wirelessTerminal": 1600000,
|
||||
"chargedStaff": 8000,
|
||||
"entropyManipulator": 200000,
|
||||
"portableCell": 20000,
|
||||
"colorApplicator": 20000,
|
||||
"matterCannon": 200000
|
||||
},
|
||||
"worldGen": {
|
||||
"spawnPressesInMeteorites": true
|
||||
},
|
||||
"wireless": {
|
||||
"wirelessBaseCost": 8.0,
|
||||
"wirelessCostMultiplier": 1.0,
|
||||
"wirelessBaseRange": 16.0,
|
||||
"wirelessBoosterRangeMultiplier": 1.0,
|
||||
"wirelessBoosterExp": 1.5,
|
||||
"wirelessHighWirelessCount": 64.0,
|
||||
"wirelessTerminalDrainMultiplier": 1.0
|
||||
},
|
||||
"PortableCells": {
|
||||
"allowDisassembly_comment": "Allow disassembly of portable cells into the recipe ingredients using shift+right-click",
|
||||
"allowDisassembly": true
|
||||
},
|
||||
"PowerRatios": {
|
||||
"ForgeEnergy": 0.5,
|
||||
"UsageMultiplier": 1.0,
|
||||
"GridEnergyStoragePerNode_comment": "How much energy can the internal grid buffer storage per node attached to the grid.",
|
||||
"GridEnergyStoragePerNode": 25.0
|
||||
},
|
||||
"Condenser": {
|
||||
"MatterBalls": 256,
|
||||
"Singularity": 256000
|
||||
},
|
||||
"tickRates": {
|
||||
"_comment": " Min / Max Tickrates for dynamic ticking, most of these components also use sleeping, to prevent constant ticking, adjust with care, non standard rates are not supported or tested.",
|
||||
"InterfaceMin": 5,
|
||||
"InterfaceMax": 120,
|
||||
"ImportBusMin": 5,
|
||||
"ImportBusMax": 40,
|
||||
"ExportBusMin": 5,
|
||||
"ExportBusMax": 60,
|
||||
"AnnihilationPlaneMin": 2,
|
||||
"AnnihilationPlaneMax": 120,
|
||||
"METunnelMin": 5,
|
||||
"METunnelMax": 20,
|
||||
"InscriberMin": 1,
|
||||
"InscriberMax": 20,
|
||||
"ChargerMin": 10,
|
||||
"ChargerMax": 10,
|
||||
"IOPortMin": 1,
|
||||
"IOPortMax": 5,
|
||||
"VibrationChamberMin": 10,
|
||||
"VibrationChamberMax": 40,
|
||||
"StorageBusMin": 5,
|
||||
"StorageBusMax": 60,
|
||||
"ItemTunnelMin": 5,
|
||||
"ItemTunnelMax": 60,
|
||||
"LightTunnelMin": 5,
|
||||
"LightTunnelMax": 60
|
||||
},
|
||||
"vibrationChamber": {
|
||||
"_comment": "Settings for the Vibration Chamber",
|
||||
"baseEnergyPerFuelTick_comment": "AE energy produced per fuel burn tick (reminder: coal \u003d 1600, block of coal \u003d 16000, lava bucket \u003d 20000 burn ticks)",
|
||||
"baseEnergyPerFuelTick": 5.0,
|
||||
"minEnergyPerGameTick_comment": "Minimum amount of AE/t the vibration chamber can slow down to when energy is being wasted.",
|
||||
"minEnergyPerGameTick": 4,
|
||||
"baseMaxEnergyPerGameTick_comment": "Maximum amount of AE/t the vibration chamber can speed up to when generated energy is being fully consumed.",
|
||||
"baseMaxEnergyPerGameTick": 40
|
||||
}
|
||||
}
|
71
config/aether-client.toml
Normal file
71
config/aether-client.toml
Normal file
@ -0,0 +1,71 @@
|
||||
|
||||
[Rendering]
|
||||
#Changes Zephyr and Aerwhale rendering to use their old models from the b1.7.3 version of the mod
|
||||
"Switches to legacy mob models" = false
|
||||
#Disables the Aether's custom skybox in case you have a shader that is incompatible with custom skyboxes
|
||||
"Disables Aether custom skybox" = false
|
||||
#Removes warm-tinting of the lightmap in the Aether, giving the lighting a colder feel
|
||||
"Makes lightmap colder" = false
|
||||
#Enables a green-tinted sunrise and sunset in the Aether, similar to the original mod
|
||||
"Enables green sunrise/sunset" = false
|
||||
|
||||
[Gui]
|
||||
#Adds a button to the top right of the main menu screen to toggle between the Aether and vanilla menu
|
||||
"Enables Aether menu button" = false
|
||||
#Changes the background panorama into a preview of the latest played world
|
||||
"Enables world preview" = false
|
||||
#Adds a button to the top right of the main menu screen to toggle between the panorama and world preview
|
||||
"Enables toggle world button" = false
|
||||
#Adds a button to the top right of the main menu screen to allow quick loading into a world if the world preview is enabled
|
||||
"Enables quick load button" = false
|
||||
#Determines that menu elements will align left if the menu's world preview is active, if true, this overrides 'Align menu elements left'
|
||||
"Align menu elements left with world preview" = false
|
||||
#Determines the default Aether menu style to switch to with the menu theme button
|
||||
"Default Aether menu style" = "aether:the_aether_left"
|
||||
#Determines the default Minecraft menu style to switch to with the menu theme button
|
||||
"Default Minecraft menu style" = "cumulus_menus:minecraft"
|
||||
#Adds random trivia and tips to the bottom of loading screens
|
||||
"Enables random trivia" = false
|
||||
#Makes the extra hearts given by life shards display as silver colored
|
||||
"Enables silver life shard hearts" = true
|
||||
#Disables the Aether's accessories button from appearing in GUIs
|
||||
"Disables the accessories button" = false
|
||||
#The y-coordinate of the Ascending to the Aether and Descending from the Aether text in loading screens
|
||||
"Portal text y-coordinate in loading screens" = 50
|
||||
#The x-coordinate of the accessories button in the inventory and curios menus
|
||||
"Button x-coordinate in inventory menus" = 27
|
||||
#The y-coordinate of the accessories button in the inventory and curios menus
|
||||
"Button y-coordinate in inventory menus" = 68
|
||||
#The x-coordinate of the accessories button in the creative menu
|
||||
"Button x-coordinate in creative menu" = 74
|
||||
#The y-coordinate of the accessories button in the creative menu
|
||||
"Button y-coordinate in creative menu" = 40
|
||||
#The x-coordinate of the accessories button in the accessories menu
|
||||
"Button x-coordinate in accessories menu" = 9
|
||||
#The y-coordinate of the accessories button in the accessories menu
|
||||
"Button y-coordinate in accessories menu" = 68
|
||||
#The x-coordinate of the perks button layout when in the pause menu
|
||||
"Layout x-coordinate in pause menu" = -116
|
||||
#The y-coordinate of the perks button layout when in the pause menu
|
||||
"Layout y-coordinate in pause menu" = 0
|
||||
|
||||
[Audio]
|
||||
#Sets the minimum delay for the Aether's music manager to use if needing to reset the song delay outside the Aether
|
||||
"Set backup minimum music delay" = 12000
|
||||
#Sets the maximum delay for the Aether's music manager to use if needing to reset the song delay outside the Aether
|
||||
"Set backup maximum music delay" = 24000
|
||||
#Disables the Aether's internal music manager, if true, this overrides all other audio configs
|
||||
"Disables Aether music manager" = false
|
||||
#Disables the Aether's menu music in case another mod implements its own, only works if 'Disables Aether music manager' is false
|
||||
"Disables Aether menu music" = false
|
||||
#Disables the menu music on the vanilla world preview menu, only works if 'Disables Aether music manager' is false
|
||||
"Disables vanilla world preview menu music" = false
|
||||
#Disables the menu music on the Aether world preview menu, only works if 'Disables Aether music manager' is false
|
||||
"Disables Aether world preview menu music" = false
|
||||
|
||||
[Miscellaneous]
|
||||
#Disables the Cumulus menu selection screen button on launch
|
||||
"Disable Cumulus button" = false
|
||||
#Enables a direct join button for the official server
|
||||
"Enables server button" = false
|
||||
|
7
config/almostunified/debug.json
Normal file
7
config/almostunified/debug.json
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"dumpTagMap": false,
|
||||
"dumpDuplicates": false,
|
||||
"dumpUnification": false,
|
||||
"dumpOverview": false,
|
||||
"dumpRecipes": false
|
||||
}
|
31
config/almostunified/duplicates.json
Normal file
31
config/almostunified/duplicates.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"ignoredRecipeTypes": [
|
||||
"cucumber:shaped_tag"
|
||||
],
|
||||
"ignoredRecipes": [],
|
||||
"defaultDuplicateRules": {
|
||||
"ignoredFields": [
|
||||
"conditions",
|
||||
"group"
|
||||
],
|
||||
"rules": {
|
||||
"cookingtime": "HigherRule",
|
||||
"energy": "HigherRule",
|
||||
"experience": "HigherRule"
|
||||
},
|
||||
"shouldSanitize": false
|
||||
},
|
||||
"overrideDuplicateRules": {
|
||||
"minecraft:crafting_shaped": {
|
||||
"ignoredFields": [
|
||||
"pattern",
|
||||
"conditions",
|
||||
"key",
|
||||
"group"
|
||||
],
|
||||
"rules": {},
|
||||
"shouldSanitize": false
|
||||
}
|
||||
},
|
||||
"strictMode": false
|
||||
}
|
3
config/almostunified/startup.json
Normal file
3
config/almostunified/startup.json
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"serverOnly": false
|
||||
}
|
166
config/almostunified/unify.json
Normal file
166
config/almostunified/unify.json
Normal file
@ -0,0 +1,166 @@
|
||||
{
|
||||
"modPriorities": [
|
||||
"minecraft",
|
||||
"alltheores",
|
||||
"allthemodium",
|
||||
"kubejs",
|
||||
"gtceu",
|
||||
"thermal",
|
||||
"mekanism",
|
||||
"create",
|
||||
"immersiveengineering",
|
||||
"occultism",
|
||||
"ae2",
|
||||
"ftbic",
|
||||
"chemlib",
|
||||
"biggerreactors",
|
||||
"createaddition",
|
||||
"silentgear",
|
||||
"blue_skies",
|
||||
"botania",
|
||||
"ad_astra",
|
||||
"thermal_extra",
|
||||
"undergarden",
|
||||
"industrialforegoing",
|
||||
"pneumaticcraft",
|
||||
"eidolon"
|
||||
],
|
||||
"stoneStrata": [
|
||||
"stone",
|
||||
"nether",
|
||||
"deepslate",
|
||||
"granite",
|
||||
"diorite",
|
||||
"andesite"
|
||||
],
|
||||
"tags": [
|
||||
"forge:nuggets/{material}",
|
||||
"forge:dusts/{material}",
|
||||
"forge:gears/{material}",
|
||||
"forge:gems/{material}",
|
||||
"forge:ingots/{material}",
|
||||
"forge:raw_materials/{material}",
|
||||
"forge:ores/{material}",
|
||||
"forge:plates/{material}",
|
||||
"forge:rods/{material}",
|
||||
"forge:wires/{material}",
|
||||
"forge:storage_blocks/{material}",
|
||||
"forge:storage_blocks/raw_{material}",
|
||||
"forge:silicon",
|
||||
"forge:rubber",
|
||||
"forge:plastic"
|
||||
],
|
||||
"materials": [
|
||||
"aeternium",
|
||||
"allthemodium",
|
||||
"aluminum",
|
||||
"amber",
|
||||
"apatite",
|
||||
"aquite",
|
||||
"azure_silver",
|
||||
"bitumen",
|
||||
"brass",
|
||||
"bronze",
|
||||
"calorite",
|
||||
"charcoal",
|
||||
"charoite",
|
||||
"chrome",
|
||||
"cinnabar",
|
||||
"cloggrum",
|
||||
"coal",
|
||||
"coal_coke",
|
||||
"cobalt",
|
||||
"constantan",
|
||||
"copper",
|
||||
"crimson_iron",
|
||||
"desh",
|
||||
"diamond",
|
||||
"dragonsteel",
|
||||
"electrum",
|
||||
"elementium",
|
||||
"emerald",
|
||||
"ender",
|
||||
"enderium",
|
||||
"falsite",
|
||||
"fluorite",
|
||||
"froststeel",
|
||||
"gold",
|
||||
"graphite",
|
||||
"horizonite",
|
||||
"iesnium",
|
||||
"invar",
|
||||
"iridium",
|
||||
"iron",
|
||||
"lapis",
|
||||
"lead",
|
||||
"lumium",
|
||||
"mithril",
|
||||
"netherite",
|
||||
"nickel",
|
||||
"obsidian",
|
||||
"osmium",
|
||||
"ostrum",
|
||||
"peridot",
|
||||
"platinum",
|
||||
"potassium_nitrate",
|
||||
"rose_gold",
|
||||
"ruby",
|
||||
"sapphire",
|
||||
"shellite",
|
||||
"signalum",
|
||||
"silver",
|
||||
"soul_infused",
|
||||
"steel",
|
||||
"sulfur",
|
||||
"tin",
|
||||
"tungsten",
|
||||
"twinite",
|
||||
"unobtainium",
|
||||
"uranium",
|
||||
"ventium",
|
||||
"vibranium",
|
||||
"zinc"
|
||||
],
|
||||
"priorityOverrides": {},
|
||||
"customTags": {},
|
||||
"tagOwnerships": {
|
||||
"forge:rods/aluminum": [
|
||||
"forge:rods/aluminium"
|
||||
],
|
||||
"forge:storage_blocks/aluminum": [
|
||||
"forge:storage_blocks/aluminium"
|
||||
],
|
||||
"forge:raw_materials/aluminum": [
|
||||
"forge:raw_materials/aluminium"
|
||||
],
|
||||
"forge:ingots/aluminum": [
|
||||
"forge:ingots/aluminium"
|
||||
],
|
||||
"forge:gears/aluminum": [
|
||||
"forge:gears/aluminium"
|
||||
],
|
||||
"forge:dusts/aluminum": [
|
||||
"forge:dusts/aluminium"
|
||||
],
|
||||
"forge:storage_blocks/raw_aluminum": [
|
||||
"forge:storage_blocks/raw_aluminium"
|
||||
],
|
||||
"forge:plates/aluminum": [
|
||||
"forge:plates/aluminium"
|
||||
],
|
||||
"forge:plastic": [
|
||||
"pneumaticcraft:plastic_sheets"
|
||||
]
|
||||
},
|
||||
"itemTagInheritanceMode": "ALLOW",
|
||||
"itemTagInheritance": {},
|
||||
"blockTagInheritanceMode": "ALLOW",
|
||||
"blockTagInheritance": {},
|
||||
"ignoredTags": [],
|
||||
"ignoredItems": [],
|
||||
"ignoredRecipeTypes": [
|
||||
"cucumber:shaped_tag"
|
||||
],
|
||||
"ignoredRecipes": [],
|
||||
"itemsHidingJeiRei": true
|
||||
}
|
153
config/apotheosis/adventure.cfg
Normal file
153
config/apotheosis/adventure.cfg
Normal file
@ -0,0 +1,153 @@
|
||||
# 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 <itemname>|chance|<type>.
|
||||
# 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
|
||||
allthemodium:alloy_paxel|pickaxe
|
||||
industrialforegoing:infinity_hammer|none
|
||||
mythicbotany:mjoellnir|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
|
||||
minecraft:entities.witch|0
|
||||
minecraft:entities.shulker|0
|
||||
>
|
||||
|
||||
# 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
|
||||
allthemodium:the_other|epic|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
|
||||
allthemodium:the_other|epic|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
|
||||
|
||||
# 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
|
||||
allthemodium:the_other|0.07|NEEDS_SURFACE
|
||||
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
|
||||
}
|
||||
|
||||
|
40
config/apotheosis/apotheosis.cfg
Normal file
40
config/apotheosis/apotheosis.cfg
Normal file
@ -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"=false
|
||||
}
|
||||
|
||||
|
4532
config/apotheosis/enchantments.cfg
Normal file
4532
config/apotheosis/enchantments.cfg
Normal file
File diff suppressed because it is too large
Load Diff
22
config/apotheosis/garden.cfg
Normal file
22
config/apotheosis/garden.cfg
Normal file
@ -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"=8
|
||||
|
||||
# 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"=18
|
||||
|
||||
# The max height a stack of bamboo may grow to. Vanilla is 16.
|
||||
# Server-authoritative.
|
||||
# Default: 32; Range: [1 ~ 64]
|
||||
I:"Bamboo Height"=32
|
||||
}
|
||||
|
||||
|
2332
config/apotheosis/names.cfg
Normal file
2332
config/apotheosis/names.cfg
Normal file
File diff suppressed because it is too large
Load Diff
24
config/apotheosis/potion.cfg
Normal file
24
config/apotheosis/potion.cfg
Normal file
@ -0,0 +1,24 @@
|
||||
# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1
|
||||
|
||||
# Apotheosis Potion Module Configuration
|
||||
|
||||
general {
|
||||
# The strength of Ancient Knowledge. This multiplier determines how much additional xp is granted.
|
||||
# Server-authoritative.
|
||||
# Default: 4; Range: [1 ~ 2147483647]
|
||||
I:"Knowledge XP Multiplier"=4
|
||||
|
||||
# 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
|
||||
>
|
||||
}
|
||||
|
||||
|
56
config/apotheosis/spawner.cfg
Normal file
56
config/apotheosis/spawner.cfg
Normal file
@ -0,0 +1,56 @@
|
||||
# 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
|
||||
}
|
||||
|
||||
|
||||
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" <
|
||||
minecraft:ender_dragon
|
||||
minecraft:wither
|
||||
productivebees:ashy_mining_bee
|
||||
productivebees:bee_bomb
|
||||
productivebees:blue_banded_bee
|
||||
productivebees:bumble_bee
|
||||
productivebees:chocolate_mining_bee
|
||||
productivebees:collector_bee
|
||||
productivebees:configurable_bee
|
||||
productivebees:creeper_bee
|
||||
productivebees:cupid_bee
|
||||
productivebees:digger_bee
|
||||
productivebees:dye_bee
|
||||
productivebees:farmer_bee
|
||||
productivebees:green_carpenter_bee
|
||||
productivebees:hoarder_bee
|
||||
productivebees:leafcutter_bee
|
||||
productivebees:lumber_bee
|
||||
productivebees:mason_bee
|
||||
productivebees:neon_cuckoo_bee
|
||||
productivebees:nomad_bee
|
||||
productivebees:quarry_bee
|
||||
productivebees:rancher_bee
|
||||
productivebees:reed_bee
|
||||
productivebees:resin_bee
|
||||
productivebees:sweat_bee
|
||||
productivebees:yellow_black_carpenter_bee
|
||||
artifacts:mimic
|
||||
twilightforest:swarm_spider
|
||||
twilightforest:hedge_spider
|
||||
>
|
||||
}
|
||||
|
||||
|
30
config/apotheosis/village.cfg
Normal file
30
config/apotheosis/village.cfg
Normal file
@ -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
|
||||
}
|
||||
|
||||
|
48
config/ars_nouveau-client.toml
Normal file
48
config/ars_nouveau-client.toml
Normal file
@ -0,0 +1,48 @@
|
||||
|
||||
#Lighting
|
||||
[lights]
|
||||
#Show the supporter message. This is set to false after the first time.
|
||||
showSupporterMessage = false
|
||||
#If dynamic lights are enabled
|
||||
lightsEnabled = false
|
||||
#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
|
||||
|
||||
#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
|
||||
#Enables transparent/opaque rendering of elements in the book GUI. Disable if it leads to crash with Sodium derivatives
|
||||
gui_transparency = true
|
||||
|
71
config/ars_nouveau-common.toml
Normal file
71
config/ars_nouveau-common.toml
Normal file
@ -0,0 +1,71 @@
|
||||
|
||||
#General settings
|
||||
[general]
|
||||
#Dimensions where hostile mobs will not spawn. Ex: ["minecraft:overworld", "undergarden:undergarden"]. . Run /forge dimensions for a list.
|
||||
dimensionBlacklist = ["twilightforest:twilight_forest", "ae2:spatial_storage", "mythicbotany:alfheim", "bloodmagic:dungeon"]
|
||||
#Spawn a book in the players inventory on login
|
||||
spawnBook = false
|
||||
#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
|
||||
|
||||
#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
|
||||
|
37
config/blue_skies-client.toml
Normal file
37
config/blue_skies-client.toml
Normal file
@ -0,0 +1,37 @@
|
||||
|
||||
[Visuals]
|
||||
#
|
||||
# Should blue skies override the title screen panorama.
|
||||
# Default: true
|
||||
custom_panorama = false
|
||||
#
|
||||
# Whether or not brightness should be capped when inside the dimensions for aesthetic purposes.
|
||||
# Default: true
|
||||
limit_brightness = true
|
||||
|
||||
["Inventory Tabs"]
|
||||
#
|
||||
# If set to true, inventory tabs will use simple buttons that can be placed anywhere on the screen.
|
||||
# Default: false
|
||||
use_simple_inventory_tabs = false
|
||||
|
||||
["Inventory Tabs"."Sliding Tabs"]
|
||||
#
|
||||
# If set to true, inventory tabs appear on the bottom left corner instead of the bottom right.
|
||||
# Default: false
|
||||
left_align = true
|
||||
|
||||
["Inventory Tabs".Buttons]
|
||||
#
|
||||
# The x position of the inventory tabs.
|
||||
# Default: -88
|
||||
x = -88
|
||||
#
|
||||
# The y position of the inventory tabs.
|
||||
# Default: -83
|
||||
y = -83
|
||||
#
|
||||
# If set to true, inventory tabs are sorted vertically. If set to false, they are sorted horizontally.
|
||||
# Default: false
|
||||
is_vertical = false
|
||||
|
372
config/cataclysm.toml
Normal file
372
config/cataclysm.toml
Normal file
@ -0,0 +1,372 @@
|
||||
|
||||
[Etc]
|
||||
#Lava Opacity for the Ignitium Helemt.
|
||||
#Range: 0.01 ~ 1.0
|
||||
lavaVisionOpacity = 0.5
|
||||
#Whether to disable certain aspects of the Ignitium Helemt. Enable if issues with shaders persist.
|
||||
shadersCompat = true
|
||||
#ScreenShake(on/off)
|
||||
"ScreenShake(on/off)" = true
|
||||
#custombossbar(on/off)
|
||||
"custombossbar(on/off)" = true
|
||||
#BossMusic(on/off)
|
||||
"BossMusic(on/off)" = true
|
||||
#BossMusicVolume
|
||||
#Range: 1 ~ 1000000
|
||||
BossMusicVolume = 2
|
||||
#AddedServerlist(on/off)
|
||||
"AddedServerlist(on/off)" = false
|
||||
|
||||
[Weapon]
|
||||
#Armor Infinity Durability(on/off)
|
||||
"Armor Infinity Durability(on/off)" = true
|
||||
#Bulwark of the Flame's Cooldown
|
||||
#Range: 0 ~ 1000000
|
||||
BulwarkOfTheFlameCooldown = 80
|
||||
#Gauntlet of Bulwark's Cooldown
|
||||
#Range: 0 ~ 1000000
|
||||
GauntletOfBulwarkCooldown = 80
|
||||
#Infernal Forge's Cooldown
|
||||
#Range: 0 ~ 1000000
|
||||
InfernalForgeCooldown = 80
|
||||
#Void Forge's Cooldown
|
||||
#Range: 0 ~ 1000000
|
||||
VoidForgeCooldown = 120
|
||||
#The Incinerator's Cooldown
|
||||
#Range: 0 ~ 1000000
|
||||
TheIncineratorCooldown = 400
|
||||
#Wither Assault Shoulder Weapon's Missile Cooldown
|
||||
#Range: 0 ~ 1000000
|
||||
WASWMissileCooldown = 40
|
||||
#Wither Assault Shoulder Weapon's Howitzer Cooldown
|
||||
#Range: 0 ~ 1000000
|
||||
WASWHowitzerCooldown = 100
|
||||
#Void Assault Shoulder Weapon's Cooldown
|
||||
#Range: 0 ~ 1000000
|
||||
VASWCooldown = 120
|
||||
#Void Core's Cooldown
|
||||
#Range: 0 ~ 1000000
|
||||
VoidCoreCooldown = 160
|
||||
#WASW's Wither Missile's Damage
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
"WASW's WitherMissiledamage" = 16.0
|
||||
#Sandstorm's Timer
|
||||
#Range: 0 ~ 1000000
|
||||
SandstormTimer = 160
|
||||
|
||||
["Entity damage"]
|
||||
#Void Rune's Damage
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
Voidrunedamage = 7.0
|
||||
#Ashen Breath's Damage
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
Ashenbreathdamage = 4.0
|
||||
#Death Laser's Damage
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
DeathLaserdamage = 5.0
|
||||
#Death Laser's Hp Damage
|
||||
#Range: 0.0 ~ 1.0
|
||||
DeathLaserHpdamage = 0.05
|
||||
#Laser's Damage
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
Laserdamage = 4.0
|
||||
#Blazing Bone's Damage
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
BlazingBonedamage = 5.0
|
||||
#Lionfish Spike's Damage
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
LionfishSpikedamage = 4.0
|
||||
#Wither Howizter's Damage
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
WitherHowizterdamage = 8.0
|
||||
#Dimensional Rift's Damage
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
DimensionalRiftdamage = 10.0
|
||||
#Wither Homing Missile's Damage
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
WitherHomingMissiledamage = 3.0
|
||||
#Abyss Blast's Damage
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
AbyssBlastdamage = 10.0
|
||||
#Abyss Blast's Hp Damage
|
||||
#Range: 0.0 ~ 1.0
|
||||
AbyssBlastHpdamage = 0.1
|
||||
#Abyss Orb's Damage
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
AbyssOrbdamage = 4.0
|
||||
#Lava bomb's Radius
|
||||
#Range: 1 ~ 7
|
||||
Lavabombradius = 2
|
||||
#Amethyst Cluster's Damage
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
"Amethyst Cluster Damage" = 12.0
|
||||
#Sandstorm's Damage
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
"Sandstorm Damage" = 5.0
|
||||
#Ancient Desert Stele's Damage
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
"Ancient Desert Stele Damage" = 18.0
|
||||
|
||||
["Ender Guardian"]
|
||||
#EnderGuardian's Health Multiplier
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
EnderGuardianHealthMultiplier = 15.0
|
||||
#EnderGuardian's Damage Multiplier
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
EnderGuardianDamageMultiplier = 4.0
|
||||
#EnderGuardian's DamageCap
|
||||
#Range: 0 ~ 1000000
|
||||
EnderGuardianDamageCap = 45
|
||||
#Ender guardian's block breaking ignore the MobGriefing
|
||||
EnderguardianBlockBreaking = true
|
||||
#Guardian's Immune to Long distance attack range.
|
||||
#Range: 1.0 ~ 1000000.0
|
||||
"Guardian's prevent attacks from far away Range" = 12.0
|
||||
#Guardian's gravity Punch Hp Damage
|
||||
#Range: 0.0 ~ 1.0
|
||||
"Guardian's gravity Punch Hp Damage" = 0.05
|
||||
#Guardian's Teleport attack Hp Damage
|
||||
#Range: 0.0 ~ 1.0
|
||||
"Guardian's Teleport attack Hp Damage" = 0.05
|
||||
#Guardian's Punch Hp Damage
|
||||
#Range: 0.0 ~ 1.0
|
||||
"Guardian's knockback Hp Damage" = 0.06
|
||||
#Guardian's Uppercut Hp Damage
|
||||
#Range: 0.0 ~ 1.0
|
||||
"Guardian's Uppercut Hp Damage" = 0.1
|
||||
#Guardian's RocketPunch Hp Damage
|
||||
#Range: 0.0 ~ 1.0
|
||||
"Guardian's RocketPunch Hp Damage" = 0.1
|
||||
#Guardian's etc area attack Hp Damage
|
||||
#Range: 0.0 ~ 1.0
|
||||
"Guardian's area attack Hp Damage" = 0.08
|
||||
#EnderGuardianBlockBreaking radius
|
||||
#Range: 0 ~ 20
|
||||
"EnderGuardianBlockBreaking X" = 15
|
||||
#EnderGuardianBlockBreaking radius
|
||||
#Range: 0 ~ 10
|
||||
"EnderGuardianBlockBreaking Y" = 2
|
||||
#EnderGuardianBlockBreaking radius
|
||||
#Range: 0 ~ 20
|
||||
"EnderGuardianBlockBreaking Z" = 15
|
||||
|
||||
["Netherite Monstrosity"]
|
||||
#Monstrosity's Lavabomb magazine.
|
||||
#Range: 1 ~ 1000000
|
||||
LavabombMagazine = 8
|
||||
#Monstrosity's Lavabomb amount
|
||||
#Range: 1 ~ 1000000
|
||||
Lavabombamount = 8
|
||||
#Monstrosity's Health Multiplier
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
MonstrosityHealthMultiplier = 30.0
|
||||
#Monstrosity's Damage Multiplier
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
MonstrosityDamageMultiplier = 3.0
|
||||
#Monstrosity's Healing Multiplier
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
MonstrosityHealingMultiplier = 3.0
|
||||
#Monstrosity's DamageCap
|
||||
#Range: 0 ~ 1000000
|
||||
MonstrosityDamageCap = 45
|
||||
#Monstrosity's bodyBlocking verdict
|
||||
NetheritemonstrosityBodyBloking = true
|
||||
#Monstrosity's attack Hp Damage
|
||||
#Range: 0.0 ~ 1.0
|
||||
"Monstrosity's attack Hp Damage" = 0.1
|
||||
#Monstrosity's Immune to Long distance attack range.
|
||||
#Range: 1.0 ~ 1000000.0
|
||||
"Monstrosity's prevent attacks from far away Range" = 28.0
|
||||
|
||||
["Ender Golem"]
|
||||
#Ender Golem's block breaking ignore the MobGriefing
|
||||
EndergolemBlockBreaking = false
|
||||
#Endergolem's Immune to Long distance attack range.
|
||||
#Range: 1.0 ~ 1000000.0
|
||||
"Endergolem's prevent attacks from far away Range" = 16.0
|
||||
#Golem's Health Multiplier
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
GolemHealthMultiplier = 20.0
|
||||
#Golem's Damage Multiplier
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
GolemDamageMultiplier = 3.0
|
||||
|
||||
[Ignis]
|
||||
#Ignis's Health Multiplier
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
IgnisHealthMultiplier = 15.0
|
||||
#Ignis's Damage Multiplier
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
IgnisDamageMultiplier = 3.0
|
||||
#Ignis's Healing Multiplier
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
IgnisHealingMultiplier = 2.0
|
||||
#Ignis's Immune to Long distance attack range.
|
||||
#Range: 1.0 ~ 1000000.0
|
||||
"Ignis's prevent attacks from far away Range" = 35.0
|
||||
#Ignis's DamageCap
|
||||
#Range: 0 ~ 1000000
|
||||
IgnisDamageCap = 45
|
||||
#Ignis's cracked block breaking ignore the MobGriefing
|
||||
IgnisBlockBreaking = true
|
||||
|
||||
[revenant]
|
||||
#Revenant's Health Multiplier
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
RevenantHealthMultiplier = 10.0
|
||||
#Revenant's Damage Multiplier
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
RevenantDamageMultiplier = 2.0
|
||||
|
||||
["The Harbinger"]
|
||||
#Harbinger's Health Multiplier
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
HarbingerHealthMultiplier = 20.0
|
||||
#Harbinger's Damage Multiplier
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
HarbingerDamageMultiplier = 3.0
|
||||
#Harbinger's Healing Multiplier
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
HarbingerHealingMultiplier = 3.0
|
||||
#Harbinger's Immune to Long distance attack range.
|
||||
#Range: 1.0 ~ 1000000.0
|
||||
"The Harbinger's prevent attacks from far away Range" = 35.0
|
||||
#Harbinger's DamageCap
|
||||
#Range: 0 ~ 1000000
|
||||
"The Harbinger DamageCap" = 45
|
||||
#Harbinger's lasers can light a fire in MobGriefing
|
||||
"The Harbinger Light A Fire" = true
|
||||
#The Harbinger's charge attack Hp Damage
|
||||
#Range: 0.0 ~ 1.0
|
||||
"The Harbinger's charge attack Hp Damage" = 0.06
|
||||
#Harbinger's Wither Missile's Damage
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
"Harbinger's WitherMissiledamage" = 16.0
|
||||
|
||||
["The Leviathan"]
|
||||
#Leviathan's Health Multiplier
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
LeviathanHealthMultiplier = 30.0
|
||||
#Leviathan's Damage Multiplier
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
LeviathanDamageMultiplier = 4.0
|
||||
#Leviathan's Immune to Long distance attack range.
|
||||
#Range: 1.0 ~ 1000000.0
|
||||
"Leviathan's prevent attacks from far away Range" = 38.0
|
||||
#Leviathan's Bite Hp Damage
|
||||
#Range: 0.0 ~ 1.0
|
||||
"Leviathan's Bite Hp Damage" = 0.3
|
||||
#Leviathan's Rush Hp Damage
|
||||
#Range: 0.0 ~ 1.0
|
||||
"Leviathan's Rush Hp Damage" = 0.1
|
||||
#Leviathan's TailSwing Hp Damage
|
||||
#Range: 0.0 ~ 1.0
|
||||
"Leviathan's TailSwing Hp Damage" = 0.1
|
||||
#Leviathan's Tentacle Hp Damage
|
||||
#Range: 0.0 ~ 1.0
|
||||
"Leviathan's Tentacle Hp Damage" = 0.1
|
||||
#Leviathan's DamageCap
|
||||
#Range: 0 ~ 1000000
|
||||
LeviathanDamageCap = 45
|
||||
#Leviathan's block breaking ignore the MobGriefing
|
||||
LeviathanBlockBreaking = true
|
||||
#Leviathan Immune Out of Water
|
||||
LeviathanImmuneOutofWater = true
|
||||
|
||||
["The Baby Leviathan"]
|
||||
#BabyLeviathan's Health Multiplier
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
BabyLeviathanHealthMultiplier = 10.0
|
||||
#BabyLeviathan's Damage Multiplier
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
BabyLeviathanDamageMultiplier = 2.0
|
||||
|
||||
[spawning]
|
||||
#Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn
|
||||
#Range: 0 ~ 1000
|
||||
DeeplingSpawnWeight = 2
|
||||
#Random roll chance to enable mob spawning. Higher number = lower chance of spawning
|
||||
#Range: > 0
|
||||
DeeplingSpawnRolls = 30
|
||||
#Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn
|
||||
#Range: 0 ~ 1000
|
||||
DeeplingBruteSpawnWeight = 1
|
||||
#Random roll chance to enable mob spawning. Higher number = lower chance of spawning
|
||||
#Range: > 0
|
||||
DeeplingBruteSpawnRolls = 50
|
||||
#Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn
|
||||
#Range: 0 ~ 1000
|
||||
DeeplingAnglerSpawnWeight = 2
|
||||
#Random roll chance to enable mob spawning. Higher number = lower chance of spawning
|
||||
#Range: > 0
|
||||
DeeplingAnglerSpawnRolls = 30
|
||||
#Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn
|
||||
#Range: 0 ~ 1000
|
||||
AmethystCrabSpawnWeight = 1
|
||||
#Random roll chance to enable mob spawning. Higher number = lower chance of spawning
|
||||
#Range: > 0
|
||||
AmethystCrabSpawnRolls = 100
|
||||
#Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn
|
||||
#Range: 0 ~ 1000
|
||||
KoboletonSpawnWeight = 2
|
||||
#Random roll chance to enable mob spawning. Higher number = lower chance of spawning
|
||||
#Range: > 0
|
||||
KoboletonSpawnRolls = 30
|
||||
|
||||
["Amethyst Crab"]
|
||||
#Amethyst Crab's Health Multiplier
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
AmethystCrabHealthMultiplier = 10.0
|
||||
#Amethyst Crab's Damage Multiplier
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
AmethystCrabDamageMultiplier = 2.0
|
||||
|
||||
["Ancient Remnant"]
|
||||
#Ancient Remnant's Health Multiplier
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
AncientRemnantHealthMultiplier = 10.0
|
||||
#Ancient Remnant's Damage Multiplier
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
AncientRemnantDamageMultiplier = 3.0
|
||||
#Ancient Remnant's Immune to Long distance attack range.
|
||||
#Range: 1.0 ~ 1000000.0
|
||||
"Ancient Remnant's prevent attacks from far away Range" = 15.0
|
||||
#Ancient Remnant's DamageCap
|
||||
#Range: 0 ~ 1000000
|
||||
AncientRemnantCap = 30
|
||||
#Ancient Remnant's block breaking ignore the MobGriefing
|
||||
AncientRemnantBlockBreaking = true
|
||||
#Remnant's Charge Hp Damage
|
||||
#Range: 0.0 ~ 1.0
|
||||
"Remnant's Charge Hp Damage" = 0.2
|
||||
#Remnant's Hp Damage
|
||||
#Range: 0.0 ~ 1.0
|
||||
"Remnant's Normal attack Hp Damage" = 0.1
|
||||
#Remnant's Stomp Hp Damage
|
||||
#Range: 0.0 ~ 1.0
|
||||
"Remnant's Stomp Hp Damage" = 0.1
|
||||
|
||||
["The Prowler"]
|
||||
#The Prowler's Immune to Long distance attack range.
|
||||
#Range: 1.0 ~ 1000000.0
|
||||
"The Prowler's prevent attacks from far away Range" = 16.0
|
||||
#Prowler's Health Multiplier
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
ProwlerHealthMultiplier = 10.0
|
||||
#Prowler's Damage Multiplier
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
ProwlerDamageMultiplier = 4.0
|
||||
|
||||
["Modern Remnant"]
|
||||
#Modern Remnant's Health Multiplier
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
ModernRemnantHealthMultiplier = 10.0
|
||||
#Modern Remnant's Damage Multiplier
|
||||
#Range: 0.0 ~ 1000000.0
|
||||
ModernRemnantDamageMultiplier = 4.0
|
||||
|
||||
[Koboleton]
|
||||
#Cause Koboleton to Drop Item In Hand Percent
|
||||
#Range: 0.0 ~ 100.0
|
||||
CauseKoboletontoDropItemInHandPercent = 5.0
|
||||
|
19
config/commoncapabilities-common.toml
Normal file
19
config/commoncapabilities-common.toml
Normal file
@ -0,0 +1,19 @@
|
||||
|
||||
[core]
|
||||
|
||||
[core.general]
|
||||
#If mod compatibility loader should crash hard if errors occur in that process.
|
||||
crashOnModCompatCrash = false
|
||||
#If the recipe loader should crash when finding invalid recipes.
|
||||
crashOnInvalidRecipe = false
|
||||
#If an anonymous mod startup analytics request may be sent to our analytics service.
|
||||
analytics = false
|
||||
#If the version checker should be enabled.
|
||||
versionChecker = false
|
||||
|
||||
[machine]
|
||||
|
||||
[machine.general]
|
||||
#The NBT Paths that should be filtered away when checking equality.
|
||||
ignoreNbtPathsForEqualityFilters = ["$.ForgeCaps[\"astralsorcery:cap_item_amulet_holder\"]", "$.binding", "$.energy"]
|
||||
|
18
config/craftingtweaks-common.toml
Normal file
18
config/craftingtweaks-common.toml
Normal file
@ -0,0 +1,18 @@
|
||||
|
||||
[common]
|
||||
#Set this to false if you want the (de)compress feature to work outside of crafting GUIs (only works if installed on server while in the player inventory)
|
||||
compressRequiresCraftingGrid = true
|
||||
#A list of modid:name entries that will not be crafted by the compress key.
|
||||
compressDenylist = ["minecraft:sandstone", "minecraft:iron_trapdoor"]
|
||||
|
||||
[client]
|
||||
#If set to true, right-clicking the result slot in a crafting table will craft a full stack.
|
||||
rightClickCraftsStack = true
|
||||
#We both know JEI is much better. This option hides Vanilla's crafting book button instead of moving it.
|
||||
hideVanillaCraftingGuide = true
|
||||
#Set to 'DEFAULT' to enable both buttons and hotkeys. Set to 'BUTTONS' to enable buttons only. Set to 'HOTKEYS' to enable hotkeys only. Set to 'DISABLED' to disable completely.
|
||||
#Allowed Values: DEFAULT, BUTTONS, HOTKEYS, DISABLED
|
||||
mode = "DEFAULT"
|
||||
#Add mod ids here of mods that you wish to disable Crafting Tweaks support for.
|
||||
disabledAddons = []
|
||||
|
146
config/create-client.toml
Normal file
146
config/create-client.toml
Normal file
@ -0,0 +1,146 @@
|
||||
|
||||
#.
|
||||
#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
|
||||
#.
|
||||
#Show kinetic debug information on blocks while the F3-Menu is open.
|
||||
enableRainbowDebug = false
|
||||
#.
|
||||
#The maximum amount of blocks for which to try and calculate dynamic contraption lighting. Decrease if large contraption cause too much lag
|
||||
#Range: > 0
|
||||
maximumContraptionLightVolume = 16384
|
||||
#.
|
||||
#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 = 0
|
||||
#.
|
||||
#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
|
||||
|
||||
#.
|
||||
#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
|
||||
|
||||
#.
|
||||
#Settings for the Placement Assist
|
||||
[client.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
|
||||
|
||||
#.
|
||||
#Ponder settings
|
||||
[client.ponder]
|
||||
#.
|
||||
#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
|
||||
|
||||
#.
|
||||
#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
|
||||
|
||||
#.
|
||||
#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
|
||||
|
429
config/croptopia/croptopia_v3.conf
Normal file
429
config/croptopia/croptopia_v3.conf
Normal file
@ -0,0 +1,429 @@
|
||||
# Determines if croptopia salt will generate in rivers. Defaults to true
|
||||
generateSaltInWorld = true
|
||||
# Include both capitalizations in case this gets fixed
|
||||
rightCLickHarvest = false
|
||||
rightClickHarvest = false
|
||||
treeConfig=[
|
||||
{
|
||||
acceptableBiomes=[
|
||||
"byg:orchard",
|
||||
"minecraft:flower_forest",
|
||||
"byg:aspen_forest",
|
||||
"minecraft:plains",
|
||||
"minecraft:forest",
|
||||
"minecraft:sunflower_plains",
|
||||
"minecraft:windswept_forest",
|
||||
"byg:red_oak_forest",
|
||||
"terralith:birch_taiga",
|
||||
"terralith:blooming_valley",
|
||||
"terralith:blooming_plateau",
|
||||
"terralith:highlands",
|
||||
"terralith:steppe"
|
||||
]
|
||||
featureName="orange_tree_placed"
|
||||
},
|
||||
{
|
||||
acceptableBiomes=[
|
||||
"byg:tropical_rainforest",
|
||||
"minecraft:sparse_jungle",
|
||||
"byg:tropical_islands",
|
||||
"minecraft:jungle",
|
||||
"traverse:mini_jungle",
|
||||
"byg:crag_gardens",
|
||||
"terralith:amethyst_canyon",
|
||||
"terralith:amethyst_rainforest",
|
||||
"terralith:jungle_mountains",
|
||||
"terralith:tropical_jungle",
|
||||
]
|
||||
featureName="dragonfruit_tree_placed"
|
||||
},
|
||||
{
|
||||
acceptableBiomes=[
|
||||
"byg:tropical_rainforest",
|
||||
"minecraft:sparse_jungle",
|
||||
"byg:tropical_islands",
|
||||
"minecraft:jungle",
|
||||
"traverse:mini_jungle",
|
||||
"byg:crag_gardens",
|
||||
"terralith:amethyst_canyon",
|
||||
"terralith:amethyst_rainforest",
|
||||
"terralith:jungle_mountains",
|
||||
"terralith:tropical_jungle",
|
||||
"terralith:blooming_valley"
|
||||
]
|
||||
featureName="kumquat_tree_placed"
|
||||
},
|
||||
{
|
||||
acceptableBiomes=[
|
||||
"byg:tropical_rainforest",
|
||||
"minecraft:sparse_jungle",
|
||||
"byg:tropical_islands",
|
||||
"minecraft:jungle",
|
||||
"traverse:mini_jungle",
|
||||
"byg:crag_gardens",
|
||||
"terralith:amethyst_canyon",
|
||||
"terralith:amethyst_rainforest",
|
||||
"terralith:jungle_mountains",
|
||||
"terralith:tropical_jungle",
|
||||
]
|
||||
featureName="banana_tree_placed"
|
||||
},
|
||||
{
|
||||
acceptableBiomes=[
|
||||
"traverse:autumnal_woods",
|
||||
"minecraft:flower_forest",
|
||||
"byg:autumnal_forest",
|
||||
"byg:aspen_forest",
|
||||
"traverse:autumnal_wooded_hills",
|
||||
"byg:jacaranda_forest",
|
||||
"byg:autumnal_taiga",
|
||||
"traverse:wooded_plateau",
|
||||
"minecraft:windswept_forest",
|
||||
"byg:red_oak_forest",
|
||||
"byg:orchard",
|
||||
"traverse:woodlands",
|
||||
"traverse:wooded_island",
|
||||
"minecraft:forest"
|
||||
]
|
||||
featureName="plum_tree_placed"
|
||||
},
|
||||
{
|
||||
acceptableBiomes=[
|
||||
"byg:tropical_rainforest",
|
||||
"minecraft:sparse_jungle",
|
||||
"byg:tropical_islands",
|
||||
"minecraft:jungle",
|
||||
"traverse:mini_jungle",
|
||||
"byg:crag_gardens",
|
||||
"terralith:amethyst_canyon",
|
||||
"terralith:amethyst_rainforest",
|
||||
"terralith:jungle_mountains",
|
||||
"terralith:tropical_jungle",
|
||||
]
|
||||
featureName="date_tree_placed"
|
||||
},
|
||||
{
|
||||
acceptableBiomes=[
|
||||
"minecraft:dark_forest",
|
||||
"byg:weeping_witch_forest",
|
||||
"byg:dacite_ridges",
|
||||
"byg:ebony_woods",
|
||||
"byg:maple_taiga",
|
||||
"byg:twilight_meadow"
|
||||
]
|
||||
featureName="cashew_tree_placed"
|
||||
},
|
||||
{
|
||||
acceptableBiomes=[
|
||||
"byg:tropical_rainforest",
|
||||
"minecraft:sparse_jungle",
|
||||
"byg:tropical_islands",
|
||||
"minecraft:jungle",
|
||||
"traverse:mini_jungle",
|
||||
"byg:crag_gardens",
|
||||
"terralith:amethyst_canyon",
|
||||
"terralith:amethyst_rainforest",
|
||||
"terralith:jungle_mountains",
|
||||
"terralith:tropical_jungle",
|
||||
]
|
||||
featureName="mango_tree_placed"
|
||||
},
|
||||
{
|
||||
acceptableBiomes=[
|
||||
"byg:tropical_rainforest",
|
||||
"minecraft:sparse_jungle",
|
||||
"byg:tropical_islands",
|
||||
"minecraft:jungle",
|
||||
"traverse:mini_jungle",
|
||||
"byg:crag_gardens",
|
||||
"terralith:amethyst_canyon",
|
||||
"terralith:amethyst_rainforest",
|
||||
"terralith:jungle_mountains",
|
||||
"terralith:tropical_jungle",
|
||||
]
|
||||
featureName="coconut_tree_placed"
|
||||
},
|
||||
{
|
||||
acceptableBiomes=[
|
||||
"byg:orchard",
|
||||
"minecraft:flower_forest",
|
||||
"byg:aspen_forest",
|
||||
"minecraft:forest",
|
||||
"minecraft:windswept_forest",
|
||||
"byg:red_oak_forest",
|
||||
"terralith:blooming_valley",
|
||||
"terralith:lavender_forest",
|
||||
"terralith:sakura_grove",
|
||||
"terralith:sakura_valley"
|
||||
]
|
||||
featureName="apricot_tree_placed"
|
||||
},
|
||||
{
|
||||
acceptableBiomes=[
|
||||
"byg:tropical_rainforest",
|
||||
"minecraft:sparse_jungle",
|
||||
"byg:tropical_islands",
|
||||
"minecraft:jungle",
|
||||
"traverse:mini_jungle",
|
||||
"byg:crag_gardens",
|
||||
"terralith:amethyst_canyon",
|
||||
"terralith:amethyst_rainforest",
|
||||
"terralith:jungle_mountains",
|
||||
"terralith:tropical_jungle",
|
||||
]
|
||||
featureName="nutmeg_tree_placed"
|
||||
},
|
||||
{
|
||||
acceptableBiomes=[
|
||||
"traverse:autumnal_woods",
|
||||
"byg:orchard",
|
||||
"minecraft:flower_forest",
|
||||
"byg:autumnal_forest",
|
||||
"byg:aspen_forest",
|
||||
"traverse:autumnal_wooded_hills",
|
||||
"byg:jacaranda_forest",
|
||||
"byg:autumnal_taiga",
|
||||
"minecraft:forest",
|
||||
"minecraft:windswept_forest",
|
||||
"byg:red_oak_forest",
|
||||
"terralith:blooming_valley",
|
||||
"terralith:lavender_forest",
|
||||
"terralith:sakura_grove",
|
||||
"terralith:sakura_valley"
|
||||
]
|
||||
featureName="persimmon_tree_placed"
|
||||
},
|
||||
{
|
||||
acceptableBiomes=[
|
||||
"minecraft:dark_forest",
|
||||
"byg:weeping_witch_forest",
|
||||
"byg:dacite_ridges",
|
||||
"byg:ebony_woods",
|
||||
"byg:maple_taiga",
|
||||
"byg:twilight_meadow"
|
||||
]
|
||||
featureName="almond_tree_placed"
|
||||
},
|
||||
{
|
||||
acceptableBiomes=[
|
||||
"byg:orchard",
|
||||
"minecraft:flower_forest",
|
||||
"byg:aspen_forest",
|
||||
"minecraft:forest",
|
||||
"minecraft:windswept_forest",
|
||||
"byg:red_oak_forest",
|
||||
"terralith:birch_taiga",
|
||||
"terralith:blooming_valley",
|
||||
"terralith:lavender_forest",
|
||||
"terralith:sakura_grove",
|
||||
"terralith:sakura_valley"
|
||||
]
|
||||
featureName="avocado_tree_placed"
|
||||
},
|
||||
{
|
||||
acceptableBiomes=[
|
||||
"byg:tropical_rainforest",
|
||||
"minecraft:sparse_jungle",
|
||||
"byg:tropical_islands",
|
||||
"minecraft:jungle",
|
||||
"traverse:mini_jungle",
|
||||
"byg:crag_gardens",
|
||||
"terralith:amethyst_canyon",
|
||||
"terralith:amethyst_rainforest",
|
||||
"terralith:jungle_mountains",
|
||||
"terralith:tropical_jungle",
|
||||
]
|
||||
featureName="fig_tree_placed"
|
||||
},
|
||||
{
|
||||
acceptableBiomes=[
|
||||
"minecraft:sparse_jungle",
|
||||
"byg:white_mangrove_marshes",
|
||||
"byg:tropical_rainforest",
|
||||
"byg:temperate_rainforest",
|
||||
"byg:cypress_swamplands",
|
||||
"byg:tropical_islands",
|
||||
"minecraft:jungle",
|
||||
"traverse:mini_jungle",
|
||||
"byg:crag_gardens",
|
||||
"traverse:lush_swamp",
|
||||
"terralith:amethyst_canyon",
|
||||
"terralith:amethyst_rainforest",
|
||||
"terralith:jungle_mountains",
|
||||
"terralith:tropical_jungle",
|
||||
]
|
||||
featureName="cinnamon_tree_placed"
|
||||
},
|
||||
{
|
||||
acceptableBiomes=[
|
||||
"minecraft:plains",
|
||||
"minecraft:sunflower_plains",
|
||||
"terralith:blooming_valley",
|
||||
"terralith:lavender_forest",
|
||||
"terralith:sakura_grove",
|
||||
"terralith:sakura_valley",
|
||||
"terralith:blooming_plateau",
|
||||
"terralith:highlands",
|
||||
"terralith:steppe"
|
||||
]
|
||||
featureName="peach_tree_placed"
|
||||
},
|
||||
{
|
||||
acceptableBiomes=[
|
||||
"traverse:wooded_island",
|
||||
"minecraft:plains",
|
||||
"minecraft:sunflower_plains",
|
||||
"traverse:wooded_plateau",
|
||||
"byg:prairie",
|
||||
"traverse:woodlands",
|
||||
"terralith:blooming_valley",
|
||||
"terralith:lavender_forest",
|
||||
"terralith:sakura_grove",
|
||||
"terralith:sakura_valley",
|
||||
"terralith:blooming_plateau",
|
||||
"terralith:highlands",
|
||||
"terralith:steppe"
|
||||
]
|
||||
featureName="apple_tree_placed"
|
||||
},
|
||||
{
|
||||
acceptableBiomes=[
|
||||
"traverse:autumnal_woods",
|
||||
"byg:orchard",
|
||||
"minecraft:flower_forest",
|
||||
"byg:autumnal_forest",
|
||||
"byg:aspen_forest",
|
||||
"traverse:autumnal_wooded_hills",
|
||||
"byg:jacaranda_forest",
|
||||
"byg:autumnal_taiga",
|
||||
"minecraft:forest",
|
||||
"minecraft:windswept_forest",
|
||||
"byg:red_oak_forest",
|
||||
"terralith:blooming_valley",
|
||||
"terralith:lavender_forest",
|
||||
"terralith:sakura_grove",
|
||||
"terralith:sakura_valley"
|
||||
]
|
||||
featureName="pear_tree_placed"
|
||||
},
|
||||
{
|
||||
acceptableBiomes=[
|
||||
"byg:tropical_rainforest",
|
||||
"minecraft:sparse_jungle",
|
||||
"byg:tropical_islands",
|
||||
"minecraft:jungle",
|
||||
"traverse:mini_jungle",
|
||||
"byg:crag_gardens",
|
||||
"terralith:amethyst_canyon",
|
||||
"terralith:amethyst_rainforest",
|
||||
"terralith:jungle_mountains",
|
||||
"terralith:tropical_jungle",
|
||||
]
|
||||
featureName="grapefruit_tree_placed"
|
||||
},
|
||||
{
|
||||
acceptableBiomes=[
|
||||
"byg:orchard",
|
||||
"minecraft:flower_forest",
|
||||
"byg:aspen_forest",
|
||||
"minecraft:forest",
|
||||
"minecraft:windswept_forest",
|
||||
"byg:red_oak_forest",
|
||||
"terralith:blooming_valley",
|
||||
"terralith:lavender_forest",
|
||||
"terralith:sakura_grove",
|
||||
"terralith:sakura_valley",
|
||||
"terralith:steppe"
|
||||
]
|
||||
featureName="starfruit_tree_placed"
|
||||
},
|
||||
{
|
||||
acceptableBiomes=[
|
||||
"byg:orchard",
|
||||
"minecraft:flower_forest",
|
||||
"byg:aspen_forest",
|
||||
"minecraft:forest",
|
||||
"minecraft:windswept_forest",
|
||||
"byg:red_oak_forest",
|
||||
"terralith:blooming_valley",
|
||||
"terralith:lavender_forest",
|
||||
"terralith:sakura_grove",
|
||||
"terralith:sakura_valley"
|
||||
]
|
||||
featureName="nectarine_tree_placed"
|
||||
},
|
||||
{
|
||||
acceptableBiomes=[
|
||||
"byg:orchard",
|
||||
"minecraft:flower_forest",
|
||||
"byg:aspen_forest",
|
||||
"minecraft:forest",
|
||||
"minecraft:windswept_forest",
|
||||
"byg:red_oak_forest",
|
||||
"terralith:blooming_valley",
|
||||
"terralith:lavender_forest",
|
||||
"terralith:sakura_grove",
|
||||
"terralith:sakura_valley"
|
||||
]
|
||||
featureName="lemon_tree_placed"
|
||||
},
|
||||
{
|
||||
acceptableBiomes=[
|
||||
"byg:orchard",
|
||||
"minecraft:flower_forest",
|
||||
"byg:aspen_forest",
|
||||
"byg:cherry_blossom_forest",
|
||||
"traverse:woodlands",
|
||||
"traverse:wooded_island",
|
||||
"minecraft:forest",
|
||||
"traverse:wooded_plateau",
|
||||
"minecraft:windswept_forest",
|
||||
"byg:red_oak_forest",
|
||||
"terralith:blooming_valley",
|
||||
"terralith:lavender_forest",
|
||||
"terralith:sakura_grove",
|
||||
"terralith:sakura_valley"
|
||||
]
|
||||
featureName="cherry_tree_placed"
|
||||
},
|
||||
{
|
||||
acceptableBiomes=[
|
||||
"byg:orchard",
|
||||
"minecraft:flower_forest",
|
||||
"byg:aspen_forest",
|
||||
"minecraft:forest",
|
||||
"minecraft:windswept_forest",
|
||||
"byg:red_oak_forest",
|
||||
"terralith:blooming_valley",
|
||||
"terralith:lavender_forest",
|
||||
"terralith:sakura_grove",
|
||||
"terralith:sakura_valley"
|
||||
]
|
||||
featureName="lime_tree_placed"
|
||||
},
|
||||
{
|
||||
acceptableBiomes=[
|
||||
"minecraft:dark_forest",
|
||||
"byg:weeping_witch_forest",
|
||||
"byg:dacite_ridges",
|
||||
"byg:ebony_woods",
|
||||
"byg:maple_taiga",
|
||||
"byg:twilight_meadow",
|
||||
"terralith:birch_taiga",
|
||||
]
|
||||
featureName="pecan_tree_placed"
|
||||
},
|
||||
{
|
||||
acceptableBiomes=[
|
||||
"minecraft:dark_forest",
|
||||
"byg:weeping_witch_forest",
|
||||
"byg:dacite_ridges",
|
||||
"byg:ebony_woods",
|
||||
"byg:maple_taiga",
|
||||
"byg:twilight_meadow",
|
||||
"terralith:birch_taiga",
|
||||
"terralith:steppe"
|
||||
]
|
||||
featureName="walnut_tree_placed"
|
||||
}
|
||||
]
|
9
config/cumulus_menus-client.toml
Normal file
9
config/cumulus_menus-client.toml
Normal file
@ -0,0 +1,9 @@
|
||||
|
||||
[Menu]
|
||||
#Determines whether the Menu API is enabled or not
|
||||
"Enable Menu API" = true
|
||||
#Sets the current active menu title screen
|
||||
"Active Menu" = "cumulus_menus:minecraft"
|
||||
#Adds a button to the top right of the main menu screen to open a menu selection screen
|
||||
"Enables menu selection button" = false
|
||||
|
23
config/cyclopscore-common.toml
Normal file
23
config/cyclopscore-common.toml
Normal file
@ -0,0 +1,23 @@
|
||||
|
||||
[core]
|
||||
|
||||
[core.general]
|
||||
#If mod compatibility loader should crash hard if errors occur in that process.
|
||||
crashOnModCompatCrash = false
|
||||
#Set 'true' to enable development debug mode. This will result in a lower performance!
|
||||
debug = false
|
||||
#The anonymous id used by the analytics service.
|
||||
anonymousAnalyticsID = "218d75bf-7c24-487a-9ec5-5c92ff318212"
|
||||
#If the recipe loader should crash when finding invalid recipes.
|
||||
crashOnInvalidRecipe = false
|
||||
#If an anonymous mod startup analytics request may be sent to our analytics service.
|
||||
analytics = false
|
||||
#If the version checker should be enabled.
|
||||
versionChecker = false
|
||||
|
||||
[general]
|
||||
|
||||
[general.general]
|
||||
#If a button should be added to the main menu to open a dev world (shift-click creates a new world).
|
||||
devWorldButton = false
|
||||
|
27
config/darkmodeeverywhere-client.toml
Normal file
27
config/darkmodeeverywhere-client.toml
Normal file
@ -0,0 +1,27 @@
|
||||
#A list of class:method strings (render methods) that the dark shader will not be applied to.
|
||||
#Each string consists of the class and the method (or any substring) to block the dark shader.
|
||||
#For example, 'renderHunger' is sufficient to block 'net.minecraftforge.client.gui.overlay.ForgeGui:renderFood' (either will work).
|
||||
METHOD_SHADER_BLACKLIST = ["shadows.packmenu.logo.Logo:draw", "shadows.packmenu.ExtendedMenuScreen:m_88315_", "shadows.packmenu.buttons.JsonButton:renderImageButton","mezz.jei.common.render.FluidTankRenderer:drawTextureWithMasking", "mezz.jei.library.render.FluidTankRenderer:drawTextureWithMasking", "renderCrosshair", "m_93080_", "renderSky", "m_202423_", "renderHotbar", "m_93009_", "m_193837_", "setupOverlayRenderState", "net.minecraftforge.client.gui.overlay.ForgeGui", "renderFood", "renderExperienceBar", "m_93071_", "renderLogo", "m_280037_", "m_280118_", "net.minecraft.client.gui.Gui", "net.minecraft.src.C_3431_", "renderDirtBackground", "m_280039_", "m_280039_"]
|
||||
#Enabling this config will (every 5 seconds) dump which methods were used to render GUIs that the dark shader was applied to
|
||||
#The dump will consist of a list of class:method strings, e.g. 'net.minecraftforge.client.gui.overlay.ForgeGui:renderFood'
|
||||
#Use this feature to help find the render method strings of GUIs you would like to blacklist.
|
||||
METHOD_SHADER_DUMP = false
|
||||
|
||||
["Inventory Button"]
|
||||
#Pixels away from the left of the GUI in the x axis
|
||||
#Range: > 0
|
||||
X = 32
|
||||
#Pixels away from the bottom of the GUI in the y axis
|
||||
#Range: > 0
|
||||
Y = 2
|
||||
|
||||
["Main Menu Button"]
|
||||
#Enabled
|
||||
SHOW = false
|
||||
#Pixels away from the left of the GUI in the x axis
|
||||
#Range: > 0
|
||||
MAIN_X = 4
|
||||
#Pixels away from the bottom of the GUI in the y axis
|
||||
#Range: > 0
|
||||
MAIN_Y = 40
|
||||
|
24
config/deeperdarker.json5
Normal file
24
config/deeperdarker.json5
Normal file
@ -0,0 +1,24 @@
|
||||
{
|
||||
// Whether the Sculk Jaw can eat items or not (eating an item will cause it to disappear forever)
|
||||
"sculk_jaw_eats_items": false,
|
||||
"warden_armor": {
|
||||
"warden_armor_toughness": 3.0,
|
||||
"warden_armor_durability": 45,
|
||||
"warden_armor_knockback_resistance": 0.5,
|
||||
// How much strength/armor you get from the Soul Elytra
|
||||
"soul_elytra_armor_modifier": 4.0,
|
||||
},
|
||||
"warden_tools": {
|
||||
"warden_tools_durability": 2464,
|
||||
"warden_tools_damage": 7.0,
|
||||
"warden_tools_speed": 11.0,
|
||||
},
|
||||
"otherside": {
|
||||
"sculk_centipede_spawning": true,
|
||||
// Whether Sculk Blocks can spawn in the Otherside or not (Sculk Sensor, Sculk Vein, and Sculk Catalyst)
|
||||
"sculk_blocks_in_otherside": true,
|
||||
"phantom_spawning": true,
|
||||
"sculk_snapper_spawning": false,
|
||||
"shattered_spawning": true,
|
||||
},
|
||||
}
|
11
config/defaultsettings.json
Normal file
11
config/defaultsettings.json
Normal file
@ -0,0 +1,11 @@
|
||||
{
|
||||
"version": "4.0.5",
|
||||
"prevVersion": "none",
|
||||
"generatedBy": "597a586d-b827-437b-8957-ab6bffabff38",
|
||||
"hashes": {
|
||||
"Default/keys.txt": "4FBDA4B65D7DB69CB02BCC735757A884",
|
||||
"Default/options.txt": "570F46EE2C7F74D2DA3D763FAA392FA4"
|
||||
},
|
||||
"mainProfile": "Default",
|
||||
"initially_created": "22.06.2023 08:27:13"
|
||||
}
|
214
config/defaultsettings/Default/keys.txt
Normal file
214
config/defaultsettings/Default/keys.txt
Normal file
@ -0,0 +1,214 @@
|
||||
key.attack:key.mouse.left:NONE
|
||||
key.use:key.mouse.right:NONE
|
||||
key.forward:key.keyboard.w:NONE
|
||||
key.left:key.keyboard.a:NONE
|
||||
key.back:key.keyboard.s:NONE
|
||||
key.right:key.keyboard.d:NONE
|
||||
key.jump:key.keyboard.space:NONE
|
||||
key.sneak:key.keyboard.left.shift:NONE
|
||||
key.sprint:key.keyboard.left.control:NONE
|
||||
key.drop:key.keyboard.q:NONE
|
||||
key.inventory:key.keyboard.e:NONE
|
||||
key.chat:key.keyboard.t:NONE
|
||||
key.playerlist:key.keyboard.tab:NONE
|
||||
key.pickItem:key.mouse.middle:NONE
|
||||
key.command:key.keyboard.slash:NONE
|
||||
key.socialInteractions:key.keyboard.p:NONE
|
||||
key.screenshot:key.keyboard.f2:NONE
|
||||
key.togglePerspective:key.keyboard.f5:NONE
|
||||
key.smoothCamera:key.keyboard.unknown:NONE
|
||||
key.fullscreen:key.keyboard.f11:NONE
|
||||
key.spectatorOutlines:key.keyboard.unknown:NONE
|
||||
key.swapOffhand:key.keyboard.f:NONE
|
||||
key.saveToolbarActivator:key.keyboard.c:NONE
|
||||
key.loadToolbarActivator:key.keyboard.x:NONE
|
||||
key.advancements:key.keyboard.l:NONE
|
||||
key.hotbar.1:key.keyboard.1:NONE
|
||||
key.hotbar.2:key.keyboard.2:NONE
|
||||
key.hotbar.3:key.keyboard.3:NONE
|
||||
key.hotbar.4:key.keyboard.4:NONE
|
||||
key.hotbar.5:key.keyboard.5:NONE
|
||||
key.hotbar.6:key.keyboard.6:NONE
|
||||
key.hotbar.7:key.keyboard.7:NONE
|
||||
key.hotbar.8:key.keyboard.8:NONE
|
||||
key.hotbar.9:key.keyboard.9:NONE
|
||||
keybind.advancedperipherals.description:key.keyboard.left.control:NONE
|
||||
simplemagnets.keys.toggle:key.keyboard.h:NONE
|
||||
gui.xaero_open_map:key.keyboard.m:NONE
|
||||
gui.xaero_open_settings:key.keyboard.right.bracket:NONE
|
||||
gui.xaero_map_zoom_in:key.keyboard.unknown:NONE
|
||||
gui.xaero_map_zoom_out:key.keyboard.unknown:NONE
|
||||
gui.xaero_quick_confirm:key.keyboard.right.shift:NONE
|
||||
placebo.toggleTrails:key.keyboard.keypad.9:NONE
|
||||
placebo.toggleWings:key.keyboard.keypad.8:NONE
|
||||
key.modernfix.config:key.keyboard.unknown:NONE
|
||||
key.shrink.shrink:key.keyboard.g:NONE
|
||||
keybind.sophisticatedbackpacks.open_backpack:key.keyboard.b:NONE
|
||||
keybind.sophisticatedbackpacks.inventory_interaction:key.keyboard.c:NONE
|
||||
keybind.sophisticatedbackpacks.tool_swap:key.keyboard.unknown:NONE
|
||||
keybind.sophisticatedbackpacks.sort:key.mouse.middle:NONE
|
||||
keybind.sophisticatedbackpacks.toggle_upgrade_1:key.keyboard.z:ALT
|
||||
keybind.sophisticatedbackpacks.toggle_upgrade_2:key.keyboard.x:ALT
|
||||
keybind.sophisticatedbackpacks.toggle_upgrade_3:key.keyboard.unknown:NONE
|
||||
keybind.sophisticatedbackpacks.toggle_upgrade_4:key.keyboard.unknown:NONE
|
||||
keybind.sophisticatedbackpacks.toggle_upgrade_5:key.keyboard.unknown:NONE
|
||||
supplementaries.keybind.quiver:key.keyboard.unknown:NONE
|
||||
key.curios.open.desc:key.keyboard.g:NONE
|
||||
iris.keybind.reload:key.keyboard.r:NONE
|
||||
iris.keybind.toggleShaders:key.keyboard.k:NONE
|
||||
iris.keybind.shaderPackSelection:key.keyboard.o:NONE
|
||||
tombstone.message.knowledge_of_death:key.keyboard.unknown:NONE
|
||||
tombstone.message.config:key.keyboard.unknown:NONE
|
||||
tombstone.message.compendium:key.keyboard.unknown:NONE
|
||||
key.ftbultimine:key.keyboard.grave.accent:NONE
|
||||
key.ftbteams.open_gui:key.keyboard.unknown:NONE
|
||||
key.ftbchunks.map:key.keyboard.m:NONE
|
||||
key.ftbchunks.claim_manager:key.keyboard.unknown:NONE
|
||||
key.ftbchunks.minimap.zoomIn:key.keyboard.equal:NONE
|
||||
key.ftbchunks.minimap.zoomOut:key.keyboard.minus:NONE
|
||||
key.ftbchunks.add_waypoint:key.keyboard.unknown:NONE
|
||||
key.ftbchunks.waypoint_manager:key.keyboard.unknown:NONE
|
||||
key.moreoverlays.lightoverlay.desc:key.keyboard.f7:NONE
|
||||
key.moreoverlays.chunkbounds.desc:key.keyboard.f9:NONE
|
||||
key.sfm.more_info:key.keyboard.left.shift:NONE
|
||||
crafting_on_a_stick.key.open_curios:key.keyboard.unknown:NONE
|
||||
key.trashslot.toggle:key.keyboard.t:NONE
|
||||
key.trashslot.delete:key.keyboard.delete:NONE
|
||||
key.trashslot.deleteAll:key.keyboard.delete:SHIFT
|
||||
keybind.sophisticatedstorage.sort:key.mouse.middle:NONE
|
||||
key.travelersbackpack.inventory:key.keyboard.b:NONE
|
||||
key.travelersbackpack.toggle_tank:key.keyboard.n:NONE
|
||||
key.travelersbackpack.cycle_tool:key.keyboard.z:NONE
|
||||
key.openManual:key.keyboard.f1:NONE
|
||||
key.nextDestination:key.keyboard.right.bracket:NONE
|
||||
key.prevDestination:key.keyboard.left.bracket:NONE
|
||||
key.craftingtweaks.rotate:key.keyboard.unknown:NONE
|
||||
key.craftingtweaks.rotate_counter_clockwise:key.keyboard.unknown:NONE
|
||||
key.craftingtweaks.balance:key.keyboard.unknown:NONE
|
||||
key.craftingtweaks.spread:key.keyboard.unknown:NONE
|
||||
key.craftingtweaks.clear:key.keyboard.unknown:NONE
|
||||
key.craftingtweaks.force_clear:key.keyboard.unknown:NONE
|
||||
key.craftingtweaks.compressOne:key.keyboard.k:CONTROL
|
||||
key.craftingtweaks.compressStack:key.keyboard.k:NONE
|
||||
key.craftingtweaks.compressAll:key.keyboard.k:SHIFT
|
||||
key.craftingtweaks.decompressOne:key.keyboard.unknown:NONE
|
||||
key.craftingtweaks.decompressStack:key.keyboard.unknown:NONE
|
||||
key.craftingtweaks.decompressAll:key.keyboard.unknown:NONE
|
||||
key.craftingtweaks.refill_last:key.keyboard.tab:CONTROL
|
||||
key.craftingtweaks.refill_last_stack:key.keyboard.tab:NONE
|
||||
key.craftingtweaks.transfer_stack:key.keyboard.unknown:NONE
|
||||
key.toolbelt.open:key.keyboard.r:NONE
|
||||
key.toolbelt.cycle.left:key.keyboard.unknown:NONE
|
||||
key.toolbelt.cycle.right:key.keyboard.unknown:NONE
|
||||
key.toolbelt.slot:key.keyboard.unknown:NONE
|
||||
key.jade.config:key.keyboard.keypad.0:NONE
|
||||
key.jade.show_overlay:key.keyboard.keypad.1:NONE
|
||||
key.jade.toggle_liquid:key.keyboard.keypad.2:NONE
|
||||
key.jade.show_recipes:key.keyboard.keypad.3:NONE
|
||||
key.jade.show_uses:key.keyboard.keypad.4:NONE
|
||||
key.jade.narrate:key.keyboard.keypad.5:NONE
|
||||
key.jade.show_details:key.keyboard.left.shift:NONE
|
||||
key.exchangers.open_gui:key.keyboard.comma:NONE
|
||||
key.exchangers.range_switch:key.keyboard.unknown:NONE
|
||||
key.exchangers.mode_switch:key.keyboard.unknown:NONE
|
||||
key.exchangers.force_drop_items_mode_toggle:key.keyboard.unknown:NONE
|
||||
key.exchangers.directional_placement_mode_toggle:key.keyboard.unknown:NONE
|
||||
key.exchangers.fuzzy_placement_mode_toggle:key.keyboard.unknown:NONE
|
||||
key.exchangers.void_items_mode_toggle:key.keyboard.unknown:NONE
|
||||
key.unmountVehicle:key.keyboard.backslash:NONE
|
||||
gui.xaero_switch_waypoint_set:key.keyboard.unknown:NONE
|
||||
gui.xaero_instant_waypoint:key.keyboard.keypad.add:NONE
|
||||
gui.xaero_toggle_slime:key.keyboard.unknown:NONE
|
||||
gui.xaero_toggle_grid:key.keyboard.unknown:NONE
|
||||
gui.xaero_toggle_waypoints:key.keyboard.unknown:NONE
|
||||
gui.xaero_toggle_map_waypoints:key.keyboard.unknown:NONE
|
||||
gui.xaero_toggle_map:key.keyboard.unknown:NONE
|
||||
gui.xaero_enlarge_map:key.keyboard.z:NONE
|
||||
gui.xaero_waypoints_key:key.keyboard.u:NONE
|
||||
gui.xaero_zoom_in:key.keyboard.unknown:NONE
|
||||
gui.xaero_zoom_out:key.keyboard.unknown:NONE
|
||||
gui.xaero_new_waypoint:key.keyboard.b:NONE
|
||||
gui.xaero_display_all_sets:key.keyboard.unknown:NONE
|
||||
gui.xaero_toggle_light_overlay:key.keyboard.unknown:NONE
|
||||
gui.xaero_toggle_entity_radar:key.keyboard.unknown:NONE
|
||||
gui.xaero_reverse_entity_radar:key.keyboard.unknown:NONE
|
||||
gui.xaero_toggle_manual_cave_mode:key.keyboard.unknown:NONE
|
||||
gui.xaero_alternative_list_players:key.keyboard.unknown:NONE
|
||||
gui.xaero_toggle_pac_players:key.keyboard.unknown:NONE
|
||||
gui.xaero_toggle_pac_chunk_claims:key.keyboard.unknown:NONE
|
||||
gui.xaero_minimap_settings:key.keyboard.y:NONE
|
||||
key.jei.toggleCheatModeConfigButton:key.mouse.left:CONTROL
|
||||
key.jei.showRecipe2:key.mouse.left:NONE
|
||||
key.jei.toggleOverlay:key.keyboard.o:CONTROL
|
||||
key.jei.toggleCheatMode:key.keyboard.unknown:NONE
|
||||
key.jei.cheatItemStack2:key.mouse.middle:NONE
|
||||
key.jei.nextPage:key.keyboard.unknown:NONE
|
||||
key.jei.showUses:key.keyboard.u:NONE
|
||||
key.jei.closeRecipeGui:key.keyboard.escape:NONE
|
||||
key.jei.recipeBack:key.keyboard.backspace:NONE
|
||||
key.jei.showUses2:key.mouse.right:NONE
|
||||
key.jei.cheatOneItem:key.mouse.left:NONE
|
||||
key.jei.nextCategory:key.keyboard.page.down:SHIFT
|
||||
key.jei.previousSearch:key.keyboard.up:NONE
|
||||
key.jei.toggleWildcardHideIngredient:key.mouse.right:CONTROL
|
||||
key.jei.nextRecipePage:key.keyboard.page.down:NONE
|
||||
key.jei.previousCategory:key.keyboard.page.up:SHIFT
|
||||
key.jei.focusSearch:key.keyboard.f:CONTROL
|
||||
key.jei.nextSearch:key.keyboard.down:NONE
|
||||
key.jei.cheatItemStack:key.mouse.left:SHIFT
|
||||
key.jei.copy.recipe.id:key.keyboard.unknown:NONE
|
||||
key.jei.cheatOneItem2:key.mouse.right:NONE
|
||||
key.jei.bookmark:key.keyboard.a:NONE
|
||||
key.jei.toggleHideIngredient:key.mouse.left:CONTROL
|
||||
key.jei.previousRecipePage:key.keyboard.page.up:NONE
|
||||
key.jei.previousPage:key.keyboard.unknown:NONE
|
||||
key.jei.showRecipe:key.keyboard.r:NONE
|
||||
key.jei.toggleBookmarkOverlay:key.keyboard.unknown:NONE
|
||||
key.jei.toggleEditMode:key.keyboard.unknown:NONE
|
||||
key.jei.clearSearchBar:key.mouse.right:NONE
|
||||
key.ae2.wireless_pattern_access_terminal:key.keyboard.unknown:NONE
|
||||
key.ae2.ae2wtlib_restock:key.keyboard.unknown:NONE
|
||||
key.ae2.ae2wtlib_magnet:key.keyboard.unknown:NONE
|
||||
key.ae2.portable_item_cell:key.keyboard.unknown:NONE
|
||||
key.ae2.portable_fluid_cell:key.keyboard.unknown:NONE
|
||||
key.ae2.wireless_pattern_encoding_terminal:key.keyboard.unknown:NONE
|
||||
key.ae2.wireless_terminal:key.keyboard.unknown:NONE
|
||||
key.irons_spellbooks.spell_wheel:key.keyboard.r:NONE
|
||||
key.irons_spellbooks.spell_bar_modifier:key.keyboard.left.shift:NONE
|
||||
key.irons_spellbooks.spell_quick_cast_1:key.keyboard.unknown:NONE
|
||||
key.irons_spellbooks.spell_quick_cast_2:key.keyboard.unknown:NONE
|
||||
key.irons_spellbooks.spell_quick_cast_3:key.keyboard.unknown:NONE
|
||||
key.irons_spellbooks.spell_quick_cast_4:key.keyboard.unknown:NONE
|
||||
key.irons_spellbooks.spell_quick_cast_5:key.keyboard.unknown:NONE
|
||||
key.irons_spellbooks.spell_quick_cast_6:key.keyboard.unknown:NONE
|
||||
key.irons_spellbooks.spell_quick_cast_7:key.keyboard.unknown:NONE
|
||||
key.irons_spellbooks.spell_quick_cast_8:key.keyboard.unknown:NONE
|
||||
key.irons_spellbooks.spell_quick_cast_9:key.keyboard.unknown:NONE
|
||||
key.irons_spellbooks.spell_quick_cast_10:key.keyboard.unknown:NONE
|
||||
key.irons_spellbooks.spell_quick_cast_11:key.keyboard.unknown:NONE
|
||||
key.irons_spellbooks.spell_quick_cast_12:key.keyboard.unknown:NONE
|
||||
key.irons_spellbooks.spell_quick_cast_13:key.keyboard.unknown:NONE
|
||||
key.irons_spellbooks.spell_quick_cast_14:key.keyboard.unknown:NONE
|
||||
key.irons_spellbooks.spell_quick_cast_15:key.keyboard.unknown:NONE
|
||||
key.occultism.backpack:key.keyboard.b:NONE
|
||||
key.occultism.storage_remote:key.keyboard.n:NONE
|
||||
key.occultism.familiar.greedy_familiar:key.keyboard.unknown:NONE
|
||||
key.occultism.familiar.otherworld_bird:key.keyboard.unknown:NONE
|
||||
key.occultism.familiar.bat_familiar:key.keyboard.unknown:NONE
|
||||
key.occultism.familiar.deer_familiar:key.keyboard.unknown:NONE
|
||||
key.occultism.familiar.cthulhu_familiar:key.keyboard.unknown:NONE
|
||||
key.occultism.familiar.devil_familiar:key.keyboard.unknown:NONE
|
||||
key.occultism.familiar.dragon_familiar:key.keyboard.unknown:NONE
|
||||
key.occultism.familiar.blacksmith_familiar:key.keyboard.unknown:NONE
|
||||
key.occultism.familiar.guardian_familiar:key.keyboard.unknown:NONE
|
||||
key.occultism.familiar.headless_familiar:key.keyboard.unknown:NONE
|
||||
key.occultism.familiar.chimera_familiar:key.keyboard.unknown:NONE
|
||||
key.occultism.familiar.goat_familiar:key.keyboard.unknown:NONE
|
||||
key.occultism.familiar.shub_niggurath_familiar:key.keyboard.unknown:NONE
|
||||
key.occultism.familiar.beholder_familiar:key.keyboard.unknown:NONE
|
||||
key.occultism.familiar.fairy_familiar:key.keyboard.unknown:NONE
|
||||
key.occultism.familiar.mummy_familiar:key.keyboard.unknown:NONE
|
||||
key.occultism.familiar.beaver_familiar:key.keyboard.unknown:NONE
|
||||
key.open_muffler_gui:key.keyboard.unknown:NONE
|
||||
cos.key.opencosarmorinventory:key.keyboard.unknown:NONE
|
||||
key.entityculling.toggle:key.keyboard.unknown:NONE
|
103
config/defaultsettings/Default/options.txt
Normal file
103
config/defaultsettings/Default/options.txt
Normal file
@ -0,0 +1,103 @@
|
||||
version:3465
|
||||
autoJump:false
|
||||
operatorItemsTab:false
|
||||
autoSuggestions:true
|
||||
chatColors:true
|
||||
chatLinks:true
|
||||
chatLinksPrompt:true
|
||||
enableVsync:true
|
||||
entityShadows:true
|
||||
forceUnicodeFont:false
|
||||
discrete_mouse_scroll:false
|
||||
invertYMouse:false
|
||||
realmsNotifications:true
|
||||
reducedDebugInfo:false
|
||||
showSubtitles:false
|
||||
directionalAudio:false
|
||||
touchscreen:false
|
||||
fullscreen:false
|
||||
bobView:true
|
||||
toggleCrouch:false
|
||||
toggleSprint:false
|
||||
darkMojangStudiosBackground:false
|
||||
hideLightningFlashes:false
|
||||
mouseSensitivity:0.5
|
||||
fov:0.0
|
||||
screenEffectScale:1.0
|
||||
fovEffectScale:1.0
|
||||
darknessEffectScale:1.0
|
||||
glintSpeed:0.5
|
||||
glintStrength:0.75
|
||||
damageTiltStrength:1.0
|
||||
highContrast:false
|
||||
gamma:0.5
|
||||
renderDistance:11
|
||||
simulationDistance:32
|
||||
entityDistanceScaling:1.0
|
||||
guiScale:2
|
||||
particles:0
|
||||
maxFps:120
|
||||
graphicsMode:1
|
||||
ao:true
|
||||
prioritizeChunkUpdates:0
|
||||
biomeBlendRadius:2
|
||||
renderClouds:"true"
|
||||
resourcePacks:[]
|
||||
incompatibleResourcePacks:[]
|
||||
lastServer:
|
||||
lang:en_us
|
||||
soundDevice:""
|
||||
chatVisibility:0
|
||||
chatOpacity:1.0
|
||||
chatLineSpacing:0.0
|
||||
textBackgroundOpacity:0.5
|
||||
backgroundForChatOnly:true
|
||||
hideServerAddress:false
|
||||
advancedItemTooltips:false
|
||||
pauseOnLostFocus:true
|
||||
overrideWidth:0
|
||||
overrideHeight:0
|
||||
chatHeightFocused:1.0
|
||||
chatDelay:0.0
|
||||
chatHeightUnfocused:0.4375
|
||||
chatScale:1.0
|
||||
chatWidth:1.0
|
||||
notificationDisplayTime:1.0
|
||||
mipmapLevels:0
|
||||
useNativeTransport:true
|
||||
mainHand:"right"
|
||||
attackIndicator:1
|
||||
narrator:0
|
||||
tutorialStep:none
|
||||
mouseWheelSensitivity:1.0
|
||||
rawMouseInput:true
|
||||
glDebugVerbosity:1
|
||||
skipMultiplayerWarning:true
|
||||
skipRealms32bitWarning:false
|
||||
hideMatchedNames:true
|
||||
joinedFirstServer:true
|
||||
hideBundleTutorial:false
|
||||
syncChunkWrites:true
|
||||
showAutosaveIndicator:true
|
||||
allowServerListing:true
|
||||
onlyShowSecureChat:false
|
||||
panoramaScrollSpeed:1.0
|
||||
telemetryOptInExtra:false
|
||||
onboardAccessibility:false
|
||||
soundCategory_master:1.0
|
||||
soundCategory_music:1.0
|
||||
soundCategory_record:1.0
|
||||
soundCategory_weather:1.0
|
||||
soundCategory_block:1.0
|
||||
soundCategory_hostile:1.0
|
||||
soundCategory_neutral:1.0
|
||||
soundCategory_player:1.0
|
||||
soundCategory_ambient:1.0
|
||||
soundCategory_voice:1.0
|
||||
modelPart_cape:true
|
||||
modelPart_jacket:true
|
||||
modelPart_left_sleeve:true
|
||||
modelPart_right_sleeve:true
|
||||
modelPart_left_pants_leg:true
|
||||
modelPart_right_pants_leg:true
|
||||
modelPart_hat:true
|
447
config/emi.css
Normal file
447
config/emi.css
Normal file
@ -0,0 +1,447 @@
|
||||
/** EMI Config */
|
||||
|
||||
#general {
|
||||
/**
|
||||
* Whether EMI is enabled and visible.
|
||||
*/
|
||||
enabled: true;
|
||||
|
||||
/**
|
||||
* Whether cheating in items is enabled.
|
||||
*/
|
||||
cheat-mode: false;
|
||||
|
||||
/**
|
||||
* How much EMI should use tooltips and popups to show controls and information.
|
||||
*/
|
||||
help-level: normal;
|
||||
|
||||
/**
|
||||
* 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: false;
|
||||
}
|
||||
|
||||
#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: millibuckets;
|
||||
|
||||
/**
|
||||
* Whether to use the batched render system. Batching is faster, but may have
|
||||
* incompatibilities with shaders or other mods.
|
||||
*/
|
||||
use-batched-renderer: false;
|
||||
|
||||
/**
|
||||
* 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;
|
||||
|
||||
/**
|
||||
* The amount of vertical margin to give in the recipe screen.
|
||||
*/
|
||||
vertical-margin: 20;
|
||||
|
||||
/**
|
||||
* 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;
|
||||
|
||||
/**
|
||||
* 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: false;
|
||||
|
||||
/**
|
||||
* 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: none;
|
||||
|
||||
/**
|
||||
* 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";
|
||||
|
||||
/**
|
||||
* Focuse 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";
|
||||
|
||||
/**
|
||||
* 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.left";
|
||||
|
||||
/**
|
||||
* 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: false;
|
||||
|
||||
/**
|
||||
* 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;
|
||||
}
|
24
config/endermanoverhaul.jsonc
Normal file
24
config/endermanoverhaul.jsonc
Normal file
@ -0,0 +1,24 @@
|
||||
{
|
||||
"allowPickingUpBlocks": true,
|
||||
"friendlyEndermanTeleport": true,
|
||||
"friendlyEndermanDespawn": true,
|
||||
"allowSpawning": true,
|
||||
"spawnBadlandsEnderman": true,
|
||||
"spawnCaveEnderman": false,
|
||||
"spawnCrimsonForestEnderman": true,
|
||||
"spawnDarkOakEnderman": true,
|
||||
"spawnDesertEnderman": true,
|
||||
"spawnEndEnderman": true,
|
||||
"spawnEndIslandsEnderman": true,
|
||||
"spawnFlowerFieldsEnderman": true,
|
||||
"spawnIceSpikesEnderman": true,
|
||||
"spawnMushroomFieldsEnderman": true,
|
||||
"spawnNetherWastesEnderman": true,
|
||||
"spawnCoralEnderman": true,
|
||||
"spawnSavannaEnderman": true,
|
||||
"spawnSnowyEnderman": true,
|
||||
"spawnSoulsandValleyEnderman": true,
|
||||
"spawnSwampEnderman": true,
|
||||
"spawnWarpedForestEnderman": true,
|
||||
"spawnWindsweptHillsEnderman": true
|
||||
}
|
339
config/evilcraft-common.toml
Normal file
339
config/evilcraft-common.toml
Normal file
@ -0,0 +1,339 @@
|
||||
|
||||
[general]
|
||||
|
||||
[general.general]
|
||||
#If the blood gui overlay should be rendered.
|
||||
bloodGuiOverlay = true
|
||||
#The position to render the blood gui overlay at. (0=NE, 1=SE, 2=SW,3=NW)
|
||||
bloodGuiOverlayPosition = 1
|
||||
#If farting is enabled on this server; Client-side: If farting can be seen at your client.
|
||||
farting = true
|
||||
#The X offset for the blood gui overlay.
|
||||
bloodGuiOverlayPositionOffsetX = -5
|
||||
#The amount of mB that can flow per tick out of machines and items.
|
||||
mbFlowRate = 100
|
||||
#Evil stuff...
|
||||
dieWithoutAnyReason = false
|
||||
#The Y offset for the blood gui overlay.
|
||||
bloodGuiOverlayPositionOffsetY = -5
|
||||
|
||||
[general.weather_container]
|
||||
#If shapeless crafting of the higher tiers of weather containers should be enabled.
|
||||
shapelessRecipes = true
|
||||
|
||||
[worldgeneration]
|
||||
|
||||
[worldgeneration.general]
|
||||
#The spawn chance for loot chests in dark temples, set to zero to completely disable.
|
||||
darkTempleChestChance = 0.15
|
||||
#Spawn extra silverfish blocks in all biomes.
|
||||
extraSilverfish = false
|
||||
|
||||
[core]
|
||||
|
||||
[core.general]
|
||||
#If an anonymous mod startup analytics request may be sent to our analytics service.
|
||||
analytics = false
|
||||
#If the version checker should be enabled.
|
||||
versionChecker = false
|
||||
|
||||
[block]
|
||||
|
||||
[block.blood_stain]
|
||||
#The amount of blood per HP (2HP = 1 heart) of the max mob health that will be added to this blockState when a mob dies from fall damage.
|
||||
bloodMBPerHP = 20
|
||||
#Blocks onto which no blood stains can be spawned. Regular expressions are allowed.
|
||||
spawnBlacklist = ["tconstruct:.*"]
|
||||
#If blood stains should be spawned on block entities.
|
||||
spawnOnBlockEntities = false
|
||||
|
||||
[block.undead_leaves]
|
||||
#How much Blood (mB) can be produced at most as a Blood Stain on each random tick.
|
||||
maxBloodStainAmount = 25
|
||||
|
||||
[block.spiked_plate]
|
||||
#The multiplier for amount of mB to receive per mob HP.
|
||||
mobMultiplier = 40.0
|
||||
#The amount of damage per time.
|
||||
damage = 4.0
|
||||
|
||||
[block.gem_stone_torch]
|
||||
#The radius that will be kept spirit-proof.
|
||||
area = 15
|
||||
|
||||
[machine]
|
||||
|
||||
[machine.blood_chest]
|
||||
#The amount of ticks required for repairing one damage value.
|
||||
ticksPerDamage = 2
|
||||
#Item names that can not be repaired. Regular expressions are allowed.
|
||||
itemBlacklist = ["minecraft:stick"]
|
||||
#The amount Blood mB required for repairing one damage value.
|
||||
mBPerDamage = 5
|
||||
#If the Blood Chest should add random bad enchants with a small chance to repairing items.
|
||||
addRandomBadEnchants = true
|
||||
|
||||
[machine.envir_acc]
|
||||
#Sets the default amount of ticks the environmental accumulator takes to process an item.
|
||||
defaultProcessItemTickCount = 100
|
||||
#Sets the default default speed in increments per tick with which an item will move when being process by an environmental accumulator.
|
||||
defaultProcessItemSpeed = 0.015
|
||||
#Sets the default amount of ticks the environmental accumulator takes to cool down
|
||||
defaultTickCooldown = 1200
|
||||
|
||||
[machine.purifier]
|
||||
#The duration limit in ticks for which potion effect can be collected. Set to a negative value to allow any duration.
|
||||
maxPotionEffectDuration = 1
|
||||
#Item that can not be disenchanted. Regular expressions are allowed.
|
||||
disenchantBlacklist = ["tetra:.*"]
|
||||
|
||||
[machine.spirit_furnace]
|
||||
#How much mB per tick this furnace should consume.
|
||||
mBPerTick = 25
|
||||
#If the machine should play mob death sounds.
|
||||
mobDeathSounds = true
|
||||
#Custom mob drops. Maps entity names to a loot table resource location. Expects the format entityname|loottable. For example: 'minecraft:pig|minecraft:entities/sheep'
|
||||
mobDrops = []
|
||||
#The 1/X chance for villagers to drop emeralds. 0 means no drops.
|
||||
villagerDropEmeraldChance = 20
|
||||
#How much mB per tick this furnace should consume for player spirit.
|
||||
playerMBPerTick = 100
|
||||
#The required amount of ticks for each HP for cooking an entity.
|
||||
requiredTicksPerHp = 10
|
||||
#How much mB per tick this furnace should consume for boss mob spirit.
|
||||
bossMBPerTick = 250
|
||||
#Custom player drops. Maps player UUID to an itemstack. Expects the format domain:itemname:amount:meta for items where amount and meta are optional.
|
||||
playerDrops = ["93b459be-ce4f-4700-b457-c1aa91b3b687|minecraft:stone_slab"]
|
||||
|
||||
[machine.dark_tank]
|
||||
#The maximum tank size visible in the creative tabs. (Make sure that you do not cross the max int size.)
|
||||
maxTankCreativeSize = 4096000
|
||||
#If the fluid should be rendered statically. Fluids won't be shown fluently, but more efficiently.
|
||||
staticBlockRendering = false
|
||||
#If creative versions for all fluids should be added to the creative tab.
|
||||
creativeTabFluids = true
|
||||
|
||||
[machine.spirit_reanimator]
|
||||
#The required amount of ticks for each reanimation.
|
||||
requiredTicks = 500
|
||||
#If the Box of Eternal Closure should be cleared after a revival.
|
||||
clearBoxContents = true
|
||||
#How much mB per tick this machine should consume.
|
||||
mBPerTick = 5
|
||||
|
||||
[machine.entangled_chalice]
|
||||
#If the fluid should be rendered statically. Fluids won't be shown fluently, but more efficiently.
|
||||
staticBlockRendering = false
|
||||
|
||||
[machine.colossal_blood_chest]
|
||||
#The base amount of concurrent items that need to be available before efficiency can rise.
|
||||
baseConcurrentItems = 1
|
||||
#The amount of ticks required for repairing one damage value.
|
||||
ticksPerDamage = 2
|
||||
#The amount Blood mB required for repairing one damage value.
|
||||
baseMBPerDamage = 5
|
||||
|
||||
[machine.sang_envir_acc]
|
||||
#The base blood usage in mB for recipes, this is multiplied with the cooldown time per recipe.
|
||||
baseUsage = 50
|
||||
|
||||
[item]
|
||||
|
||||
[item.dark_tank]
|
||||
#If held buckets should be autofilled when enabled.
|
||||
autoFillBuckets = false
|
||||
|
||||
[item.sanguinary_pedestal_0]
|
||||
#Blood multiplier when Efficiency is active.
|
||||
efficiencyBoost = 1.5
|
||||
|
||||
[item.sanguinary_pedestal_1]
|
||||
#Blood multiplier when Efficiency is active.
|
||||
efficiencyBoost = 1.5
|
||||
|
||||
[item.flesh_werewolf]
|
||||
#Humanoid flesh will drop in a 1/X chance.
|
||||
humanoidFleshDropChance = 5
|
||||
|
||||
[item.flesh_humanoid]
|
||||
#Humanoid flesh will drop in a 1/X chance.
|
||||
humanoidFleshDropChance = 5
|
||||
|
||||
[item.redstone_grenade]
|
||||
#If the redstone grenade should drop again as an item after it is being thrown.
|
||||
dropAfterUsage = false
|
||||
|
||||
[item.blood_extractor]
|
||||
#If held buckets should be autofilled when enabled.
|
||||
autoFillBuckets = false
|
||||
#The minimum multiplier for amount of mB to receive per mob HP.
|
||||
minimumMobMultiplier = 5.0
|
||||
#The amount of blood (mB) this container can hold.
|
||||
containerSize = 5000
|
||||
#The maximum multiplier for amount of mB to receive per mob HP. IMPORTANT: must be larger than minimumMobMultiplier!
|
||||
maximumMobMultiplier = 40.0
|
||||
|
||||
[item.blood_pearl_of_teleportation]
|
||||
#The amount of second slowness should be applied after each teleport.
|
||||
slownessDuration = 0
|
||||
|
||||
[item.broom]
|
||||
#The position to render the broom gui overlay at. (0=NE, 1=SE, 2=SW,3=NW)
|
||||
guiOverlayPosition = 1
|
||||
#The blood usage in mB per tick.
|
||||
bloodUsage = 1
|
||||
#If the broom should spawn in loot chests.
|
||||
lootChests = true
|
||||
#Show broom part tooltips on source items.
|
||||
broomPartTooltips = true
|
||||
#The X offset for the broom gui overlay.
|
||||
guiOverlayPositionOffsetX = -15
|
||||
#The Y offset for the broom gui overlay.
|
||||
guiOverlayPositionOffsetY = -10
|
||||
#The blood usage in mB per block break.
|
||||
bloodUsageBlockBreak = 1
|
||||
#Show broom modifier tooltips on source items.
|
||||
broomModifierTooltips = false
|
||||
|
||||
[item.kineticator]
|
||||
#The amount of ticks inbetween each area checking for items.
|
||||
tickHoldoff = 1
|
||||
#If the Kineticator should also attract XP orbs.
|
||||
moveXP = true
|
||||
#The amount of ticks in between each blood consumption when there are valid items in the area.
|
||||
consumeHoldoff = 20
|
||||
|
||||
[item.kineticator_repelling]
|
||||
#The amount of ticks in between each blood consumption when there are valid items in the area.
|
||||
consumeHoldoff = 20
|
||||
#If the Kineticator should also attract XP orbs.
|
||||
moveXP = true
|
||||
#The amount of ticks inbetween each area checking for items.
|
||||
tickHoldoff = 1
|
||||
|
||||
[item.vengeance_ring]
|
||||
#The area of effect in # blocks of this ring.
|
||||
areaOfEffect = 10
|
||||
|
||||
[item.vengeance_pickaxe]
|
||||
#The default fortune enchantment level on these pickaxes.
|
||||
fortuneLevel = 5
|
||||
#The default vengeance enchantment level on these pickaxes.
|
||||
vengeanceLevel = 3
|
||||
|
||||
[item.burning_gem_stone]
|
||||
#How much damage this item can take.
|
||||
maxDamage = 64
|
||||
|
||||
[item.vein_sword]
|
||||
#The multiply boost this sword has on the blood that is obtained.
|
||||
extractionBoost = 2.0
|
||||
#Maximum uses for this item.
|
||||
durability = 32
|
||||
|
||||
[item.exalted_crafter]
|
||||
#If shift clicking on an item should first try to go into the crafting grid.
|
||||
shiftCraftingGrid = false
|
||||
|
||||
[item.exalted_crafter_wooden]
|
||||
#If shift clicking on an item should first try to go into the crafting grid.
|
||||
shiftCraftingGrid = false
|
||||
|
||||
[item.exalted_crafter_empowered]
|
||||
#If shift clicking on an item should first try to go into the crafting grid.
|
||||
shiftCraftingGrid = false
|
||||
|
||||
[item.exalted_crafter_wooden_empowered]
|
||||
#If shift clicking on an item should first try to go into the crafting grid.
|
||||
shiftCraftingGrid = false
|
||||
|
||||
[item.necromancer_staff]
|
||||
#The capacity of the container.
|
||||
capacity = 10000
|
||||
#The amount of Blood that will be drained per usage.
|
||||
usage = 2000
|
||||
|
||||
[item.invig_pendant]
|
||||
#The amount of Blood to drain after one reduction/clearing of fire. -1 to disable fire extinguishing.
|
||||
fireUsage = 500
|
||||
#The amount of blood to drain after each clearing of one bad effect.
|
||||
usage = 100
|
||||
#The amount of seconds that will be reduced from the first found bad effect.
|
||||
reduceDuration = 30
|
||||
#The capacity of the pendant.
|
||||
capacity = 5000
|
||||
|
||||
[item.flesh_rejuvenated]
|
||||
#The amount of blood (mB) this container can hold.
|
||||
containerSize = 10000
|
||||
#The amount of blood (mB) that is consumed per bite.
|
||||
biteUsage = 250
|
||||
|
||||
[item.primed_pendant]
|
||||
#Usage multipliers. Potion ids are first, followed by floating numbers. A number smaller than one blacklists that potion.
|
||||
potionMultipliers = ["minecraft:health_boost;-1", "minecraft:regeneration;10"]
|
||||
#The amount of Blood to drain after one effect application.
|
||||
usage = 10
|
||||
#The capacity of the pendant.
|
||||
capacity = 5000
|
||||
|
||||
[item.biome_extract]
|
||||
#A list of biome names for which no Biome Extracts may be used.
|
||||
usageBlacklist = []
|
||||
#A list of biome names for which no Biome Extracts may be created.
|
||||
craftingBlacklist = []
|
||||
#If creative versions for all variants should be added to the creative tab.
|
||||
creativeTabVariants = true
|
||||
|
||||
[item.vengeance]
|
||||
#The area of effect in blocks in which this tool could enable vengeance spirits.
|
||||
areaOfEffect = 5
|
||||
#The ^-1 chance for which vengeance spirits could be toggled.
|
||||
vengeanceChance = 3
|
||||
|
||||
[mob]
|
||||
|
||||
[mob.kineticator]
|
||||
#The blacklisted items which should not be influenced by the Kineticator, by unique item/blockState name.
|
||||
kineticateBlacklist = ["appliedenergistics2:item.ItemCrystalSeed"]
|
||||
|
||||
[mob.kineticator_repelling]
|
||||
#The blacklisted items which should not be influenced by the Kineticator, by unique item/blockState name.
|
||||
kineticateBlacklist = ["appliedenergistics2:item.ItemCrystalSeed"]
|
||||
|
||||
[mob.poisonous_libelle]
|
||||
#Should the Poisonous Libelle do damage, next to poisoning?
|
||||
hasAttackDamage = false
|
||||
#1/X chance on getting poisoned when hit.
|
||||
poisonChance = 20
|
||||
#The minimum Y-level this mob can spawn at.
|
||||
minY = 55
|
||||
|
||||
[mob.vengeance_spirit]
|
||||
#The 1/X chance that an actual spirit will spawn when doing actions like mining with the Vengeance Pickaxe.
|
||||
nonDegradedSpawnChance = 5
|
||||
#The area in which the spawn limit will be checked on each spawn attempt.
|
||||
spawnLimitArea = 64
|
||||
#The blacklisted entity spirits, by entity name. Regular expressions are allowed.
|
||||
entityBlacklist = ["evilcraft:vengeance_spirit", "evilcraft:controlled_zombie", "evilcraft:werewolf", "minecraft:ender_dragon", "farmingforblockheads:merchant"]
|
||||
#Whether vengeance spirits should always be visible in creative mode.
|
||||
alwaysVisibleInCreative = false
|
||||
#The maximum amount of vengeance spirits naturally spawnable in the spawnLimitArea.
|
||||
spawnLimit = 2
|
||||
|
||||
[entity]
|
||||
|
||||
[entity.lightning_bomb_primed]
|
||||
#The amount of ticks (on average), this bomb should tick before explosion.
|
||||
fuse = 100
|
||||
|
||||
[entity.attack_vengeance_beam]
|
||||
#If crossed beams should cause explosions.
|
||||
crossBeamsExplosions = true
|
||||
|
||||
[enchantment]
|
||||
|
||||
[enchantment.life_stealing]
|
||||
#The final modifier that should be applied to the healing amount.
|
||||
healModifier = 0.1
|
||||
|
523
config/exchangers-common.toml
Normal file
523
config/exchangers-common.toml
Normal file
@ -0,0 +1,523 @@
|
||||
|
||||
#Exchangers Config
|
||||
[modules]
|
||||
#If true, enables Vanilla-based exchangers.
|
||||
vanillaModule = true
|
||||
#If true, enables Ender IO-based exchangers (Requires Ender IO to be installed).
|
||||
enderIOModule = true
|
||||
#If true, enables Ender IO Endergy-based exchangers (Requires Ender IO Endergy to be installed).
|
||||
enderIOEndergyModule = true
|
||||
#If true, enables Thermal Series-based exchangers (Requires Thermal Foundation and Thermal Innovation to be installed).
|
||||
thermalModule = true
|
||||
#If true, enables Mekanism-based exchangers (Requires Mekanism to be installed).
|
||||
mekanismModule = true
|
||||
#If true, enables Immersive Engineering-based exchangers (Requires Immersive Engineering to be installed).
|
||||
immersiveEngineeringModule = true
|
||||
#If true, enables special exchangers (e.g. Tuberous Exchanger).
|
||||
specialModule = true
|
||||
|
||||
[vanilla_tweaks]
|
||||
#Set the max harvest level for Wooden Exchanger
|
||||
#Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite
|
||||
#For modded values, please check the tool tiers for the mod that you want to use
|
||||
#Entering an incorrect value will result in the Exchanger using the default value to prevent crashes
|
||||
woodenExchangerMaxHarvestLevel = "minecraft:wood"
|
||||
#Set the max range for Wooden Exchanger
|
||||
#Range: 0 ~ 12
|
||||
woodenExchangerMaxRange = 0
|
||||
#Set the max harvest level for Stone Exchanger
|
||||
#Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite
|
||||
#For modded values, please check the tool tiers for the mod that you want to use
|
||||
#Entering an incorrect value will result in the Exchanger using the default value to prevent crashes
|
||||
stoneExchangerMaxHarvestLevel = "minecraft:stone"
|
||||
#Set the max range for Stone Exchanger
|
||||
#Range: 0 ~ 12
|
||||
stoneExchangerMaxRange = 1
|
||||
#Set the max harvest level for Golden Exchanger
|
||||
#Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite
|
||||
#For modded values, please check the tool tiers for the mod that you want to use
|
||||
#Entering an incorrect value will result in the Exchanger using the default value to prevent crashes
|
||||
goldenExchangerMaxHarvestLevel = "minecraft:stone"
|
||||
#Set the max range for Golden Exchanger
|
||||
#Range: 0 ~ 12
|
||||
goldenExchangerMaxRange = 2
|
||||
#Set the max harvest level for Iron Exchanger
|
||||
#Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite
|
||||
#For modded values, please check the tool tiers for the mod that you want to use
|
||||
#Entering an incorrect value will result in the Exchanger using the default value to prevent crashes
|
||||
ironExchangerMaxHarvestLevel = "minecraft:iron"
|
||||
#Set the max range for Iron Exchanger
|
||||
#Range: 0 ~ 12
|
||||
ironExchangerMaxRange = 3
|
||||
#Set the max harvest level for Copper Exchanger
|
||||
#Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite
|
||||
#For modded values, please check the tool tiers for the mod that you want to use
|
||||
#Entering an incorrect value will result in the Exchanger using the default value to prevent crashes
|
||||
copperExchangerMaxHarvestLevel = "minecraft:iron"
|
||||
#Set the max range for Copper Exchanger
|
||||
#Range: 0 ~ 12
|
||||
copperExchangerMaxRange = 3
|
||||
#Set the max harvest level for Diamond Exchanger
|
||||
#Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite
|
||||
#For modded values, please check the tool tiers for the mod that you want to use
|
||||
#Entering an incorrect value will result in the Exchanger using the default value to prevent crashes
|
||||
diamondExchangerMaxHarvestLevel = "minecraft:diamond"
|
||||
#Set the max range for Diamond Exchanger
|
||||
#Range: 0 ~ 12
|
||||
diamondExchangerMaxRange = 4
|
||||
#Set the max harvest level for Emerald Exchanger
|
||||
#Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite
|
||||
#For modded values, please check the tool tiers for the mod that you want to use
|
||||
#Entering an incorrect value will result in the Exchanger using the default value to prevent crashes
|
||||
emeraldExchangerMaxHarvestLevel = "minecraft:diamond"
|
||||
#Set the max range for Emerald Exchanger
|
||||
#Range: 0 ~ 12
|
||||
emeraldExchangerMaxRange = 5
|
||||
#Set the max harvest level for Obsidian Exchanger
|
||||
#Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite
|
||||
#For modded values, please check the tool tiers for the mod that you want to use
|
||||
#Entering an incorrect value will result in the Exchanger using the default value to prevent crashes
|
||||
obsidianExchangerMaxHarvestLevel = "minecraft:diamond"
|
||||
#Set the max range for Obsidian Exchanger
|
||||
#Range: 0 ~ 12
|
||||
obsidianExchangerMaxRange = 6
|
||||
#Set the max harvest level for Amethyst Exchanger
|
||||
#Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite
|
||||
#For modded values, please check the tool tiers for the mod that you want to use
|
||||
#Entering an incorrect value will result in the Exchanger using the default value to prevent crashes
|
||||
amethystExchangerMaxHarvestLevel = "minecraft:diamond"
|
||||
#Set the max range for Amethyst Exchanger
|
||||
#Range: 0 ~ 12
|
||||
amethystExchangerMaxRange = 6
|
||||
#Set the max harvest level for Netherite Exchanger
|
||||
#Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite
|
||||
#For modded values, please check the tool tiers for the mod that you want to use
|
||||
#Entering an incorrect value will result in the Exchanger using the default value to prevent crashes
|
||||
netheriteExchangerMaxHarvestLevel = "minecraft:netherite"
|
||||
#Set the max range for Netherite Exchanger
|
||||
#Range: 0 ~ 12
|
||||
netheriteExchangerMaxRange = 7
|
||||
#Set the max harvest level for End Exchanger
|
||||
#Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite
|
||||
#For modded values, please check the tool tiers for the mod that you want to use
|
||||
#Entering an incorrect value will result in the Exchanger using the default value to prevent crashes
|
||||
endExchangerMaxHarvestLevel = "minecraft:netherite"
|
||||
#Set the max range for End Exchanger
|
||||
#Range: 0 ~ 12
|
||||
endExchangerMaxRange = 7
|
||||
|
||||
[ender_io_tweaks]
|
||||
#Set the energy capacity for Copper Alloy Exchanger
|
||||
#Range: > 1000
|
||||
copperAlloyExchangerMaxEnergy = 50000
|
||||
#Set the energy consumption per block for Copper Alloy Exchanger
|
||||
#Range: > 1
|
||||
copperAlloyExchangerPerBlockUse = 50
|
||||
#Set the max harvest level for Copper Alloy Exchanger
|
||||
#Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite
|
||||
#For modded values, please check the tool tiers for the mod that you want to use
|
||||
#Entering an incorrect value will result in the Exchanger using the default value to prevent crashes
|
||||
copperAlloyExchangerMaxHarvestLevel = "minecraft:stone"
|
||||
#Set the max range for Copper Alloy Exchanger
|
||||
#Range: 0 ~ 12
|
||||
copperAlloyExchangerMaxRange = 1
|
||||
#Set the energy capacity for Conductive Exchanger
|
||||
#Range: > 1000
|
||||
conductiveExchangerMaxEnergy = 250000
|
||||
#Set the energy consumption per block for Conductive Exchanger
|
||||
#Range: > 1
|
||||
conductiveExchangerPerBlockUse = 100
|
||||
#Set the max harvest level for Conductive Exchanger
|
||||
#Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite
|
||||
#For modded values, please check the tool tiers for the mod that you want to use
|
||||
#Entering an incorrect value will result in the Exchanger using the default value to prevent crashes
|
||||
conductiveExchangerMaxHarvestLevel = "minecraft:iron"
|
||||
#Set the max range for Conductive Exchanger
|
||||
#Range: 0 ~ 12
|
||||
conductiveExchangerMaxRange = 2
|
||||
#Set the energy capacity for Pulsating Exchanger
|
||||
#Range: > 1000
|
||||
pulsatingExchangerMaxEnergy = 1000000
|
||||
#Set the energy consumption per block for Pulsating Exchanger
|
||||
#Range: > 1
|
||||
pulsatingExchangerPerBlockUse = 500
|
||||
#Set the max harvest level for Pulsating Exchanger
|
||||
#Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite
|
||||
#For modded values, please check the tool tiers for the mod that you want to use
|
||||
#Entering an incorrect value will result in the Exchanger using the default value to prevent crashes
|
||||
pulsatingExchangerMaxHarvestLevel = "minecraft:diamond"
|
||||
#Set the max range for Pulsating Exchanger
|
||||
#Range: 0 ~ 12
|
||||
pulsatingExchangerMaxRange = 4
|
||||
#Set the energy capacity for Energetic Exchanger
|
||||
#Range: > 1000
|
||||
energeticExchangerMaxEnergy = 5000000
|
||||
#Set the energy consumption per block for Energetic Exchanger
|
||||
#Range: > 1
|
||||
energeticExchangerPerBlockUse = 1000
|
||||
#Set the max harvest level for Energetic Exchanger
|
||||
#Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite
|
||||
#For modded values, please check the tool tiers for the mod that you want to use
|
||||
#Entering an incorrect value will result in the Exchanger using the default value to prevent crashes
|
||||
energeticExchangerMaxHarvestLevel = "minecraft:diamond"
|
||||
#Set the max range for Energetic Exchanger
|
||||
#Range: 0 ~ 12
|
||||
energeticExchangerMaxRange = 5
|
||||
#Set the energy capacity for Dark Steel Exchanger
|
||||
#Range: > 1000
|
||||
darkSteelExchangerMaxEnergy = 10000000
|
||||
#Set the energy consumption per block for Dark Steel Exchanger
|
||||
#Range: > 1
|
||||
darkSteelExchangerPerBlockUse = 1500
|
||||
#Set the max harvest level for Dark Steel Exchanger
|
||||
#Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite
|
||||
#For modded values, please check the tool tiers for the mod that you want to use
|
||||
#Entering an incorrect value will result in the Exchanger using the default value to prevent crashes
|
||||
darkSteelExchangerMaxHarvestLevel = "minecraft:netherite"
|
||||
#Set the max range for Dark Steel Exchanger
|
||||
#Range: 0 ~ 12
|
||||
darkSteelExchangerMaxRange = 6
|
||||
#Set the energy capacity for Vibrant Exchanger
|
||||
#Range: > 1000
|
||||
vibrantExchangerMaxEnergy = 25000000
|
||||
#Set the energy consumption per block for Vibrant Exchanger
|
||||
#Range: > 1
|
||||
vibrantExchangerPerBlockUse = 2500
|
||||
#Set the max harvest level for Vibrant Exchanger
|
||||
#Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite
|
||||
#For modded values, please check the tool tiers for the mod that you want to use
|
||||
#Entering an incorrect value will result in the Exchanger using the default value to prevent crashes
|
||||
vibrantExchangerMaxHarvestLevel = "minecraft:netherite"
|
||||
#Set the max range for Vibrant Exchanger
|
||||
#Range: 0 ~ 12
|
||||
vibrantExchangerMaxRange = 7
|
||||
#Set the energy capacity for End Steel Exchanger
|
||||
#Range: > 1000
|
||||
endSteelExchangerMaxEnergy = 50000000
|
||||
#Set the energy consumption per block for End Steel Exchanger
|
||||
#Range: > 1
|
||||
endSteelExchangerPerBlockUse = 5000
|
||||
#Set the max harvest level for End Steel Exchanger
|
||||
#Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite
|
||||
#For modded values, please check the tool tiers for the mod that you want to use
|
||||
#Entering an incorrect value will result in the Exchanger using the default value to prevent crashes
|
||||
endSteelExchangerMaxHarvestLevel = "minecraft:netherite"
|
||||
#Set the max range for End Steel Exchanger
|
||||
#Range: 0 ~ 12
|
||||
endSteelExchangerMaxRange = 7
|
||||
|
||||
[ender_io_endergy_tweaks]
|
||||
#Set the energy capacity for Crude Steel Exchanger
|
||||
#Range: > 1000
|
||||
crudeSteelExchangerMaxEnergy = 50000
|
||||
#Set the energy consumption per block for Crude Steel Exchanger
|
||||
#Range: > 1
|
||||
crudeSteelExchangerPerBlockUse = 50
|
||||
#Set the max harvest level for Crude Steel Exchanger
|
||||
#Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite
|
||||
#For modded values, please check the tool tiers for the mod that you want to use
|
||||
#Entering an incorrect value will result in the Exchanger using the default value to prevent crashes
|
||||
crudeSteelExchangerMaxHarvestLevel = "minecraft:stone"
|
||||
#Set the max range for Crude Steel Exchanger
|
||||
#Range: 0 ~ 12
|
||||
crudeSteelExchangerMaxRange = 1
|
||||
#Set the energy capacity for Energetic Silver Exchanger
|
||||
#Range: > 1000
|
||||
energeticSilverExchangerMaxEnergy = 250000
|
||||
#Set the energy consumption per block for Energetic Silver Exchanger
|
||||
#Range: > 1
|
||||
energeticSilverExchangerPerBlockUse = 100
|
||||
#Set the max harvest level for Energetic Silver Exchanger
|
||||
#Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite
|
||||
#For modded values, please check the tool tiers for the mod that you want to use
|
||||
#Entering an incorrect value will result in the Exchanger using the default value to prevent crashes
|
||||
energeticSilverExchangerMaxHarvestLevel = "minecraft:iron"
|
||||
#Set the max range for Energetic Silver Exchanger
|
||||
#Range: 0 ~ 12
|
||||
energeticSilverExchangerMaxRange = 2
|
||||
#Set the energy capacity for Vivid Exchanger
|
||||
#Range: > 1000
|
||||
vividExchangerMaxEnergy = 1000000
|
||||
#Set the energy consumption per block for Vivid Exchanger
|
||||
#Range: > 1
|
||||
vividExchangerPerBlockUse = 500
|
||||
#Set the max harvest level for Vivid Exchanger
|
||||
#Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite
|
||||
#For modded values, please check the tool tiers for the mod that you want to use
|
||||
#Entering an incorrect value will result in the Exchanger using the default value to prevent crashes
|
||||
vividExchangerMaxHarvestLevel = "minecraft:diamond"
|
||||
#Set the max range for Vivid Exchanger
|
||||
#Range: 0 ~ 12
|
||||
vividExchangerMaxRange = 4
|
||||
#Set the energy capacity for Crystalline Exchanger
|
||||
#Range: > 1000
|
||||
crystallineExchangerMaxEnergy = 10000000
|
||||
#Set the energy consumption per block for Crystalline Exchanger
|
||||
#Range: > 1
|
||||
crystallineExchangerPerBlockUse = 1500
|
||||
#Set the max harvest level for Crystalline Exchanger
|
||||
#Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite
|
||||
#For modded values, please check the tool tiers for the mod that you want to use
|
||||
#Entering an incorrect value will result in the Exchanger using the default value to prevent crashes
|
||||
crystallineExchangerMaxHarvestLevel = "minecraft:diamond"
|
||||
#Set the max range for Crystalline Exchanger
|
||||
#Range: 0 ~ 12
|
||||
crystallineExchangerMaxRange = 5
|
||||
#Set the energy capacity for Melodic Exchanger
|
||||
#Range: > 1000
|
||||
melodicExchangerMaxEnergy = 50000000
|
||||
#Set the energy consumption per block for Melodic Exchanger
|
||||
#Range: > 1
|
||||
melodicExchangerPerBlockUse = 2500
|
||||
#Set the max harvest level for Melodic Exchanger
|
||||
#Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite
|
||||
#For modded values, please check the tool tiers for the mod that you want to use
|
||||
#Entering an incorrect value will result in the Exchanger using the default value to prevent crashes
|
||||
melodicExchangerMaxHarvestLevel = "minecraft:netherite"
|
||||
#Set the max range for Melodic Exchanger
|
||||
#Range: 0 ~ 12
|
||||
melodicExchangerMaxRange = 7
|
||||
#Set the energy capacity for Stellar Exchanger
|
||||
#Range: > 1000
|
||||
stellarExchangerMaxEnergy = 100000000
|
||||
#Set the energy consumption per block for Stellar Exchanger
|
||||
#Range: > 1
|
||||
stellarExchangerPerBlockUse = 5000
|
||||
#Set the max harvest level for Stellar Exchanger
|
||||
#Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite
|
||||
#For modded values, please check the tool tiers for the mod that you want to use
|
||||
#Entering an incorrect value will result in the Exchanger using the default value to prevent crashes
|
||||
stellarExchangerMaxHarvestLevel = "minecraft:netherite"
|
||||
#Set the max range for Stellar Exchanger
|
||||
#Range: 0 ~ 12
|
||||
stellarExchangerMaxRange = 9
|
||||
|
||||
[thermal_tweaks]
|
||||
#Set the energy capacity for Leadstone Exchanger
|
||||
#Range: > 1000
|
||||
leadstoneExchangerMaxEnergy = 100000
|
||||
#Set the energy consumption per block for Leadstone Exchanger
|
||||
#Range: > 1
|
||||
leadstoneExchangerPerBlockUse = 50
|
||||
#Set the max harvest level for Leadstone Exchanger
|
||||
#Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite
|
||||
#For modded values, please check the tool tiers for the mod that you want to use
|
||||
#Entering an incorrect value will result in the Exchanger using the default value to prevent crashes
|
||||
leadstoneExchangerMaxHarvestLevel = "minecraft:stone"
|
||||
#Set the max range for Leadstone Exchanger
|
||||
#Range: 0 ~ 12
|
||||
leadstoneExchangerMaxRange = 1
|
||||
#Set the energy capacity for Hardened Exchanger
|
||||
#Range: > 1000
|
||||
hardenedExchangerMaxEnergy = 500000
|
||||
#Set the energy consumption per block for Hardened Exchanger
|
||||
#Range: > 1
|
||||
hardenedExchangerPerBlockUse = 150
|
||||
#Set the max harvest level for Hardened Exchanger
|
||||
#Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite
|
||||
#For modded values, please check the tool tiers for the mod that you want to use
|
||||
#Entering an incorrect value will result in the Exchanger using the default value to prevent crashes
|
||||
hardenedExchangerMaxHarvestLevel = "minecraft:iron"
|
||||
#Set the max range for Hardened Exchanger
|
||||
#Range: 0 ~ 12
|
||||
hardenedExchangerMaxRange = 3
|
||||
#Set the energy capacity for Reinforced Exchanger
|
||||
#Range: > 1000
|
||||
reinforcedExchangerMaxEnergy = 1000000
|
||||
#Set the energy consumption per block for Reinforced Exchanger
|
||||
#Range: > 1
|
||||
reinforcedExchangerPerBlockUse = 250
|
||||
#Set the max harvest level for Reinforced Exchanger
|
||||
#Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite
|
||||
#For modded values, please check the tool tiers for the mod that you want to use
|
||||
#Entering an incorrect value will result in the Exchanger using the default value to prevent crashes
|
||||
reinforcedExchangerMaxHarvestLevel = "minecraft:diamond"
|
||||
#Set the max range for Reinforced Exchanger
|
||||
#Range: 0 ~ 12
|
||||
reinforcedExchangerMaxRange = 5
|
||||
#Set the energy capacity for Signalum Exchanger
|
||||
#Range: > 1000
|
||||
signalumExchangerMaxEnergy = 10000000
|
||||
#Set the energy consumption per block for Signalum Exchanger
|
||||
#Range: > 1
|
||||
signalumExchangerPerBlockUse = 500
|
||||
#Set the max harvest level for Signalum Exchanger
|
||||
#Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite
|
||||
#For modded values, please check the tool tiers for the mod that you want to use
|
||||
#Entering an incorrect value will result in the Exchanger using the default value to prevent crashes
|
||||
signalumExchangerMaxHarvestLevel = "minecraft:netherite"
|
||||
#Set the max range for Signalum Exchanger
|
||||
#Range: 0 ~ 12
|
||||
signalumExchangerMaxRange = 6
|
||||
#Set the energy capacity for Resonant Exchanger
|
||||
#Range: > 1000
|
||||
resonantExchangerMaxEnergy = 25000000
|
||||
#Set the energy consumption per block for Resonant Exchanger
|
||||
#Range: > 1
|
||||
resonantExchangerPerBlockUse = 1500
|
||||
#Set the max harvest level for Resonant Exchanger
|
||||
#Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite
|
||||
#For modded values, please check the tool tiers for the mod that you want to use
|
||||
#Entering an incorrect value will result in the Exchanger using the default value to prevent crashes
|
||||
resonantExchangerMaxHarvestLevel = "minecraft:netherite"
|
||||
#Set the max range for Resonant Exchanger
|
||||
#Range: 0 ~ 12
|
||||
resonantExchangerMaxRange = 7
|
||||
|
||||
[mekanism_tweaks]
|
||||
#Set the energy capacity for Basic Exchanger
|
||||
#Range: > 1000
|
||||
basicExchangerMaxEnergy = 250000
|
||||
#Set the energy consumption per block for Basic Exchanger
|
||||
#Range: > 1
|
||||
basicExchangerPerBlockUse = 50
|
||||
#Set the max harvest level for Basic Exchanger
|
||||
#Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite
|
||||
#For modded values, please check the tool tiers for the mod that you want to use
|
||||
#Entering an incorrect value will result in the Exchanger using the default value to prevent crashes
|
||||
basicExchangerMaxHarvestLevel = "minecraft:stone"
|
||||
#Set the max range for Basic Exchanger
|
||||
#Range: 0 ~ 12
|
||||
basicExchangerMaxRange = 3
|
||||
#Set the energy capacity for Advanced Exchanger
|
||||
#Range: > 1000
|
||||
advancedExchangerMaxEnergy = 1000000
|
||||
#Set the energy consumption per block for Advanced Exchanger
|
||||
#Range: > 1
|
||||
advancedExchangerPerBlockUse = 150
|
||||
#Set the max harvest level for Advanced Exchanger
|
||||
#Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite
|
||||
#For modded values, please check the tool tiers for the mod that you want to use
|
||||
#Entering an incorrect value will result in the Exchanger using the default value to prevent crashes
|
||||
advancedExchangerMaxHarvestLevel = "minecraft:iron"
|
||||
#Set the max range for Advanced Exchanger
|
||||
#Range: 0 ~ 12
|
||||
advancedExchangerMaxRange = 5
|
||||
#Set the energy capacity for Elite Exchanger
|
||||
#Range: > 1000
|
||||
eliteExchangerMaxEnergy = 5000000
|
||||
#Set the energy consumption per block for Elite Exchanger
|
||||
#Range: > 1
|
||||
eliteExchangerPerBlockUse = 500
|
||||
#Set the max harvest level for Elite Exchanger
|
||||
#Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite
|
||||
#For modded values, please check the tool tiers for the mod that you want to use
|
||||
#Entering an incorrect value will result in the Exchanger using the default value to prevent crashes
|
||||
eliteExchangerMaxHarvestLevel = "minecraft:diamond"
|
||||
#Set the max range for Elite Exchanger
|
||||
#Range: 0 ~ 12
|
||||
eliteExchangerMaxRange = 6
|
||||
#Set the energy capacity for Ultimate Exchanger
|
||||
#Range: > 1000
|
||||
ultimateExchangerMaxEnergy = 10000000
|
||||
#Set the energy consumption per block for Ultimate Exchanger
|
||||
#Range: > 1
|
||||
ultimateExchangerPerBlockUse = 1000
|
||||
#Set the max harvest level for Ultimate Exchanger
|
||||
#Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite
|
||||
#For modded values, please check the tool tiers for the mod that you want to use
|
||||
#Entering an incorrect value will result in the Exchanger using the default value to prevent crashes
|
||||
ultimateExchangerMaxHarvestLevel = "minecraft:netherite"
|
||||
#Set the max range for Ultimate Exchanger
|
||||
#Range: 0 ~ 12
|
||||
ultimateExchangerMaxRange = 7
|
||||
|
||||
[immersive_engineering_tweaks]
|
||||
#Set the energy capacity for LV Exchanger
|
||||
#Range: > 1000
|
||||
lvExchangerMaxEnergy = 100000
|
||||
#Set the energy consumption per block for LV Exchanger
|
||||
#Range: > 1
|
||||
lvExchangerPerBlockUse = 50
|
||||
#Set the max harvest level for LV Exchanger
|
||||
#Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite
|
||||
#For modded values, please check the tool tiers for the mod that you want to use
|
||||
#Entering an incorrect value will result in the Exchanger using the default value to prevent crashes
|
||||
lvExchangerMaxHarvestLevel = "minecraft:iron"
|
||||
#Set the max range for LV Exchanger
|
||||
#Range: 0 ~ 12
|
||||
lvExchangerMaxRange = 3
|
||||
#Set the energy capacity for MV Exchanger
|
||||
#Range: > 1000
|
||||
mvExchangerMaxEnergy = 500000
|
||||
#Set the energy consumption per block for MV Exchanger
|
||||
#Range: > 1
|
||||
mvExchangerPerBlockUse = 250
|
||||
#Set the max harvest level for MV Exchanger
|
||||
#Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite
|
||||
#For modded values, please check the tool tiers for the mod that you want to use
|
||||
#Entering an incorrect value will result in the Exchanger using the default value to prevent crashes
|
||||
mvExchangerMaxHarvestLevel = "minecraft:diamond"
|
||||
#Set the max range for MV Exchanger
|
||||
#Range: 0 ~ 12
|
||||
mvExchangerMaxRange = 5
|
||||
#Set the energy capacity for HV Exchanger
|
||||
#Range: > 1000
|
||||
hvExchangerMaxEnergy = 2500000
|
||||
#Set the energy consumption per block for HV Exchanger
|
||||
#Range: > 1
|
||||
hvExchangerPerBlockUse = 500
|
||||
#Set the max harvest level for HV Exchanger
|
||||
#Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite
|
||||
#For modded values, please check the tool tiers for the mod that you want to use
|
||||
#Entering an incorrect value will result in the Exchanger using the default value to prevent crashes
|
||||
hvExchangerMaxHarvestLevel = "minecraft:netherite"
|
||||
#Set the max range for HV Exchanger
|
||||
#Range: 0 ~ 12
|
||||
hvExchangerMaxRange = 7
|
||||
|
||||
[recipe_tweaks]
|
||||
#Set the recipes type for Vanilla-based exchangers:
|
||||
#'easy' Easy recipes, non-progressive, lowest recipe costs.
|
||||
#'normal' Normal recipes, progressive, moderate recipe costs.
|
||||
#'hard' Hard recipes, progressive, expensive recipe costs.
|
||||
vanillaRecipesType = "normal"
|
||||
#Set the recipes type for Ender IO-based exchangers:
|
||||
#'easy' Easy recipes, non-progressive, lowest recipe costs.
|
||||
#'normal' Normal recipes, progressive, moderate recipe costs.
|
||||
#'hard' Hard recipes, progressive, expensive recipe costs.
|
||||
enderIORecipesType = "normal"
|
||||
#Set the recipes type for Ender IO Endergy-based exchangers:
|
||||
#'easy' Easy recipes, non-progressive, lowest recipe costs.
|
||||
#'normal' Normal recipes, progressive, moderate recipe costs.
|
||||
#'hard' Hard recipes, progressive, expensive recipe costs.
|
||||
enderIOEndergyRecipesType = "normal"
|
||||
#Set the recipes type for Thermal Series-based exchangers:
|
||||
#'easy' Easy recipes, non-progressive, lowest recipe costs.
|
||||
#'normal' Normal recipes, progressive, moderate recipe costs.
|
||||
#'hard' Hard recipes, progressive, expensive recipe costs.
|
||||
thermalRecipesType = "normal"
|
||||
#Set the recipes type for Mekanism-based exchangers:
|
||||
#'easy' Easy recipes, non-progressive, lowest recipe costs.
|
||||
#'normal' Normal recipes, progressive, moderate recipe costs.
|
||||
#'hard' Hard recipes, progressive, expensive recipe costs.
|
||||
mekanismRecipesType = "normal"
|
||||
#Set the recipes type for Immersive Engineering-based exchangers:
|
||||
#'easy' Easy recipes, non-progressive, lowest recipe costs.
|
||||
#'normal' Normal recipes, progressive, moderate recipe costs.
|
||||
#'hard' Hard recipes, progressive, expensive recipe costs.
|
||||
immersiveEngineeringRecipesType = "normal"
|
||||
|
||||
[misc]
|
||||
#Certain blocks might be blacklisted by Exchangers if they're Tile Entities.
|
||||
#Put a list of block registry names that you wish to be whitelisted from Exchangers.
|
||||
#Separate each entry with semicolon.
|
||||
#(e.g. "tconstruct:seared;thermal:energy_cell;minecraft:conduit")
|
||||
blocksWhitelist = "tconstruct:seared"
|
||||
#Put a list of block registry names that you wish to be blacklisted from Exchangers.
|
||||
#Note: Blacklisting a block will prevent it from being selected or being exchanged.
|
||||
#Separate each entry with semicolon.
|
||||
#(e.g. "minecraft:grass;minecraft:cake;minecraft:dragon_egg")
|
||||
blocksBlacklist = "voidscape:voidic_crystal_ore;voidscape:thunderrock;voidscape:thunder_nylium"
|
||||
#If true, allows the Holding Enchantment from CoFH Core to be used on Powered Exchangers
|
||||
#Calculation formula: Base Energy + (Base Energy * Enchantment Level / 2)
|
||||
holdingEnchantment = true
|
||||
#If true, allows Unbreaking Enchantment to affect Powered Exchangers
|
||||
unbreakingPoweredExchangers = true
|
||||
#If true, enables Silk Touch (gets the blocks itself rather than drops) on all Exchangers
|
||||
doExchangersSilkTouch = true
|
||||
#Set the energy unit shown on Powered Exchangers:
|
||||
#'FE' Forge Energy
|
||||
#'RF' Redstone Flux
|
||||
energyUnit = "FE"
|
||||
|
115
config/extremereactors/common.toml
Normal file
115
config/extremereactors/common.toml
Normal file
@ -0,0 +1,115 @@
|
||||
|
||||
#Common configuration settings
|
||||
[common]
|
||||
|
||||
#General options
|
||||
[common.general]
|
||||
#A multiplier for balancing fuel consumption.
|
||||
#Range: 0.5 ~ 100.0
|
||||
fuelUsageMultiplier = 1.0
|
||||
#A multiplier for balancing overall power production from Extreme Reactors generators.
|
||||
#Range: 0.5 ~ 100.0
|
||||
powerProductionMultiplier = 1.0
|
||||
#Number of ticks between updates for the Redstone Port.
|
||||
#Range: 10 ~ 100
|
||||
ticksPerRedstoneUpdate = 20
|
||||
|
||||
#Define how Reactors works
|
||||
[common.reactor]
|
||||
#The maximum valid size of a Reactor in the Y dimension, in blocks.
|
||||
#Lower this if your server's players are building ginormous Reactors.
|
||||
#Bigger Y sizes have far less performance impact than X/Z sizes.
|
||||
#Range: 3 ~ 256
|
||||
maxReactorHeight = 48
|
||||
#The maximum valid size of a Reactor in the X/Z plane, in blocks.
|
||||
#Lower this if your server's players are building ginormous Reactors.
|
||||
#Range: 3 ~ 256
|
||||
maxReactorSize = 32
|
||||
#A multiplier for balancing Reactor power production. Stacks with powerProductionMultiplier.
|
||||
#Range: 0.5 ~ 100.0
|
||||
reactorPowerProductionMultiplier = 3.0
|
||||
|
||||
#Define how Turbines works
|
||||
[common.turbine]
|
||||
#The maximum valid height of a Turbine (Y axis), in blocks.
|
||||
#Range: 5 ~ 256
|
||||
maxTurbineHeight = 32
|
||||
#The maximum valid size of a Turbine in the X/Z plane, in blocks.
|
||||
#Range: 5 ~ 256
|
||||
maxTurbineSize = 32
|
||||
#A multiplier for balancing rotor sizes.
|
||||
#Multiplies the amount of energy lost to aerodynamic drag per tick.
|
||||
#Range: 0.5 ~ 10.0
|
||||
turbineAeroDragMultiplier = 1.0
|
||||
#A multiplier for balancing coil size.
|
||||
#Multiplies the amount of energy drawn per coil block per tick.
|
||||
#Range: 0.5 ~ 10.0
|
||||
turbineCoilDragMultiplier = 1.0
|
||||
#A multiplier for balancing coil size.
|
||||
#Multiplies the amount of fluid each blade block can process (base of 25 will be multiplied,
|
||||
#then rounded down to the nearest integer).
|
||||
#Range: 0.5 ~ 10.0
|
||||
turbineFluidPerBladeMultiplier = 1.0
|
||||
#A multiplier for balancing rotor sizes.
|
||||
#Multiplies the amount of energy lost to friction per tick.
|
||||
#Range: 0.5 ~ 10.0
|
||||
turbineMassDragMultiplier = 1.0
|
||||
#A multiplier for balancing turbine power production.
|
||||
#Stacks with powerProductionMultiplier.
|
||||
#Range: 0.5 ~ 10.0
|
||||
turbinePowerProductionMultiplier = 3.0
|
||||
|
||||
#Define how Fluidizer works
|
||||
[common.fluidizer]
|
||||
#The maximum valid size of a Fluidizer in the Y dimension, in blocks.
|
||||
#Lower this if your server's players are building ginormous Fluidizer.
|
||||
#Range: 3 ~ 64
|
||||
maxFluidizerHeight = 16
|
||||
#The maximum valid size of a Fluidizer in the X/Z plane, in blocks.
|
||||
#Lower this if your server's players are building ginormous Fluidizer.
|
||||
#Range: 3 ~ 64
|
||||
maxFluidizerSize = 16
|
||||
#The amount of energy need to process a single tick of a recipe.
|
||||
#Range: 20 ~ 1000
|
||||
energyPerRecipeTick = 25
|
||||
|
||||
#Define how ores generates in the world
|
||||
[common.worldgen]
|
||||
#If false, disables all world gen from Extreme Reactors;
|
||||
#all other worldgen settings are automatically ignored.
|
||||
enableWorldGen = true
|
||||
#Re-run world gen in chunks that have already been generated (once they have been loaded),
|
||||
#but have not been modified by Extreme Reactors before.
|
||||
enableWorldRegeneration = false
|
||||
#User-set world generation version.
|
||||
#Increase this by one if you want Extreme Reactors to re-run world generation in already modified chunks.
|
||||
#Range: > 0
|
||||
userWorldGenVersion = 1
|
||||
#Enable generation of Yellorite Ore.
|
||||
yelloriteOreEnableWorldGen = false
|
||||
#Maximum number of Yellorite Ore clusters per chunk.
|
||||
#Range: 1 ~ 25
|
||||
yelloriteOreMaxClustersPerChunk = 3
|
||||
#Maximum number of Yellorite Ores to generate in each cluster.
|
||||
#Range: 1 ~ 16
|
||||
yelloriteOrePerCluster = 5
|
||||
#Maximum height (Y coordinate) in the world to generate Yellorite Ore.
|
||||
#Range: 1 ~ 256
|
||||
yelloriteOreMaxY = 32
|
||||
#Enable generation of Anglesite Ore.
|
||||
anglesiteOreEnableWorldGen = true
|
||||
#Maximum number of Anglesite Ore clusters per chunk.
|
||||
#Range: 1 ~ 16
|
||||
anglesiteOreMaxClustersPerChunk = 2
|
||||
#Maximum number of Anglesite Ores to generate in each cluster.
|
||||
#Range: 1 ~ 16
|
||||
anglesiteOrePerCluster = 5
|
||||
#Enable generation of Benitoite Ore.
|
||||
benitoiteOreEnableWorldGen = true
|
||||
#Maximum number of Benitoite Ore clusters per chunk.
|
||||
#Range: 1 ~ 16
|
||||
benitoiteOreMaxClustersPerChunk = 2
|
||||
#Maximum number of Benitoite Ores to generate in each cluster.
|
||||
#Range: 1 ~ 16
|
||||
benitoiteOrePerCluster = 5
|
||||
|
6
config/farsight-common.toml
Normal file
6
config/farsight-common.toml
Normal file
@ -0,0 +1,6 @@
|
||||
|
||||
["Config category"]
|
||||
#The distance at which chunks are kept in memory, regardless of whether the server unloads them. default = 32, maximum = 512
|
||||
#Range: 8 ~ 512
|
||||
maxchunkdist = 20
|
||||
|
6
config/farsight.json
Normal file
6
config/farsight.json
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
"maxRenderDistance": {
|
||||
"desc:": "Maximum allowed render distance, default 64",
|
||||
"maxRenderDistance": 32
|
||||
}
|
||||
}
|
25
config/fml.toml
Normal file
25
config/fml.toml
Normal file
@ -0,0 +1,25 @@
|
||||
#Early window height
|
||||
earlyWindowHeight = 768
|
||||
#Early window framebuffer scale
|
||||
earlyWindowFBScale = 1
|
||||
#Enable forge global version checking
|
||||
versionCheck = false
|
||||
#Early window provider
|
||||
earlyWindowProvider = "fmlearlywindow"
|
||||
#Early window width
|
||||
earlyWindowWidth = 1024
|
||||
#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 = []
|
||||
#Should we control the window. Disabling this disables new GL features and can be bad for mods that rely on them.
|
||||
earlyWindowControl = true
|
||||
#Max threads for early initialization parallelism, -1 is based on processor count
|
||||
maxThreads = -1
|
||||
#Squir?
|
||||
earlyWindowSquir = false
|
||||
|
11
config/ftbquests/quests/README.md
Normal file
11
config/ftbquests/quests/README.md
Normal file
@ -0,0 +1,11 @@
|
||||
All The Mods 9
|
||||
======
|
||||
All The Mods 9 is released on curseforge only, as All Rights Reserved,
|
||||
This covers the following files/folders
|
||||
- all Quests and rewards in `\instance\config\ftbquests\quests\`
|
||||
- all custom Kubejs scripts in `\instance\kubejs\`
|
||||
- all custom AllTheMods Packmenu assets in `\instance\packmenu\resources\`
|
||||
|
||||
What does All Rights Reserved Mean?
|
||||
For players, it means nothing, you are still permitted to play and film and stream the pack.
|
||||
For anyone else, it means you cannot redistribute any of the above folders or files in any publicly released packs without permission from Allthemods
|
12
config/ftbquests/quests/chapter_groups.snbt
Normal file
12
config/ftbquests/quests/chapter_groups.snbt
Normal file
@ -0,0 +1,12 @@
|
||||
{
|
||||
chapter_groups: [
|
||||
{ id: "2084F3F6FB861C5B", title: "{atm9.chapters.group.1.}" }
|
||||
{ id: "22FB35B0FEF1343D", title: "{atm9.chapters.group.2.}" }
|
||||
{ id: "1AC60211DE7427FC", title: "{atm9.chapters.group.3.}" }
|
||||
{ id: "6614EE2378B8AFB9", title: "{atm9.chapters.group.4.}" }
|
||||
{ id: "2B51AC12041E3F89", title: "{atm9.chapters.group.5.}" }
|
||||
{ id: "1DA67E79B40AB130", title: "{atm9.chapters.group.6.}" }
|
||||
{ id: "02FE661031A105D8", title: "{atm9.chapters.group.7.}" }
|
||||
{ id: "752CDE464613A1ED", title: "{atm9.chapters.group.8.}" }
|
||||
]
|
||||
}
|
1089
config/ftbquests/quests/chapters/ad_astra.snbt
Normal file
1089
config/ftbquests/quests/chapters/ad_astra.snbt
Normal file
File diff suppressed because it is too large
Load Diff
1057
config/ftbquests/quests/chapters/allthemodium.snbt
Normal file
1057
config/ftbquests/quests/chapters/allthemodium.snbt
Normal file
File diff suppressed because it is too large
Load Diff
2212
config/ftbquests/quests/chapters/an_introduction.snbt
Normal file
2212
config/ftbquests/quests/chapters/an_introduction.snbt
Normal file
File diff suppressed because it is too large
Load Diff
707
config/ftbquests/quests/chapters/apotheosis.snbt
Normal file
707
config/ftbquests/quests/chapters/apotheosis.snbt
Normal file
@ -0,0 +1,707 @@
|
||||
## This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 9.
|
||||
## As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.
|
||||
|
||||
{
|
||||
default_hide_dependency_lines: false
|
||||
default_quest_shape: ""
|
||||
filename: "apotheosis"
|
||||
group: "02FE661031A105D8"
|
||||
icon: "minecraft:enchanting_table"
|
||||
id: "282448C70744895F"
|
||||
order_index: 0
|
||||
progression_mode: "flexible"
|
||||
quest_links: [ ]
|
||||
quests: [
|
||||
{
|
||||
description: ["{atm9.quest.enchant.desc.enchant}"]
|
||||
id: "0EB5B926E1FBAF0E"
|
||||
rewards: [{
|
||||
count: 6
|
||||
id: "71CBD6EA1A5B7930"
|
||||
item: "minecraft:book"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "3B857C698A419BC0"
|
||||
item: "minecraft:enchanting_table"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.enchant.enchant}"
|
||||
x: -3.0d
|
||||
y: 3.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["0EB5B926E1FBAF0E"]
|
||||
description: ["{atm9.quest.enchant.desc.book}"]
|
||||
id: "7F042DED357DEF3C"
|
||||
rewards: [{
|
||||
count: 9
|
||||
id: "02A49326EC0332F9"
|
||||
item: "minecraft:book"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "1CC9EA4FD2BF3DB0"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "itemfilters:tag"
|
||||
tag: {
|
||||
value: "forge:bookshelves"
|
||||
}
|
||||
}
|
||||
title: "Any #forge:bookshelves"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.enchant.book}"
|
||||
x: -1.0d
|
||||
y: 3.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["7F042DED357DEF3C"]
|
||||
description: ["{atm9.quest.enchant.desc.hellshelf}"]
|
||||
id: "50EEDDDE129D2742"
|
||||
rewards: [{
|
||||
count: 2
|
||||
id: "6CBFD79D421FDEA7"
|
||||
item: "apotheosis:hellshelf"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "4511597A84EF2A40"
|
||||
item: "apotheosis:hellshelf"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.enchant.hellshelf}"
|
||||
x: 0.0d
|
||||
y: 3.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["7F042DED357DEF3C"]
|
||||
description: ["{atm9.quest.enchant.desc.seashelf}"]
|
||||
id: "5B3CC3F66F2C3DE5"
|
||||
rewards: [{
|
||||
count: 2
|
||||
id: "66E35FA659A0A347"
|
||||
item: "apotheosis:seashelf"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "01AAFC6ADF0C8844"
|
||||
item: "apotheosis:seashelf"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.enchant.seashelf}"
|
||||
x: 0.0d
|
||||
y: 4.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["1D06097B6206BA60"]
|
||||
description: ["{atm9.quest.enchant.desc.arcana}"]
|
||||
id: "4F4B2A6997F25A5A"
|
||||
rewards: [{
|
||||
id: "7557646AD28E0AD7"
|
||||
type: "xp_levels"
|
||||
xp_levels: 3
|
||||
}]
|
||||
tasks: [{
|
||||
id: "604BADA98AB8F19B"
|
||||
item: "apotheosis:seashelf"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.enchant.arcana}"
|
||||
x: 2.0d
|
||||
y: 7.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["1D06097B6206BA60"]
|
||||
description: ["{atm9.quest.enchant.desc.eterna}"]
|
||||
id: "353C7440B32F0A5E"
|
||||
rewards: [{
|
||||
id: "48B69C4ED2286CE3"
|
||||
type: "xp_levels"
|
||||
xp_levels: 3
|
||||
}]
|
||||
tasks: [{
|
||||
id: "1ADAC994F5D57FE1"
|
||||
item: "apotheosis:dormant_deepshelf"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.enchant.eterna}"
|
||||
x: 2.0d
|
||||
y: 5.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["1D06097B6206BA60"]
|
||||
description: ["{atm9.quest.enchant.desc.quanta}"]
|
||||
id: "7234CB42AEF6C941"
|
||||
rewards: [{
|
||||
id: "0D2CF41C05F65061"
|
||||
type: "xp_levels"
|
||||
xp_levels: 3
|
||||
}]
|
||||
tasks: [{
|
||||
id: "533AE884035F8511"
|
||||
item: "apotheosis:hellshelf"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.enchant.quanta}"
|
||||
x: 2.0d
|
||||
y: 6.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["1D06097B6206BA60"]
|
||||
description: ["{atm9.quest.enchant.desc.infused_hellshelf}"]
|
||||
id: "218803812A9C332B"
|
||||
rewards: [{
|
||||
count: 2
|
||||
id: "0161A1B6EDB7214F"
|
||||
item: "apotheosis:infused_hellshelf"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "6AA52E3ABC6B3EE1"
|
||||
item: "apotheosis:infused_hellshelf"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.enchant.infused_hellshelf}"
|
||||
x: 4.0d
|
||||
y: 2.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["1D06097B6206BA60"]
|
||||
description: ["{atm9.quest.enchant.desc.infused_seashelf}"]
|
||||
id: "076DFB0B39A4259F"
|
||||
rewards: [{
|
||||
count: 2
|
||||
id: "6F52525D50A230D4"
|
||||
item: "apotheosis:infused_seashelf"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "44BA467C008ACDEB"
|
||||
item: "apotheosis:infused_seashelf"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.enchant.infused_seashelf}"
|
||||
x: 4.0d
|
||||
y: 4.5d
|
||||
}
|
||||
{
|
||||
dependencies: [
|
||||
"5B3CC3F66F2C3DE5"
|
||||
"50EEDDDE129D2742"
|
||||
]
|
||||
description: ["{atm9.quest.enchant.desc.infusion}"]
|
||||
id: "1D06097B6206BA60"
|
||||
rewards: [{
|
||||
id: "62BEA9EB0C5B1D25"
|
||||
type: "xp_levels"
|
||||
xp_levels: 5
|
||||
}]
|
||||
tasks: [{
|
||||
id: "0EE3A88719BB0221"
|
||||
title: "Infusion"
|
||||
type: "checkmark"
|
||||
}]
|
||||
title: "{atm9.quest.enchant.infusion}"
|
||||
x: 2.0d
|
||||
y: 3.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["076DFB0B39A4259F"]
|
||||
description: ["{atm9.quest.enchant.desc.retification}"]
|
||||
id: "001B11C3773022DE"
|
||||
rewards: [{
|
||||
id: "39226132585B50DF"
|
||||
type: "xp_levels"
|
||||
xp_levels: 5
|
||||
}]
|
||||
tasks: [
|
||||
{
|
||||
id: "1EFAEC3A3DC32971"
|
||||
item: "apotheosis:rectifier"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "177529E5546E2043"
|
||||
item: "apotheosis:rectifier_t2"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "1ADE62474D302F6C"
|
||||
item: "apotheosis:rectifier_t3"
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "{atm9.quest.enchant.retification}"
|
||||
x: 4.0d
|
||||
y: 5.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["218803812A9C332B"]
|
||||
description: ["{atm9.quest.enchant.desc.sight}"]
|
||||
id: "12F4980CB3BFCE0D"
|
||||
rewards: [{
|
||||
id: "0F9B9AC5B4AB3949"
|
||||
type: "xp_levels"
|
||||
xp_levels: 5
|
||||
}]
|
||||
tasks: [
|
||||
{
|
||||
id: "125517255CFAF0EE"
|
||||
item: "apotheosis:sightshelf"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "448DFB347B07F8C6"
|
||||
item: "apotheosis:sightshelf_t2"
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "{atm9.quest.enchant.sight}"
|
||||
x: 4.0d
|
||||
y: 1.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["076DFB0B39A4259F"]
|
||||
description: ["{atm9.quest.enchant.desc.crystalline}"]
|
||||
id: "751189465F91B353"
|
||||
rewards: [{
|
||||
id: "4D6EEDCD4A1B7BF3"
|
||||
item: "apotheosis:crystal_seashelf"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "524C49903A565930"
|
||||
item: "apotheosis:crystal_seashelf"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.enchant.crystalline}"
|
||||
x: 5.0d
|
||||
y: 4.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["076DFB0B39A4259F"]
|
||||
description: ["{atm9.quest.enchant.desc.heart-forged}"]
|
||||
id: "3B52387068FC2487"
|
||||
rewards: [{
|
||||
id: "7613504621365233"
|
||||
item: "apotheosis:heart_seashelf"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "5CA899DB91021ED1"
|
||||
item: "apotheosis:heart_seashelf"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.enchant.heart-forged}"
|
||||
x: 5.0d
|
||||
y: 5.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["218803812A9C332B"]
|
||||
description: ["{atm9.quest.enchant.desc.blazing}"]
|
||||
id: "6C76AB8A6110C0C7"
|
||||
rewards: [{
|
||||
id: "46322209C889C939"
|
||||
item: "apotheosis:blazing_hellshelf"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "4EE21647F4434CB5"
|
||||
item: "apotheosis:blazing_hellshelf"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.enchant.blazing}"
|
||||
x: 5.0d
|
||||
y: 2.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["218803812A9C332B"]
|
||||
description: ["{atm9.quest.enchant.desc.glowing}"]
|
||||
id: "0F77A9AD1F422537"
|
||||
rewards: [{
|
||||
id: "54F20674FD4F4E21"
|
||||
item: "apotheosis:glowing_hellshelf"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "0396FE7CF6AAF222"
|
||||
item: "apotheosis:glowing_hellshelf"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.enchant.glowing}"
|
||||
x: 5.0d
|
||||
y: 3.0d
|
||||
}
|
||||
{
|
||||
dependencies: [
|
||||
"3B52387068FC2487"
|
||||
"6C76AB8A6110C0C7"
|
||||
]
|
||||
description: ["{atm9.quest.enchant.desc.deepshelf}"]
|
||||
id: "62B2C1A24AE245EA"
|
||||
rewards: [{
|
||||
count: 2
|
||||
id: "55441430DA2F0963"
|
||||
item: "apotheosis:deepshelf"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "639976E0D4F898DD"
|
||||
item: "apotheosis:deepshelf"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.enchant.deepshelf}"
|
||||
x: 6.0d
|
||||
y: 3.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["0C596CB7C7C24615"]
|
||||
description: ["{atm9.quest.enchant.desc.Soul_sculk}"]
|
||||
id: "10C527C66EE4E95A"
|
||||
rewards: [{
|
||||
id: "6EAD8EAE57E2CDCF"
|
||||
item: "apotheosis:warden_tendril"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "2AE7BBE870F24DCB"
|
||||
item: "apotheosis:soul_touched_sculkshelf"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.enchant.Soul_sculk}"
|
||||
x: 7.0d
|
||||
y: 3.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["405369118613F935"]
|
||||
description: ["{atm9.quest.enchant.desc.echo_sculk}"]
|
||||
id: "606780E5B8CF83BE"
|
||||
rewards: [{
|
||||
id: "6DE67336822BDF19"
|
||||
item: "apotheosis:warden_tendril"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "1C69BDCD5499805F"
|
||||
item: "apotheosis:echoing_sculkshelf"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.enchant.echo_sculk}"
|
||||
x: 7.0d
|
||||
y: 4.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["62B2C1A24AE245EA"]
|
||||
description: ["{atm9.quest.enchant.desc.Soul_deep}"]
|
||||
id: "0C596CB7C7C24615"
|
||||
rewards: [{
|
||||
count: 3
|
||||
id: "20ADFE3645681379"
|
||||
item: "minecraft:sculk"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "2E5979DF454E401A"
|
||||
item: "apotheosis:soul_touched_deepshelf"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.enchant.Soul_deep}"
|
||||
x: 7.0d
|
||||
y: 2.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["62B2C1A24AE245EA"]
|
||||
description: ["{atm9.quest.enchant.desc.echo_deep}"]
|
||||
id: "405369118613F935"
|
||||
rewards: [{
|
||||
count: 4
|
||||
id: "73B27D65679D4399"
|
||||
item: "minecraft:sculk"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "47499C2393356F89"
|
||||
item: "apotheosis:echoing_deepshelf"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.enchant.echo_deep}"
|
||||
x: 7.0d
|
||||
y: 5.0d
|
||||
}
|
||||
{
|
||||
dependencies: [
|
||||
"606780E5B8CF83BE"
|
||||
"10C527C66EE4E95A"
|
||||
]
|
||||
description: ["{atm9.quest.enchant.desc.endshelf}"]
|
||||
id: "21EE522DDBF0BF72"
|
||||
rewards: [{
|
||||
id: "366AFCAB92AF9E96"
|
||||
item: "minecraft:dragon_breath"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [
|
||||
{
|
||||
id: "6436AFC23A51F495"
|
||||
item: "apotheosis:endshelf"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "1D07057D04625570"
|
||||
item: "apotheosis:infused_breath"
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "{atm9.quest.enchant.endshelf}"
|
||||
x: 8.0d
|
||||
y: 3.5d
|
||||
}
|
||||
{
|
||||
dependencies: [
|
||||
"7234CB42AEF6C941"
|
||||
"4F4B2A6997F25A5A"
|
||||
"353C7440B32F0A5E"
|
||||
]
|
||||
description: ["{atm9.quest.enchant.desc.negative}"]
|
||||
id: "5C56452BE7879D0A"
|
||||
rewards: [{
|
||||
id: "60C10E70BC5915DD"
|
||||
type: "xp_levels"
|
||||
xp_levels: 1
|
||||
}]
|
||||
tasks: [
|
||||
{
|
||||
id: "437272DA5D788836"
|
||||
item: "apotheosis:melonshelf"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "64B547185F213F62"
|
||||
item: "apotheosis:beeshelf"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "36AD2AE569D8F729"
|
||||
item: "apotheosis:stoneshelf"
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "{atm9.quest.enchant.negative}"
|
||||
x: 1.0d
|
||||
y: 6.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["1D06097B6206BA60"]
|
||||
description: ["{atm9.quest.enchant.desc.other}"]
|
||||
id: "44D1B410550B6C28"
|
||||
rewards: [{
|
||||
count: 9
|
||||
id: "0E193F344F6CFC60"
|
||||
item: "minecraft:lapis_lazuli"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "53BCEFD384A7080C"
|
||||
title: "Other Infusion items"
|
||||
type: "checkmark"
|
||||
}]
|
||||
title: "{atm9.quest.enchant.other}"
|
||||
x: 2.0d
|
||||
y: 1.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["44D1B410550B6C28"]
|
||||
description: ["{atm9.quest.enchant.desc.charms}"]
|
||||
id: "12282CBB658F1132"
|
||||
rewards: [{
|
||||
count: 12
|
||||
id: "076A8F095CFA80BC"
|
||||
item: "minecraft:blaze_powder"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "5A01C349DB7F396C"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "itemfilters:tag"
|
||||
tag: {
|
||||
value: "curios:charm"
|
||||
}
|
||||
}
|
||||
title: "Any #curios:charm"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.enchant.charms}"
|
||||
x: 1.0d
|
||||
y: 1.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["21EE522DDBF0BF72"]
|
||||
description: ["{atm9.quest.enchant.desc.pearlescent}"]
|
||||
id: "4A59DF02128DA9F3"
|
||||
rewards: [{
|
||||
id: "6DC65D64AFC9FB86"
|
||||
item: "minecraft:dragon_head"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "7AB6761EB41B1E07"
|
||||
item: "apotheosis:pearl_endshelf"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.enchant.pearlescent}"
|
||||
x: 9.0d
|
||||
y: 3.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["21EE522DDBF0BF72"]
|
||||
description: ["{atm9.quest.enchant.desc.draconic}"]
|
||||
id: "6244032FE2E5F1E1"
|
||||
rewards: [{
|
||||
id: "361E51B63206BF0A"
|
||||
item: "apotheosis:draconic_endshelf"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "1F41FD294030AE04"
|
||||
item: "apotheosis:draconic_endshelf"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.enchant.draconic}"
|
||||
x: 9.0d
|
||||
y: 4.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["6244032FE2E5F1E1"]
|
||||
description: ["{atm9.quest.enchant.desc.perfect}"]
|
||||
id: "4C446F22771E2B53"
|
||||
rewards: [{
|
||||
id: "13E4A3BF1FB727B5"
|
||||
type: "xp_levels"
|
||||
xp_levels: 25
|
||||
}]
|
||||
tasks: [
|
||||
{
|
||||
count: 5L
|
||||
id: "288C65CA52CA78B9"
|
||||
item: "apotheosis:echoing_sculkshelf"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "1ED6ED03BCF4B5F5"
|
||||
item: "apotheosis:draconic_endshelf"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
count: 3L
|
||||
id: "2E6B0A322132B9FC"
|
||||
item: "apotheosis:rectifier_t3"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "78831B3CE3EE431C"
|
||||
item: "apotheosis:treasure_shelf"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
count: 5L
|
||||
id: "00BB332C3BC31EF3"
|
||||
item: "apotheosis:soul_touched_sculkshelf"
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "{atm9.quest.enchant.perfect}"
|
||||
x: 10.0d
|
||||
y: 3.5d
|
||||
}
|
||||
{
|
||||
dependencies: [
|
||||
"44D1B410550B6C28"
|
||||
"314E41B84C8DD464"
|
||||
]
|
||||
description: ["{atm9.quest.enchant.desc.alexandria}"]
|
||||
id: "5FD4F40CEC37D9FD"
|
||||
rewards: [{
|
||||
id: "2651F1CE1044AC2B"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "minecraft:enchanted_book"
|
||||
tag: {
|
||||
StoredEnchantments: [{
|
||||
id: "minecraft:sharpness"
|
||||
lvl: 5s
|
||||
}]
|
||||
}
|
||||
}
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "21E8F3E04CA2BA93"
|
||||
item: "apotheosis:ender_library"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.enchant.alexandria}"
|
||||
x: 1.0d
|
||||
y: 0.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["44D1B410550B6C28"]
|
||||
description: ["{atm9.quest.enchant.desc.trident}"]
|
||||
id: "24526FFBA093805A"
|
||||
rewards: [{
|
||||
id: "60BFDFEDBA2E930C"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "minecraft:enchanted_book"
|
||||
tag: {
|
||||
StoredEnchantments: [{
|
||||
id: "minecraft:impaling"
|
||||
lvl: 5s
|
||||
}]
|
||||
}
|
||||
}
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "2C0F85A4868C5C20"
|
||||
item: "apotheosis:inert_trident"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.enchant.trident}"
|
||||
x: 2.0d
|
||||
y: 0.5d
|
||||
}
|
||||
{
|
||||
description: ["{atm9.quest.enchant.desc.library}"]
|
||||
id: "314E41B84C8DD464"
|
||||
rewards: [{
|
||||
id: "54020DF00D36132E"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "minecraft:enchanted_book"
|
||||
tag: {
|
||||
StoredEnchantments: [{
|
||||
id: "minecraft:smite"
|
||||
lvl: 5s
|
||||
}]
|
||||
}
|
||||
}
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "324CAB864D37604A"
|
||||
item: "apotheosis:library"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.enchant.library}"
|
||||
x: 0.0d
|
||||
y: 0.5d
|
||||
}
|
||||
]
|
||||
title: "{atm9.chapters.38.title}"
|
||||
}
|
||||
|
||||
## This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 9.
|
||||
## As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.
|
446
config/ftbquests/quests/chapters/apotheosis_2.snbt
Normal file
446
config/ftbquests/quests/chapters/apotheosis_2.snbt
Normal file
@ -0,0 +1,446 @@
|
||||
## This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 9.
|
||||
## As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.
|
||||
|
||||
{
|
||||
default_hide_dependency_lines: false
|
||||
default_quest_shape: ""
|
||||
filename: "apotheosis_2"
|
||||
group: "6614EE2378B8AFB9"
|
||||
icon: "minecraft:spawner"
|
||||
id: "0E81CBCD6B1D1895"
|
||||
order_index: 1
|
||||
progression_mode: "flexible"
|
||||
quest_links: [ ]
|
||||
quests: [
|
||||
{
|
||||
dependencies: ["7C3968AF39557751"]
|
||||
description: ["{atm9.quest.spawner.desc.anvil}"]
|
||||
id: "5B653A45093C56F0"
|
||||
rewards: [{
|
||||
id: "551D3CE25E4DD3EB"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "minecraft:enchanted_book"
|
||||
tag: {
|
||||
StoredEnchantments: [{
|
||||
id: "minecraft:unbreaking"
|
||||
lvl: 3s
|
||||
}]
|
||||
}
|
||||
}
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [
|
||||
{
|
||||
id: "2A0D3BDA4C874A43"
|
||||
item: "minecraft:anvil"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "5A94111976A96FCC"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "minecraft:shears"
|
||||
tag: {
|
||||
Damage: 0
|
||||
}
|
||||
}
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "{atm9.quest.spawner.anvil}"
|
||||
x: -2.0d
|
||||
y: -1.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["7C3968AF39557751"]
|
||||
description: ["{atm9.quest.spawner.desc.cactus}"]
|
||||
id: "6184B40362A7B190"
|
||||
rewards: [{
|
||||
count: 32
|
||||
id: "26405F74A6300E73"
|
||||
item: "minecraft:bone_meal"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [
|
||||
{
|
||||
id: "01F155EEAC1A8404"
|
||||
item: "minecraft:sugar_cane"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "3FE68BCA484CF4BB"
|
||||
item: "minecraft:cactus"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "0756DD96D4A479FD"
|
||||
item: "minecraft:bamboo"
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "{atm9.quest.spawner.cactus}"
|
||||
x: -2.5d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["7C3968AF39557751"]
|
||||
description: ["{atm9.quest.spawner.desc.fletcher}"]
|
||||
id: "00588B2FDB99874D"
|
||||
rewards: [{
|
||||
count: 8
|
||||
id: "25153229ED21F95C"
|
||||
item: "minecraft:arrow"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "6CB3873E7BCE06F2"
|
||||
item: "minecraft:fletching_table"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.spawner.fletcher}"
|
||||
x: -2.0d
|
||||
y: 1.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["07D875C6BBFF3264"]
|
||||
description: ["{atm9.quest.spawner.desc.spawner}"]
|
||||
icon: {
|
||||
Count: 1b
|
||||
id: "minecraft:spawner"
|
||||
tag: {
|
||||
BlockEntityTag: {
|
||||
Delay: 159s
|
||||
ForgeCaps: { }
|
||||
MaxNearbyEntities: 6s
|
||||
MaxSpawnDelay: 800s
|
||||
MinSpawnDelay: 200s
|
||||
RequiredPlayerRange: 16s
|
||||
SpawnCount: 4s
|
||||
SpawnData: {
|
||||
entity: {
|
||||
id: "minecraft:axolotl"
|
||||
}
|
||||
}
|
||||
SpawnPotentials: [{
|
||||
data: {
|
||||
entity: {
|
||||
id: "minecraft:axolotl"
|
||||
}
|
||||
}
|
||||
weight: 1
|
||||
}]
|
||||
SpawnRange: 4s
|
||||
baby: 0b
|
||||
ignore_conditions: 0b
|
||||
ignore_light: 0b
|
||||
ignore_players: 0b
|
||||
no_ai: 0b
|
||||
redstone_control: 0b
|
||||
silent: 0b
|
||||
}
|
||||
}
|
||||
}
|
||||
id: "310969B8FE0A94DE"
|
||||
tasks: [{
|
||||
id: "5C9366CC53004462"
|
||||
item: "minecraft:spawner"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.spawner.spawner}"
|
||||
x: 1.0d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
description: ["{atm9.quest.spawner.desc.apotheosis}"]
|
||||
id: "07D875C6BBFF3264"
|
||||
tasks: [{
|
||||
id: "6E24BC7D56597911"
|
||||
title: "Apotheosis"
|
||||
type: "checkmark"
|
||||
}]
|
||||
title: "{atm9.quest.spawner.apotheosis}"
|
||||
x: 0.0d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["07D875C6BBFF3264"]
|
||||
description: ["{atm9.quest.spawner.desc.changes}"]
|
||||
id: "7C3968AF39557751"
|
||||
tasks: [{
|
||||
id: "1F3314E76D27E430"
|
||||
title: "Basic Game Changes"
|
||||
type: "checkmark"
|
||||
}]
|
||||
title: "{atm9.quest.spawner.changes}"
|
||||
x: -1.0d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["310969B8FE0A94DE"]
|
||||
description: ["{atm9.quest.spawner.desc.lantern}"]
|
||||
id: "0F89BFD4A3F63A48"
|
||||
rewards: [{
|
||||
id: "6C85E2CE330363D6"
|
||||
item: "torchmaster:dreadlamp"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "5F16431DBEAF97B0"
|
||||
item: "minecraft:soul_lantern"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.spawner.lantern}"
|
||||
x: 2.0d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["310969B8FE0A94DE"]
|
||||
description: ["{atm9.quest.spawner.desc.piglich}"]
|
||||
id: "6A497B063CF32A5C"
|
||||
rewards: [{
|
||||
id: "3F1149656E6D078F"
|
||||
item: "allthemodium:piglich_heart"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "426CC475B062FC85"
|
||||
item: "allthemodium:piglich_heart"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.spawner.piglich}"
|
||||
x: 1.5d
|
||||
y: 1.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["310969B8FE0A94DE"]
|
||||
description: ["{atm9.quest.spawner.desc.ghast}"]
|
||||
id: "4D07B0A4A2E77CDA"
|
||||
rewards: [{
|
||||
count: 10
|
||||
id: "125102EC635E5209"
|
||||
item: "minecraft:ghast_tear"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "4DA7AE7F61B1FC05"
|
||||
item: "minecraft:ghast_tear"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.spawner.ghast}"
|
||||
x: 2.5d
|
||||
y: -2.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["310969B8FE0A94DE"]
|
||||
description: ["{atm9.quest.spawner.desc.apple}"]
|
||||
id: "42D7C8CD8E6F5CD7"
|
||||
rewards: [{
|
||||
count: 3
|
||||
id: "1B960A1E13DB5302"
|
||||
item: "minecraft:golden_apple"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "7CA847C78EB1B215"
|
||||
item: "minecraft:golden_apple"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.spawner.apple}"
|
||||
x: 2.5d
|
||||
y: 2.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["310969B8FE0A94DE"]
|
||||
description: ["{atm9.quest.spawner.desc.egg}"]
|
||||
id: "6F71FD826C29C31A"
|
||||
rewards: [{
|
||||
id: "1532FF56C99CAB89"
|
||||
item: "aquaculture:box_turtle"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "65FF566B862C7211"
|
||||
item: "minecraft:turtle_egg"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.spawner.egg}"
|
||||
x: 3.5d
|
||||
y: 2.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["310969B8FE0A94DE"]
|
||||
description: ["{atm9.quest.spawner.desc.rods}"]
|
||||
id: "186593EBCE3FE8D8"
|
||||
rewards: [{
|
||||
count: 8
|
||||
id: "0CFDDB194610C1FE"
|
||||
item: "minecraft:blaze_rod"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "5E1D4330184C7E38"
|
||||
item: "minecraft:blaze_rod"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.spawner.rods}"
|
||||
x: 4.5d
|
||||
y: 2.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["310969B8FE0A94DE"]
|
||||
description: ["{atm9.quest.spawner.desc.redstone}"]
|
||||
id: "0E02CE4469FCA4C9"
|
||||
rewards: [{
|
||||
count: 16
|
||||
id: "0E37557EFACD595E"
|
||||
item: "minecraft:redstone"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "39E60F2CA2EFAB9E"
|
||||
item: "minecraft:comparator"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.spawner.redstone}"
|
||||
x: 3.0d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["310969B8FE0A94DE"]
|
||||
description: ["{atm9.quest.spawner.desc.prismarine}"]
|
||||
id: "3E2A411FF5B4B0E7"
|
||||
rewards: [{
|
||||
count: 14
|
||||
id: "1CFFBC0A625D0737"
|
||||
item: "minecraft:prismarine_crystals"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "75FE61AB74C39108"
|
||||
item: "minecraft:prismarine_crystals"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.spawner.prismarine}"
|
||||
x: 1.5d
|
||||
y: -1.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["310969B8FE0A94DE"]
|
||||
description: ["{atm9.quest.spawner.desc.atm}"]
|
||||
id: "7A9AE63998BB41FF"
|
||||
rewards: [{
|
||||
id: "42D8FF9FCD7A2050"
|
||||
item: "allthemodium:allthemodium_ingot"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "5E1EDF7E617E5853"
|
||||
item: "allthemodium:allthemodium_ingot"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.spawner.atm}"
|
||||
x: 3.5d
|
||||
y: -2.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["310969B8FE0A94DE"]
|
||||
description: ["{atm9.quest.spawner.desc.unob}"]
|
||||
id: "0D6D45DBA64E612D"
|
||||
rewards: [{
|
||||
id: "36AC1DA2655AD3D3"
|
||||
item: "allthemodium:unobtainium_ingot"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "1FA39F402B7D0B8B"
|
||||
item: "allthemodium:unobtainium_ingot"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.spawner.unob}"
|
||||
x: 4.5d
|
||||
y: -2.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["310969B8FE0A94DE"]
|
||||
description: ["{atm9.quest.spawner.desc.conduit}"]
|
||||
id: "30EB438C66324213"
|
||||
rewards: [{
|
||||
id: "4961AE3E3A38253D"
|
||||
item: "minecraft:conduit"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "211FBEB0E4FF1FD6"
|
||||
item: "minecraft:conduit"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.spawner.conduit}"
|
||||
x: 4.0d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["310969B8FE0A94DE"]
|
||||
description: ["{atm9.quest.spawner.desc.dragon}"]
|
||||
id: "40096ED0B04C3EC5"
|
||||
rewards: [{
|
||||
count: 4
|
||||
id: "4D40145162EB9BEC"
|
||||
item: "mysticalagradditions:dragon_scale"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "74B1D74F1C52D05C"
|
||||
item: "minecraft:dragon_egg"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.spawner.dragon}"
|
||||
x: 5.0d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["310969B8FE0A94DE"]
|
||||
description: ["{atm9.quest.spawner.desc.quartz}"]
|
||||
id: "167E1474644C9908"
|
||||
rewards: [{
|
||||
count: 32
|
||||
id: "0D2D3CC89ECD4C53"
|
||||
item: "minecraft:quartz"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "20D72B07EE11DDCB"
|
||||
item: "minecraft:quartz"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.spawner.quartz}"
|
||||
x: 3.0d
|
||||
y: -1.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["310969B8FE0A94DE"]
|
||||
description: ["{atm9.quest.spawner.desc.wool}"]
|
||||
icon: "minecraft:white_wool"
|
||||
id: "1AD87CB3226ED224"
|
||||
tasks: [{
|
||||
id: "39702880D9133E3E"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "itemfilters:tag"
|
||||
tag: {
|
||||
value: "minecraft:wool"
|
||||
}
|
||||
}
|
||||
title: "Any #minecraft:wool"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.spawner.wool}"
|
||||
x: 3.0d
|
||||
y: 1.0d
|
||||
}
|
||||
]
|
||||
title: "{atm9.chapters.14.title}"
|
||||
}
|
||||
|
||||
## This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 9.
|
||||
## As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.
|
410
config/ftbquests/quests/chapters/apotheosis_gear.snbt
Normal file
410
config/ftbquests/quests/chapters/apotheosis_gear.snbt
Normal file
@ -0,0 +1,410 @@
|
||||
## This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 9.
|
||||
## As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.
|
||||
|
||||
{
|
||||
default_hide_dependency_lines: false
|
||||
default_quest_shape: ""
|
||||
filename: "apotheosis_gear"
|
||||
group: "22FB35B0FEF1343D"
|
||||
icon: "apotheosis:mythic_material"
|
||||
id: "6693050B0EE71CEB"
|
||||
order_index: 0
|
||||
progression_mode: "flexible"
|
||||
quest_links: [ ]
|
||||
quests: [
|
||||
{
|
||||
dependencies: ["5A0305BB1F8EA932"]
|
||||
description: ["{atm9.quest.affixes.desc.dust}"]
|
||||
id: "40926361B5A17F74"
|
||||
rewards: [{
|
||||
count: 5
|
||||
id: "2579209BE96C413A"
|
||||
item: "apotheosis:gem_dust"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "2610766334068246"
|
||||
item: "apotheosis:gem_dust"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.affixes.dust}"
|
||||
x: 0.0d
|
||||
y: 1.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["40926361B5A17F74"]
|
||||
description: ["{atm9.quest.affixes.desc.vials_and_sigils}"]
|
||||
id: "6BB9490E23CBD287"
|
||||
rewards: [{
|
||||
count: 3
|
||||
id: "002EA5A58F916932"
|
||||
item: "minecraft:glass_bottle"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "472F56378989C26F"
|
||||
title: "Vials and Sigils"
|
||||
type: "checkmark"
|
||||
}]
|
||||
title: "{atm9.quest.affixes.vials_and_sigils}"
|
||||
x: 2.0d
|
||||
y: 1.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["6BB9490E23CBD287"]
|
||||
description: ["{atm9.quest.affixes.desc.vialS}"]
|
||||
id: "6631947900DB54E9"
|
||||
rewards: [{
|
||||
id: "4AC1747180F51F65"
|
||||
item: "apotheosis:vial_of_expulsion"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "6518962A5B0E9512"
|
||||
item: "apotheosis:vial_of_expulsion"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.affixes.vialS}"
|
||||
x: 2.0d
|
||||
y: 2.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["6BB9490E23CBD287"]
|
||||
description: ["{atm9.quest.affixes.desc.vialA}"]
|
||||
id: "3FC0042D2284242B"
|
||||
rewards: [{
|
||||
id: "62A325FB7DF0ACB9"
|
||||
item: "apotheosis:vial_of_extraction"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "78DC43B1B647D02E"
|
||||
item: "apotheosis:vial_of_extraction"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.affixes.vialA}"
|
||||
x: 3.0d
|
||||
y: 1.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["6BB9490E23CBD287"]
|
||||
description: ["{atm9.quest.affixes.desc.vialU}"]
|
||||
id: "1124A964E1B8E0EE"
|
||||
rewards: [{
|
||||
id: "3CED5BFC09C57FF8"
|
||||
item: "minecraft:name_tag"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "59D07BFACCEB130D"
|
||||
item: "apotheosis:vial_of_unnaming"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.affixes.vialU}"
|
||||
x: 3.0d
|
||||
y: 0.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["6BB9490E23CBD287"]
|
||||
description: ["{atm9.quest.affixes.desc.sigil}"]
|
||||
id: "482190A9DBE834BE"
|
||||
rewards: [{
|
||||
id: "22A4AC549D2F3233"
|
||||
item: "apotheosis:sigil_of_socketing"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "1354E0A2E840D42D"
|
||||
item: "apotheosis:sigil_of_socketing"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.affixes.sigil}"
|
||||
x: 2.0d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["482190A9DBE834BE"]
|
||||
description: ["{atm9.quest.affixes.desc.superior_sigil}"]
|
||||
id: "1770FF93638B3F22"
|
||||
rewards: [{
|
||||
id: "1CDEB24AB78F7763"
|
||||
item: "apotheosis:superior_sigil_of_socketing"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "528DE40DB533970E"
|
||||
item: "apotheosis:superior_sigil_of_socketing"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.affixes.superior_sigil}"
|
||||
x: 2.0d
|
||||
y: -1.0d
|
||||
}
|
||||
{
|
||||
description: ["{atm9.quest.affixes.desc.gems}"]
|
||||
id: "5A0305BB1F8EA932"
|
||||
progression_mode: "flexible"
|
||||
shape: "octagon"
|
||||
tasks: [{
|
||||
advancement: "apotheosis:affix/gem"
|
||||
criterion: ""
|
||||
id: "61A0FDFECECB6FFF"
|
||||
type: "advancement"
|
||||
}]
|
||||
title: "{atm9.quest.affixes.gems}"
|
||||
x: 0.0d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["40926361B5A17F74"]
|
||||
description: ["{atm9.quest.affixes.desc.salvaging_table}"]
|
||||
id: "1A507E77BF750F60"
|
||||
tasks: [{
|
||||
id: "14B79330933FD83E"
|
||||
item: "apotheosis:salvaging_table"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.affixes.salvaging_table}"
|
||||
x: 0.0d
|
||||
y: 3.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["1A507E77BF750F60"]
|
||||
id: "70D60687AAB145FE"
|
||||
rewards: [{
|
||||
count: 3
|
||||
id: "26ABC6C223985753"
|
||||
item: "apotheosis:common_material"
|
||||
type: "item"
|
||||
}]
|
||||
subtitle: "{atm9.quest.affixes.subt.common}"
|
||||
tasks: [{
|
||||
id: "650CAE5254152FB9"
|
||||
item: "apotheosis:common_material"
|
||||
type: "item"
|
||||
}]
|
||||
title: "&7Mysterious Scrap Materials&n"
|
||||
x: -1.5d
|
||||
y: 3.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["1A507E77BF750F60"]
|
||||
id: "0A70CC1A0F4F1CD1"
|
||||
rewards: [{
|
||||
count: 3
|
||||
id: "4BBFAD124EE92BED"
|
||||
item: "apotheosis:uncommon_material"
|
||||
type: "item"
|
||||
}]
|
||||
subtitle: "{atm9.quest.affixes.subt.uncommon}"
|
||||
tasks: [{
|
||||
id: "70594E0D8666EB60"
|
||||
item: "apotheosis:uncommon_material"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.affixes.uncommon}"
|
||||
x: -1.0d
|
||||
y: 4.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["1A507E77BF750F60"]
|
||||
id: "40C8A9DF4581FF8C"
|
||||
rewards: [{
|
||||
count: 3
|
||||
id: "0B6CB6E01FDAC37E"
|
||||
item: "apotheosis:rare_material"
|
||||
type: "item"
|
||||
}]
|
||||
subtitle: "{atm9.quest.affixes.subt.rare}"
|
||||
tasks: [{
|
||||
id: "71D7450548341CEB"
|
||||
item: "apotheosis:rare_material"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.affixes.rare}"
|
||||
x: 0.0d
|
||||
y: 4.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["1A507E77BF750F60"]
|
||||
id: "061244C38F05CBFE"
|
||||
rewards: [{
|
||||
count: 3
|
||||
id: "5D401F212458026B"
|
||||
item: "apotheosis:epic_material"
|
||||
type: "item"
|
||||
}]
|
||||
subtitle: "{atm9.quest.affixes.subt.epic}"
|
||||
tasks: [{
|
||||
id: "6BED70FB7EF343B8"
|
||||
item: "apotheosis:epic_material"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.affixes.epic}"
|
||||
x: 1.0d
|
||||
y: 4.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["1A507E77BF750F60"]
|
||||
id: "738FB4AC92679507"
|
||||
rewards: [{
|
||||
id: "151067FE2B8D5BEE"
|
||||
item: "apotheosis:mythic_material"
|
||||
type: "item"
|
||||
}]
|
||||
subtitle: "{atm9.quest.affixes.subt.mythic}"
|
||||
tasks: [{
|
||||
id: "68C43D5FAB4FB1FB"
|
||||
item: "apotheosis:mythic_material"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.affixes.mythic_material}"
|
||||
x: 1.5d
|
||||
y: 3.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["0A70CC1A0F4F1CD1"]
|
||||
description: ["{atm9.quest.affixes.desc.simple}"]
|
||||
id: "375359043E71349C"
|
||||
rewards: [{
|
||||
count: 3
|
||||
id: "79DD1566F31F63C9"
|
||||
item: "apotheosis:uncommon_material"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "2D2CA0A0899233C5"
|
||||
item: "apotheosis:simple_reforging_table"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.affixes.simple}"
|
||||
x: -1.0d
|
||||
y: 5.5d
|
||||
}
|
||||
{
|
||||
dependencies: [
|
||||
"375359043E71349C"
|
||||
"061244C38F05CBFE"
|
||||
]
|
||||
description: ["{atm9.quest.affixes.desc.reforge}"]
|
||||
id: "166DF03D93BC11F1"
|
||||
rewards: [{
|
||||
count: 3
|
||||
id: "705ACD5F9E420F18"
|
||||
item: "apotheosis:epic_material"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "34D325EA464BEEEC"
|
||||
item: "apotheosis:reforging_table"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.affixes.reforge}"
|
||||
x: 1.0d
|
||||
y: 5.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["359E1FFAB18FE50F"]
|
||||
description: ["{atm9.quest.affixes.desc.gem_cutting}"]
|
||||
id: "544011D1C48D8E65"
|
||||
rewards: [{
|
||||
count: 10
|
||||
id: "3B0E731D612ECA80"
|
||||
item: "apotheosis:gem_dust"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "4241A0F3897E9DF0"
|
||||
item: "apotheosis:gem_cutting_table"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.affixes.gem_cutting}"
|
||||
x: -3.0d
|
||||
y: 0.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["40926361B5A17F74"]
|
||||
description: ["{atm9.quest.affixes.desc.smith}"]
|
||||
id: "359E1FFAB18FE50F"
|
||||
rewards: [{
|
||||
count: 2
|
||||
id: "52E0A2CFCA537D12"
|
||||
item: "minecraft:smooth_stone"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "69CF59A7A4E03D1F"
|
||||
item: "minecraft:smithing_table"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.affixes.smith}"
|
||||
x: -2.0d
|
||||
y: 0.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["544011D1C48D8E65"]
|
||||
description: ["{atm9.quest.affixes.desc.flawless}"]
|
||||
id: "47317516A98016C0"
|
||||
rewards: [{
|
||||
id: "314A0EB4D43A8162"
|
||||
item: "apotheosis:mythic_material"
|
||||
type: "item"
|
||||
}]
|
||||
shape: "octagon"
|
||||
tasks: [{
|
||||
advancement: "apotheosis:affix/mythic_gem"
|
||||
criterion: ""
|
||||
id: "2CA5B077B6357FB0"
|
||||
type: "advancement"
|
||||
}]
|
||||
title: "{atm9.quest.affixes.flawless}"
|
||||
x: -4.0d
|
||||
y: 0.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["40926361B5A17F74"]
|
||||
description: ["{atm9.quest.affixes.desc.affix}"]
|
||||
id: "67422A235EBAD4CF"
|
||||
rewards: [{
|
||||
count: 9
|
||||
id: "28175FB7B29B97F4"
|
||||
item: "apotheosis:gem_dust"
|
||||
type: "item"
|
||||
}]
|
||||
shape: "octagon"
|
||||
tasks: [{
|
||||
advancement: "apotheosis:affix/root"
|
||||
criterion: ""
|
||||
id: "1129E77C7FCEC1CA"
|
||||
type: "advancement"
|
||||
}]
|
||||
title: "{atm9.quest.affixes.affix}"
|
||||
x: -2.5d
|
||||
y: 1.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["67422A235EBAD4CF"]
|
||||
description: ["{atm9.quest.affixes.desc.mythic}"]
|
||||
id: "68DD99B788216006"
|
||||
rewards: [{
|
||||
id: "078C3AA7A00D3A57"
|
||||
item: "apotheosis:mythic_material"
|
||||
type: "item"
|
||||
}]
|
||||
shape: "octagon"
|
||||
tasks: [{
|
||||
advancement: "apotheosis:affix/mythic"
|
||||
criterion: ""
|
||||
id: "2FF1889B361964B9"
|
||||
type: "advancement"
|
||||
}]
|
||||
title: "{atm9.quest.affixes.mythic}"
|
||||
x: -3.5d
|
||||
y: 1.5d
|
||||
}
|
||||
]
|
||||
title: "{atm9.chapters.8.title}"
|
||||
}
|
||||
|
||||
## This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 9.
|
||||
## As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.
|
2242
config/ftbquests/quests/chapters/applied_energistics_2.snbt
Normal file
2242
config/ftbquests/quests/chapters/applied_energistics_2.snbt
Normal file
File diff suppressed because it is too large
Load Diff
2948
config/ftbquests/quests/chapters/ars_nouveau.snbt
Normal file
2948
config/ftbquests/quests/chapters/ars_nouveau.snbt
Normal file
File diff suppressed because it is too large
Load Diff
941
config/ftbquests/quests/chapters/basic_power.snbt
Normal file
941
config/ftbquests/quests/chapters/basic_power.snbt
Normal file
@ -0,0 +1,941 @@
|
||||
## This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 9.
|
||||
## As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.
|
||||
|
||||
{
|
||||
default_hide_dependency_lines: false
|
||||
default_quest_shape: ""
|
||||
filename: "basic_power"
|
||||
group: "6614EE2378B8AFB9"
|
||||
icon: {
|
||||
Count: 1b
|
||||
id: "mekanism:creative_energy_cube"
|
||||
tag: {
|
||||
mekData: {
|
||||
EnergyContainers: [{
|
||||
Container: 0b
|
||||
stored: "18446744073709551615.9999"
|
||||
}]
|
||||
}
|
||||
}
|
||||
}
|
||||
id: "5D045EF1AB73DF70"
|
||||
images: [{
|
||||
click: ""
|
||||
corner: false
|
||||
dev: false
|
||||
height: 5.0d
|
||||
hover: [ ]
|
||||
image: "atm:textures/questpics/allthepower.png"
|
||||
rotation: 0.0d
|
||||
width: 15.0d
|
||||
x: -3.5d
|
||||
y: -3.5d
|
||||
}]
|
||||
order_index: 0
|
||||
progression_mode: "flexible"
|
||||
quest_links: [ ]
|
||||
quests: [
|
||||
{
|
||||
description: ["{atm9.quest.power.desc.ATP}"]
|
||||
icon: "minecraft:redstone_torch"
|
||||
id: "4AB0DD227471FDBF"
|
||||
rewards: [{
|
||||
id: "3C8F065AEE4CDB80"
|
||||
type: "xp"
|
||||
xp: 10
|
||||
}]
|
||||
shape: "gear"
|
||||
size: 2.0d
|
||||
tasks: [{
|
||||
id: "4800DD5A7039B8B7"
|
||||
title: "{atm9.quest.power.ATP}"
|
||||
type: "checkmark"
|
||||
}]
|
||||
title: "{atm9.quest.power.ATP}"
|
||||
x: -3.5d
|
||||
y: 0.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["5E41363F9AE243F3"]
|
||||
description: ["{atm9.quest.power.desc.reactors}"]
|
||||
hide_dependency_lines: false
|
||||
icon: "bigreactors:basic_reactorchargingportfe"
|
||||
id: "6D6E07564D8FDD8D"
|
||||
rewards: [{
|
||||
id: "1C7FBA6844D50ABA"
|
||||
type: "xp"
|
||||
xp: 10
|
||||
}]
|
||||
shape: "rsquare"
|
||||
subtitle: "{atm9.quest.power.subt.reactors}"
|
||||
tasks: [{
|
||||
id: "70CC25EA15DBE615"
|
||||
title: "Bigger Reactors"
|
||||
type: "checkmark"
|
||||
}]
|
||||
title: "{atm9.quest.power.reactors}"
|
||||
x: -0.5d
|
||||
y: 3.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["42D173B9FF8D16E4"]
|
||||
description: ["{atm9.quest.power.desc.meka}"]
|
||||
hide_dependency_lines: false
|
||||
id: "48DC9E8E9D21A2FA"
|
||||
rewards: [
|
||||
{
|
||||
id: "2E06B6F7B5224A02"
|
||||
type: "xp"
|
||||
xp: 25
|
||||
}
|
||||
{
|
||||
exclude_from_claim_all: true
|
||||
id: "089AE645B9673F30"
|
||||
table_id: 487623848494439020L
|
||||
type: "random"
|
||||
}
|
||||
]
|
||||
shape: "rsquare"
|
||||
subtitle: "{atm9.quest.power.subt.meka}"
|
||||
tasks: [{
|
||||
id: "59DE118DD6597A4E"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "itemfilters:or"
|
||||
tag: {
|
||||
items: [
|
||||
{
|
||||
Count: 1b
|
||||
id: "mekanismgenerators:solar_generator"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "mekanismgenerators:advanced_solar_generator"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "mekanismgenerators:wind_generator"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
title: "Renewable Energy Gens"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.power.meka}"
|
||||
x: -5.0d
|
||||
y: 4.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["42D173B9FF8D16E4"]
|
||||
description: ["{atm9.quest.power.desc.heat}"]
|
||||
id: "11D09E918015355C"
|
||||
rewards: [
|
||||
{
|
||||
id: "3E3F4483E3804F21"
|
||||
type: "xp"
|
||||
xp: 10
|
||||
}
|
||||
{
|
||||
exclude_from_claim_all: true
|
||||
id: "4C4527E368FC896E"
|
||||
table_id: 487623848494439020L
|
||||
type: "random"
|
||||
}
|
||||
]
|
||||
shape: "rsquare"
|
||||
subtitle: "{atm9.quest.power.subt.heat}"
|
||||
tasks: [{
|
||||
id: "44999798D86177A3"
|
||||
item: "mekanismgenerators:heat_generator"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.power.heat}"
|
||||
x: -6.5d
|
||||
y: 3.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["42D173B9FF8D16E4"]
|
||||
description: ["{atm9.quest.power.desc.coal}"]
|
||||
id: "0BB367839D28607D"
|
||||
rewards: [
|
||||
{
|
||||
id: "698CCE0DFA894C3A"
|
||||
type: "xp"
|
||||
xp: 10
|
||||
}
|
||||
{
|
||||
exclude_from_claim_all: true
|
||||
id: "7D172A6A2CA90F91"
|
||||
table_id: 487623848494439020L
|
||||
type: "random"
|
||||
}
|
||||
]
|
||||
shape: "rsquare"
|
||||
tasks: [{
|
||||
id: "0F7D7AE91E20F778"
|
||||
item: "rftoolspower:coalgenerator"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.power.coal}"
|
||||
x: -6.0d
|
||||
y: 4.0d
|
||||
}
|
||||
{
|
||||
description: ["{atm9.quest.power.desc.early}"]
|
||||
hide_dependency_lines: true
|
||||
icon: "minecraft:coal"
|
||||
id: "42D173B9FF8D16E4"
|
||||
rewards: [{
|
||||
id: "0CE525ECCA99C748"
|
||||
type: "xp"
|
||||
xp: 10
|
||||
}]
|
||||
shape: "hexagon"
|
||||
size: 1.5d
|
||||
subtitle: "{atm9.quest.power.subt.early}"
|
||||
tasks: [{
|
||||
id: "55F3497E936C4885"
|
||||
title: "Burning Fuel for Power"
|
||||
type: "checkmark"
|
||||
}]
|
||||
title: "{atm9.quest.power.early}"
|
||||
x: -5.0d
|
||||
y: 3.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["1F81EA5E45424308"]
|
||||
description: ["{atm9.quest.power.desc.pipez}"]
|
||||
id: "4EEAB467C722ECE7"
|
||||
rewards: [
|
||||
{
|
||||
id: "4FE5FAE1AA387086"
|
||||
type: "xp"
|
||||
xp: 10
|
||||
}
|
||||
{
|
||||
count: 8
|
||||
id: "08460933939CF881"
|
||||
item: "pipez:energy_pipe"
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
shape: "rsquare"
|
||||
tasks: [
|
||||
{
|
||||
id: "467584E3BB06E9CD"
|
||||
item: "pipez:energy_pipe"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "5299A78587A00044"
|
||||
item: "pipez:wrench"
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "{atm9.quest.power.pipez}"
|
||||
x: -10.5d
|
||||
y: 0.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["1F81EA5E45424308"]
|
||||
description: ["{atm9.quest.power.desc.cables}"]
|
||||
id: "5C47935A3B2877FF"
|
||||
rewards: [
|
||||
{
|
||||
id: "1C5C0D374EC4391D"
|
||||
type: "xp"
|
||||
xp: 10
|
||||
}
|
||||
{
|
||||
id: "46E642A34AD07DB6"
|
||||
item: "mekanism:alloy_infused"
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
shape: "rsquare"
|
||||
subtitle: "{atm9.quest.power.subt.cables}"
|
||||
tasks: [{
|
||||
id: "6C4B8A2662030CB0"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "itemfilters:or"
|
||||
tag: {
|
||||
items: [
|
||||
{
|
||||
Count: 1b
|
||||
id: "mekanism:basic_universal_cable"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "mekanism:advanced_universal_cable"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "mekanism:elite_universal_cable"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "mekanism:ultimate_universal_cable"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
title: "Universal Cables"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.power.cables}"
|
||||
x: -7.5d
|
||||
y: 0.5d
|
||||
}
|
||||
{
|
||||
description: ["{atm9.quest.power.desc.moving}"]
|
||||
hide_dependency_lines: true
|
||||
icon: {
|
||||
Count: 1b
|
||||
id: "mekanism:energy_tablet"
|
||||
tag: {
|
||||
mekData: {
|
||||
EnergyContainers: [{
|
||||
Container: 0b
|
||||
stored: "1000000"
|
||||
}]
|
||||
}
|
||||
}
|
||||
}
|
||||
id: "1F81EA5E45424308"
|
||||
rewards: [{
|
||||
id: "5C863FCC138617D2"
|
||||
type: "xp"
|
||||
xp: 10
|
||||
}]
|
||||
shape: "hexagon"
|
||||
size: 1.5d
|
||||
tasks: [{
|
||||
id: "6D3C243268479EE9"
|
||||
title: "{atm9.quest.power.moving}"
|
||||
type: "checkmark"
|
||||
}]
|
||||
title: "{atm9.quest.power.moving}"
|
||||
x: -9.0d
|
||||
y: 0.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["1F81EA5E45424308"]
|
||||
description: ["{atm9.quest.power.desc.QE}"]
|
||||
id: "7FE969CB4B419FC6"
|
||||
rewards: [
|
||||
{
|
||||
id: "31A1DA2A1735B16F"
|
||||
type: "xp"
|
||||
xp: 100
|
||||
}
|
||||
{
|
||||
exclude_from_claim_all: true
|
||||
id: "2960A7A9FFFE9624"
|
||||
table_id: 4196188979167302596L
|
||||
type: "random"
|
||||
}
|
||||
]
|
||||
shape: "rsquare"
|
||||
subtitle: "{atm9.quest.power.subt.QE}"
|
||||
tasks: [{
|
||||
id: "3E843C44C9CD3ACC"
|
||||
item: "mekanism:quantum_entangloporter"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.power.QE}"
|
||||
x: -10.0d
|
||||
y: 1.5d
|
||||
}
|
||||
{
|
||||
description: ["{atm9.quest.power.desc.storage}"]
|
||||
hide_dependency_lines: true
|
||||
icon: {
|
||||
Count: 1b
|
||||
id: "powah:battery_nitro"
|
||||
tag: { }
|
||||
}
|
||||
id: "76EA017B12E8F01B"
|
||||
rewards: [{
|
||||
id: "477F18566EC6FB2A"
|
||||
type: "xp"
|
||||
xp: 10
|
||||
}]
|
||||
shape: "hexagon"
|
||||
size: 1.5d
|
||||
tasks: [{
|
||||
id: "3121BA0C9976AFCD"
|
||||
title: "Storing Power"
|
||||
type: "checkmark"
|
||||
}]
|
||||
title: "{atm9.quest.power.storage}"
|
||||
x: 3.0d
|
||||
y: 0.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["76EA017B12E8F01B"]
|
||||
description: ["{atm9.quest.power.desc.cube}"]
|
||||
id: "477B411F84342EEA"
|
||||
rewards: [
|
||||
{
|
||||
id: "039E00B83AAA154A"
|
||||
type: "xp"
|
||||
xp: 10
|
||||
}
|
||||
{
|
||||
id: "7E2E1F9ED0EEB289"
|
||||
item: "mekanism:steel_casing"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
exclude_from_claim_all: true
|
||||
id: "6F7ED193F8C1262A"
|
||||
table_id: 487623848494439020L
|
||||
type: "random"
|
||||
}
|
||||
]
|
||||
shape: "rsquare"
|
||||
subtitle: "{atm9.quest.power.subt.cube}"
|
||||
tasks: [{
|
||||
id: "76378687551A79C3"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "itemfilters:or"
|
||||
tag: {
|
||||
items: [
|
||||
{
|
||||
Count: 1b
|
||||
id: "mekanism:basic_energy_cube"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "mekanism:advanced_energy_cube"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "mekanism:elite_energy_cube"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "mekanism:ultimate_energy_cube"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
title: "Energy Cubes"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.power.cube}"
|
||||
x: 3.0d
|
||||
y: 2.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["76EA017B12E8F01B"]
|
||||
description: ["{atm9.quest.power.desc.cells}"]
|
||||
id: "05B6DB75AEC01187"
|
||||
rewards: [
|
||||
{
|
||||
id: "54A1A37A02201DB9"
|
||||
type: "xp"
|
||||
xp: 10
|
||||
}
|
||||
{
|
||||
exclude_from_claim_all: true
|
||||
id: "6D7BF04203FE0E60"
|
||||
table_id: 487623848494439020L
|
||||
type: "random"
|
||||
}
|
||||
]
|
||||
shape: "rsquare"
|
||||
subtitle: "{atm9.quest.power.subt.cells}"
|
||||
tasks: [{
|
||||
id: "7CA8741CA073C1DA"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "itemfilters:or"
|
||||
tag: {
|
||||
items: [
|
||||
{
|
||||
Count: 1b
|
||||
id: "rftoolspower:cell1"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "rftoolspower:cell2"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "rftoolspower:cell3"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
title: "Powercells"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.power.cells}"
|
||||
x: 4.0d
|
||||
y: 1.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["76EA017B12E8F01B"]
|
||||
description: ["{atm9.quest.power.desc.battery}"]
|
||||
id: "72EA25D05C46D39A"
|
||||
rewards: [
|
||||
{
|
||||
id: "59A5734689019951"
|
||||
type: "xp"
|
||||
xp: 10
|
||||
}
|
||||
{
|
||||
exclude_from_claim_all: true
|
||||
id: "5D6EEC3641B95A9E"
|
||||
table_id: 487623848494439020L
|
||||
type: "random"
|
||||
}
|
||||
]
|
||||
shape: "rsquare"
|
||||
subtitle: "{atm9.quest.power.subt.battery}"
|
||||
tasks: [{
|
||||
id: "460A67B09BD45CF4"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "integrateddynamics:energy_battery"
|
||||
tag: {
|
||||
energy: 0
|
||||
}
|
||||
}
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.power.battery}"
|
||||
x: 2.0d
|
||||
y: 1.5d
|
||||
}
|
||||
{
|
||||
description: ["{atm9.quest.power.desc.mid}"]
|
||||
icon: "powah:dielectric_casing"
|
||||
id: "5E41363F9AE243F3"
|
||||
shape: "hexagon"
|
||||
size: 1.5d
|
||||
tasks: [{
|
||||
id: "5A8F474927CC1E80"
|
||||
title: "{atm9.quest.power.mid}"
|
||||
type: "checkmark"
|
||||
}]
|
||||
title: "{atm9.quest.power.mid}"
|
||||
x: -2.0d
|
||||
y: 3.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["5E41363F9AE243F3"]
|
||||
description: ["{atm9.quest.power.desc.gas}"]
|
||||
id: "0AEC181F5E21A299"
|
||||
min_width: 300
|
||||
rewards: [
|
||||
{
|
||||
count: 8
|
||||
id: "7B9C300DF6442A1D"
|
||||
item: "minecraft:melon_slice"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "742C6774E1F40C96"
|
||||
type: "xp"
|
||||
xp: 100
|
||||
}
|
||||
{
|
||||
exclude_from_claim_all: true
|
||||
id: "542C81754D93237B"
|
||||
table_id: 4196188979167302596L
|
||||
type: "random"
|
||||
}
|
||||
]
|
||||
shape: "rsquare"
|
||||
subtitle: "{atm9.quest.power.subt.gas}"
|
||||
tasks: [{
|
||||
id: "2ADE2B487637FA3F"
|
||||
item: "mekanismgenerators:gas_burning_generator"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.power.gas}"
|
||||
x: -2.0d
|
||||
y: 4.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["5E41363F9AE243F3"]
|
||||
description: ["{atm9.quest.power.desc.powah}"]
|
||||
icon: "powah:book"
|
||||
id: "35ABB0DEE70DF7FD"
|
||||
min_width: 300
|
||||
rewards: [{
|
||||
id: "2374BE0128AF2ED8"
|
||||
type: "xp"
|
||||
xp: 10
|
||||
}]
|
||||
shape: "rsquare"
|
||||
tasks: [{
|
||||
id: "215F37D96DF88189"
|
||||
title: "Powah"
|
||||
type: "checkmark"
|
||||
}]
|
||||
title: "{atm9.quest.power.powah}"
|
||||
x: -1.0d
|
||||
y: 4.0d
|
||||
}
|
||||
{
|
||||
description: ["{atm9.quest.power.desc.end}"]
|
||||
icon: "mekanismgenerators:fusion_reactor_controller"
|
||||
id: "3BDB94F17765EE77"
|
||||
min_width: 300
|
||||
rewards: [{
|
||||
id: "45BE4BD6F9CCB927"
|
||||
type: "xp"
|
||||
xp: 10
|
||||
}]
|
||||
shape: "hexagon"
|
||||
size: 1.5d
|
||||
subtitle: "{atm9.quest.power.subt.end}"
|
||||
tasks: [{
|
||||
id: "03A4FFC4CFCA5DB7"
|
||||
title: "{atm9.quest.power.end}"
|
||||
type: "checkmark"
|
||||
}]
|
||||
title: "{atm9.quest.power.end}"
|
||||
x: -3.5d
|
||||
y: 4.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["4EEAB467C722ECE7"]
|
||||
description: ["{atm9.quest.power.desc.betterpipez}"]
|
||||
hide: true
|
||||
id: "1409C17773B6A131"
|
||||
rewards: [
|
||||
{
|
||||
id: "3B6AEDA1AF0D94C2"
|
||||
type: "xp"
|
||||
xp: 100
|
||||
}
|
||||
{
|
||||
exclude_from_claim_all: true
|
||||
id: "2C5A013A4D52E1A4"
|
||||
table_id: 487623848494439020L
|
||||
type: "random"
|
||||
}
|
||||
]
|
||||
tasks: [{
|
||||
id: "098F1B932F851616"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "itemfilters:or"
|
||||
tag: {
|
||||
items: [
|
||||
{
|
||||
Count: 1b
|
||||
id: "pipez:basic_upgrade"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "pipez:improved_upgrade"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "pipez:advanced_upgrade"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "pipez:ultimate_upgrade"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
title: "Pipe Upgrades"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.power.betterpipez}"
|
||||
x: -11.5d
|
||||
y: 0.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["477B411F84342EEA"]
|
||||
description: [
|
||||
"{atm9.quest.power.desc.more}"
|
||||
""
|
||||
"{image:atm:textures/questpics/mek/mek_induction_matrix_small.png width:125 height:150 align:1}"
|
||||
]
|
||||
id: "682034C680FDEDC2"
|
||||
min_width: 300
|
||||
rewards: [{
|
||||
id: "4897BCA1A6B1D623"
|
||||
type: "xp"
|
||||
xp: 10
|
||||
}]
|
||||
shape: "gear"
|
||||
size: 1.5d
|
||||
tasks: [{
|
||||
id: "4FC7F1A8F2BDEF93"
|
||||
title: "Advanced Mekanism Chapter"
|
||||
type: "checkmark"
|
||||
}]
|
||||
title: "{atm9.quest.power.more}"
|
||||
x: 3.0d
|
||||
y: 3.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["1F81EA5E45424308"]
|
||||
description: ["{atm9.quest.power.desc.flux}"]
|
||||
id: "35CC898E0E49FE58"
|
||||
min_width: 300
|
||||
rewards: [
|
||||
{
|
||||
count: 2
|
||||
id: "16D31D3D55F77046"
|
||||
item: "fluxnetworks:flux_dust"
|
||||
random_bonus: 2
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "19CFBA244CF82C53"
|
||||
type: "xp"
|
||||
xp: 10
|
||||
}
|
||||
{
|
||||
exclude_from_claim_all: true
|
||||
id: "5CB51B7DDAE608F1"
|
||||
table_id: 487623848494439020L
|
||||
type: "loot"
|
||||
}
|
||||
]
|
||||
shape: "pentagon"
|
||||
size: 1.25d
|
||||
subtitle: "{atm9.quest.power.subt.flux}"
|
||||
tasks: [{
|
||||
count: 4L
|
||||
id: "0F0CBAF912DE462F"
|
||||
item: "fluxnetworks:flux_dust"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.power.flux}"
|
||||
x: -9.0d
|
||||
y: 2.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["35CC898E0E49FE58"]
|
||||
description: ["{atm9.quest.power.desc.core}"]
|
||||
id: "1BE26A00A420DAE3"
|
||||
rewards: [
|
||||
{
|
||||
count: 4
|
||||
id: "4FA376B34C2BF04A"
|
||||
item: "fluxnetworks:flux_dust"
|
||||
random_bonus: 4
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "3C2BBFC2A36E722F"
|
||||
type: "xp"
|
||||
xp: 100
|
||||
}
|
||||
]
|
||||
tasks: [
|
||||
{
|
||||
count: 4L
|
||||
id: "5E760075B279BA71"
|
||||
item: "fluxnetworks:flux_core"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "01B3CDAA69D1FA2F"
|
||||
item: "fluxnetworks:flux_block"
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "{atm9.quest.power.core}"
|
||||
x: -9.0d
|
||||
y: 4.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["1BE26A00A420DAE3"]
|
||||
description: ["{atm9.quest.power.desc.plug}"]
|
||||
id: "5F078A574A783B02"
|
||||
rewards: [
|
||||
{
|
||||
id: "46F6946231FB28A0"
|
||||
item: "fluxnetworks:flux_block"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "615F6356856A3371"
|
||||
type: "xp"
|
||||
xp: 100
|
||||
}
|
||||
{
|
||||
exclude_from_claim_all: true
|
||||
id: "116BF6D4838A099B"
|
||||
table_id: 4196188979167302596L
|
||||
type: "loot"
|
||||
}
|
||||
]
|
||||
tasks: [{
|
||||
id: "00B1C30B3E10D332"
|
||||
item: "fluxnetworks:flux_plug"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.power.plug}"
|
||||
x: -9.0d
|
||||
y: 5.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["5F078A574A783B02"]
|
||||
description: ["{atm9.quest.power.desc.network}"]
|
||||
icon: "fluxnetworks:flux_configurator"
|
||||
id: "36DEA17CBB696CC7"
|
||||
min_width: 300
|
||||
rewards: [
|
||||
{
|
||||
count: 4
|
||||
id: "2AC42E9338722803"
|
||||
item: "fluxnetworks:flux_dust"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "739E3CA0422DB9F6"
|
||||
type: "xp"
|
||||
xp: 100
|
||||
}
|
||||
]
|
||||
subtitle: "{atm9.quest.power.subt.network}"
|
||||
tasks: [{
|
||||
id: "2D0212699F99459F"
|
||||
title: "{atm9.quest.power.network}"
|
||||
type: "checkmark"
|
||||
}]
|
||||
title: "{atm9.quest.power.network}"
|
||||
x: -9.0d
|
||||
y: 6.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["36DEA17CBB696CC7"]
|
||||
description: ["{atm9.quest.power.desc.point}"]
|
||||
id: "56B6ABF3D6EA0D84"
|
||||
rewards: [
|
||||
{
|
||||
id: "34498E12E8224864"
|
||||
item: "fluxnetworks:flux_core"
|
||||
random_bonus: 2
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "175D04352F2F6D97"
|
||||
type: "xp"
|
||||
xp: 100
|
||||
}
|
||||
{
|
||||
exclude_from_claim_all: true
|
||||
id: "36DA068B9758EC94"
|
||||
table_id: 487623848494439020L
|
||||
type: "random"
|
||||
}
|
||||
]
|
||||
shape: "diamond"
|
||||
tasks: [{
|
||||
id: "026DE584C4DF393C"
|
||||
item: "fluxnetworks:flux_point"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.power.point}"
|
||||
x: -9.5d
|
||||
y: 7.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["36DEA17CBB696CC7"]
|
||||
description: ["{atm9.quest.power.desc.flux_storage}"]
|
||||
id: "79AD74A863EA43CB"
|
||||
rewards: [
|
||||
{
|
||||
id: "6A142D7F593E9DBA"
|
||||
type: "xp"
|
||||
xp: 100
|
||||
}
|
||||
{
|
||||
exclude_from_claim_all: true
|
||||
id: "69236C65B496550C"
|
||||
table_id: 4196188979167302596L
|
||||
type: "loot"
|
||||
}
|
||||
]
|
||||
shape: "diamond"
|
||||
subtitle: "{atm9.quest.power.subt.flux_storage}"
|
||||
tasks: [{
|
||||
id: "3C574DDC057353DF"
|
||||
item: "fluxnetworks:basic_flux_storage"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.power.flux_storage}"
|
||||
x: -8.5d
|
||||
y: 7.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["36DEA17CBB696CC7"]
|
||||
description: [
|
||||
"{atm9.quest.power.desc.UI}"
|
||||
""
|
||||
"{image:atm:textures/questpics/flux/flux_ui.png width:125 height:150 align:1}"
|
||||
]
|
||||
icon: "fluxnetworks:admin_configurator"
|
||||
id: "2EB7784D5296F410"
|
||||
min_width: 350
|
||||
optional: true
|
||||
rewards: [{
|
||||
id: "64751B6E2F284585"
|
||||
type: "xp"
|
||||
xp: 10
|
||||
}]
|
||||
shape: "diamond"
|
||||
tasks: [{
|
||||
id: "3D721B55E8D33FE8"
|
||||
title: "{atm9.quest.power.UI}"
|
||||
type: "checkmark"
|
||||
}]
|
||||
title: "{atm9.quest.power.UI}"
|
||||
x: -10.0d
|
||||
y: 6.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["36DEA17CBB696CC7"]
|
||||
description: [
|
||||
"{atm9.quest.power.desc.controller}"
|
||||
""
|
||||
"{image:atm:textures/questpics/flux/wireless_ui.png width:125 height:150 align:1}"
|
||||
]
|
||||
id: "27A4FA38992448A0"
|
||||
min_width: 300
|
||||
rewards: [
|
||||
{
|
||||
exclude_from_claim_all: true
|
||||
id: "4D553DA55A83294D"
|
||||
table_id: 4196188979167302596L
|
||||
type: "random"
|
||||
}
|
||||
{
|
||||
id: "37E08FCD1F0A3D26"
|
||||
type: "xp"
|
||||
xp: 100
|
||||
}
|
||||
]
|
||||
shape: "diamond"
|
||||
tasks: [{
|
||||
id: "013BD44E5E82802A"
|
||||
item: "fluxnetworks:flux_controller"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.power.controller}"
|
||||
x: -9.0d
|
||||
y: 7.5d
|
||||
}
|
||||
]
|
||||
title: "{atm9.chapters.13.title}"
|
||||
}
|
||||
|
||||
## This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 9.
|
||||
## As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.
|
2590
config/ftbquests/quests/chapters/basic_tools.snbt
Normal file
2590
config/ftbquests/quests/chapters/basic_tools.snbt
Normal file
File diff suppressed because it is too large
Load Diff
1843
config/ftbquests/quests/chapters/blood_magic.snbt
Normal file
1843
config/ftbquests/quests/chapters/blood_magic.snbt
Normal file
File diff suppressed because it is too large
Load Diff
1728
config/ftbquests/quests/chapters/blue_skies.snbt
Normal file
1728
config/ftbquests/quests/chapters/blue_skies.snbt
Normal file
File diff suppressed because it is too large
Load Diff
4082
config/ftbquests/quests/chapters/botania.snbt
Normal file
4082
config/ftbquests/quests/chapters/botania.snbt
Normal file
File diff suppressed because it is too large
Load Diff
1319
config/ftbquests/quests/chapters/bounty_board.snbt
Normal file
1319
config/ftbquests/quests/chapters/bounty_board.snbt
Normal file
File diff suppressed because it is too large
Load Diff
1263
config/ftbquests/quests/chapters/cataclysm.snbt
Normal file
1263
config/ftbquests/quests/chapters/cataclysm.snbt
Normal file
File diff suppressed because it is too large
Load Diff
3229
config/ftbquests/quests/chapters/chapter_2.snbt
Normal file
3229
config/ftbquests/quests/chapters/chapter_2.snbt
Normal file
File diff suppressed because it is too large
Load Diff
1039
config/ftbquests/quests/chapters/circuits.snbt
Normal file
1039
config/ftbquests/quests/chapters/circuits.snbt
Normal file
File diff suppressed because it is too large
Load Diff
843
config/ftbquests/quests/chapters/create.snbt
Normal file
843
config/ftbquests/quests/chapters/create.snbt
Normal file
@ -0,0 +1,843 @@
|
||||
## This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 9.
|
||||
## As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.
|
||||
|
||||
{
|
||||
default_hide_dependency_lines: false
|
||||
default_quest_shape: ""
|
||||
filename: "create"
|
||||
group: "2B51AC12041E3F89"
|
||||
icon: "create:large_cogwheel"
|
||||
id: "100C477F4E63F20A"
|
||||
order_index: 0
|
||||
progression_mode: "flexible"
|
||||
quest_links: [ ]
|
||||
quests: [
|
||||
{
|
||||
description: [
|
||||
"{atm9.quest.create.desc.welcome.1}"
|
||||
""
|
||||
"{atm9.quest.create.desc.welcome.2}"
|
||||
""
|
||||
"{atm9.quest.create.desc.welcome.3}"
|
||||
]
|
||||
id: "57A7A5C79389A96A"
|
||||
rewards: [{
|
||||
id: "1E5B06A1884F3578"
|
||||
item: "create:wrench"
|
||||
type: "item"
|
||||
}]
|
||||
shape: "hexagon"
|
||||
size: 1.5d
|
||||
tasks: [{
|
||||
icon: "create:wrench"
|
||||
id: "695A0E0BC4B78AEC"
|
||||
title: "{atm9.quest.create.mainIngredient}"
|
||||
type: "checkmark"
|
||||
}]
|
||||
x: 0.0d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["57A7A5C79389A96A"]
|
||||
description: ["{atm9.quest.create.desc.mainIngredient}"]
|
||||
id: "0F16498769DFB3B0"
|
||||
rewards: [{
|
||||
count: 32
|
||||
id: "50217BC8953EBD3E"
|
||||
item: "minecraft:andesite"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
count: 32L
|
||||
id: "5D2B9139C49F5ABA"
|
||||
item: "create:andesite_alloy"
|
||||
type: "item"
|
||||
}]
|
||||
x: 0.0d
|
||||
y: -3.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["0F16498769DFB3B0"]
|
||||
description: ["{atm9.quest.create.desc.shafts}"]
|
||||
id: "5B36DE3826F26963"
|
||||
tasks: [{
|
||||
count: 16L
|
||||
id: "2F89C6C2CD322B51"
|
||||
item: "create:shaft"
|
||||
type: "item"
|
||||
}]
|
||||
x: -1.0d
|
||||
y: -5.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["0F16498769DFB3B0"]
|
||||
description: [
|
||||
"{atm9.quest.create.desc.cogwheelFeatures.1}"
|
||||
""
|
||||
"{atm9.quest.create.desc.cogwheelFeatures.2}"
|
||||
]
|
||||
id: "3E5E0C768038CDF4"
|
||||
rewards: [{
|
||||
count: 8
|
||||
id: "76537C95327D603D"
|
||||
item: "create:cogwheel"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
count: 8L
|
||||
id: "68F2BD699AADA753"
|
||||
item: "create:cogwheel"
|
||||
type: "item"
|
||||
}]
|
||||
x: 1.0d
|
||||
y: -5.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["0F16498769DFB3B0"]
|
||||
description: [
|
||||
"{atm9.quest.create.desc.cogwheelFeatures.1}"
|
||||
""
|
||||
"{atm9.quest.create.desc.cogwheelFeatures.2}"
|
||||
]
|
||||
id: "23A9617F183C4EB1"
|
||||
rewards: [{
|
||||
count: 8
|
||||
id: "01DCE2A5A57DAEC5"
|
||||
item: "create:large_cogwheel"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
count: 8L
|
||||
id: "3E2A4428BDE92738"
|
||||
item: "create:large_cogwheel"
|
||||
type: "item"
|
||||
}]
|
||||
x: 0.0d
|
||||
y: -6.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["23A9617F183C4EB1"]
|
||||
description: [
|
||||
"{atm9.quest.create.desc.waterWheelFeatures.1}"
|
||||
""
|
||||
"{atm9.quest.create.desc.waterWheelFeatures.2}"
|
||||
]
|
||||
id: "1AC0B7934F275EDE"
|
||||
rewards: [{
|
||||
id: "5118928E884676B3"
|
||||
item: "create:water_wheel"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
count: 3L
|
||||
id: "35709DE2871F0CED"
|
||||
item: "create:water_wheel"
|
||||
type: "item"
|
||||
}]
|
||||
x: 0.0d
|
||||
y: -7.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["17885C2DE986F1BD"]
|
||||
description: ["{atm9.quest.create.desc.encasedFan}"]
|
||||
id: "1E9B2D814F50A265"
|
||||
tasks: [{
|
||||
id: "1A4B96C7C821174E"
|
||||
item: "create:encased_fan"
|
||||
type: "item"
|
||||
}]
|
||||
x: 7.0d
|
||||
y: 1.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["17885C2DE986F1BD"]
|
||||
description: ["{atm9.quest.create.desc.gearbox}"]
|
||||
id: "4285510271B5223D"
|
||||
tasks: [{
|
||||
id: "1840DB80F48921E2"
|
||||
item: "create:gearbox"
|
||||
type: "item"
|
||||
}]
|
||||
x: 6.5d
|
||||
y: 2.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["17885C2DE986F1BD"]
|
||||
description: ["{atm9.quest.create.desc.clutch}"]
|
||||
id: "2BB3DB19D5EFC7E2"
|
||||
tasks: [{
|
||||
id: "54F14BE619292D1D"
|
||||
item: "create:clutch"
|
||||
type: "item"
|
||||
}]
|
||||
x: 6.0d
|
||||
y: 3.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["17885C2DE986F1BD"]
|
||||
description: ["{atm9.quest.create.desc.gearshift}"]
|
||||
id: "67A46ED73E488CEE"
|
||||
tasks: [{
|
||||
id: "0CE491535E6FA50B"
|
||||
item: "create:gearshift"
|
||||
type: "item"
|
||||
}]
|
||||
x: 5.5d
|
||||
y: 4.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["17885C2DE986F1BD"]
|
||||
description: ["{atm9.quest.create.desc.chainDrive}"]
|
||||
id: "7F8E50FA436DB4E6"
|
||||
tasks: [{
|
||||
id: "1674E46511507301"
|
||||
item: "create:encased_chain_drive"
|
||||
type: "item"
|
||||
}]
|
||||
x: 4.5d
|
||||
y: 5.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["7F8E50FA436DB4E6"]
|
||||
description: [
|
||||
"{atm9.quest.create.desc.adjustableChainDriveFeatures.1}"
|
||||
""
|
||||
"{atm9.quest.create.desc.adjustableChainDriveFeatures.2}"
|
||||
""
|
||||
"{atm9.quest.create.desc.adjustableChainDriveFeatures.3}"
|
||||
]
|
||||
id: "54EC1C7FC1DA9107"
|
||||
tasks: [{
|
||||
id: "115F81D0A661F71F"
|
||||
item: "create:adjustable_chain_gearshift"
|
||||
type: "item"
|
||||
}]
|
||||
x: 4.5d
|
||||
y: 6.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["17885C2DE986F1BD"]
|
||||
description: ["{atm9.quest.create.desc.press}"]
|
||||
id: "2D41B04C75FA02BC"
|
||||
tasks: [{
|
||||
id: "52136CB29F02E923"
|
||||
item: "create:mechanical_press"
|
||||
type: "item"
|
||||
}]
|
||||
x: 9.5d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["2D41B04C75FA02BC"]
|
||||
description: ["{atm9.quest.create.desc.mixer}"]
|
||||
id: "5DC892BA79EB52EC"
|
||||
tasks: [{
|
||||
id: "057EDA1FF37AE35E"
|
||||
item: "create:mechanical_mixer"
|
||||
type: "item"
|
||||
}]
|
||||
x: 10.0d
|
||||
y: 1.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["0F16498769DFB3B0"]
|
||||
description: ["{atm9.quest.create.desc.basin}"]
|
||||
id: "75CBB5BD8C1DFEA1"
|
||||
tasks: [{
|
||||
id: "56DBF4356117F26A"
|
||||
item: "create:basin"
|
||||
type: "item"
|
||||
}]
|
||||
x: 2.5d
|
||||
y: -3.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["2D41B04C75FA02BC"]
|
||||
description: [
|
||||
"{atm9.quest.create.desc.blazeBurnerFeatures.1}"
|
||||
""
|
||||
"{atm9.quest.create.desc.blazeBurnerFeatures.2}"
|
||||
]
|
||||
id: "1B182A30604655E2"
|
||||
tasks: [{
|
||||
id: "50FED4EED98A8648"
|
||||
item: "create:blaze_burner"
|
||||
type: "item"
|
||||
}]
|
||||
x: 8.0d
|
||||
y: 1.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["47897D827C50629D"]
|
||||
description: ["{atm9.quest.create.desc.mechanicalPiston}"]
|
||||
id: "45EC31812FB9934D"
|
||||
tasks: [{
|
||||
id: "0BD1BA7949BB5855"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "itemfilters:or"
|
||||
tag: {
|
||||
items: [
|
||||
{
|
||||
Count: 1b
|
||||
id: "create:mechanical_piston"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "create:sticky_mechanical_piston"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
title: "{atm9.quest.create.mechanicalPistons}"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.create.mechanicalPistons}"
|
||||
x: 3.5d
|
||||
y: -2.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["4F95F00ED78FBAB9"]
|
||||
description: ["{atm9.quest.create.desc.speedometer}"]
|
||||
id: "29917E6196649F5D"
|
||||
tasks: [{
|
||||
id: "6A5BBAA13F1730F2"
|
||||
item: "create:speedometer"
|
||||
type: "item"
|
||||
}]
|
||||
x: -0.5d
|
||||
y: 3.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["4F95F00ED78FBAB9"]
|
||||
description: ["{atm9.quest.create.desc.stressometer}"]
|
||||
id: "48BE7DAC5082044D"
|
||||
tasks: [{
|
||||
id: "10CB6FCDDD3E38D4"
|
||||
item: "create:stressometer"
|
||||
type: "item"
|
||||
}]
|
||||
x: 0.5d
|
||||
y: 3.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["0F16498769DFB3B0"]
|
||||
description: [
|
||||
"{atm9.quest.create.desc.cartAssembler.1}"
|
||||
""
|
||||
"{atm9.quest.create.desc.cartAssembler.2}"
|
||||
""
|
||||
"{atm9.quest.create.desc.cartAssembler.3}"
|
||||
]
|
||||
id: "09936F8FCEA72C5C"
|
||||
tasks: [{
|
||||
id: "15BA4109324B4A44"
|
||||
item: "create:cart_assembler"
|
||||
type: "item"
|
||||
}]
|
||||
x: -2.5d
|
||||
y: -3.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["0F16498769DFB3B0"]
|
||||
description: ["{atm9.quest.create.desc.linearChassis}"]
|
||||
id: "51EA6B1452883AB2"
|
||||
tasks: [{
|
||||
id: "4A80AC1DE4002191"
|
||||
item: "create:linear_chassis"
|
||||
type: "item"
|
||||
}]
|
||||
x: 1.0d
|
||||
y: -1.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["0F16498769DFB3B0"]
|
||||
description: ["{atm9.quest.create.desc.radialChassis}"]
|
||||
id: "459BA85E48B343AE"
|
||||
tasks: [{
|
||||
id: "3598B8EDD5834F92"
|
||||
item: "create:radial_chassis"
|
||||
type: "item"
|
||||
}]
|
||||
x: -1.0d
|
||||
y: -1.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["0F16498769DFB3B0"]
|
||||
description: ["{atm9.quest.create.desc.windmill}"]
|
||||
id: "76CBFA38D021AC95"
|
||||
tasks: [{
|
||||
id: "3652E21F6AD6D33F"
|
||||
item: "create:white_sail"
|
||||
type: "item"
|
||||
}]
|
||||
x: 2.0d
|
||||
y: -4.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["17885C2DE986F1BD"]
|
||||
description: ["{atm9.quest.create.desc.drill}"]
|
||||
id: "3029E1E133B91ED8"
|
||||
tasks: [{
|
||||
id: "072131C19C185896"
|
||||
item: "create:mechanical_drill"
|
||||
type: "item"
|
||||
}]
|
||||
x: 3.0d
|
||||
y: 3.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["17885C2DE986F1BD"]
|
||||
description: ["{atm9.quest.create.desc.saw}"]
|
||||
id: "72DCE154E1714890"
|
||||
tasks: [{
|
||||
id: "36C1D75275CE2AAB"
|
||||
item: "create:mechanical_saw"
|
||||
type: "item"
|
||||
}]
|
||||
x: 2.5d
|
||||
y: 2.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["17885C2DE986F1BD"]
|
||||
description: ["{atm9.quest.create.desc.deployer}"]
|
||||
id: "3314FBC4FEAE1D08"
|
||||
tasks: [{
|
||||
id: "79D2F12337D1F637"
|
||||
item: "create:deployer"
|
||||
type: "item"
|
||||
}]
|
||||
x: 3.5d
|
||||
y: 4.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["48EA6D9923E38B71"]
|
||||
description: [
|
||||
"{atm9.quest.create.desc.portableInterface.1}"
|
||||
""
|
||||
"{atm9.quest.create.desc.portableInterface.2}"
|
||||
]
|
||||
id: "134BC365E77C6DB8"
|
||||
tasks: [{
|
||||
id: "2D54A1DB29903A0A"
|
||||
item: "create:portable_storage_interface"
|
||||
type: "item"
|
||||
}]
|
||||
x: 13.5d
|
||||
y: 4.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["17885C2DE986F1BD"]
|
||||
description: ["{atm9.quest.create.desc.harvester}"]
|
||||
id: "4C31649D721F76B5"
|
||||
tasks: [{
|
||||
id: "1357FF84B9B133C4"
|
||||
item: "create:mechanical_harvester"
|
||||
type: "item"
|
||||
}]
|
||||
x: 1.5d
|
||||
y: 0.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["17885C2DE986F1BD"]
|
||||
description: ["{atm9.quest.create.desc.plough}"]
|
||||
id: "0759CA52EECF3B49"
|
||||
tasks: [{
|
||||
id: "7B9B459AAB9F6483"
|
||||
item: "create:mechanical_plough"
|
||||
type: "item"
|
||||
}]
|
||||
x: 2.0d
|
||||
y: 1.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["57A7A5C79389A96A"]
|
||||
description: ["{atm9.quest.create.desc.casings}"]
|
||||
id: "17885C2DE986F1BD"
|
||||
tasks: [{
|
||||
id: "0341E5F9B7361D1F"
|
||||
item: "create:andesite_casing"
|
||||
type: "item"
|
||||
}]
|
||||
x: 4.5d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["1DA6B8B2DCC97809"]
|
||||
description: ["{atm9.quest.create.desc.casings}"]
|
||||
id: "48EA6D9923E38B71"
|
||||
tasks: [{
|
||||
id: "23E40F6D58658887"
|
||||
item: "create:brass_casing"
|
||||
type: "item"
|
||||
}]
|
||||
x: 12.0d
|
||||
y: 4.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["2D41B04C75FA02BC"]
|
||||
description: ["{atm9.quest.create.desc.casings}"]
|
||||
id: "3F663416E824720C"
|
||||
tasks: [{
|
||||
id: "7FE62F264B4FA5DE"
|
||||
item: "create:copper_casing"
|
||||
type: "item"
|
||||
}]
|
||||
x: 11.0d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["4194397DFD0199C2"]
|
||||
description: [
|
||||
"{atm9.quest.create.desc.arm.1}"
|
||||
""
|
||||
"{atm9.quest.create.desc.arm.2}"
|
||||
""
|
||||
"{atm9.quest.create.desc.arm.3}"
|
||||
]
|
||||
id: "3F2C1A81C17D2D67"
|
||||
tasks: [{
|
||||
id: "3EC06DE78E520CC9"
|
||||
item: "create:mechanical_arm"
|
||||
type: "item"
|
||||
}]
|
||||
x: 13.5d
|
||||
y: 2.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["0F16498769DFB3B0"]
|
||||
description: ["{atm9.quest.create.desc.funnel}"]
|
||||
id: "47A6769B6BF1A46D"
|
||||
tasks: [{
|
||||
id: "5CB1191F8F7BBAA4"
|
||||
item: "create:andesite_funnel"
|
||||
type: "item"
|
||||
}]
|
||||
x: 2.0d
|
||||
y: -2.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["1DA6B8B2DCC97809"]
|
||||
description: ["{atm9.quest.create.desc.funnel}"]
|
||||
id: "495B0CC178B4CFA9"
|
||||
tasks: [{
|
||||
id: "1C5B4D14826937BB"
|
||||
item: "create:brass_funnel"
|
||||
type: "item"
|
||||
}]
|
||||
x: 9.0d
|
||||
y: 3.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["0F16498769DFB3B0"]
|
||||
description: ["{atm9.quest.create.desc.tunnels}"]
|
||||
id: "7C8CDD259495A31A"
|
||||
tasks: [{
|
||||
id: "07162DA2FD7B0E05"
|
||||
item: "create:andesite_tunnel"
|
||||
type: "item"
|
||||
}]
|
||||
x: -2.0d
|
||||
y: -2.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["1DA6B8B2DCC97809"]
|
||||
description: ["{atm9.quest.create.desc.tunnels}"]
|
||||
id: "78656C89EEE80DB5"
|
||||
tasks: [{
|
||||
id: "688E14A6938EBEF7"
|
||||
item: "create:brass_tunnel"
|
||||
type: "item"
|
||||
}]
|
||||
x: 10.5d
|
||||
y: 5.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["17885C2DE986F1BD"]
|
||||
description: ["{atm9.quest.create.desc.depot}"]
|
||||
id: "7F0D59EC1573FDC0"
|
||||
tasks: [{
|
||||
id: "7EFB9500BBDD745C"
|
||||
item: "create:depot"
|
||||
type: "item"
|
||||
}]
|
||||
x: 5.5d
|
||||
y: -1.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["2D41B04C75FA02BC"]
|
||||
description: ["{atm9.quest.create.desc.chute}"]
|
||||
id: "3D2A03EB2B91E9C1"
|
||||
tasks: [{
|
||||
id: "105F8859D59964C4"
|
||||
item: "create:chute"
|
||||
type: "item"
|
||||
}]
|
||||
x: 9.5d
|
||||
y: -1.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["57A7A5C79389A96A"]
|
||||
description: [
|
||||
"{atm9.quest.create.desc.goggles.1}"
|
||||
""
|
||||
"{atm9.quest.create.desc.goggles.2}"
|
||||
]
|
||||
id: "4F95F00ED78FBAB9"
|
||||
tasks: [{
|
||||
id: "6989058FD488CE64"
|
||||
item: "create:goggles"
|
||||
type: "item"
|
||||
}]
|
||||
x: 0.0d
|
||||
y: 2.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["57A7A5C79389A96A"]
|
||||
description: [
|
||||
"{atm9.quest.create.desc.roseCrystals.1}"
|
||||
""
|
||||
"{atm9.quest.create.desc.roseCrystals.2}"
|
||||
]
|
||||
id: "610DEC4FC4FBB63E"
|
||||
rewards: [{
|
||||
id: "43C2760F8FDD84CA"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "create:sand_paper"
|
||||
tag: {
|
||||
Damage: 0
|
||||
}
|
||||
}
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
count: 8L
|
||||
id: "3BC40DF423178031"
|
||||
item: "create:polished_rose_quartz"
|
||||
type: "item"
|
||||
}]
|
||||
x: -2.5d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["1C2309DB4B890E71"]
|
||||
description: ["{atm9.quest.create.desc.blazeCake}"]
|
||||
id: "4C77ABCD41383F32"
|
||||
tasks: [{
|
||||
id: "2E9A4E9BFFC10819"
|
||||
item: "create:blaze_cake"
|
||||
type: "item"
|
||||
}]
|
||||
x: 14.0d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["1DA6B8B2DCC97809"]
|
||||
description: [
|
||||
"{atm9.quest.create.desc.crafters.1}"
|
||||
""
|
||||
"{atm9.quest.create.desc.crafters.2}"
|
||||
]
|
||||
id: "4194397DFD0199C2"
|
||||
tasks: [{
|
||||
id: "65C6E83AF17405E0"
|
||||
item: "create:mechanical_crafter"
|
||||
type: "item"
|
||||
}]
|
||||
x: 12.0d
|
||||
y: 2.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["17885C2DE986F1BD"]
|
||||
description: ["{atm9.quest.create.desc.gantryCarriage}"]
|
||||
id: "75B14A09FE39EDDA"
|
||||
tasks: [{
|
||||
id: "7DA78C3A582368E2"
|
||||
item: "create:gantry_carriage"
|
||||
type: "item"
|
||||
}]
|
||||
x: 7.5d
|
||||
y: 0.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["7F0D59EC1573FDC0"]
|
||||
description: ["{atm9.quest.create.desc.weightedEjector}"]
|
||||
id: "4EA4EDD5A7923F98"
|
||||
tasks: [{
|
||||
id: "34313AA5D327317C"
|
||||
item: "create:weighted_ejector"
|
||||
type: "item"
|
||||
}]
|
||||
x: 5.5d
|
||||
y: -2.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["3D2A03EB2B91E9C1"]
|
||||
description: ["{atm9.quest.create.desc.smartChute}"]
|
||||
id: "7EEEEDD5FF31ACD3"
|
||||
tasks: [{
|
||||
id: "37EE09651ED58F6F"
|
||||
item: "create:smart_chute"
|
||||
type: "item"
|
||||
}]
|
||||
x: 9.5d
|
||||
y: -3.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["57A7A5C79389A96A"]
|
||||
description: [
|
||||
"{atm9.quest.create.desc.schematicTable.1}"
|
||||
""
|
||||
"{atm9.quest.create.desc.schematicTable.2}"
|
||||
]
|
||||
id: "0CF69DBA9573A7B3"
|
||||
rewards: [{
|
||||
id: "35DCC6CB7C472F17"
|
||||
item: "create:schematic_and_quill"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "0FB1E9BD14FE8EF8"
|
||||
item: "create:schematic_table"
|
||||
type: "item"
|
||||
}]
|
||||
x: -1.5d
|
||||
y: 1.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["0CF69DBA9573A7B3"]
|
||||
description: ["{atm9.quest.create.desc.cannon}"]
|
||||
id: "7D67058592EE5958"
|
||||
tasks: [{
|
||||
id: "5D989C876E9B8AA5"
|
||||
item: "create:schematicannon"
|
||||
type: "item"
|
||||
}]
|
||||
x: -2.5d
|
||||
y: 2.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["17885C2DE986F1BD"]
|
||||
description: ["{atm9.quest.create.desc.ropePulley}"]
|
||||
id: "24E658BA47367A44"
|
||||
tasks: [{
|
||||
id: "0674C07C7DE332A9"
|
||||
item: "create:rope_pulley"
|
||||
type: "item"
|
||||
}]
|
||||
x: 4.5d
|
||||
y: -1.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["3F663416E824720C"]
|
||||
description: ["{atm9.quest.create.desc.spout}"]
|
||||
id: "1C2309DB4B890E71"
|
||||
tasks: [{
|
||||
id: "6772D04457414991"
|
||||
item: "create:spout"
|
||||
type: "item"
|
||||
}]
|
||||
x: 12.5d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["3F663416E824720C"]
|
||||
description: ["{atm9.quest.create.desc.hosePulley}"]
|
||||
id: "77382D4114E901CB"
|
||||
tasks: [{
|
||||
id: "739701B00C0F8A7B"
|
||||
item: "create:hose_pulley"
|
||||
type: "item"
|
||||
}]
|
||||
x: 12.0d
|
||||
y: 1.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["17885C2DE986F1BD"]
|
||||
id: "47897D827C50629D"
|
||||
tasks: [{
|
||||
id: "473DA14538E1B94C"
|
||||
item: "create:piston_extension_pole"
|
||||
type: "item"
|
||||
}]
|
||||
x: 3.5d
|
||||
y: -1.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["3F663416E824720C"]
|
||||
description: [
|
||||
"{atm9.quest.create.desc.portableInterfaceLiquid.1}"
|
||||
""
|
||||
"{atm9.quest.create.desc.portableInterfaceLiquid.2}"
|
||||
]
|
||||
id: "71B1B53A03A16296"
|
||||
tasks: [{
|
||||
id: "339D26EDFBB54047"
|
||||
item: "create:portable_fluid_interface"
|
||||
type: "item"
|
||||
}]
|
||||
x: 12.0d
|
||||
y: -1.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["5DC892BA79EB52EC"]
|
||||
id: "1DA6B8B2DCC97809"
|
||||
tasks: [{
|
||||
icon: "create:brass_ingot"
|
||||
id: "07896B715ED0E04F"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "itemfilters:tag"
|
||||
tag: {
|
||||
value: "forge:ingots/brass"
|
||||
}
|
||||
}
|
||||
title: "{atm9.quest.create.anyBrassIngot}"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.create.brass}"
|
||||
x: 10.5d
|
||||
y: 3.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["2D41B04C75FA02BC"]
|
||||
description: ["{atm9.quest.create.desc.superGlue}"]
|
||||
id: "1F58AA51814C7568"
|
||||
tasks: [{
|
||||
id: "1A9BC10CDDA9FCF2"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "create:super_glue"
|
||||
tag: {
|
||||
Damage: 0
|
||||
}
|
||||
}
|
||||
type: "item"
|
||||
}]
|
||||
x: 8.0d
|
||||
y: -1.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["0F16498769DFB3B0"]
|
||||
description: [
|
||||
"{atm9.quest.create.desc.belts.1}"
|
||||
""
|
||||
"{atm9.quest.create.desc.belts.2}"
|
||||
]
|
||||
id: "13AEBC331F29BC3D"
|
||||
tasks: [{
|
||||
count: 4L
|
||||
id: "4D2A907287515990"
|
||||
item: "create:belt_connector"
|
||||
type: "item"
|
||||
}]
|
||||
x: -2.0d
|
||||
y: -4.5d
|
||||
}
|
||||
]
|
||||
title: "{atm9.chapters.18.title}"
|
||||
}
|
||||
|
||||
## This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 9.
|
||||
## As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.
|
470
config/ftbquests/quests/chapters/creative.snbt
Normal file
470
config/ftbquests/quests/chapters/creative.snbt
Normal file
@ -0,0 +1,470 @@
|
||||
## This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 9.
|
||||
## As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.
|
||||
|
||||
{
|
||||
default_hide_dependency_lines: false
|
||||
default_quest_shape: "hexagon"
|
||||
filename: "creative"
|
||||
group: "2084F3F6FB861C5B"
|
||||
icon: "functionalstorage:creative_vending_upgrade"
|
||||
id: "16956970FF49BB4D"
|
||||
images: [
|
||||
{
|
||||
click: ""
|
||||
corner: false
|
||||
dev: false
|
||||
height: 4.0d
|
||||
hover: ["What do I do with the ATM Star?"]
|
||||
image: "atm:textures/questpics/creative.png"
|
||||
rotation: 0.0d
|
||||
width: 16.0d
|
||||
x: 0.0d
|
||||
y: -4.0d
|
||||
}
|
||||
{
|
||||
click: ""
|
||||
corner: false
|
||||
dev: false
|
||||
height: 2.0d
|
||||
hover: [ ]
|
||||
image: "allthetweaks:textures/item/atm_star.png"
|
||||
rotation: 20.0d
|
||||
width: 2.0d
|
||||
x: 4.0d
|
||||
y: -3.5d
|
||||
}
|
||||
{
|
||||
click: ""
|
||||
corner: false
|
||||
dev: false
|
||||
height: 2.0d
|
||||
hover: [ ]
|
||||
image: "allthetweaks:textures/item/atm_star.png"
|
||||
rotation: -20.0d
|
||||
width: 2.0d
|
||||
x: -4.0d
|
||||
y: -3.5d
|
||||
}
|
||||
]
|
||||
order_index: 2
|
||||
progression_mode: "flexible"
|
||||
quest_links: [ ]
|
||||
quests: [
|
||||
{
|
||||
dependencies: ["464D0C17601E8A2B"]
|
||||
description: ["{atm9.quest.chapter3.desc.welcome}"]
|
||||
hide_dependency_lines: true
|
||||
id: "6E6FDF551EA4FF1A"
|
||||
rewards: [
|
||||
{
|
||||
id: "625FC1DFA2B2A8B3"
|
||||
type: "xp_levels"
|
||||
xp_levels: 10000
|
||||
}
|
||||
{
|
||||
id: "13C7B1760109C468"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "allthemodium:alloy_axe"
|
||||
tag: {
|
||||
affix_data: {
|
||||
affixes: {
|
||||
"apotheosis:durable": 0.8f
|
||||
"apotheosis:heavy_weapon/attribute/annihilating": 0.20009226f
|
||||
"apotheosis:heavy_weapon/attribute/berserking": 0.34490293f
|
||||
"apotheosis:heavy_weapon/attribute/giant_slaying": 0.80212396f
|
||||
"apotheosis:heavy_weapon/attribute/murderous": 0.9636011f
|
||||
"apotheosis:heavy_weapon/attribute/shredding": 0.52882904f
|
||||
"apotheosis:heavy_weapon/special/cleaving": 0.57667243f
|
||||
"apotheosis:heavy_weapon/special/executing": 0.42035472f
|
||||
"apotheosis:sword/mob_effect/elusive": 0.27058095f
|
||||
}
|
||||
name: "{\"color\":\"rainbow\",\"translate\":\"%2$s\",\"with\":[\"\",\"\"]}"
|
||||
rarity: "apotheosis:ancient"
|
||||
sockets: 5
|
||||
uuids: [[I;
|
||||
458049447
|
||||
-427996311
|
||||
-1781331551
|
||||
1681014930
|
||||
]]
|
||||
}
|
||||
display: {
|
||||
Name: "{\"text\":\"Ultimate Axe of AlfredGG\"}"
|
||||
}
|
||||
}
|
||||
}
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "5AC6632FD554B8F2"
|
||||
item: "reliquary:pedestals/passive/white_passive_pedestal"
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
shape: "hexagon"
|
||||
size: 3.0d
|
||||
subtitle: "{atm9.quest.chapter3.subt.welcome}"
|
||||
tasks: [
|
||||
{
|
||||
count: 2L
|
||||
id: "529AEED3E1A07228"
|
||||
item: "allthetweaks:atm_star_block"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "5C995984E37F6C5A"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "productivebees:configurable_honeycomb"
|
||||
tag: {
|
||||
EntityTag: {
|
||||
type: "productivebees:starry"
|
||||
}
|
||||
}
|
||||
}
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "{atm9.quest.chapter3.welcome}"
|
||||
x: 0.0d
|
||||
y: -0.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["464D0C17601E8A2B"]
|
||||
id: "4F420AB27F056D9C"
|
||||
optional: true
|
||||
rewards: [
|
||||
{
|
||||
id: "7AABD1369C9574CC"
|
||||
type: "xp"
|
||||
xp: 1000
|
||||
}
|
||||
{
|
||||
exclude_from_claim_all: true
|
||||
id: "0F0A6F37DB362775"
|
||||
table_id: 7175652334583451871L
|
||||
type: "choice"
|
||||
}
|
||||
]
|
||||
shape: "hexagon"
|
||||
tasks: [{
|
||||
id: "23419C4DB7C1E5CB"
|
||||
item: "pipez:infinity_upgrade"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.chapter3.power}"
|
||||
x: -3.0d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["464D0C17601E8A2B"]
|
||||
hide_dependency_lines: true
|
||||
id: "3F833B656A0DBB0E"
|
||||
optional: true
|
||||
rewards: [{
|
||||
exclude_from_claim_all: true
|
||||
id: "64982F4157A67B93"
|
||||
table_id: 7175652334583451871L
|
||||
type: "choice"
|
||||
}]
|
||||
shape: "hexagon"
|
||||
size: 1.5d
|
||||
tasks: [{
|
||||
id: "5973E65E0C940E27"
|
||||
item: "ars_nouveau:creative_spell_book"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.chapter3.spells}"
|
||||
x: 0.0d
|
||||
y: 2.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["464D0C17601E8A2B"]
|
||||
hide_dependency_lines: true
|
||||
id: "2CF11A70229000AB"
|
||||
optional: true
|
||||
rewards: [{
|
||||
exclude_from_claim_all: true
|
||||
id: "1A639A768F7EF8FC"
|
||||
table_id: 7175652334583451871L
|
||||
type: "choice"
|
||||
}]
|
||||
shape: "hexagon"
|
||||
size: 1.5d
|
||||
tasks: [
|
||||
{
|
||||
id: "0CF133CEADDC504C"
|
||||
item: "create:creative_motor"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "72936F6095FF124A"
|
||||
item: "create:creative_blaze_cake"
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "{atm9.quest.chapter3.create}"
|
||||
x: 2.0d
|
||||
y: -1.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["464D0C17601E8A2B"]
|
||||
hide_dependency_lines: true
|
||||
id: "5C7B81756CA58056"
|
||||
optional: true
|
||||
rewards: [{
|
||||
exclude_from_claim_all: true
|
||||
id: "3B5F42272CCB9F9D"
|
||||
table_id: 7175652334583451871L
|
||||
type: "choice"
|
||||
}]
|
||||
shape: "hexagon"
|
||||
size: 1.5d
|
||||
tasks: [{
|
||||
id: "775BD503F830BB6C"
|
||||
item: "botania:creative_pool"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.chapter3.mana}"
|
||||
x: -2.0d
|
||||
y: -1.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["464D0C17601E8A2B"]
|
||||
id: "695C8159D28F16B7"
|
||||
optional: true
|
||||
rewards: [{
|
||||
exclude_from_claim_all: true
|
||||
id: "2208E7A037EAB0CE"
|
||||
table_id: 7175652334583451871L
|
||||
type: "choice"
|
||||
}]
|
||||
shape: "hexagon"
|
||||
size: 1.5d
|
||||
tasks: [{
|
||||
id: "2E44EAD876619015"
|
||||
item: "ars_nouveau:creative_source_jar"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.chapter3.source}"
|
||||
x: 2.0d
|
||||
y: 0.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["464D0C17601E8A2B"]
|
||||
id: "653487501398DECA"
|
||||
optional: true
|
||||
rewards: [{
|
||||
exclude_from_claim_all: true
|
||||
id: "743B3A79F4825FDD"
|
||||
table_id: 7175652334583451871L
|
||||
type: "choice"
|
||||
}]
|
||||
size: 1.5d
|
||||
tasks: [{
|
||||
id: "5C777F84736455DA"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "ironjetpacks:jetpack"
|
||||
tag: {
|
||||
Id: "ironjetpacks:creative"
|
||||
Throttle: 1.0d
|
||||
}
|
||||
}
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.chapter3.jetpack}"
|
||||
x: -2.0d
|
||||
y: 0.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["464D0C17601E8A2B"]
|
||||
id: "58095E9EBC6FF9B2"
|
||||
optional: true
|
||||
rewards: [{
|
||||
exclude_from_claim_all: true
|
||||
id: "1DAEDC2E98F1482B"
|
||||
table_id: 7175652334583451871L
|
||||
type: "choice"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "317121010F937E4F"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "itemfilters:or"
|
||||
tag: {
|
||||
items: [
|
||||
{
|
||||
Count: 1b
|
||||
id: "integrateddynamics:energy_battery_creative"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "mekanism:creative_energy_cube"
|
||||
tag: {
|
||||
mekData: {
|
||||
EnergyContainers: [{
|
||||
Container: 0b
|
||||
stored: "18446744073709551615.9999"
|
||||
}]
|
||||
}
|
||||
}
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "ae2:creative_energy_cell"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "createaddition:creative_energy"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
title: "Creative Power Options"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.chapter3.powah}"
|
||||
x: 3.0d
|
||||
y: -1.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["464D0C17601E8A2B"]
|
||||
id: "721EA7CB1CBBFD14"
|
||||
optional: true
|
||||
rewards: [{
|
||||
exclude_from_claim_all: true
|
||||
id: "14CC40665D74FF8C"
|
||||
table_id: 7175652334583451871L
|
||||
type: "choice"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "19CB734FC0897E75"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "itemfilters:or"
|
||||
tag: {
|
||||
items: [
|
||||
{
|
||||
Count: 1b
|
||||
id: "refinedstorage:creative_controller"
|
||||
tag: {
|
||||
Energy: 32000
|
||||
}
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "ae2:creative_energy_cell"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
title: "Creative Virtual Storage Power"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.chapter3.storage}"
|
||||
x: 3.0d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["464D0C17601E8A2B"]
|
||||
id: "6C706326381CE611"
|
||||
optional: true
|
||||
rewards: [{
|
||||
exclude_from_claim_all: true
|
||||
id: "2578E2D5023264B9"
|
||||
table_id: 7175652334583451871L
|
||||
type: "choice"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "7052974A3E7D3DF2"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "itemfilters:or"
|
||||
tag: {
|
||||
items: [
|
||||
{
|
||||
Count: 1b
|
||||
id: "pneumaticcraft:creative_compressor"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "pneumaticcraft:creative_compressed_iron_block"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
title: "Creative Pressure"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.chapter3.pressure}"
|
||||
x: -3.0d
|
||||
y: -1.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["6E6FDF551EA4FF1A"]
|
||||
description: ["{atm9.quest.chapter3.desc.blocks}"]
|
||||
hide_dependency_lines: true
|
||||
id: "0019BAE826902B4A"
|
||||
optional: true
|
||||
size: 3.0d
|
||||
tasks: [{
|
||||
id: "05EDE3C0706A89A7"
|
||||
item: "allthecompressed:atm_star_block_9x"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.chapter3.blocks}"
|
||||
x: -2.5d
|
||||
y: 2.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["464D0C17601E8A2B"]
|
||||
id: "39BD43AAEFBD5609"
|
||||
optional: true
|
||||
rewards: [
|
||||
{
|
||||
id: "0F1BEDEC9A4A479D"
|
||||
type: "xp_levels"
|
||||
xp_levels: 50000
|
||||
}
|
||||
{
|
||||
id: "04566CE860FF3B61"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "gtceu:polybenzimidazole_plunger"
|
||||
tag: {
|
||||
DisallowContainerItem: 0b
|
||||
GT.Behaviours: { }
|
||||
GT.Tool: {
|
||||
AttackDamage: 0.0f
|
||||
AttackSpeed: -2.4f
|
||||
Damage: 0
|
||||
MaxDamage: 127
|
||||
}
|
||||
HideFlags: 2
|
||||
display: {
|
||||
Name: "{\"text\":\"Not a Neutronium Plunger\"}"
|
||||
}
|
||||
}
|
||||
}
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
size: 3.0d
|
||||
subtitle: "{atm9.quest.chapter3.subt.greg}"
|
||||
tasks: [{
|
||||
id: "45119551D2C9EE55"
|
||||
item: "allthetweaks:greg_star"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.chapter3.greg}"
|
||||
x: 2.5d
|
||||
y: 2.5d
|
||||
}
|
||||
]
|
||||
title: "{atm9.chapters.7.title}"
|
||||
}
|
||||
|
||||
## This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 9.
|
||||
## As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.
|
473
config/ftbquests/quests/chapters/eidolon_repraised.snbt
Normal file
473
config/ftbquests/quests/chapters/eidolon_repraised.snbt
Normal file
@ -0,0 +1,473 @@
|
||||
## This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 9.
|
||||
## As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.
|
||||
|
||||
{
|
||||
default_hide_dependency_lines: false
|
||||
default_quest_shape: ""
|
||||
filename: "eidolon_repraised"
|
||||
group: "02FE661031A105D8"
|
||||
icon: "eidolon:codex"
|
||||
id: "1B8E80D09BFBD0C0"
|
||||
order_index: 4
|
||||
progression_mode: "flexible"
|
||||
quest_links: [ ]
|
||||
quests: [
|
||||
{
|
||||
description: [
|
||||
"{atm9.quest.eidolonRepraised.desc.intro.1}"
|
||||
"{atm9.quest.eidolonRepraised.desc.intro.2}"
|
||||
"{atm9.quest.eidolonRepraised.desc.intro.3}"
|
||||
"{atm9.quest.eidolonRepraised.desc.intro.4}"
|
||||
]
|
||||
icon: "eidolon:codex"
|
||||
id: "63E611810240C792"
|
||||
rewards: [{
|
||||
id: "1633A5863267257D"
|
||||
item: "eidolon:codex"
|
||||
type: "item"
|
||||
}]
|
||||
subtitle: "{atm9.quest.eidolonRepraised.subt.darkArts}"
|
||||
tasks: [{
|
||||
id: "15ED5ED72A7965B5"
|
||||
title: "{atm9.quest.eidolonRepraised.welcome}"
|
||||
type: "checkmark"
|
||||
}]
|
||||
title: "{atm9.quest.eidolonRepraised.arsEcclesia}"
|
||||
x: 0.0d
|
||||
y: 0.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["63E611810240C792"]
|
||||
description: [
|
||||
"{atm9.quest.eidolonRepraised.desc.pewter.1}"
|
||||
"{atm9.quest.eidolonRepraised.desc.pewter.2}"
|
||||
]
|
||||
id: "14E7D8E642DE7463"
|
||||
rewards: [{
|
||||
count: 8
|
||||
id: "6BFFDB1E54F3378C"
|
||||
item: "eidolon:pewter_ingot"
|
||||
type: "item"
|
||||
}]
|
||||
subtitle: "{atm9.quest.eidolonRepraised.subt.denseAlloy}"
|
||||
tasks: [{
|
||||
id: "158C7AED9CD3E86A"
|
||||
item: "eidolon:pewter_ingot"
|
||||
type: "item"
|
||||
}]
|
||||
x: 0.0d
|
||||
y: 2.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["14E7D8E642DE7463"]
|
||||
description: [
|
||||
"{atm9.quest.eidolonRepraised.desc.ritual.1}"
|
||||
"{atm9.quest.eidolonRepraised.desc.ritual.2}"
|
||||
"{atm9.quest.eidolonRepraised.desc.ritual.3}"
|
||||
]
|
||||
id: "158F13367C2E0C6D"
|
||||
subtitle: "{atm9.quest.eidolonRepraised.subt.rumblyTumbleys}"
|
||||
tasks: [
|
||||
{
|
||||
id: "031FAAB3C7C5C8DB"
|
||||
item: "eidolon:brazier"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
count: 8L
|
||||
id: "148FCAF279EB2ED4"
|
||||
item: "eidolon:stone_hand"
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
x: 2.0d
|
||||
y: 2.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["158F13367C2E0C6D"]
|
||||
description: [
|
||||
"{atm9.quest.eidolonRepraised.desc.workbench.1}"
|
||||
"{atm9.quest.eidolonRepraised.desc.workbench.2}"
|
||||
]
|
||||
id: "1F317D3C47F4543B"
|
||||
subtitle: "{atm9.quest.eidolonRepraised.subt.normalWorkbench}"
|
||||
tasks: [
|
||||
{
|
||||
id: "578D3B745F4E4831"
|
||||
item: "eidolon:worktable"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "2E8C05046A579ED3"
|
||||
item: "eidolon:pewter_inlay"
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
x: 3.5d
|
||||
y: 2.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["158F13367C2E0C6D"]
|
||||
description: [
|
||||
"{atm9.quest.eidolonRepraised.desc.crystallization.1}"
|
||||
"{atm9.quest.eidolonRepraised.desc.crystallization.2}"
|
||||
"{atm9.quest.eidolonRepraised.desc.crystallization.3}"
|
||||
]
|
||||
id: "19E0397F810D8787"
|
||||
rewards: [{
|
||||
count: 8
|
||||
id: "0DF6391080C32CAA"
|
||||
item: "eidolon:soul_shard"
|
||||
type: "item"
|
||||
}]
|
||||
subtitle: "{atm9.quest.eidolonRepraised.subt.undeadVibes}"
|
||||
tasks: [{
|
||||
id: "238EAD6EF1ACEF40"
|
||||
item: "eidolon:soul_shard"
|
||||
type: "item"
|
||||
}]
|
||||
x: 2.0d
|
||||
y: 1.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["1F317D3C47F4543B"]
|
||||
description: [
|
||||
"{atm9.quest.eidolonRepraised.desc.crucible.1}"
|
||||
"{atm9.quest.eidolonRepraised.desc.crucible.2}"
|
||||
""
|
||||
"{atm9.quest.eidolonRepraised.desc.crucible.3}"
|
||||
"{atm9.quest.eidolonRepraised.desc.crucible.4}"
|
||||
"{atm9.quest.eidolonRepraised.desc.crucible.5}"
|
||||
"{atm9.quest.eidolonRepraised.desc.crucible.6}"
|
||||
]
|
||||
id: "704184F62CA78E1E"
|
||||
subtitle: "{atm9.quest.eidolonRepraised.subt.complicated}"
|
||||
tasks: [{
|
||||
id: "1852A283F796E3F8"
|
||||
item: "eidolon:crucible"
|
||||
type: "item"
|
||||
}]
|
||||
x: 4.5d
|
||||
y: 2.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["704184F62CA78E1E"]
|
||||
description: [
|
||||
"{atm9.quest.eidolonRepraised.desc.arcaneGold.1}"
|
||||
"{atm9.quest.eidolonRepraised.desc.arcaneGold.2}"
|
||||
"{atm9.quest.eidolonRepraised.desc.arcaneGold.3}"
|
||||
"{atm9.quest.eidolonRepraised.desc.arcaneGold.4}"
|
||||
"{atm9.quest.eidolonRepraised.desc.arcaneGold.5}"
|
||||
]
|
||||
id: "4224CC1F101E4069"
|
||||
rewards: [{
|
||||
count: 4
|
||||
id: "614320CA7EE28596"
|
||||
item: "eidolon:arcane_gold_ingot"
|
||||
type: "item"
|
||||
}]
|
||||
subtitle: "{atm9.quest.eidolonRepraised.subt.magicalGold}"
|
||||
tasks: [{
|
||||
id: "25257D6AE74BDAE8"
|
||||
item: "eidolon:arcane_gold_ingot"
|
||||
type: "item"
|
||||
}]
|
||||
x: 4.5d
|
||||
y: 1.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["704184F62CA78E1E"]
|
||||
description: [
|
||||
"{atm9.quest.eidolonRepraised.desc.chanting.1}"
|
||||
"{atm9.quest.eidolonRepraised.desc.chanting.2}"
|
||||
"{atm9.quest.eidolonRepraised.desc.chanting.3}"
|
||||
"{atm9.quest.eidolonRepraised.desc.chanting.4}"
|
||||
"{atm9.quest.eidolonRepraised.desc.chanting.5}"
|
||||
]
|
||||
id: "54423ED491F170B5"
|
||||
subtitle: "{atm9.quest.eidolonRepraised.subt.hayHooZaeLa}"
|
||||
tasks: [
|
||||
{
|
||||
id: "5252EBBF0EAAAA46"
|
||||
item: "eidolon:straw_effigy"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
count: 6L
|
||||
id: "229DCAEB0CCEB98D"
|
||||
item: "eidolon:wooden_altar"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "58932969AB4DC25C"
|
||||
item: "eidolon:goblet"
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "{atm9.quest.eidolonRepraised.darkWorship}"
|
||||
x: 4.0d
|
||||
y: 3.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["54423ED491F170B5"]
|
||||
description: [
|
||||
"{atm9.quest.eidolonRepraised.desc.animalSacrifice.1}"
|
||||
"{atm9.quest.eidolonRepraised.desc.animalSacrifice.2}"
|
||||
"{atm9.quest.eidolonRepraised.desc.animalSacrifice.3}"
|
||||
"{atm9.quest.eidolonRepraised.desc.animalSacrifice.4}"
|
||||
]
|
||||
id: "4699B9569F9E65A0"
|
||||
subtitle: "{atm9.quest.eidolonRepraised.subt.darknessFlow}"
|
||||
tasks: [{
|
||||
id: "4FEA60CE9D5B55D0"
|
||||
item: "eidolon:unholy_symbol"
|
||||
type: "item"
|
||||
}]
|
||||
x: 4.0d
|
||||
y: 4.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["4699B9569F9E65A0"]
|
||||
description: [
|
||||
"{atm9.quest.eidolonRepraised.desc.upgradeAltar.1}"
|
||||
"{atm9.quest.eidolonRepraised.desc.upgradeAltar.2}"
|
||||
"{atm9.quest.eidolonRepraised.desc.upgradeAltar.3}"
|
||||
]
|
||||
id: "29ED1116682B0D10"
|
||||
subtitle: "{atm9.quest.eidolonRepraised.subt.authenticStone}"
|
||||
tasks: [
|
||||
{
|
||||
id: "663CAF4D8465C3EA"
|
||||
item: "eidolon:stone_altar"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "576A96AD2808C6D3"
|
||||
item: "eidolon:unholy_effigy"
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
x: 4.0d
|
||||
y: 5.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["4699B9569F9E65A0"]
|
||||
description: [
|
||||
"{atm9.quest.eidolonRepraised.desc.scytheFeatures.1}"
|
||||
"{atm9.quest.eidolonRepraised.desc.scytheFeatures.2}"
|
||||
"{atm9.quest.eidolonRepraised.desc.scytheFeatures.3}"
|
||||
]
|
||||
id: "609DC65F437B72F1"
|
||||
subtitle: "{atm9.quest.eidolonRepraised.subt.burning}"
|
||||
tasks: [{
|
||||
id: "6C74160C4B74BE50"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "eidolon:reaper_scythe"
|
||||
tag: {
|
||||
Damage: 0
|
||||
}
|
||||
}
|
||||
type: "item"
|
||||
}]
|
||||
x: 2.5d
|
||||
y: 4.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["4699B9569F9E65A0"]
|
||||
description: ["{atm9.quest.eidolonRepraised.desc.axeFeatures}"]
|
||||
id: "2CA71999959C0184"
|
||||
subtitle: "{atm9.quest.eidolonRepraised.subt.givesHead}"
|
||||
tasks: [{
|
||||
id: "3E7EFAF49B775EE7"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "eidolon:cleaving_axe"
|
||||
tag: {
|
||||
Damage: 0
|
||||
}
|
||||
}
|
||||
type: "item"
|
||||
}]
|
||||
x: 1.5d
|
||||
y: 4.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["704184F62CA78E1E"]
|
||||
id: "75903AEA7C36C209"
|
||||
tasks: [{
|
||||
id: "3B8ED7645C39F42F"
|
||||
item: "eidolon:shadow_gem"
|
||||
type: "item"
|
||||
}]
|
||||
x: 5.5d
|
||||
y: 2.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["704184F62CA78E1E"]
|
||||
description: [""]
|
||||
id: "691A7545CC65BEAE"
|
||||
tasks: [{
|
||||
id: "6205A7CD340F55EC"
|
||||
item: "eidolon:lesser_soul_gem"
|
||||
type: "item"
|
||||
}]
|
||||
x: 7.0d
|
||||
y: 2.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["19741B9F0C926D68"]
|
||||
description: ["{atm9.quest.eidolonRepraised.desc.armorFeatures}"]
|
||||
id: "3FB61F95260D6B7B"
|
||||
subtitle: "{atm9.quest.eidolonRepraised.subt.lookPart}"
|
||||
tasks: [
|
||||
{
|
||||
id: "7089173717BAE4EB"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "eidolon:warlock_boots"
|
||||
tag: {
|
||||
Damage: 0
|
||||
}
|
||||
}
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "5FCBCFBD2BFF4DE8"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "eidolon:warlock_cloak"
|
||||
tag: {
|
||||
Damage: 0
|
||||
}
|
||||
}
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "7AB3C0AD792A8AD3"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "eidolon:warlock_hat"
|
||||
tag: {
|
||||
Damage: 0
|
||||
}
|
||||
}
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "{atm9.quest.eidolonRepraised.warlocksSuit}"
|
||||
x: 5.5d
|
||||
y: 4.5d
|
||||
}
|
||||
{
|
||||
dependencies: [
|
||||
"4699B9569F9E65A0"
|
||||
"75903AEA7C36C209"
|
||||
]
|
||||
id: "19741B9F0C926D68"
|
||||
tasks: [{
|
||||
id: "4D34FF4F4E5B076C"
|
||||
item: "eidolon:wicked_weave"
|
||||
type: "item"
|
||||
}]
|
||||
x: 5.5d
|
||||
y: 3.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["691A7545CC65BEAE"]
|
||||
id: "17740696B9284520"
|
||||
subtitle: "{atm9.quest.eidolonRepraised.subt.terrariaComparison}"
|
||||
tasks: [{
|
||||
id: "05B7B38C6F1C626A"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "eidolon:soulfire_wand"
|
||||
tag: {
|
||||
Damage: 0
|
||||
}
|
||||
}
|
||||
type: "item"
|
||||
}]
|
||||
x: 7.5d
|
||||
y: 1.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["691A7545CC65BEAE"]
|
||||
id: "5DC9848CC15DCACB"
|
||||
subtitle: "{atm9.quest.eidolonRepraised.subt.chillThrill}"
|
||||
tasks: [{
|
||||
id: "5507C36A909C47F6"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "eidolon:bonechill_wand"
|
||||
tag: {
|
||||
Damage: 0
|
||||
}
|
||||
}
|
||||
type: "item"
|
||||
}]
|
||||
x: 8.0d
|
||||
y: 2.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["19741B9F0C926D68"]
|
||||
description: ["{atm9.quest.eidolonRepraised.desc.charmReach}"]
|
||||
id: "1F09F091F5CF4711"
|
||||
subtitle: "{atm9.quest.eidolonRepraised.subt.touchFaith}"
|
||||
tasks: [{
|
||||
id: "16645F2195151BDD"
|
||||
item: "eidolon:prestigious_palm"
|
||||
type: "item"
|
||||
}]
|
||||
x: 6.5d
|
||||
y: 3.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["691A7545CC65BEAE"]
|
||||
description: ["{atm9.quest.eidolonRepraised.desc.ringChallenge}"]
|
||||
id: "56CD54A4422FF473"
|
||||
subtitle: "{atm9.quest.eidolonRepraised.subt.cursedRingWarning}"
|
||||
tasks: [{
|
||||
id: "63B1DB35E2D14E6F"
|
||||
item: "eidolon:glass_hand"
|
||||
type: "item"
|
||||
}]
|
||||
x: 7.5d
|
||||
y: 3.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["4224CC1F101E4069"]
|
||||
description: [
|
||||
"{atm9.quest.eidolonRepraised.desc.enchanterFeatures.1}"
|
||||
"{atm9.quest.eidolonRepraised.desc.enchanterFeatures.2}"
|
||||
"{atm9.quest.eidolonRepraised.desc.enchanterFeatures.3}"
|
||||
]
|
||||
id: "04C01A5FF3DAC326"
|
||||
subtitle: "{atm9.quest.eidolonRepraised.subt.gatewayApotheosis}"
|
||||
tasks: [{
|
||||
id: "5DADA59471D036E5"
|
||||
item: "eidolon:soul_enchanter"
|
||||
type: "item"
|
||||
}]
|
||||
x: 4.5d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["158F13367C2E0C6D"]
|
||||
description: ["{atm9.quest.eidolonRepraised.desc.holySymbol}"]
|
||||
id: "3A88906FC2E72528"
|
||||
subtitle: "{atm9.quest.eidolonRepraised.subt.forgotFlintSteel}"
|
||||
tasks: [{
|
||||
id: "308A6145877C4E0A"
|
||||
item: "bloodmagic:holy_water_anointment"
|
||||
type: "item"
|
||||
}]
|
||||
x: 2.0d
|
||||
y: 3.0d
|
||||
}
|
||||
]
|
||||
title: "{atm9.chapters.51.title}"
|
||||
}
|
||||
|
||||
## This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 9.
|
||||
## As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.
|
2294
config/ftbquests/quests/chapters/evilcraft.snbt
Normal file
2294
config/ftbquests/quests/chapters/evilcraft.snbt
Normal file
File diff suppressed because it is too large
Load Diff
1746
config/ftbquests/quests/chapters/extreme_reactors.snbt
Normal file
1746
config/ftbquests/quests/chapters/extreme_reactors.snbt
Normal file
File diff suppressed because it is too large
Load Diff
1180
config/ftbquests/quests/chapters/extreme_voltage.snbt
Normal file
1180
config/ftbquests/quests/chapters/extreme_voltage.snbt
Normal file
File diff suppressed because it is too large
Load Diff
1227
config/ftbquests/quests/chapters/food_and_farming.snbt
Normal file
1227
config/ftbquests/quests/chapters/food_and_farming.snbt
Normal file
File diff suppressed because it is too large
Load Diff
1597
config/ftbquests/quests/chapters/forbidden_and_arcanus.snbt
Normal file
1597
config/ftbquests/quests/chapters/forbidden_and_arcanus.snbt
Normal file
File diff suppressed because it is too large
Load Diff
1636
config/ftbquests/quests/chapters/gregstar.snbt
Normal file
1636
config/ftbquests/quests/chapters/gregstar.snbt
Normal file
File diff suppressed because it is too large
Load Diff
1198
config/ftbquests/quests/chapters/high_voltage.snbt
Normal file
1198
config/ftbquests/quests/chapters/high_voltage.snbt
Normal file
File diff suppressed because it is too large
Load Diff
1924
config/ftbquests/quests/chapters/hostile_neural_networks.snbt
Normal file
1924
config/ftbquests/quests/chapters/hostile_neural_networks.snbt
Normal file
File diff suppressed because it is too large
Load Diff
2069
config/ftbquests/quests/chapters/industrial_foregoing.snbt
Normal file
2069
config/ftbquests/quests/chapters/industrial_foregoing.snbt
Normal file
File diff suppressed because it is too large
Load Diff
2738
config/ftbquests/quests/chapters/insane_voltage.snbt
Normal file
2738
config/ftbquests/quests/chapters/insane_voltage.snbt
Normal file
File diff suppressed because it is too large
Load Diff
1204
config/ftbquests/quests/chapters/low_voltage.snbt
Normal file
1204
config/ftbquests/quests/chapters/low_voltage.snbt
Normal file
File diff suppressed because it is too large
Load Diff
2299
config/ftbquests/quests/chapters/ludicrous_voltage.snbt
Normal file
2299
config/ftbquests/quests/chapters/ludicrous_voltage.snbt
Normal file
File diff suppressed because it is too large
Load Diff
805
config/ftbquests/quests/chapters/mahou_tsukai.snbt
Normal file
805
config/ftbquests/quests/chapters/mahou_tsukai.snbt
Normal file
@ -0,0 +1,805 @@
|
||||
## This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 9.
|
||||
## As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.
|
||||
|
||||
{
|
||||
default_hide_dependency_lines: false
|
||||
default_quest_shape: ""
|
||||
filename: "mahou_tsukai"
|
||||
group: "22FB35B0FEF1343D"
|
||||
icon: "mahoutsukai:mahoujin_projector"
|
||||
id: "44E9C52B25D280CB"
|
||||
order_index: 3
|
||||
progression_mode: "flexible"
|
||||
quest_links: [ ]
|
||||
quests: [
|
||||
{
|
||||
description: ["{atm9.quest.mahou.desc.start}"]
|
||||
icon: "mahoutsukai:mahoujin_projector"
|
||||
id: "5E598F78BFC0F0F6"
|
||||
progression_mode: "flexible"
|
||||
rewards: [{
|
||||
id: "5B4DDE801680EA4D"
|
||||
item: "mahoutsukai:guidebook"
|
||||
type: "item"
|
||||
}]
|
||||
shape: "diamond"
|
||||
size: 1.2d
|
||||
tasks: [{
|
||||
advancement: "mahoutsukai:root"
|
||||
criterion: ""
|
||||
icon: "mahoutsukai:mahoujin_projector"
|
||||
id: "0C29A1EA4AA9DCD1"
|
||||
type: "advancement"
|
||||
}]
|
||||
title: "{atm9.quest.mahou.start}"
|
||||
x: 2.5d
|
||||
y: -5.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["5E598F78BFC0F0F6"]
|
||||
description: ["{atm9.quest.mahou.desc.mortar}"]
|
||||
hide_dependent_lines: true
|
||||
id: "2239673CCF5B5BF7"
|
||||
rewards: [{
|
||||
count: 2
|
||||
id: "790F29FE8D491758"
|
||||
item: "minecraft:ender_eye"
|
||||
type: "item"
|
||||
}]
|
||||
shape: "diamond"
|
||||
size: 1.1d
|
||||
tasks: [{
|
||||
id: "2242E76BC6D5C33A"
|
||||
item: "mahoutsukai:mortar_and_pestle"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.mahou.mortar}"
|
||||
x: 1.5d
|
||||
y: -6.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["5E598F78BFC0F0F6"]
|
||||
description: ["{atm9.quest.mahou.desc.scrolls}"]
|
||||
hide_dependent_lines: true
|
||||
id: "3862FB1F6F76ED4F"
|
||||
rewards: [{
|
||||
count: 6
|
||||
id: "5427F3079ACC4183"
|
||||
item: "mahoutsukai:spell_cloth"
|
||||
type: "item"
|
||||
}]
|
||||
shape: "diamond"
|
||||
size: 1.1d
|
||||
tasks: [
|
||||
{
|
||||
id: "7EED1E169B4B837A"
|
||||
item: "mahoutsukai:spell_cloth"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "03653EBC3A7AC78D"
|
||||
item: "mahoutsukai:dagger"
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "{atm9.quest.mahou.scrolls}"
|
||||
x: 3.5d
|
||||
y: -6.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["72DEF9BA758BCDC0"]
|
||||
description: ["{atm9.quest.mahou.desc.caliburn}"]
|
||||
hide: false
|
||||
id: "0AAB33FA2609AD2F"
|
||||
rewards: [
|
||||
{
|
||||
count: 3
|
||||
id: "78EE995DEB3E6AA6"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "minecraft:enchanted_book"
|
||||
tag: {
|
||||
StoredEnchantments: [{
|
||||
id: "minecraft:smite"
|
||||
lvl: 5s
|
||||
}]
|
||||
}
|
||||
}
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "75D2B274106287DE"
|
||||
type: "xp_levels"
|
||||
xp_levels: 5
|
||||
}
|
||||
]
|
||||
shape: "diamond"
|
||||
size: 1.3d
|
||||
tasks: [{
|
||||
id: "6BD28453C12779F8"
|
||||
item: {
|
||||
Count: 1b
|
||||
ForgeCaps: {
|
||||
Parent: {
|
||||
MAHOUTSUKAI_ATTACK_CAP: 10000.0d
|
||||
MAHOUTSUKAI_ATTACK_DAMAGE: 3.0f
|
||||
}
|
||||
}
|
||||
id: "mahoutsukai:caliburn"
|
||||
tag: {
|
||||
Damage: 0
|
||||
}
|
||||
}
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.mahou.caliburn}"
|
||||
x: 0.0d
|
||||
y: -9.75d
|
||||
}
|
||||
{
|
||||
dependencies: ["0AAB33FA2609AD2F"]
|
||||
description: ["{atm9.quest.mahou.desc.warden}"]
|
||||
hide: false
|
||||
id: "4EA0F9DE0A373761"
|
||||
rewards: [
|
||||
{
|
||||
id: "24EA1AA4DC08FBBD"
|
||||
item: "minecraft:villager_spawn_egg"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "7463D6851757918E"
|
||||
type: "xp_levels"
|
||||
xp_levels: 10
|
||||
}
|
||||
]
|
||||
shape: "diamond"
|
||||
size: 1.3d
|
||||
tasks: [{
|
||||
id: "40639CBE133D1B30"
|
||||
item: {
|
||||
Count: 1b
|
||||
ForgeCaps: {
|
||||
Parent: {
|
||||
MAHOUTSUKAI_ATTACK_CAP: 10000.0d
|
||||
MAHOUTSUKAI_ATTACK_DAMAGE: 3.0f
|
||||
}
|
||||
}
|
||||
id: "mahoutsukai:morgan"
|
||||
tag: {
|
||||
Damage: 0
|
||||
}
|
||||
}
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.mahou.warden}"
|
||||
x: 1.3d
|
||||
y: -11.05d
|
||||
}
|
||||
{
|
||||
dependencies: ["5E598F78BFC0F0F6"]
|
||||
description: ["{atm9.quest.mahou.desc.mana}"]
|
||||
hide: true
|
||||
id: "031E3B2E823C5CB7"
|
||||
rewards: [{
|
||||
id: "68A6E05A70BB7F65"
|
||||
item: "minecraft:diamond"
|
||||
type: "item"
|
||||
}]
|
||||
shape: "diamond"
|
||||
size: 1.1d
|
||||
tasks: [{
|
||||
id: "18DD9C15BAD8FF6E"
|
||||
item: "mahoutsukai:attuner"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.mahou.mana}"
|
||||
x: 2.5d
|
||||
y: -6.5d
|
||||
}
|
||||
{
|
||||
dependencies: [
|
||||
"30BA3262D870F4E7"
|
||||
"63AB668EAF0E1C30"
|
||||
"464F35993A49096D"
|
||||
]
|
||||
description: ["{atm9.quest.mahou.desc.lake}"]
|
||||
icon: "mahoutsukai:murky_bucket"
|
||||
id: "72DEF9BA758BCDC0"
|
||||
rewards: [{
|
||||
id: "42C9DEFB9E464E56"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "minecraft:enchanted_book"
|
||||
tag: {
|
||||
StoredEnchantments: [{
|
||||
id: "minecraft:smite"
|
||||
lvl: 5s
|
||||
}]
|
||||
}
|
||||
}
|
||||
type: "item"
|
||||
}]
|
||||
shape: "diamond"
|
||||
size: 1.3d
|
||||
tasks: [{
|
||||
id: "3908B10D15C459CA"
|
||||
item: "mahoutsukai:murky_bucket"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.mahou.lake}"
|
||||
x: -0.65d
|
||||
y: -9.100000000000001d
|
||||
}
|
||||
{
|
||||
dependencies: ["2239673CCF5B5BF7"]
|
||||
description: ["{atm9.quest.mahou.desc.power}"]
|
||||
id: "30BA3262D870F4E7"
|
||||
rewards: [{
|
||||
id: "06A0C2227C63AC14"
|
||||
item: "minecraft:diamond"
|
||||
type: "item"
|
||||
}]
|
||||
shape: "diamond"
|
||||
size: 1.3d
|
||||
tasks: [
|
||||
{
|
||||
count: 2L
|
||||
id: "3B4F6277739941D5"
|
||||
item: "mahoutsukai:powdered_diamond"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "09CC056766EB26DD"
|
||||
item: "mahoutsukai:powdered_emerald"
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "{atm9.quest.mahou.power}"
|
||||
x: 0.0d
|
||||
y: -8.450000000000001d
|
||||
}
|
||||
{
|
||||
dependencies: ["2239673CCF5B5BF7"]
|
||||
description: ["{atm9.quest.mahou.desc.strength}"]
|
||||
icon: {
|
||||
Count: 1b
|
||||
ForgeCaps: {
|
||||
Parent: {
|
||||
MAHOUTSUKAI_CASTER_NAME: ""
|
||||
}
|
||||
}
|
||||
id: "mahoutsukai:scroll_strengthening"
|
||||
}
|
||||
id: "08903890F577D43A"
|
||||
rewards: [{
|
||||
count: 2
|
||||
id: "406E3AD79364F34A"
|
||||
item: "minecraft:stick"
|
||||
type: "item"
|
||||
}]
|
||||
shape: "diamond"
|
||||
tasks: [
|
||||
{
|
||||
count: 2L
|
||||
id: "08FA04F05865F979"
|
||||
item: "mahoutsukai:powdered_diamond"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "255E770955A7FAC3"
|
||||
item: "mahoutsukai:powdered_iron"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "34905AC6DD4F593D"
|
||||
item: { Count: 64b, id: "mahoutsukai:spell_cloth" }
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "{atm9.quest.mahou.strength}"
|
||||
x: 6.0d
|
||||
y: -8.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["08903890F577D43A"]
|
||||
description: ["{atm9.quest.mahou.desc.sword}"]
|
||||
icon: {
|
||||
Count: 1b
|
||||
id: "minecraft:diamond_sword"
|
||||
tag: {
|
||||
Damage: 0
|
||||
Enchantments: [{
|
||||
id: "enderio:shimmer"
|
||||
lvl: 1s
|
||||
}]
|
||||
}
|
||||
}
|
||||
id: "61382ED4729AF8E6"
|
||||
rewards: [{
|
||||
id: "152A1DF966A78240"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "minecraft:enchanted_book"
|
||||
tag: {
|
||||
StoredEnchantments: [{
|
||||
id: "minecraft:sharpness"
|
||||
lvl: 5s
|
||||
}]
|
||||
}
|
||||
}
|
||||
type: "item"
|
||||
}]
|
||||
shape: "diamond"
|
||||
tasks: [{
|
||||
id: "414C8B3F17B6B274"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "minecraft:diamond_sword"
|
||||
tag: {
|
||||
Damage: 0
|
||||
Unbreakable: 1b
|
||||
mahoutsukai_old_unbreakable: 0b
|
||||
mahoutsukai_strengthened: 2
|
||||
}
|
||||
}
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.mahou.sword}"
|
||||
x: 6.5d
|
||||
y: -8.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["61382ED4729AF8E6"]
|
||||
description: ["{atm9.quest.mahou.desc.clarent}"]
|
||||
id: "7F9BFE49B53AF2BF"
|
||||
rewards: [{
|
||||
id: "59457A4A7E8C2D2E"
|
||||
type: "xp_levels"
|
||||
xp_levels: 10
|
||||
}]
|
||||
shape: "diamond"
|
||||
tasks: [{
|
||||
id: "6D9AB073753E5D51"
|
||||
item: {
|
||||
Count: 1b
|
||||
ForgeCaps: {
|
||||
Parent: {
|
||||
MAHOUTSUKAI_ATTACK_CAP: 10000.0d
|
||||
MAHOUTSUKAI_ATTACK_DAMAGE: 0.0f
|
||||
}
|
||||
}
|
||||
id: "mahoutsukai:clarent"
|
||||
tag: {
|
||||
Damage: 0
|
||||
Unbreakable: 1b
|
||||
mahoutsukai_clarent_attack: 0.0f
|
||||
}
|
||||
}
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.mahou.clarent}"
|
||||
x: 7.0d
|
||||
y: -7.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["031E3B2E823C5CB7"]
|
||||
description: ["{atm9.quest.mahou.desc.emerald}"]
|
||||
hide_dependency_lines: true
|
||||
id: "464F35993A49096D"
|
||||
shape: "diamond"
|
||||
size: 1.3d
|
||||
tasks: [{
|
||||
id: "4197A7CA0002EC34"
|
||||
item: {
|
||||
Count: 1b
|
||||
ForgeCaps: {
|
||||
Parent: {
|
||||
MAHOUTSUKAI_GEM_STORED_MANA: 0
|
||||
}
|
||||
}
|
||||
id: "mahoutsukai:attuned_emerald"
|
||||
}
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.mahou.emerald}"
|
||||
x: -1.3d
|
||||
y: -9.75d
|
||||
}
|
||||
{
|
||||
description: ["{atm9.quest.mahou.desc.morgan}"]
|
||||
icon: {
|
||||
Count: 1b
|
||||
ForgeCaps: {
|
||||
Parent: {
|
||||
MAHOUTSUKAI_ATTACK_CAP: 0.0d
|
||||
MAHOUTSUKAI_ATTACK_DAMAGE: 0.0f
|
||||
}
|
||||
}
|
||||
id: "mahoutsukai:morgan"
|
||||
tag: {
|
||||
Damage: 0
|
||||
}
|
||||
}
|
||||
id: "63AB668EAF0E1C30"
|
||||
shape: "diamond"
|
||||
size: 1.3d
|
||||
tasks: [{
|
||||
id: "70EE14D22DAA95EE"
|
||||
title: "Morgan "
|
||||
type: "checkmark"
|
||||
}]
|
||||
title: "{atm9.quest.mahou.morgan}"
|
||||
x: -1.9500000000000002d
|
||||
y: -7.800000000000001d
|
||||
}
|
||||
{
|
||||
description: ["{atm9.quest.mahou.desc.upgrading}"]
|
||||
id: "0C38F40FD6AA01E6"
|
||||
rewards: [{
|
||||
id: "0B6C0561D1C20F28"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "minecraft:enchanted_book"
|
||||
tag: {
|
||||
StoredEnchantments: [{
|
||||
id: "minecraft:smite"
|
||||
lvl: 5s
|
||||
}]
|
||||
}
|
||||
}
|
||||
type: "item"
|
||||
}]
|
||||
shape: "diamond"
|
||||
size: 1.3d
|
||||
tasks: [{
|
||||
count: 26L
|
||||
id: "7F74CF6A8D802EF7"
|
||||
item: "irons_spellbooks:ender_upgrade_orb"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.mahou.upgrading}"
|
||||
x: 0.65d
|
||||
y: -10.4d
|
||||
}
|
||||
{
|
||||
description: ["{atm9.quest.mahou.desc.genocide}"]
|
||||
icon: "easy_villagers:villager"
|
||||
id: "7FB787C9FE990A93"
|
||||
rewards: [
|
||||
{
|
||||
id: "4702BC1532F4CDDE"
|
||||
item: "reliquary:pedestals/passive/red_passive_pedestal"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "249AF257A5CDFE75"
|
||||
type: "xp_levels"
|
||||
xp_levels: 20
|
||||
}
|
||||
]
|
||||
shape: "diamond"
|
||||
size: 1.3d
|
||||
tasks: [{
|
||||
entity: "minecraft:villager"
|
||||
id: "332590813AB0B8F3"
|
||||
type: "kill"
|
||||
value: 10L
|
||||
}]
|
||||
title: "{atm9.quest.mahou.genocide}"
|
||||
x: 1.9500000000000002d
|
||||
y: -11.700000000000001d
|
||||
}
|
||||
{
|
||||
dependencies: ["08903890F577D43A"]
|
||||
description: ["{atm9.quest.mahou.desc.stick}"]
|
||||
id: "50AA597A4CF3D060"
|
||||
shape: "diamond"
|
||||
tasks: [{
|
||||
id: "52A9F529E0AE2C7C"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "minecraft:stick"
|
||||
tag: {
|
||||
Unbreakable: 1b
|
||||
mahoutsukai_old_unbreakable: 0b
|
||||
mahoutsukai_strengthened: 5
|
||||
}
|
||||
}
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.mahou.stick}"
|
||||
x: 5.5d
|
||||
y: -8.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["50AA597A4CF3D060"]
|
||||
description: ["{atm9.quest.mahou.desc.emrys}"]
|
||||
id: "58EC32346BEBAAEC"
|
||||
rewards: [{
|
||||
id: "08A12DA479A19767"
|
||||
type: "xp_levels"
|
||||
xp_levels: 10
|
||||
}]
|
||||
shape: "diamond"
|
||||
tasks: [{
|
||||
id: "651B2642E69F09C2"
|
||||
item: "mahoutsukai:staff_emrys"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.mahou.emrys}"
|
||||
x: 5.0d
|
||||
y: -7.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["08903890F577D43A"]
|
||||
description: ["{atm9.quest.mahou.desc.shield}"]
|
||||
icon: {
|
||||
Count: 1b
|
||||
id: "minecraft:shield"
|
||||
tag: {
|
||||
Damage: 0
|
||||
Enchantments: [{
|
||||
id: "enderio:shimmer"
|
||||
lvl: 1s
|
||||
}]
|
||||
Unbreakable: 1b
|
||||
mahoutsukai_old_unbreakable: 0b
|
||||
mahoutsukai_strengthened: 5
|
||||
}
|
||||
}
|
||||
id: "087726194EED4BDF"
|
||||
rewards: [{
|
||||
id: "7C0F43EAA605EA92"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "minecraft:enchanted_book"
|
||||
tag: {
|
||||
StoredEnchantments: [{
|
||||
id: "ensorcellation:bulwark"
|
||||
lvl: 1s
|
||||
}]
|
||||
}
|
||||
}
|
||||
type: "item"
|
||||
}]
|
||||
shape: "diamond"
|
||||
tasks: [{
|
||||
id: "5D64543FDCB91F54"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "minecraft:shield"
|
||||
tag: {
|
||||
Damage: 0
|
||||
Unbreakable: 1b
|
||||
mahoutsukai_old_unbreakable: 0b
|
||||
mahoutsukai_strengthened: 5
|
||||
}
|
||||
}
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.mahou.shield}"
|
||||
x: 6.0d
|
||||
y: -9.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["087726194EED4BDF"]
|
||||
description: ["{atm9.quest.mahou.desc.souls}"]
|
||||
id: "00EC37E07591FFC4"
|
||||
rewards: [{
|
||||
count: 9
|
||||
id: "5832669818920660"
|
||||
item: "mob_grinding_utils:delightful_dirt"
|
||||
type: "item"
|
||||
}]
|
||||
shape: "diamond"
|
||||
tasks: [{
|
||||
id: "0E72B0E602D7A29A"
|
||||
item: {
|
||||
Count: 1b
|
||||
ForgeCaps: {
|
||||
Parent: {
|
||||
MAHOUTSUKAI_CASTER_NAME: ""
|
||||
}
|
||||
}
|
||||
id: "mahoutsukai:scroll_death_collection"
|
||||
}
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.mahou.souls}"
|
||||
x: 6.0d
|
||||
y: -10.5d
|
||||
}
|
||||
{
|
||||
dependencies: [
|
||||
"087726194EED4BDF"
|
||||
"3862FB1F6F76ED4F"
|
||||
]
|
||||
description: ["{atm9.quest.mahou.desc.immunity}"]
|
||||
id: "3317E676CEE83609"
|
||||
shape: "diamond"
|
||||
tasks: [{
|
||||
id: "1BBF69A87534BEAD"
|
||||
item: {
|
||||
Count: 1b
|
||||
ForgeCaps: {
|
||||
Parent: {
|
||||
MAHOUTSUKAI_CASTER_NAME: ""
|
||||
}
|
||||
}
|
||||
id: "mahoutsukai:scroll_immunity_exchange"
|
||||
}
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.mahou.immunity}"
|
||||
x: 7.0d
|
||||
y: -10.5d
|
||||
}
|
||||
{
|
||||
dependencies: [
|
||||
"087726194EED4BDF"
|
||||
"3862FB1F6F76ED4F"
|
||||
]
|
||||
description: ["{atm9.quest.mahou.desc.damage}"]
|
||||
id: "659531F14E62EBEB"
|
||||
shape: "diamond"
|
||||
tasks: [{
|
||||
id: "4CFFB54AB2B68957"
|
||||
item: {
|
||||
Count: 1b
|
||||
ForgeCaps: {
|
||||
Parent: {
|
||||
MAHOUTSUKAI_CASTER_NAME: ""
|
||||
}
|
||||
}
|
||||
id: "mahoutsukai:scroll_damage_exchange"
|
||||
}
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.mahou.damage}"
|
||||
x: 5.0d
|
||||
y: -10.5d
|
||||
}
|
||||
{
|
||||
dependencies: [
|
||||
"3317E676CEE83609"
|
||||
"00EC37E07591FFC4"
|
||||
"659531F14E62EBEB"
|
||||
]
|
||||
description: ["{atm9.quest.mahou.desc.replica}"]
|
||||
id: "116EA7BB5AD8453E"
|
||||
rewards: [{
|
||||
id: "3F440F5FF275978B"
|
||||
type: "xp_levels"
|
||||
xp_levels: 10
|
||||
}]
|
||||
shape: "diamond"
|
||||
tasks: [{
|
||||
id: "5754D942F9A2A743"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "mahoutsukai:replica"
|
||||
tag: {
|
||||
Damage: 0
|
||||
Unbreakable: 1b
|
||||
}
|
||||
}
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.mahou.replica}"
|
||||
x: 6.0d
|
||||
y: -11.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["031E3B2E823C5CB7"]
|
||||
description: ["{atm9.quest.mahou.desc.life}"]
|
||||
icon: "evilcraft:blood_stain"
|
||||
id: "67B73449A59467C5"
|
||||
rewards: [{
|
||||
count: 9
|
||||
id: "5FC847A4560CFC7B"
|
||||
item: "mob_grinding_utils:dreadful_dirt"
|
||||
type: "item"
|
||||
}]
|
||||
shape: "diamond"
|
||||
tasks: [
|
||||
{
|
||||
count: 2L
|
||||
id: "04933B4DDF63D969"
|
||||
item: "mahoutsukai:powdered_iron"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "211B9A2B333F8E02"
|
||||
item: "mahoutsukai:powdered_emerald"
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "{atm9.quest.mahou.life}"
|
||||
x: 1.5d
|
||||
y: -7.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["031E3B2E823C5CB7"]
|
||||
description: ["{atm9.quest.mahou.desc.durability}"]
|
||||
icon: {
|
||||
Count: 1b
|
||||
id: "minecraft:netherite_shovel"
|
||||
tag: {
|
||||
Damage: 0
|
||||
}
|
||||
}
|
||||
id: "6E0D16C7036E81C1"
|
||||
rewards: [{
|
||||
id: "5FA7A2742E058D84"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "minecraft:diamond_shovel"
|
||||
tag: {
|
||||
Damage: 0
|
||||
}
|
||||
}
|
||||
type: "item"
|
||||
}]
|
||||
shape: "diamond"
|
||||
tasks: [
|
||||
{
|
||||
id: "1BC81B63BEDA6C00"
|
||||
item: "mahoutsukai:powdered_diamond"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
count: 2L
|
||||
id: "6E3E68CF28DD757C"
|
||||
item: "mahoutsukai:powdered_emerald"
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "{atm9.quest.mahou.durability}"
|
||||
x: 2.5d
|
||||
y: -7.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["031E3B2E823C5CB7"]
|
||||
description: ["{atm9.quest.mahou.desc.chronal}"]
|
||||
hide_dependency_lines: false
|
||||
icon: "mahoutsukai:mahoujin_projector"
|
||||
id: "05B8C64EB012F6EA"
|
||||
rewards: [{
|
||||
id: "272D0292A6F952C4"
|
||||
item: {
|
||||
Count: 1b
|
||||
ForgeCaps: {
|
||||
Parent: {
|
||||
MAHOUTSUKAI_GEM_STORED_MANA: 0
|
||||
}
|
||||
}
|
||||
id: "mahoutsukai:attuned_diamond"
|
||||
}
|
||||
type: "item"
|
||||
}]
|
||||
shape: "diamond"
|
||||
tasks: [
|
||||
{
|
||||
id: "581D08845F19907E"
|
||||
item: "mahoutsukai:powdered_quartz"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
count: 2L
|
||||
id: "13DC1E08A0A6EC6E"
|
||||
item: "mahoutsukai:powdered_emerald"
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "{atm9.quest.mahou.chronal}"
|
||||
x: 3.5d
|
||||
y: -7.5d
|
||||
}
|
||||
]
|
||||
subtitle: []
|
||||
title: "{atm9.chapters.49.title}"
|
||||
}
|
||||
|
||||
## This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 9.
|
||||
## As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.
|
3006
config/ftbquests/quests/chapters/mainquestline_part_1.snbt
Normal file
3006
config/ftbquests/quests/chapters/mainquestline_part_1.snbt
Normal file
File diff suppressed because it is too large
Load Diff
1627
config/ftbquests/quests/chapters/medium_voltage.snbt
Normal file
1627
config/ftbquests/quests/chapters/medium_voltage.snbt
Normal file
File diff suppressed because it is too large
Load Diff
2871
config/ftbquests/quests/chapters/mekanism.snbt
Normal file
2871
config/ftbquests/quests/chapters/mekanism.snbt
Normal file
File diff suppressed because it is too large
Load Diff
2130
config/ftbquests/quests/chapters/mekanism_reactors.snbt
Normal file
2130
config/ftbquests/quests/chapters/mekanism_reactors.snbt
Normal file
File diff suppressed because it is too large
Load Diff
3844
config/ftbquests/quests/chapters/mystical_ag.snbt
Normal file
3844
config/ftbquests/quests/chapters/mystical_ag.snbt
Normal file
File diff suppressed because it is too large
Load Diff
1481
config/ftbquests/quests/chapters/occultism.snbt
Normal file
1481
config/ftbquests/quests/chapters/occultism.snbt
Normal file
File diff suppressed because it is too large
Load Diff
3583
config/ftbquests/quests/chapters/powah.snbt
Normal file
3583
config/ftbquests/quests/chapters/powah.snbt
Normal file
File diff suppressed because it is too large
Load Diff
4386
config/ftbquests/quests/chapters/productive_bees.snbt
Normal file
4386
config/ftbquests/quests/chapters/productive_bees.snbt
Normal file
File diff suppressed because it is too large
Load Diff
1703
config/ftbquests/quests/chapters/refined_storage.snbt
Normal file
1703
config/ftbquests/quests/chapters/refined_storage.snbt
Normal file
File diff suppressed because it is too large
Load Diff
1427
config/ftbquests/quests/chapters/silent_gear.snbt
Normal file
1427
config/ftbquests/quests/chapters/silent_gear.snbt
Normal file
File diff suppressed because it is too large
Load Diff
750
config/ftbquests/quests/chapters/steam_age.snbt
Normal file
750
config/ftbquests/quests/chapters/steam_age.snbt
Normal file
@ -0,0 +1,750 @@
|
||||
## This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 9.
|
||||
## As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.
|
||||
|
||||
{
|
||||
default_hide_dependency_lines: false
|
||||
default_quest_shape: ""
|
||||
filename: "steam_age"
|
||||
group: "1DA67E79B40AB130"
|
||||
icon: "gtceu:bronze_machine_casing"
|
||||
id: "435C9D14D471D326"
|
||||
order_index: 1
|
||||
progression_mode: "flexible"
|
||||
quest_links: [ ]
|
||||
quests: [
|
||||
{
|
||||
description: [
|
||||
"{atm9.quest.gregtech.desc.steamAgeIntro.1}"
|
||||
""
|
||||
"{atm9.quest.gregtech.desc.steamAgeIntro.2}"
|
||||
""
|
||||
"{atm9.quest.gregtech.desc.steamAgeIntro.3}"
|
||||
""
|
||||
"{atm9.quest.gregtech.desc.steamAgeIntro.4}"
|
||||
""
|
||||
"{atm9.quest.gregtech.desc.steamAgeIntro.5}"
|
||||
]
|
||||
icon: "alltheores:bronze_plate"
|
||||
id: "4DE719FC2E4C69AB"
|
||||
min_width: 250
|
||||
rewards: [{
|
||||
count: 4
|
||||
id: "11D5E446B48BCB06"
|
||||
item: "alltheores:bronze_plate"
|
||||
random_bonus: 8
|
||||
type: "item"
|
||||
}]
|
||||
size: 1.5d
|
||||
subtitle: "{atm9.quest.gregtech.subt.steamAgeBegin}"
|
||||
tasks: [{
|
||||
icon: "alltheores:bronze_plate"
|
||||
id: "107ADEF19CD50661"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "itemfilters:tag"
|
||||
tag: {
|
||||
value: "forge:plates/bronze"
|
||||
}
|
||||
}
|
||||
title: "{atm9.quest.gregtech.bronzePlate}"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.gregtech.theSteamAge}"
|
||||
x: -6.5d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["4DE719FC2E4C69AB"]
|
||||
description: [
|
||||
"{atm9.quest.gregtech.desc.boilerOperation.1}"
|
||||
""
|
||||
"{atm9.quest.gregtech.desc.boilerOperation.2}"
|
||||
""
|
||||
"{atm9.quest.gregtech.desc.boilerOperation.3}"
|
||||
""
|
||||
"{atm9.quest.gregtech.desc.boilerOperation.4}"
|
||||
]
|
||||
id: "672B308FD1DC0F45"
|
||||
min_width: 250
|
||||
rewards: [
|
||||
{
|
||||
id: "7987E2F8CE314F65"
|
||||
item: "minecraft:bricks"
|
||||
random_bonus: 2
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
count: 4
|
||||
id: "4A0AA6262881DDAC"
|
||||
item: "alltheores:bronze_plate"
|
||||
random_bonus: 4
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
subtitle: "{atm9.quest.gregtech.subt.gettingSteamy}"
|
||||
tasks: [{
|
||||
id: "2D783271D8830D0E"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "itemfilters:or"
|
||||
tag: {
|
||||
items: [
|
||||
{
|
||||
Count: 1b
|
||||
id: "gtceu:lp_steam_solid_boiler"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "gtceu:lp_steam_liquid_boiler"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "gtceu:hp_steam_solid_boiler"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "gtceu:hp_steam_liquid_boiler"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
title: "{atm9.quest.gregtech.anySteamBoiler}"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.gregtech.steamBoiler}"
|
||||
x: -4.0d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["672B308FD1DC0F45"]
|
||||
description: [
|
||||
"{atm9.quest.gregtech.desc.steamTransfer.1}"
|
||||
""
|
||||
"{atm9.quest.gregtech.desc.steamTransfer.2}"
|
||||
""
|
||||
"{atm9.quest.gregtech.desc.steamTransfer.3}"
|
||||
]
|
||||
id: "7F9131107E7F9AC8"
|
||||
rewards: [{
|
||||
count: 2
|
||||
id: "62C8841452E17861"
|
||||
item: "gtceu:bronze_small_fluid_pipe"
|
||||
random_bonus: 2
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "3CF902E6B1C242C6"
|
||||
item: "gtceu:bronze_small_fluid_pipe"
|
||||
type: "item"
|
||||
}]
|
||||
x: -2.0d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["7F9131107E7F9AC8"]
|
||||
description: [
|
||||
"{atm9.quest.gregtech.desc.fluidIngotProcessing.1}"
|
||||
""
|
||||
"{atm9.quest.gregtech.desc.fluidIngotProcessing.2}"
|
||||
]
|
||||
id: "48600733998CA349"
|
||||
rewards: [{
|
||||
exclude_from_claim_all: true
|
||||
id: "760218D52AB7047B"
|
||||
table_id: 4444697382338980938L
|
||||
type: "loot"
|
||||
}]
|
||||
subtitle: "{atm9.quest.gregtech.subt.fluidsAndMore}"
|
||||
tasks: [{
|
||||
id: "4A0FE858EDC3A2BA"
|
||||
item: "gtceu:lp_steam_extractor"
|
||||
type: "item"
|
||||
}]
|
||||
x: 0.0d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["7F9131107E7F9AC8"]
|
||||
description: [
|
||||
"{atm9.quest.gregtech.desc.maceratorIntro.1}"
|
||||
""
|
||||
"{atm9.quest.gregtech.desc.maceratorIntro.2}"
|
||||
]
|
||||
id: "0DA5BC8BA056B975"
|
||||
rewards: [{
|
||||
exclude_from_claim_all: true
|
||||
id: "530E6E0767EF6F79"
|
||||
table_id: 4444697382338980938L
|
||||
type: "loot"
|
||||
}]
|
||||
subtitle: "{atm9.quest.gregtech.subt.crushingAndGrinding}"
|
||||
tasks: [{
|
||||
id: "47A54220BCA6BC2C"
|
||||
item: "gtceu:lp_steam_macerator"
|
||||
type: "item"
|
||||
}]
|
||||
x: 0.0d
|
||||
y: -2.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["7F9131107E7F9AC8"]
|
||||
description: [
|
||||
"{atm9.quest.gregtech.desc.crushingAndGrinding.1}"
|
||||
""
|
||||
"{atm9.quest.gregtech.desc.crushingAndGrinding.2}"
|
||||
""
|
||||
"{atm9.quest.gregtech.desc.crushingAndGrinding.3}"
|
||||
]
|
||||
id: "60CD82B8DE0D0CFE"
|
||||
rewards: [{
|
||||
exclude_from_claim_all: true
|
||||
id: "4D54AC27062492A5"
|
||||
table_id: 4444697382338980938L
|
||||
type: "loot"
|
||||
}]
|
||||
subtitle: "{atm9.quest.gregtech.subt.pressItRealGood}"
|
||||
tasks: [{
|
||||
id: "326CC07CDB0FAA28"
|
||||
item: "gtceu:lp_steam_compressor"
|
||||
type: "item"
|
||||
}]
|
||||
x: 0.0d
|
||||
y: -1.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["7F9131107E7F9AC8"]
|
||||
description: [
|
||||
"{atm9.quest.gregtech.desc.forgeHammerUsage.1}"
|
||||
""
|
||||
"{atm9.quest.gregtech.desc.forgeHammerUsage.2}"
|
||||
]
|
||||
id: "3FE956C2968896DC"
|
||||
optional: true
|
||||
rewards: [{
|
||||
exclude_from_claim_all: true
|
||||
id: "4798DFD809E160E8"
|
||||
table_id: 4444697382338980938L
|
||||
type: "loot"
|
||||
}]
|
||||
shape: "diamond"
|
||||
subtitle: "{atm9.quest.gregtech.subt.usefulForSquishing}"
|
||||
tasks: [{
|
||||
id: "731F6F20A3582633"
|
||||
item: "gtceu:lp_steam_forge_hammer"
|
||||
type: "item"
|
||||
}]
|
||||
x: -1.5d
|
||||
y: 2.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["7F9131107E7F9AC8"]
|
||||
description: ["{atm9.quest.gregtech.desc.usefulForSquishing}"]
|
||||
id: "6F15619C8A07E78A"
|
||||
optional: true
|
||||
rewards: [{
|
||||
exclude_from_claim_all: true
|
||||
id: "52B12E2432C25FC4"
|
||||
table_id: 4444697382338980938L
|
||||
type: "loot"
|
||||
}]
|
||||
shape: "diamond"
|
||||
subtitle: "{atm9.quest.gregtech.subt.furnacesForEveryOccasion}"
|
||||
tasks: [{
|
||||
id: "3820B5F114B12CD5"
|
||||
item: "gtceu:lp_steam_furnace"
|
||||
type: "item"
|
||||
}]
|
||||
x: -2.0d
|
||||
y: 2.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["7F9131107E7F9AC8"]
|
||||
description: [
|
||||
"{atm9.quest.gregtech.desc.alloySmelterUsage.1}"
|
||||
""
|
||||
"{atm9.quest.gregtech.desc.alloySmelterUsage.2}"
|
||||
""
|
||||
"{atm9.quest.gregtech.desc.alloySmelterUsage.3}"
|
||||
""
|
||||
"{atm9.quest.gregtech.desc.alloySmelterUsage.4}"
|
||||
]
|
||||
id: "6ECBB6F5D0D99DEE"
|
||||
rewards: [{
|
||||
exclude_from_claim_all: true
|
||||
id: "613040F2C64344D1"
|
||||
table_id: 4444697382338980938L
|
||||
type: "loot"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "59A7DF75092E335E"
|
||||
item: "gtceu:lp_steam_alloy_smelter"
|
||||
type: "item"
|
||||
}]
|
||||
x: 0.0d
|
||||
y: 1.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["7F9131107E7F9AC8"]
|
||||
description: [
|
||||
"{atm9.quest.gregtech.desc.stoneCreation.1}"
|
||||
""
|
||||
"{atm9.quest.gregtech.desc.stoneCreation.2}"
|
||||
]
|
||||
id: "489B77B85B000B39"
|
||||
optional: true
|
||||
rewards: [{
|
||||
exclude_from_claim_all: true
|
||||
id: "4F255984F59E55A1"
|
||||
table_id: 4444697382338980938L
|
||||
type: "loot"
|
||||
}]
|
||||
shape: "diamond"
|
||||
tasks: [{
|
||||
id: "4B1AA0FF29878B0E"
|
||||
item: "gtceu:lp_steam_rock_crusher"
|
||||
type: "item"
|
||||
}]
|
||||
x: -2.5d
|
||||
y: 2.0d
|
||||
}
|
||||
{
|
||||
dependencies: [
|
||||
"73FC1166FBD6C30D"
|
||||
"506360EEA2268E82"
|
||||
"1E811D532BC593F2"
|
||||
"49D740C5B5EB593C"
|
||||
]
|
||||
description: [
|
||||
"{atm9.quest.gregtech.desc.lvMachines.1}"
|
||||
""
|
||||
"{atm9.quest.gregtech.desc.lvMachines.2}"
|
||||
""
|
||||
"{atm9.quest.gregtech.desc.lvMachines.3}"
|
||||
""
|
||||
"{atm9.quest.gregtech.desc.lvMachines.4}"
|
||||
]
|
||||
id: "219C80DAFBAB36B8"
|
||||
min_width: 250
|
||||
rewards: [
|
||||
{
|
||||
count: 4
|
||||
id: "684F5DBBBF4DCC8C"
|
||||
item: "gtceu:tin_single_cable"
|
||||
random_bonus: 4
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
count: 8
|
||||
id: "6C6F241F645EC187"
|
||||
item: "gtceu:basic_electronic_circuit"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
count: 2
|
||||
id: "05379BEF6C9E0574"
|
||||
item: "gtceu:lv_machine_hull"
|
||||
random_bonus: 2
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
shape: "gear"
|
||||
size: 1.5d
|
||||
subtitle: "{atm9.quest.gregtech.subt.finalBossSteam}"
|
||||
tasks: [{
|
||||
count: 32L
|
||||
id: "74CFECDB943C6F6C"
|
||||
item: "gtceu:basic_electronic_circuit"
|
||||
type: "item"
|
||||
}]
|
||||
x: 5.0d
|
||||
y: 3.0d
|
||||
}
|
||||
{
|
||||
description: [
|
||||
"{atm9.quest.gregtech.desc.rubberFarming.1}"
|
||||
""
|
||||
"{atm9.quest.gregtech.desc.rubberFarming.2}"
|
||||
]
|
||||
hide_dependency_lines: true
|
||||
id: "60069A897F2B0F78"
|
||||
rewards: [
|
||||
{
|
||||
id: "3D206EFD430BE865"
|
||||
item: "gtceu:rubber_sapling"
|
||||
random_bonus: 2
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
count: 4
|
||||
id: "3C7C21E0AD257BCE"
|
||||
item: "gtceu:sticky_resin"
|
||||
random_bonus: 4
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
count: 4
|
||||
id: "6CCB612632B6F1AA"
|
||||
item: "minecraft:slime_ball"
|
||||
random_bonus: 4
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
shape: "square"
|
||||
subtitle: "{atm9.quest.gregtech.subt.slimeFarm}"
|
||||
tasks: [{
|
||||
id: "6D9971A5B71CBD4F"
|
||||
item: "gtceu:sticky_resin"
|
||||
type: "item"
|
||||
}]
|
||||
x: 4.0d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
dependencies: [
|
||||
"48600733998CA349"
|
||||
"60069A897F2B0F78"
|
||||
]
|
||||
description: [
|
||||
"{atm9.quest.gregtech.desc.rubberTreeUses.1}"
|
||||
""
|
||||
"{atm9.quest.gregtech.desc.rubberTreeUses.2}"
|
||||
]
|
||||
id: "0D3DF9C8F742AE0D"
|
||||
rewards: [{
|
||||
count: 3
|
||||
id: "7A37EBF9E1EA60D7"
|
||||
item: "gtceu:raw_rubber_dust"
|
||||
random_bonus: 6
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "0C9EB5A9C4F84107"
|
||||
item: "gtceu:raw_rubber_dust"
|
||||
type: "item"
|
||||
}]
|
||||
x: 1.0d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["6ECBB6F5D0D99DEE"]
|
||||
description: [
|
||||
"{atm9.quest.gregtech.desc.glassTubeCreation.1}"
|
||||
""
|
||||
"{atm9.quest.gregtech.desc.glassTubeCreation.2}"
|
||||
]
|
||||
icon: "gtceu:glass_tube"
|
||||
id: "7A62C1B9385DF643"
|
||||
rewards: [{
|
||||
count: 2
|
||||
id: "094E4ABC1D1CF926"
|
||||
item: "gtceu:glass_dust"
|
||||
random_bonus: 2
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [
|
||||
{
|
||||
id: "7D6A7F80D911E032"
|
||||
item: "gtceu:ball_casting_mold"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "6EB6D2BE3ADAC972"
|
||||
item: "gtceu:glass_tube"
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "{atm9.quest.gregtech.glassTube}"
|
||||
x: 0.0d
|
||||
y: 3.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["7A62C1B9385DF643"]
|
||||
description: ["{atm9.quest.gregtech.desc.crtTelevisions}"]
|
||||
id: "506360EEA2268E82"
|
||||
rewards: [
|
||||
{
|
||||
exclude_from_claim_all: true
|
||||
id: "2DF5FF7E955C0404"
|
||||
table_id: 4444697382338980938L
|
||||
type: "loot"
|
||||
}
|
||||
{
|
||||
count: 2
|
||||
id: "11BFF788180FEAFC"
|
||||
item: "gtceu:steel_bolt"
|
||||
random_bonus: 4
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
tasks: [{
|
||||
id: "27C43F4FBE72C8EA"
|
||||
item: "gtceu:vacuum_tube"
|
||||
type: "item"
|
||||
}]
|
||||
x: 3.5d
|
||||
y: 3.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["60069A897F2B0F78"]
|
||||
description: ["{atm9.quest.gregtech.desc.resistorCrafting}"]
|
||||
id: "73FC1166FBD6C30D"
|
||||
rewards: [
|
||||
{
|
||||
exclude_from_claim_all: true
|
||||
id: "47EBCBABACD056C8"
|
||||
table_id: 4444697382338980938L
|
||||
type: "loot"
|
||||
}
|
||||
{
|
||||
count: 4
|
||||
id: "00E177F0C36E89F9"
|
||||
item: "gtceu:copper_single_wire"
|
||||
random_bonus: 4
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
subtitle: "{atm9.quest.gregtech.subt.ohmmmm}"
|
||||
tasks: [{
|
||||
id: "64598EA96BFA992A"
|
||||
item: "gtceu:resistor"
|
||||
type: "item"
|
||||
}]
|
||||
x: 4.0d
|
||||
y: 1.0d
|
||||
}
|
||||
{
|
||||
dependencies: [
|
||||
"0D3DF9C8F742AE0D"
|
||||
"6ECBB6F5D0D99DEE"
|
||||
]
|
||||
description: [
|
||||
"{atm9.quest.gregtech.desc.sulfurAcquisition.1}"
|
||||
""
|
||||
"{atm9.quest.gregtech.desc.sulfurAcquisition.2}"
|
||||
]
|
||||
icon: "gtceu:rubber_ingot"
|
||||
id: "71B1416A45FBBE40"
|
||||
rewards: [
|
||||
{
|
||||
id: "785274FE73892E39"
|
||||
item: "gtceu:rubber_ingot"
|
||||
random_bonus: 2
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "4F57BD95D084CD38"
|
||||
item: "chemlib:sulfur_dust"
|
||||
random_bonus: 2
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
tasks: [
|
||||
{
|
||||
id: "48C19477CB216AD4"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "itemfilters:tag"
|
||||
tag: {
|
||||
value: "forge:dusts/sulfur"
|
||||
}
|
||||
}
|
||||
title: "{atm9.quest.gregtech.sulfurDust}"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "7E516EDDAA975CC8"
|
||||
item: "gtceu:rubber_ingot"
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "{atm9.quest.gregtech.rubber}"
|
||||
x: 1.0d
|
||||
y: 1.0d
|
||||
}
|
||||
{
|
||||
dependencies: [
|
||||
"60CD82B8DE0D0CFE"
|
||||
"30DA40DA0CEB05A0"
|
||||
]
|
||||
description: ["{atm9.quest.gregtech.desc.woodenDustCompression}"]
|
||||
id: "57B4881AA36A1D76"
|
||||
rewards: [{
|
||||
id: "668BD43798C5A151"
|
||||
item: "gtceu:wood_plate"
|
||||
random_bonus: 2
|
||||
type: "item"
|
||||
}]
|
||||
subtitle: "{atm9.quest.gregtech.subt.plywood}"
|
||||
tasks: [{
|
||||
id: "61098A8012A228F5"
|
||||
item: "gtceu:wood_plate"
|
||||
type: "item"
|
||||
}]
|
||||
x: 1.0d
|
||||
y: -1.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["0DA5BC8BA056B975"]
|
||||
description: ["{atm9.quest.gregtech.desc.woodDustProduction}"]
|
||||
id: "30DA40DA0CEB05A0"
|
||||
rewards: [{
|
||||
count: 2
|
||||
id: "10836E8996839998"
|
||||
item: "gtceu:wood_dust"
|
||||
random_bonus: 2
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "0160C43AF8C68BDA"
|
||||
item: "gtceu:wood_dust"
|
||||
type: "item"
|
||||
}]
|
||||
x: 1.0d
|
||||
y: -2.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["71B1416A45FBBE40"]
|
||||
description: [
|
||||
"{atm9.quest.gregtech.desc.rubberSheetProduction.1}"
|
||||
""
|
||||
"{atm9.quest.gregtech.desc.rubberSheetProduction.2}"
|
||||
]
|
||||
icon: "gtceu:rubber_plate"
|
||||
id: "6CE157D05F59A994"
|
||||
rewards: [{
|
||||
id: "49F77B7C44DA42D0"
|
||||
item: "gtceu:rubber_ingot"
|
||||
random_bonus: 2
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [
|
||||
{
|
||||
id: "61B056192AC9B3D6"
|
||||
item: "gtceu:rubber_plate"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "11BCA8CFBA47D094"
|
||||
item: "gtceu:plate_casting_mold"
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
x: 2.0d
|
||||
y: 1.0d
|
||||
}
|
||||
{
|
||||
dependencies: [
|
||||
"60069A897F2B0F78"
|
||||
"57B4881AA36A1D76"
|
||||
]
|
||||
id: "3BEE6BE4F91FA1B0"
|
||||
rewards: [{
|
||||
id: "291A0BDB657730E2"
|
||||
item: "gtceu:resin_circuit_board"
|
||||
random_bonus: 2
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "1F521DD245848DC5"
|
||||
item: "gtceu:resin_circuit_board"
|
||||
type: "item"
|
||||
}]
|
||||
x: 5.0d
|
||||
y: -1.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["3BEE6BE4F91FA1B0"]
|
||||
description: ["{atm9.quest.gregtech.desc.breadboards}"]
|
||||
id: "1E811D532BC593F2"
|
||||
rewards: [{
|
||||
exclude_from_claim_all: true
|
||||
id: "0AF278948C957669"
|
||||
table_id: 4444697382338980938L
|
||||
type: "loot"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "6159C8627548752D"
|
||||
item: "gtceu:resin_printed_circuit_board"
|
||||
type: "item"
|
||||
}]
|
||||
x: 5.0d
|
||||
y: 0.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["4DE719FC2E4C69AB"]
|
||||
description: [
|
||||
"{atm9.quest.gregtech.desc.automationAdvice.1}"
|
||||
""
|
||||
"{atm9.quest.gregtech.desc.automationAdvice.2}"
|
||||
"{atm9.quest.gregtech.desc.automationAdvice.3}"
|
||||
"{atm9.quest.gregtech.desc.automationAdvice.4}"
|
||||
"{atm9.quest.gregtech.desc.automationAdvice.5}"
|
||||
""
|
||||
"{atm9.quest.gregtech.desc.automationAdvice.6}"
|
||||
""
|
||||
"{atm9.quest.gregtech.desc.automationAdvice.7}"
|
||||
""
|
||||
"{atm9.quest.gregtech.desc.automationAdvice.8}"
|
||||
""
|
||||
"{atm9.quest.gregtech.desc.automationAdvice.9}"
|
||||
]
|
||||
id: "12F916CDC2FB7A79"
|
||||
min_width: 350
|
||||
rewards: [{
|
||||
id: "31599B5243F888C0"
|
||||
type: "xp"
|
||||
xp: 10
|
||||
}]
|
||||
tasks: [{
|
||||
id: "6C841FAADFD094AC"
|
||||
title: "{atm9.quest.gregtech.automation}"
|
||||
type: "checkmark"
|
||||
}]
|
||||
x: -6.5d
|
||||
y: -2.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["6ECBB6F5D0D99DEE"]
|
||||
description: ["{atm9.quest.gregtech.desc.copperIngotCrafting}"]
|
||||
id: "3302A9306CAD659A"
|
||||
rewards: [{
|
||||
exclude_from_claim_all: true
|
||||
id: "3B3B4D9925B69097"
|
||||
table_id: 4444697382338980938L
|
||||
type: "loot"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "4F21E8821A465876"
|
||||
item: "gtceu:red_alloy_ingot"
|
||||
type: "item"
|
||||
}]
|
||||
x: 1.0d
|
||||
y: 2.0d
|
||||
}
|
||||
{
|
||||
dependencies: [
|
||||
"3302A9306CAD659A"
|
||||
"6CE157D05F59A994"
|
||||
]
|
||||
description: ["{atm9.quest.gregtech.desc.redAlloyCableCrafting}"]
|
||||
id: "49D740C5B5EB593C"
|
||||
rewards: [{
|
||||
exclude_from_claim_all: true
|
||||
id: "393B393299331031"
|
||||
table_id: 4444697382338980938L
|
||||
type: "loot"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "31DEB8892D2B486F"
|
||||
item: "gtceu:red_alloy_single_cable"
|
||||
type: "item"
|
||||
}]
|
||||
x: 3.0d
|
||||
y: 2.0d
|
||||
}
|
||||
]
|
||||
title: "{atm9.chapters.26.title}"
|
||||
}
|
||||
|
||||
## This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 9.
|
||||
## As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.
|
1837
config/ftbquests/quests/chapters/storage.snbt
Normal file
1837
config/ftbquests/quests/chapters/storage.snbt
Normal file
File diff suppressed because it is too large
Load Diff
1788
config/ftbquests/quests/chapters/thermal_expansion.snbt
Normal file
1788
config/ftbquests/quests/chapters/thermal_expansion.snbt
Normal file
File diff suppressed because it is too large
Load Diff
607
config/ftbquests/quests/chapters/tips_and_tricks.snbt
Normal file
607
config/ftbquests/quests/chapters/tips_and_tricks.snbt
Normal file
@ -0,0 +1,607 @@
|
||||
## This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 9.
|
||||
## As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.
|
||||
|
||||
{
|
||||
default_hide_dependency_lines: false
|
||||
default_quest_shape: "diamond"
|
||||
filename: "tips_and_tricks"
|
||||
group: ""
|
||||
id: "1BE666F01EFFC00D"
|
||||
images: [{
|
||||
click: ""
|
||||
corner: false
|
||||
dev: false
|
||||
height: 3.0d
|
||||
hover: [ ]
|
||||
image: "atm:textures/questpics/tips_and_tricks.png"
|
||||
rotation: 0.0d
|
||||
width: 12.0d
|
||||
x: 1.0d
|
||||
y: 1.0d
|
||||
}]
|
||||
order_index: 3
|
||||
progression_mode: "flexible"
|
||||
quest_links: [ ]
|
||||
quests: [
|
||||
{
|
||||
description: ["{atm9.quest.tips.desc.sink}"]
|
||||
id: "722978AC0C1B2649"
|
||||
rewards: [
|
||||
{
|
||||
id: "145F9B3A17676EAA"
|
||||
item: "pipez:fluid_pipe"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "1159FE6CDF262C46"
|
||||
type: "xp"
|
||||
xp: 10
|
||||
}
|
||||
]
|
||||
subtitle: "{atm9.quest.tips.subt.sink}"
|
||||
tasks: [{
|
||||
id: "6855AE257D62AA37"
|
||||
item: "cookingforblockheads:sink"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.tips.sink}"
|
||||
x: 3.0d
|
||||
y: 6.0d
|
||||
}
|
||||
{
|
||||
description: ["{atm9.quest.tips.desc.shrink}"]
|
||||
id: "7EC8814940C4C3D7"
|
||||
rewards: [
|
||||
{
|
||||
id: "156D559B0B56BA9A"
|
||||
type: "xp"
|
||||
xp: 10
|
||||
}
|
||||
{
|
||||
exclude_from_claim_all: true
|
||||
id: "6BCF264E89365C5D"
|
||||
table_id: 487623848494439020L
|
||||
type: "random"
|
||||
}
|
||||
]
|
||||
shape: "diamond"
|
||||
subtitle: "{atm9.quest.tips.subt.shrink}"
|
||||
tasks: [{
|
||||
id: "30C938C85BED7956"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "shrink:shrinking_device"
|
||||
tag: { }
|
||||
}
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.tips.shrink}"
|
||||
x: 1.5d
|
||||
y: 8.0d
|
||||
}
|
||||
{
|
||||
description: ["{atm9.quest.tips.desc.sleep}"]
|
||||
id: "14C8FC3F19190054"
|
||||
rewards: [
|
||||
{
|
||||
count: 2
|
||||
id: "34037270BA530831"
|
||||
item: "comforts:rope_and_nail"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "0CA8B7411485A9D0"
|
||||
type: "xp"
|
||||
xp: 10
|
||||
}
|
||||
]
|
||||
subtitle: "{atm9.quest.tips.subt.sleep}"
|
||||
tasks: [
|
||||
{
|
||||
id: "51AA3A27028426C5"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "itemfilters:or"
|
||||
tag: {
|
||||
items: [
|
||||
{
|
||||
Count: 1b
|
||||
id: "comforts:hammock_white"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "comforts:hammock_orange"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "comforts:hammock_magenta"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "comforts:hammock_light_blue"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "comforts:hammock_yellow"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "comforts:hammock_lime"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "comforts:hammock_pink"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "comforts:hammock_gray"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "comforts:hammock_light_gray"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "comforts:hammock_cyan"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "comforts:hammock_purple"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "comforts:hammock_blue"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "comforts:hammock_brown"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "comforts:hammock_green"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "comforts:hammock_red"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "comforts:hammock_black"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
title: "Hammock"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "04903282E935F3D3"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "itemfilters:or"
|
||||
tag: {
|
||||
items: [
|
||||
{
|
||||
Count: 1b
|
||||
id: "comforts:sleeping_bag_white"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "comforts:sleeping_bag_orange"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "comforts:sleeping_bag_magenta"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "comforts:sleeping_bag_light_blue"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "comforts:sleeping_bag_yellow"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "comforts:sleeping_bag_lime"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "comforts:sleeping_bag_pink"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "comforts:sleeping_bag_gray"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "comforts:sleeping_bag_cyan"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "comforts:sleeping_bag_light_gray"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "comforts:sleeping_bag_purple"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "comforts:sleeping_bag_blue"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "comforts:sleeping_bag_brown"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "comforts:sleeping_bag_green"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "comforts:sleeping_bag_red"
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "comforts:sleeping_bag_black"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
title: "Sleeping Bags"
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "{atm9.quest.tips.sleep}"
|
||||
x: 3.0d
|
||||
y: 5.0d
|
||||
}
|
||||
{
|
||||
description: ["{atm9.quest.tips.desc.belt}"]
|
||||
id: "378C95C18798D413"
|
||||
rewards: [
|
||||
{
|
||||
count: 2
|
||||
id: "40BCE4D56FE98018"
|
||||
item: "toolbelt:pouch"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "4E495FC797AED7A4"
|
||||
type: "xp"
|
||||
xp: 10
|
||||
}
|
||||
]
|
||||
tasks: [{
|
||||
id: "7FD9A02EA29669F6"
|
||||
item: "toolbelt:belt"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.tips.belt}"
|
||||
x: 2.5d
|
||||
y: 5.5d
|
||||
}
|
||||
{
|
||||
description: ["{atm9.quest.tips.desc.wand}"]
|
||||
id: "2A2E3D020B1F5126"
|
||||
rewards: [{
|
||||
id: "03F64743F4F59499"
|
||||
type: "xp"
|
||||
xp: 10
|
||||
}]
|
||||
tasks: [{
|
||||
id: "176150A0FE674662"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "itemfilters:or"
|
||||
tag: {
|
||||
items: [
|
||||
{
|
||||
Count: 1b
|
||||
id: "constructionwand:stone_wand"
|
||||
tag: {
|
||||
Damage: 0
|
||||
wand_options: { }
|
||||
}
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "constructionwand:iron_wand"
|
||||
tag: {
|
||||
Damage: 0
|
||||
wand_options: { }
|
||||
}
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "constructionwand:diamond_wand"
|
||||
tag: {
|
||||
Damage: 0
|
||||
wand_options: { }
|
||||
}
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "constructionwand:infinity_wand"
|
||||
tag: {
|
||||
wand_options: { }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
title: "Construction Wands"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.tips.wand}"
|
||||
x: 0.5d
|
||||
y: 8.0d
|
||||
}
|
||||
{
|
||||
dependencies: [
|
||||
"722978AC0C1B2649"
|
||||
"7EC8814940C4C3D7"
|
||||
"14C8FC3F19190054"
|
||||
"378C95C18798D413"
|
||||
"2A2E3D020B1F5126"
|
||||
"05F186C95510BD4B"
|
||||
"0060BCEDABC9BE2E"
|
||||
]
|
||||
hide_dependency_lines: true
|
||||
id: "0F8F37D7E12078F5"
|
||||
rewards: [{
|
||||
id: "032158E75A1291D8"
|
||||
type: "xp"
|
||||
xp: 10
|
||||
}]
|
||||
shape: "circle"
|
||||
subtitle: "{atm9.quest.tips.subt.tipped_out}"
|
||||
tasks: [{
|
||||
id: "42DA8E971B27ACED"
|
||||
type: "checkmark"
|
||||
}]
|
||||
title: "{atm9.quest.tips.tipped_out}"
|
||||
x: 1.0d
|
||||
y: 5.5d
|
||||
}
|
||||
{
|
||||
description: ["{atm9.quest.tips.desc.tricks}"]
|
||||
id: "0C856BBB1679A7DD"
|
||||
rewards: [{
|
||||
id: "5FA6EA3609ABF6BE"
|
||||
type: "xp"
|
||||
xp: 10
|
||||
}]
|
||||
shape: "hexagon"
|
||||
size: 2.0d
|
||||
subtitle: "{atm9.quest.tips.subt.tricks}"
|
||||
tasks: [{
|
||||
id: "3DC008A578A93CCF"
|
||||
title: "Tips and Tricks!"
|
||||
type: "checkmark"
|
||||
}]
|
||||
title: "{atm9.quest.tips.tricks}"
|
||||
x: 1.0d
|
||||
y: 3.0d
|
||||
}
|
||||
{
|
||||
description: ["{atm9.quest.tips.desc.magnet}"]
|
||||
id: "3FC002E5A6C08DCC"
|
||||
rewards: [
|
||||
{
|
||||
id: "0F5B656ED410D441"
|
||||
type: "xp"
|
||||
xp: 10
|
||||
}
|
||||
{
|
||||
exclude_from_claim_all: true
|
||||
id: "36D0962726704052"
|
||||
table_id: 487623848494439020L
|
||||
type: "random"
|
||||
}
|
||||
]
|
||||
subtitle: "{atm9.quest.tips.subt.magnet}"
|
||||
tasks: [{
|
||||
id: "27CB2988681DB62C"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "itemfilters:or"
|
||||
tag: {
|
||||
items: [
|
||||
{
|
||||
Count: 1b
|
||||
id: "simplemagnets:basicmagnet"
|
||||
tag: { }
|
||||
}
|
||||
{
|
||||
Count: 1b
|
||||
id: "simplemagnets:advancedmagnet"
|
||||
tag: { }
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
title: "Simple Magnets"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.tips.magnet}"
|
||||
x: 1.0d
|
||||
y: 7.5d
|
||||
}
|
||||
{
|
||||
description: ["{atm9.quest.tips.desc.compass}"]
|
||||
id: "70B6C9409AE69284"
|
||||
rewards: [
|
||||
{
|
||||
id: "554BFA90C78DEDD5"
|
||||
type: "xp"
|
||||
xp: 10
|
||||
}
|
||||
{
|
||||
exclude_from_claim_all: true
|
||||
id: "262AC9191FD415A3"
|
||||
table_id: 487623848494439020L
|
||||
type: "random"
|
||||
}
|
||||
]
|
||||
subtitle: "{atm9.quest.tips.subt.compass}"
|
||||
tasks: [{
|
||||
id: "595B3FA9F32B712D"
|
||||
item: {
|
||||
Count: 1b
|
||||
id: "naturescompass:naturescompass"
|
||||
tag: { }
|
||||
}
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.tips.compass}"
|
||||
x: 1.0d
|
||||
y: 8.5d
|
||||
}
|
||||
{
|
||||
description: ["{atm9.quest.tips.desc.mobs}"]
|
||||
id: "05F186C95510BD4B"
|
||||
rewards: [
|
||||
{
|
||||
id: "2EA020DC0A263031"
|
||||
type: "xp"
|
||||
xp: 10
|
||||
}
|
||||
{
|
||||
exclude_from_claim_all: true
|
||||
id: "466A0AFE85E7A5D4"
|
||||
table_id: 487623848494439020L
|
||||
type: "random"
|
||||
}
|
||||
]
|
||||
tasks: [{
|
||||
id: "6418A273A57B203C"
|
||||
item: "torchmaster:megatorch"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.tips.mobs}"
|
||||
x: -1.0d
|
||||
y: 5.0d
|
||||
}
|
||||
{
|
||||
description: ["{atm9.quest.tips.desc.exp}"]
|
||||
id: "0060BCEDABC9BE2E"
|
||||
rewards: [{
|
||||
id: "57949E0DF2C7478A"
|
||||
item: "minecraft:experience_bottle"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [{
|
||||
id: "189B87AF99321862"
|
||||
item: "utilitix:experience_crystal"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{atm9.quest.tips.exp}"
|
||||
x: -1.0d
|
||||
y: 6.0d
|
||||
}
|
||||
{
|
||||
description: ["{atm9.quest.tips.desc.stick}"]
|
||||
id: "0790D3BB481162A6"
|
||||
rewards: [{
|
||||
id: "2D7265C36210BDDB"
|
||||
type: "xp"
|
||||
xp: 10
|
||||
}]
|
||||
tasks: [
|
||||
{
|
||||
id: "6038387EA35404CD"
|
||||
item: "crafting_on_a_stick:crafting_table"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "0BF4F9C40FF717DE"
|
||||
item: "crafting_on_a_stick:smithing_table"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "405411318EA7A80C"
|
||||
item: "crafting_on_a_stick:anvil"
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "{atm9.quest.tips.stick}"
|
||||
x: -0.5d
|
||||
y: 5.5d
|
||||
}
|
||||
{
|
||||
description: ["{atm9.quest.tips.desc.powah}"]
|
||||
icon: "mekanismgenerators:gas_burning_generator"
|
||||
id: "437AF6A8A63413A8"
|
||||
rewards: [{
|
||||
id: "4CDC7F753855B46A"
|
||||
type: "xp"
|
||||
xp: 10
|
||||
}]
|
||||
subtitle: "{atm9.quest.tips.subt.powah}"
|
||||
tasks: [{
|
||||
id: "2C621D97D1ED56DE"
|
||||
title: "RF Generation"
|
||||
type: "checkmark"
|
||||
}]
|
||||
title: "{atm9.quest.tips.powah}"
|
||||
x: 5.5d
|
||||
y: 6.0d
|
||||
}
|
||||
{
|
||||
description: ["{atm9.quest.tips.desc.mahou}"]
|
||||
icon: {
|
||||
Count: 1b
|
||||
ForgeCaps: {
|
||||
Parent: {
|
||||
MAHOUTSUKAI_ATTACK_CAP: 0.0d
|
||||
MAHOUTSUKAI_ATTACK_DAMAGE: 0.0f
|
||||
}
|
||||
}
|
||||
id: "mahoutsukai:morgan"
|
||||
tag: {
|
||||
Damage: 0
|
||||
}
|
||||
}
|
||||
id: "51CEE80605BFF40C"
|
||||
rewards: [{
|
||||
id: "2E8A795741E4854D"
|
||||
type: "xp"
|
||||
xp: 10
|
||||
}]
|
||||
subtitle: "{atm9.quest.tips.subt.mahou}"
|
||||
tasks: [{
|
||||
id: "655D747AB2AECCF2"
|
||||
title: "Mahou Tsukai"
|
||||
type: "checkmark"
|
||||
}]
|
||||
title: "{atm9.quest.tips.mahou}"
|
||||
x: 5.0d
|
||||
y: 5.5d
|
||||
}
|
||||
{
|
||||
description: ["{atm9.quest.tips.desc.spawner}"]
|
||||
icon: "minecraft:spawner"
|
||||
id: "600CFCF3612AEE9A"
|
||||
min_width: 370
|
||||
rewards: [{
|
||||
id: "50C8D9EC8D53EB82"
|
||||
type: "xp"
|
||||
xp: 10
|
||||
}]
|
||||
subtitle: "{atm9.quest.tips.subt.spawner}"
|
||||
tasks: [{
|
||||
id: "30F1C1BC1AD18EA5"
|
||||
title: "Apotheosis"
|
||||
type: "checkmark"
|
||||
}]
|
||||
title: "{atm9.quest.tips.spawner}"
|
||||
x: 5.5d
|
||||
y: 5.0d
|
||||
}
|
||||
]
|
||||
title: "{atm9.chapters.4.title}"
|
||||
}
|
||||
|
||||
## This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 9.
|
||||
## As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.
|
2300
config/ftbquests/quests/chapters/twilight_forest.snbt
Normal file
2300
config/ftbquests/quests/chapters/twilight_forest.snbt
Normal file
File diff suppressed because it is too large
Load Diff
2078
config/ftbquests/quests/chapters/ultimate_voltage.snbt
Normal file
2078
config/ftbquests/quests/chapters/ultimate_voltage.snbt
Normal file
File diff suppressed because it is too large
Load Diff
1168
config/ftbquests/quests/chapters/ultra_high_voltage.snbt
Normal file
1168
config/ftbquests/quests/chapters/ultra_high_voltage.snbt
Normal file
File diff suppressed because it is too large
Load Diff
182
config/ftbquests/quests/chapters/welcome.snbt
Normal file
182
config/ftbquests/quests/chapters/welcome.snbt
Normal file
@ -0,0 +1,182 @@
|
||||
## This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 9.
|
||||
## As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.
|
||||
|
||||
{
|
||||
default_hide_dependency_lines: false
|
||||
default_quest_shape: ""
|
||||
filename: "welcome"
|
||||
group: ""
|
||||
icon: "allthetweaks:atm_star"
|
||||
id: "5B00676D79306EA2"
|
||||
images: [
|
||||
{
|
||||
click: ""
|
||||
corner: true
|
||||
dev: false
|
||||
height: 5.0d
|
||||
hover: [ ]
|
||||
image: "packmenu:textures/gui/logo.png"
|
||||
rotation: 8.0d
|
||||
width: 5.0d
|
||||
x: 0.0d
|
||||
y: -4.5d
|
||||
}
|
||||
{
|
||||
click: "https://discord.gg/3paFjuRfz9"
|
||||
corner: false
|
||||
dev: false
|
||||
height: 1.0d
|
||||
hover: ["Join the Discord!"]
|
||||
image: "ftbchunks:textures/waypoint_default.png"
|
||||
rotation: 0.0d
|
||||
width: 1.0d
|
||||
x: 0.0d
|
||||
y: 1.5d
|
||||
}
|
||||
]
|
||||
order_index: 0
|
||||
progression_mode: "flexible"
|
||||
quest_links: [ ]
|
||||
quests: [
|
||||
{
|
||||
description: [
|
||||
"{atm9.quest.welcome.desc.welcome1}"
|
||||
""
|
||||
"{atm9.quest.welcome.desc.welcome2}"
|
||||
""
|
||||
"{atm9.quest.welcome.desc.welcome3}"
|
||||
]
|
||||
icon: "allthetweaks:atm_star"
|
||||
id: "3BC0A50886A3222B"
|
||||
rewards: [{
|
||||
id: "4956CB79E44FB523"
|
||||
type: "xp"
|
||||
xp: 10
|
||||
}]
|
||||
shape: "diamond"
|
||||
size: 3.0d
|
||||
tasks: [{
|
||||
id: "5A1784C5676CDC62"
|
||||
title: "Welcome to All The Mods 9!"
|
||||
type: "checkmark"
|
||||
}]
|
||||
title: "{atm9.quest.welcome.welcome}"
|
||||
x: 0.0d
|
||||
y: -0.5d
|
||||
}
|
||||
{
|
||||
description: [
|
||||
"{atm9.quest.welcome.desc.quests1}"
|
||||
""
|
||||
"{atm9.quest.welcome.desc.quests2}"
|
||||
""
|
||||
"{atm9.quest.welcome.desc.quests3}"
|
||||
]
|
||||
icon: "ftbquests:book"
|
||||
id: "3708A4780ACEB34E"
|
||||
min_width: 250
|
||||
rewards: [{
|
||||
id: "4A56DF6E0204666C"
|
||||
type: "xp"
|
||||
xp: 10
|
||||
}]
|
||||
shape: "rsquare"
|
||||
size: 1.5d
|
||||
tasks: [{
|
||||
id: "52BB142F044075B4"
|
||||
title: "Quests"
|
||||
type: "checkmark"
|
||||
}]
|
||||
title: "{atm9.quest.welcome.quests}"
|
||||
x: 2.5d
|
||||
y: -0.5d
|
||||
}
|
||||
{
|
||||
description: ["{atm9.quest.welcome.desc.commands}"]
|
||||
icon: {
|
||||
Count: 1b
|
||||
id: "ftbquests:custom_icon"
|
||||
tag: {
|
||||
Icon: "ftbteams:textures/settings.png"
|
||||
}
|
||||
}
|
||||
id: "7658C1C663394E85"
|
||||
min_width: 350
|
||||
rewards: [{
|
||||
id: "5007C73E170C4FF6"
|
||||
type: "xp"
|
||||
xp: 10
|
||||
}]
|
||||
shape: "rsquare"
|
||||
size: 1.5d
|
||||
tasks: [{
|
||||
id: "10A16F89D4AD238D"
|
||||
title: "Useful Commands"
|
||||
type: "checkmark"
|
||||
}]
|
||||
title: "{atm9.quest.welcome.commands}"
|
||||
x: -2.5d
|
||||
y: -0.5d
|
||||
}
|
||||
{
|
||||
description: [
|
||||
"{atm9.quest.welcome.desc.claims1}"
|
||||
""
|
||||
"{atm9.quest.welcome.desc.claims2}"
|
||||
""
|
||||
"{atm9.quest.welcome.desc.claims3}"
|
||||
]
|
||||
icon: {
|
||||
Count: 1b
|
||||
id: "ftbquests:custom_icon"
|
||||
tag: {
|
||||
Icon: "ftbchunks:textures/waypoint_home.png"
|
||||
}
|
||||
}
|
||||
id: "0C93D7A607AB8B83"
|
||||
rewards: [{
|
||||
id: "1B044C35466AFAEF"
|
||||
type: "xp"
|
||||
xp: 10
|
||||
}]
|
||||
size: 1.5d
|
||||
tasks: [{
|
||||
id: "103C42C743E2A2DB"
|
||||
title: "Claiming Chunks"
|
||||
type: "checkmark"
|
||||
}]
|
||||
title: "{atm9.quest.welcome.claims}"
|
||||
x: 4.5d
|
||||
y: -0.5d
|
||||
}
|
||||
{
|
||||
description: ["{atm9.quest.welcome.desc.team}"]
|
||||
icon: {
|
||||
Count: 1b
|
||||
id: "ftbquests:custom_icon"
|
||||
tag: {
|
||||
Icon: "ftbteams:textures/teams.png"
|
||||
}
|
||||
}
|
||||
id: "5AC1BE754210429E"
|
||||
rewards: [{
|
||||
id: "101D2FD24AB845AC"
|
||||
type: "xp"
|
||||
xp: 10
|
||||
}]
|
||||
size: 1.5d
|
||||
tasks: [{
|
||||
id: "4F13A02FB0055A62"
|
||||
title: "Creating a Team"
|
||||
type: "checkmark"
|
||||
}]
|
||||
title: "{atm9.quest.welcome.team}"
|
||||
x: -4.5d
|
||||
y: -0.5d
|
||||
}
|
||||
]
|
||||
title: "{atm9.chapters.1.title}"
|
||||
}
|
||||
|
||||
## This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 9.
|
||||
## As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.
|
2023
config/ftbquests/quests/chapters/zero_point_module.snbt
Normal file
2023
config/ftbquests/quests/chapters/zero_point_module.snbt
Normal file
File diff suppressed because it is too large
Load Diff
23
config/ftbquests/quests/data.snbt
Normal file
23
config/ftbquests/quests/data.snbt
Normal file
@ -0,0 +1,23 @@
|
||||
{
|
||||
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_loot_crates: false
|
||||
emergency_items_cooldown: 300
|
||||
grid_scale: 0.5d
|
||||
icon: "allthetweaks:atm_star"
|
||||
lock_message: ""
|
||||
loot_crate_no_drop: {
|
||||
boss: 0
|
||||
monster: 600
|
||||
passive: 4000
|
||||
}
|
||||
pause_game: false
|
||||
progression_mode: "flexible"
|
||||
title: "All the Mods 9"
|
||||
version: 13
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user