Skip to content

Commit

Permalink
fix(recipes): ✏️x2 nerf [Petro Petunia]
Browse files Browse the repository at this point in the history
  • Loading branch information
Krutoy242 committed Feb 28, 2024
1 parent c19105d commit 5d93b0b
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 21 deletions.
20 changes: 10 additions & 10 deletions config/acronym/floralchemy.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -37,53 +37,53 @@ fuelvalues {

diesel {
# Number of ticks this fluid will burn for [range: 1 ~ 10000, default: 350]
I:burnTime=350
I:burnTime=175

# Amount of Mana produced each Tick [range: 1 ~ 10000, default: 50]
I:powerPreTick=50
}

oil {
# Number of ticks this fluid will burn for [range: 1 ~ 10000, default: 100]
I:burnTime=100
I:burnTime=50

# Amount of Mana produced each Tick [range: 1 ~ 10000, default: 50]
I:powerPreTick=50
}

biodiesel {
# Number of ticks this fluid will burn for [range: 1 ~ 10000, default: 250]
I:burnTime=250
I:burnTime=125

# Amount of Mana produced each Tick [range: 1 ~ 10000, default: 50]
I:powerPreTick=50
}
canolaoil {
I:burnTime=150
I:burnTime=75
I:powerPreTick=50
}
crystaloil {
I:burnTime=350
I:burnTime=175
I:powerPreTick=50
}
empoweredoil {
I:burnTime=1000
I:burnTime=500
I:powerPreTick=100
}
biomass {
I:burnTime=250
I:burnTime=125
I:powerPreTick=50
}
refined_fuel {
I:burnTime=850
I:burnTime=425
I:powerPreTick=100
}
rocketfuel {
I:burnTime=2400
I:burnTime=1200
I:powerPreTick=200
}
perfect_fuel {
I:burnTime=96000
I:burnTime=48000
I:powerPreTick=8000
}

Expand Down
22 changes: 11 additions & 11 deletions scripts/jei/mod/botania.zs
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,18 @@ Object.entries(
.map(([fluid, consumption, manaTotal]) =>
` ${("'"+fluid+"'").padEnd(14)+':'} [${consumption}, ${manaTotal}],`
)) */
'perfect_fuel': [12, 768000000],
'rocketfuel' : [500, 480000],
'empoweredoil': [1200, 100000],
'refined_fuel': [1411, 85000],
'diesel' : [3428, 17500],
'crystaloil' : [3428, 17500],
'biodiesel' : [4800, 12500],
'biomass' : [4800, 12500],
'canolaoil' : [8000, 7500],
'oil' : [12000, 5000],
'perfect_fuel': [25, 384000000],
'rocketfuel' : [1000, 240000],
'empoweredoil': [2400, 50000],
'refined_fuel': [2823, 42500],
'diesel' : [6857, 8750],
'crystaloil' : [6857, 8750],
'biodiesel' : [9600, 6250],
'biomass' : [9600, 6250],
'canolaoil' : [16000, 3750],
'oil' : [24000, 2500],
/**/
} as int[][string] {
} as int[][string]$orderly {
val consumption = arr[0];
val manaTotal = arr[1];
x.addJEIRecipe(AssemblyRecipe.create(function (container) {
Expand Down

0 comments on commit 5d93b0b

Please sign in to comment.