Revert "Dev -> space sync"
This commit is contained in:
parent
e2f6514f44
commit
e2a04c8c25
8 changed files with 148 additions and 73 deletions
|
|
@ -41,7 +41,6 @@
|
||||||
- Removed gems tag from flint @Pyritie
|
- Removed gems tag from flint @Pyritie
|
||||||
- Updated texture for aqueous accumulator (#1168) @Redeix
|
- Updated texture for aqueous accumulator (#1168) @Redeix
|
||||||
- Kaolin Klayzes now also drop blood lilies @Pyritie
|
- Kaolin Klayzes now also drop blood lilies @Pyritie
|
||||||
- You can put liquid glue in wooden barrels and buckets now @Pyritie
|
|
||||||
|
|
||||||
## [0.9.11] - 13.06.2025
|
## [0.9.11] - 13.06.2025
|
||||||
### New features
|
### New features
|
||||||
|
|
|
||||||
|
|
@ -1081,17 +1081,6 @@ const registerGTCEURecipes = (event) => {
|
||||||
|
|
||||||
//#endregion
|
//#endregion
|
||||||
|
|
||||||
//#region glowstone
|
|
||||||
event.recipes.gtceu.alloy_blast_smelter('abs:liquid_glowstone')
|
|
||||||
.itemInputs('#forge:dusts/gold', '#forge:dusts/redstone', '#forge:dusts/sulfur')
|
|
||||||
.outputFluids(Fluid.of('gtceu:glowstone', 288))
|
|
||||||
.duration(20*60/1.3)
|
|
||||||
.EUt(GTValues.VA[GTValues.LV])
|
|
||||||
.blastFurnaceTemp(1064)
|
|
||||||
.circuit(9)
|
|
||||||
//#endregion
|
|
||||||
|
|
||||||
|
|
||||||
//#region Large boilers fuel rebalance
|
//#region Large boilers fuel rebalance
|
||||||
|
|
||||||
// Balance is based on adjusting to match singeblock boiler efficiency
|
// Balance is based on adjusting to match singeblock boiler efficiency
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,6 @@
|
||||||
* Событие регистрации предмет-тэгов.
|
* Событие регистрации предмет-тэгов.
|
||||||
*/
|
*/
|
||||||
ServerEvents.tags('item', event => {
|
ServerEvents.tags('item', event => {
|
||||||
|
|
||||||
registerAdAstraItemTags(event)
|
registerAdAstraItemTags(event)
|
||||||
registerAdvancedPeripheralsItemTags(event)
|
registerAdvancedPeripheralsItemTags(event)
|
||||||
registerAE2ItemTags(event)
|
registerAE2ItemTags(event)
|
||||||
|
|
@ -45,7 +44,6 @@ ServerEvents.tags('item', event => {
|
||||||
registerTFCItemTags(event)
|
registerTFCItemTags(event)
|
||||||
registerTFCTextileItemTags(event)
|
registerTFCTextileItemTags(event)
|
||||||
registerTFGItemTags(event)
|
registerTFGItemTags(event)
|
||||||
registerTFCLunchboxItemTags(event)
|
|
||||||
registerVintageImprovementsItemTags(event)
|
registerVintageImprovementsItemTags(event)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -482,15 +482,9 @@ const registerTFCFluidTags = (event) => {
|
||||||
event.add('tfc:usable_in_wooden_bucket', 'gtceu:ice')
|
event.add('tfc:usable_in_wooden_bucket', 'gtceu:ice')
|
||||||
event.add('tfc:usable_in_red_steel_bucket', 'gtceu:ice')
|
event.add('tfc:usable_in_red_steel_bucket', 'gtceu:ice')
|
||||||
|
|
||||||
event.add('tfc:usable_in_barrel', 'gtceu:glue')
|
|
||||||
event.add('tfc:usable_in_wooden_bucket', 'gtceu:glue')
|
|
||||||
event.add('tfc:usable_in_blue_steel_bucket', 'tfc:spring_water')
|
|
||||||
event.add('tfc:usable_in_red_steel_bucket', 'gtceu:glue')
|
|
||||||
|
|
||||||
event.add('tfc:ingredients', 'tfc:spring_water')
|
event.add('tfc:ingredients', 'tfc:spring_water')
|
||||||
event.add('tfc:usable_in_barrel', 'tfc:spring_water')
|
event.add('tfc:usable_in_barrel', 'tfc:spring_water')
|
||||||
event.add('tfc:usable_in_wooden_bucket', 'tfc:spring_water')
|
event.add('tfc:usable_in_wooden_bucket', 'tfc:spring_water')
|
||||||
event.add('tfc:usable_in_blue_steel_bucket', 'tfc:spring_water')
|
|
||||||
event.add('tfc:usable_in_red_steel_bucket', 'tfc:spring_water')
|
event.add('tfc:usable_in_red_steel_bucket', 'tfc:spring_water')
|
||||||
|
|
||||||
// Добавляем тег для скрытия в EMI
|
// Добавляем тег для скрытия в EMI
|
||||||
|
|
|
||||||
|
|
@ -2,30 +2,58 @@
|
||||||
|
|
||||||
function registerTFCLunchBoxRecipes(event) {
|
function registerTFCLunchBoxRecipes(event) {
|
||||||
|
|
||||||
const fluidCells = [
|
event.shaped('tfclunchbox:lunchbox', [
|
||||||
{ id: 'gtceu:universal_fluid_cell', capacity: 1000, name: 'universal' },
|
' CE',
|
||||||
{ id: 'gtceu:fluid_cell', capacity: 1000, name: 'basic' },
|
'ABA',
|
||||||
{ id: 'gtceu:steel_fluid_cell', capacity: 8000, name: 'steel' },
|
'DAD'
|
||||||
{ id: 'gtceu:aluminium_fluid_cell', capacity: 32000, name: 'aluminium' },
|
], {
|
||||||
{ id: 'gtceu:stainless_steel_fluid_cell', capacity: 64000, name: 'stainless_steel' },
|
A: '#forge:plates/sterling_silver',
|
||||||
{ id: 'gtceu:titanium_fluid_cell', capacity: 128000, name: 'titanium' },
|
B: '#forge:chests/wooden',
|
||||||
{ id: 'gtceu:tungstensteel_fluid_cell', capacity: 512000, name: 'tungstensteel' },
|
C: '#forge:bolts/brass',
|
||||||
{ id: 'gtceu:glass_vial', capacity: 1000, name: 'glass_vial' }
|
D: '#forge:screws/wrought_iron',
|
||||||
];
|
E: '#forge:tools/hammers'
|
||||||
|
}).id('tfclunchbox:lunchbox')
|
||||||
|
|
||||||
|
event.shaped('tfclunchbox:cooling_lunchbox', [
|
||||||
|
' CE',
|
||||||
|
'ABA',
|
||||||
|
'DAD'
|
||||||
|
], {
|
||||||
|
A: '#forge:plates/red_steel',
|
||||||
|
B: '#forge:chests/wooden',
|
||||||
|
C: '#forge:bolts/brass',
|
||||||
|
D: '#forge:screws/steel',
|
||||||
|
E: '#forge:tools/hammers'
|
||||||
|
}).id('tfclunchbox:cooling_lunchbox')
|
||||||
|
|
||||||
|
event.shaped('tfclunchbox:cooling_lunchbox', [
|
||||||
|
' C ',
|
||||||
|
'ABA'
|
||||||
|
], {
|
||||||
|
A: '#forge:plates/red_steel',
|
||||||
|
B: 'tfclunchbox:lunchbox',
|
||||||
|
C: '#forge:tools/hammers'
|
||||||
|
}).id('tfclunchbox:upgrade_to_cooling_lunchbox')
|
||||||
|
|
||||||
// Убираем оригинальные рецепты капсул
|
|
||||||
// Remove original capsule recipes
|
|
||||||
event.remove({ id: 'tfclunchbox:universal_capsule' })
|
event.remove({ id: 'tfclunchbox:universal_capsule' })
|
||||||
event.remove({ id: 'tfclunchbox:fill_capsule_with_ice' })
|
event.remove({ id: 'tfclunchbox:fill_capsule_with_ice' })
|
||||||
|
|
||||||
// Рецепты заполнения fluid cells жидким льдом
|
event.recipes.gtceu.assembler('tfclunchbox:universal_capsule')
|
||||||
// Recipes for filling fluid cells with liquid ice
|
.itemInputs('1x #forge:foils/red_steel', '1x #forge:rings/sterling_silver')
|
||||||
fluidCells.forEach(cell => {
|
.itemOutputs('tfclunchbox:universal_capsule')
|
||||||
event.recipes.gtceu.canner(`tfclunchbox:fill_${cell.name}_cell_with_liquid_ice`)
|
.duration(100)
|
||||||
.itemInputs(cell.id)
|
.EUt(GTValues.VA[GTValues.LV])
|
||||||
.inputFluids(Fluid.of('gtceu:ice', cell.capacity))
|
|
||||||
.itemOutputs(Item.of(cell.id, '{Fluid:{Amount:' + cell.capacity + ',FluidName:"gtceu:ice"}}'))
|
event.recipes.gtceu.canner('tfclunchbox:fill_capsule_with_ice')
|
||||||
.duration(Math.max(16, Math.floor(cell.capacity / 64)))
|
.itemInputs('tfclunchbox:universal_capsule')
|
||||||
.EUt(GTValues.VA[GTValues.LV]);
|
.inputFluids(Fluid.of('gtceu:ice', 45 * 144))
|
||||||
});
|
.itemOutputs(Item.of('tfclunchbox:universal_capsule', '{Durability:500}').withName(Text.translate('item.tfclunchbox.universal_capsule.filled')))
|
||||||
|
.duration(100)
|
||||||
|
.EUt(GTValues.VA[GTValues.LV])
|
||||||
|
|
||||||
|
event.recipes.gtceu.canner('tfclunchbox:fill_capsule_with_ice_solid')
|
||||||
|
.itemInputs('tfclunchbox:universal_capsule', '5x minecraft:packed_ice')
|
||||||
|
.itemOutputs(Item.of('tfclunchbox:universal_capsule', '{Durability:500}').withName(Text.translate('item.tfclunchbox.universal_capsule.filled')))
|
||||||
|
.duration(100)
|
||||||
|
.EUt(GTValues.VA[GTValues.LV])
|
||||||
}
|
}
|
||||||
|
|
@ -1,14 +0,0 @@
|
||||||
// priority: 0
|
|
||||||
|
|
||||||
function registerTFCLunchboxItemTags(event) {
|
|
||||||
|
|
||||||
const DISABLED_ITEMS = [
|
|
||||||
'tfclunchbox:universal_capsule',
|
|
||||||
]
|
|
||||||
|
|
||||||
DISABLED_ITEMS.forEach(item => {
|
|
||||||
event.removeAllTagsFrom(item)
|
|
||||||
event.add('c:hidden_from_recipe_viewers', item)
|
|
||||||
})
|
|
||||||
|
|
||||||
}
|
|
||||||
106
pakku-lock.json
106
pakku-lock.json
|
|
@ -962,6 +962,45 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"pakku_id": "LVF7UEBiNQpjRDSW",
|
||||||
|
"type": "MOD",
|
||||||
|
"side": "CLIENT",
|
||||||
|
"slug": {
|
||||||
|
"curseforge": "better-foliage-renewed"
|
||||||
|
},
|
||||||
|
"name": {
|
||||||
|
"curseforge": "Better Foliage Renewed"
|
||||||
|
},
|
||||||
|
"id": {
|
||||||
|
"curseforge": "470013"
|
||||||
|
},
|
||||||
|
"files": [
|
||||||
|
{
|
||||||
|
"type": "curseforge",
|
||||||
|
"file_name": "betterfoliage-5.0.2.jar",
|
||||||
|
"mc_versions": [
|
||||||
|
"1.20.2",
|
||||||
|
"1.20.1"
|
||||||
|
],
|
||||||
|
"loaders": [
|
||||||
|
"neoforge",
|
||||||
|
"forge"
|
||||||
|
],
|
||||||
|
"release_type": "release",
|
||||||
|
"url": "https://edge.forgecdn.net/files/4923/669/betterfoliage-5.0.2.jar",
|
||||||
|
"id": "4923669",
|
||||||
|
"parent_id": "470013",
|
||||||
|
"hashes": {
|
||||||
|
"sha1": "4163772d08837daf22034e5333ddefc8532cdb69",
|
||||||
|
"md5": "22f5753234b465c44688f9555acb4713"
|
||||||
|
},
|
||||||
|
"required_dependencies": [],
|
||||||
|
"size": 396130,
|
||||||
|
"date_published": "2023-12-03T18:03:18.697Z"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"pakku_id": "hn4E1S13hPaLVPSH",
|
"pakku_id": "hn4E1S13hPaLVPSH",
|
||||||
"type": "MOD",
|
"type": "MOD",
|
||||||
|
|
@ -4642,7 +4681,7 @@
|
||||||
"files": [
|
"files": [
|
||||||
{
|
{
|
||||||
"type": "curseforge",
|
"type": "curseforge",
|
||||||
"file_name": "guideme-20.1.9.jar",
|
"file_name": "guideme-20.1.8.jar",
|
||||||
"mc_versions": [
|
"mc_versions": [
|
||||||
"1.20.1"
|
"1.20.1"
|
||||||
],
|
],
|
||||||
|
|
@ -4650,16 +4689,16 @@
|
||||||
"forge"
|
"forge"
|
||||||
],
|
],
|
||||||
"release_type": "release",
|
"release_type": "release",
|
||||||
"url": "https://edge.forgecdn.net/files/6654/696/guideme-20.1.9.jar",
|
"url": "https://edge.forgecdn.net/files/6634/593/guideme-20.1.8.jar",
|
||||||
"id": "6654696",
|
"id": "6634593",
|
||||||
"parent_id": "1173950",
|
"parent_id": "1173950",
|
||||||
"hashes": {
|
"hashes": {
|
||||||
"sha1": "5619e9e6c4e2f14c3e7f093698e2103c75f4dcf2",
|
"sha1": "cc5e96b09949c5f1ad5d6aa5c45695f760715e95",
|
||||||
"md5": "e3692a66b10b1df1b3d40cdc99773a6e"
|
"md5": "38d8791dc9114d9cf6bcd5f2af1402e7"
|
||||||
},
|
},
|
||||||
"required_dependencies": [],
|
"required_dependencies": [],
|
||||||
"size": 9403366,
|
"size": 9401167,
|
||||||
"date_published": "2025-06-15T15:50:42.330Z"
|
"date_published": "2025-06-09T21:54:55.087Z"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
@ -6797,6 +6836,7 @@
|
||||||
"id": {
|
"id": {
|
||||||
"curseforge": "585406"
|
"curseforge": "585406"
|
||||||
},
|
},
|
||||||
|
"export": false,
|
||||||
"files": [
|
"files": [
|
||||||
{
|
{
|
||||||
"type": "curseforge",
|
"type": "curseforge",
|
||||||
|
|
@ -8037,7 +8077,7 @@
|
||||||
"files": [
|
"files": [
|
||||||
{
|
{
|
||||||
"type": "curseforge",
|
"type": "curseforge",
|
||||||
"file_name": "tfclunchbox-1.20.1-1.0.0.20.jar",
|
"file_name": "tfclunchbox-1.20.1-1.0.0.14.jar",
|
||||||
"mc_versions": [
|
"mc_versions": [
|
||||||
"1.20.1"
|
"1.20.1"
|
||||||
],
|
],
|
||||||
|
|
@ -8046,16 +8086,16 @@
|
||||||
"forge"
|
"forge"
|
||||||
],
|
],
|
||||||
"release_type": "beta",
|
"release_type": "beta",
|
||||||
"url": "https://edge.forgecdn.net/files/6675/072/tfclunchbox-1.20.1-1.0.0.20.jar",
|
"url": "https://edge.forgecdn.net/files/6646/846/tfclunchbox-1.20.1-1.0.0.14.jar",
|
||||||
"id": "6675072",
|
"id": "6646846",
|
||||||
"parent_id": "1283445",
|
"parent_id": "1283445",
|
||||||
"hashes": {
|
"hashes": {
|
||||||
"sha1": "334167b4cc5ec81a917d168b6ec8a876f315298e",
|
"sha1": "de4051c4345290b9d99f2d26090ad466f112b3ec",
|
||||||
"md5": "3dc59cd3d685fe4f5d097ca4e66746f4"
|
"md5": "ada6f65d0fc9785a34b9deb76c53e882"
|
||||||
},
|
},
|
||||||
"required_dependencies": [],
|
"required_dependencies": [],
|
||||||
"size": 111379,
|
"size": 95828,
|
||||||
"date_published": "2025-06-20T14:40:33.51Z"
|
"date_published": "2025-06-13T12:54:20.803Z"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
@ -8711,6 +8751,44 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"pakku_id": "mxWVAqlbiiejXL6S",
|
||||||
|
"type": "MOD",
|
||||||
|
"slug": {
|
||||||
|
"curseforge": "visual-workbench"
|
||||||
|
},
|
||||||
|
"name": {
|
||||||
|
"curseforge": "Visual Workbench"
|
||||||
|
},
|
||||||
|
"id": {
|
||||||
|
"curseforge": "500273"
|
||||||
|
},
|
||||||
|
"files": [
|
||||||
|
{
|
||||||
|
"type": "curseforge",
|
||||||
|
"file_name": "VisualWorkbench-v8.0.0-1.20.1-Forge.jar",
|
||||||
|
"mc_versions": [
|
||||||
|
"1.20.1"
|
||||||
|
],
|
||||||
|
"loaders": [
|
||||||
|
"forge"
|
||||||
|
],
|
||||||
|
"release_type": "release",
|
||||||
|
"url": "https://edge.forgecdn.net/files/4612/695/VisualWorkbench-v8.0.0-1.20.1-Forge.jar",
|
||||||
|
"id": "4612695",
|
||||||
|
"parent_id": "500273",
|
||||||
|
"hashes": {
|
||||||
|
"sha1": "7ebf579edcf2440eadf1ed6c8c895e1bc2d77bf1",
|
||||||
|
"md5": "d741bc2d4d3a385116d094b874474a6b"
|
||||||
|
},
|
||||||
|
"required_dependencies": [
|
||||||
|
"495476"
|
||||||
|
],
|
||||||
|
"size": 82055,
|
||||||
|
"date_published": "2023-06-27T21:00:10.803Z"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"pakku_id": "SZ5c7Jc5GOwlNtbX",
|
"pakku_id": "SZ5c7Jc5GOwlNtbX",
|
||||||
"type": "MOD",
|
"type": "MOD",
|
||||||
|
|
|
||||||
|
|
@ -32,6 +32,9 @@
|
||||||
"better-chat": {
|
"better-chat": {
|
||||||
"side": "CLIENT"
|
"side": "CLIENT"
|
||||||
},
|
},
|
||||||
|
"better-foliage-renewed": {
|
||||||
|
"side": "CLIENT"
|
||||||
|
},
|
||||||
"betterf3": {
|
"betterf3": {
|
||||||
"side": "CLIENT"
|
"side": "CLIENT"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue