Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions config/oritech-config.json5
Original file line number Diff line number Diff line change
Expand Up @@ -225,17 +225,17 @@
"safeModeCooldown": 2400,
"maxSize": 32,
"reactorMaxEnergyStored": 150000000,
"reactorMaxEnergyOutput": 125000,
"reactorMaxEnergyOutput": 5000000,
"rfPerPulse": 1100,
"absorberRate": 64,
"ventBaseRate": 24,
"ventRelativeRate": 160,
"maxHeat": 2000,
"maxUnstableTicks": 600,
"boringNukes": true,
"boringNukes": false,
"enchanterCostMultiplier": 5,
"catalystBaseSouls": 50,
"catalystRFPerSoul": 20,
"catalystBaseSouls": 100,
"catalystRFPerSoul": 600,
"catalystCostMultiplier": 2,
"catalystHyperMultiplier": 2,
"spawnerCostMultiplier": 1,
Expand All @@ -251,7 +251,7 @@
"pullTimeMultiplier": 8,
"pullRange": 16,
"idleWaitTicks": 200,
"blackHoleTachyonEnergy": 50000,
"blackHoleTachyonEnergy": 75000,
"unstableContainerBaseCapacity": 20000000,
"augmenterMaxEnergy": 500000000,
"tightMachineAddonHitboxes": true,
Expand Down
138 changes: 56 additions & 82 deletions kubejs/server_scripts/mods/Oritech/recipes.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,94 +2,68 @@
// 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.

ServerEvents.recipes(allthemods => {
// Rebalance of 'machine addon extender'
allthemods.remove({id: 'oritech:crafting/core3alt'})
allthemods.remove({id: 'oritech:crafting/core3'})
allthemods.shaped(
Item.of('oritech:machine_core_3', 1),
[
'AAA',
'ABA',
'AAA'
],
{
A: 'oritech:carbon_fibre_strands',
B: 'oritech:fluxite_block'
}
)
// allthemods.remove({output: 'oritech:machine_extender'})
allthemods.shaped(
Item.of('oritech:machine_extender', 1),
[
'AAA',
'ABA',
'AAA'
],
{
A: 'oritech:carbon_plating_block',
B: 'oritech:machine_core_3'
}
)
// Oil compatibility
allthemods.remove({id: 'oritech:refinery/oilalt'})
allthemods.remove({id: 'oritech:refinery/oilbase'})

allthemods.custom({
"type": "oritech:refinery",
"fluidInput": {
"amount": 1000,
"fluid": "#c:crude_oil"
},
"fluidOutputs": [
{
"amount": 500,
"fluid": "oritech:still_heavy_oil"
},
{
"amount": 250,
"fluid": "oritech:still_naphtha"
},
{
"amount": 250,
"fluid": "oritech:still_sulfuric_acid"
}
],
"ingredients": [],
"results": [],
"time": 120
})
allthemods.custom({
"type": "oritech:refinery",
"fluidInput": {
"amount": 1000,
"fluid": "#c:crude_oil"
},
"fluidOutputs": [
{
"amount": 500,
"fluid": "oritech:still_diesel"
},
{
"amount": 500,
"fluid": "oritech:still_naphtha"
},
{
"amount": 500,
"fluid": "oritech:still_sulfuric_acid"
}
],
"ingredients": [
{
"item": "oritech:clay_catalyst_beads"
}
],
"results": [],
"time": 120
})
"type": "oritech:refinery",
"fluidInput": {
"amount": 1000,
"fluid": "#c:crude_oil"
},
"fluidOutputs": [
{
"amount": 500,
"fluid": "oritech:still_heavy_oil"
},
{
"amount": 250,
"fluid": "oritech:still_naphtha"
},
{
"amount": 250,
"fluid": "oritech:still_sulfuric_acid"
}
],
"ingredients": [],
"results": [],
"time": 120
})
allthemods.custom({
"type": "oritech:refinery",
"fluidInput": {
"amount": 1000,
"fluid": "#c:crude_oil"
},
"fluidOutputs": [
{
"amount": 500,
"fluid": "oritech:still_diesel"
},
{
"amount": 500,
"fluid": "oritech:still_naphtha"
},
{
"amount": 500,
"fluid": "oritech:still_sulfuric_acid"
}
],
"ingredients": [
{
"item": "oritech:clay_catalyst_beads"
}
],
"results": [],
"time": 120
})
// Remove enchanting stuff
allthemods.remove({id: 'oritech:crafting/catalyst_alt'})
allthemods.remove({id: 'oritech:crafting/catalyst'})
allthemods.remove({id: 'oritech:crafting/enchanter'})
// allthemods.remove({id: 'oritech:crafting/catalyst_alt'})
// allthemods.remove({id: 'oritech:crafting/catalyst'})
// allthemods.remove({id: 'oritech:crafting/enchanter'})

allthemods.replaceInput({id: 'oritech:crafting/catalyst'}, )

// Cheaty alloys
allthemods.remove({id: 'oritech:crafting/alloy/steel'})
Expand Down