Skip to content
Open
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
14 changes: 7 additions & 7 deletions config/oritech-config.json5
Original file line number Diff line number Diff line change
Expand Up @@ -225,19 +225,19 @@
"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,
"catalystCostMultiplier": 2,
"catalystHyperMultiplier": 2,
"catalystBaseSouls": 80,
"catalystRFPerSoul": 100,
"catalystCostMultiplier": 5,
"catalystHyperMultiplier": 7.5,
"spawnerCostMultiplier": 1,
"maxGateDist": 10,
"bendFactor": 2.5,
Expand All @@ -251,7 +251,7 @@
"pullTimeMultiplier": 8,
"pullRange": 16,
"idleWaitTicks": 200,
"blackHoleTachyonEnergy": 50000,
"blackHoleTachyonEnergy": 75000,
"unstableContainerBaseCapacity": 20000000,
"augmenterMaxEnergy": 500000000,
"tightMachineAddonHitboxes": true,
Expand Down
146 changes: 57 additions & 89 deletions kubejs/server_scripts/mods/Oritech/recipes.js
Original file line number Diff line number Diff line change
@@ -1,99 +1,67 @@
// This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 10.
// 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'})
ServerEvents.recipes(allthemods => {
// 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"
allthemods.custom({
"type": "oritech:refinery",
"fluidInput": {
"amount": 1000,
"fluid": "#c:crude_oil"
},
{
"amount": 250,
"fluid": "oritech:still_naphtha"
"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"
},
{
"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'})
"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
})

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

// This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 10.
Expand Down