config: generators galore

This commit is contained in:
Snogard 2025-02-09 17:12:41 +01:00
parent 60d4ea659b
commit 5a28b3b2de
15 changed files with 118 additions and 115 deletions

0
config/generatorgalore/defaults.lock Executable file → Normal file
View File

13
config/generatorgalore/generators/copper.json Executable file → Normal file
View File

@ -1,7 +1,8 @@
{ {
"generationRate": 20, "generationRate": 8,
"transferRate": 40, "transferRate": 32,
"consumptionRate": 1.2, "hasChargeSlot": false,
"bufferCapacity": 5000, "consumptionRate": 1.2,
"fuelType": "SOLID" "bufferCapacity": 5000,
"fuelType": "SOLID"
} }

14
config/generatorgalore/generators/culinary.json Executable file → Normal file
View File

@ -1,8 +1,8 @@
{ {
"generationRate": 10, "generationRate": 8,
"transferRate": 512, "transferRate": 256,
"consumptionRate": 1, "consumptionRate": 1,
"previousTier": "gold", "previousTier": "gold",
"bufferCapacity": 100000, "bufferCapacity": 100000,
"fuelType": "FOOD" "fuelType": "FOOD"
} }

14
config/generatorgalore/generators/diamond.json Executable file → Normal file
View File

@ -1,8 +1,8 @@
{ {
"generationRate": 160, "generationRate": 64,
"transferRate": 512, "transferRate": 256,
"consumptionRate": 0.6, "consumptionRate": 0.6,
"previousTier": "gold", "previousTier": "gold",
"bufferCapacity": 100000, "bufferCapacity": 100000,
"fuelType": "SOLID" "fuelType": "SOLID"
} }

14
config/generatorgalore/generators/emerald.json Executable file → Normal file
View File

@ -1,8 +1,8 @@
{ {
"generationRate": 300, "generationRate": 256,
"transferRate": 1200, "transferRate": 512,
"consumptionRate": 0.4, "consumptionRate": 0.4,
"previousTier": "diamond", "previousTier": "diamond",
"bufferCapacity": 500000, "bufferCapacity": 500000,
"fuelType": "SOLID" "fuelType": "SOLID"
} }

14
config/generatorgalore/generators/enchantment.json Executable file → Normal file
View File

@ -1,8 +1,8 @@
{ {
"generationRate": 500, "generationRate": 40,
"transferRate": 1024, "transferRate": 1024,
"consumptionRate": 1, "consumptionRate": 1,
"previousTier": "obsidian", "previousTier": "obsidian",
"bufferCapacity": 1000000, "bufferCapacity": 1000000,
"fuelType": "ENCHANTMENT" "fuelType": "ENCHANTMENT"
} }

34
config/generatorgalore/generators/ender.json Executable file → Normal file
View File

@ -1,18 +1,18 @@
{ {
"generationRate": 300, "generationRate": 40,
"transferRate": 1200, "transferRate": 512,
"consumptionRate": 1, "consumptionRate": 1,
"previousTier": "obsidian", "previousTier": "obsidian",
"bufferCapacity": 500000, "bufferCapacity": 500000,
"fuelList": [ "fuelList": [
{ {
"item": "minecraft:ender_pearl", "item": "minecraft:ender_pearl",
"burnTime": 1600 "burnTime": 1600
}, },
{ {
"item": "minecraft:ender_eye", "item": "minecraft:ender_eye",
"rate": 500, "rate": 80,
"burnTime": 3200 "burnTime": 3200
} }
] ]
} }

15
config/generatorgalore/generators/gold.json Executable file → Normal file
View File

@ -1,8 +1,9 @@
{ {
"generationRate": 80, "generationRate": 32,
"transferRate": 160, "transferRate": 128,
"consumptionRate": 0.8, "hasChargeSlot": false,
"previousTier": "iron", "consumptionRate": 0.8,
"bufferCapacity": 30000, "previousTier": "iron",
"fuelType": "SOLID" "bufferCapacity": 30000,
"fuelType": "SOLID"
} }

26
config/generatorgalore/generators/halitosis.json Executable file → Normal file
View File

@ -1,14 +1,14 @@
{ {
"generationRate": 1000, "generationRate": 40,
"transferRate": 16384, "transferRate": 16384,
"consumptionRate": 1, "consumptionRate": 1,
"previousTier": "ender", "previousTier": "ender",
"bufferCapacity": 9800000, "bufferCapacity": 9800000,
"fuelType": "SOLID", "fuelType": "SOLID",
"fuelList": [ "fuelList": [
{ {
"item": "minecraft:dragon_breath", "item": "minecraft:dragon_breath",
"burnTime": 200 "burnTime": 12000
} }
] ]
} }

15
config/generatorgalore/generators/iron.json Executable file → Normal file
View File

@ -1,8 +1,9 @@
{ {
"generationRate": 40, "generationRate": 16,
"transferRate": 160, "transferRate": 64,
"consumptionRate": 1, "hasChargeSlot": false,
"previousTier": "copper", "consumptionRate": 1,
"bufferCapacity": 10000, "previousTier": "copper",
"fuelType": "SOLID" "bufferCapacity": 10000,
"fuelType": "SOLID"
} }

16
config/generatorgalore/generators/magmatic.json Executable file → Normal file
View File

@ -1,9 +1,9 @@
{ {
"generationRate": 150, "generationRate": 40,
"transferRate": 600, "transferRate": 512,
"consumptionRate": 0.4, "consumptionRate": 0.4,
"previousTier": "obsidian", "previousTier": "obsidian",
"bufferCapacity": 500000, "bufferCapacity": 500000,
"fuelType": "FLUID", "fuelType": "FLUID",
"fuelTag": "minecraft:lava" "fuelTag": "minecraft:lava"
} }

14
config/generatorgalore/generators/netherite.json Executable file → Normal file
View File

@ -1,8 +1,8 @@
{ {
"generationRate": 500, "generationRate": 256,
"transferRate": 2048, "transferRate": 1024,
"consumptionRate": 0.4, "consumptionRate": 0.4,
"previousTier": "diamond", "previousTier": "diamond",
"bufferCapacity": 1000000, "bufferCapacity": 1000000,
"fuelType": "SOLID" "fuelType": "SOLID"
} }

16
config/generatorgalore/generators/netherstar.json Executable file → Normal file
View File

@ -1,9 +1,9 @@
{ {
"generationRate": 10000, "generationRate": 4092,
"transferRate": 40000, "transferRate": 16384,
"consumptionRate": 2400, "consumptionRate": 2400,
"previousTier": "netherite", "previousTier": "netherite",
"bufferCapacity": 9800000, "bufferCapacity": 9800000,
"fuelType": "SOLID", "fuelType": "SOLID",
"fuelTag": "forge:nether_stars" "fuelTag": "forge:nether_stars"
} }

14
config/generatorgalore/generators/obsidian.json Executable file → Normal file
View File

@ -1,8 +1,8 @@
{ {
"generationRate": 200, "generationRate": 128,
"transferRate": 800, "transferRate": 512,
"consumptionRate": 0.6, "consumptionRate": 0.6,
"previousTier": "diamond", "previousTier": "diamond",
"bufferCapacity": 500000, "bufferCapacity": 500000,
"fuelType": "SOLID" "fuelType": "SOLID"
} }

14
config/generatorgalore/generators/potion.json Executable file → Normal file
View File

@ -1,8 +1,8 @@
{ {
"generationRate": 16, "generationRate": 8,
"transferRate": 512, "transferRate": 512,
"consumptionRate": 1, "consumptionRate": 1,
"previousTier": "culinary", "previousTier": "culinary",
"bufferCapacity": 250000, "bufferCapacity": 250000,
"fuelType": "POTION" "fuelType": "POTION"
} }