Не пойму где я ошибся. Удалю код

This commit is contained in:
Damodigy 2023-11-11 22:05:25 +07:00
parent 0b5a64394b
commit 7f8e06de8c
7 changed files with 48 additions and 120 deletions

View file

@ -0,0 +1,31 @@
const newCreateRecipes = (event) => {
// Деревянная пластина для шестеренки
event.shaped('gtceu:wood_plate', [
' A',
' B ',
' '
], {
A: '#tfc:chisels',
B: '#tfc:lumber',
});
// Деревянная шестеренка ( маленькая )
event.shaped('create:cogwheel', [
' A ',
' B ',
' '
], {
A: '#tfc:saws',
B: 'create:large_cogwheel',
});
// Деревянная шестеренка ( большая )
event.shaped('create:large_cogwheel', [
' A ',
' B ',
' '
], {
A: 'create:shaft',
B: 'gtceu:wood_gear',
});
}

View file

@ -1,115 +0,0 @@
const newCreateFluids = (event) => {
event.create('solder')
.stillTexture('tfc:block/molten_still')
.flowingTexture('tfc:block/molten_flow')
//.color(0x8393A6)
.color(0x8388A6)
.displayName(`Solder`)
.noBlock()
event.create('incandescent_oil')
.stillTexture('kubejs:block/incandescent_oil_still')
.flowingTexture('kubejs:block/incandescent_oil_flow')
.color(0x6A7536)
.displayName('Incandescent Oil')
.noBlock()
event.create('potion_beer')
.stillTexture('minecraft:block/water_still')
.flowingTexture('minecraft:block/water_flow')
.color(0xC39E36)
.displayName('Formulated Beer')
.noBlock()
event.create('potion_cider')
.stillTexture('minecraft:block/water_still')
.flowingTexture('minecraft:block/water_flow')
.color(0xB0AE31)
.displayName('Formulated Cider')
.noBlock()
event.create('potion_rum')
.stillTexture('minecraft:block/water_still')
.flowingTexture('minecraft:block/water_flow')
.color(0x6E0122)
.displayName('Formulated Rum')
.noBlock()
event.create('potion_sake')
.stillTexture('minecraft:block/water_still')
.flowingTexture('minecraft:block/water_flow')
.color(0xB7D9BB)
.displayName('Formulated Sake')
.noBlock()
event.create('potion_vodka')
.stillTexture('minecraft:block/water_still')
.flowingTexture('minecraft:block/water_flow')
.color(0xDCDCDB)
.displayName('Formulated Vodka')
.noBlock()
event.create('potion_whiskey')
.stillTexture('minecraft:block/water_still')
.flowingTexture('minecraft:block/water_flow')
.color(0x583718)
.displayName('Formulated Whiskey')
.noBlock()
event.create('potion_corn_whiskey')
.stillTexture('minecraft:block/water_still')
.flowingTexture('minecraft:block/water_flow')
.color(0xD9C7B6)
.displayName('Formulated Corn Whiskey')
.noBlock()
event.create('potion_rye_whiskey')
.stillTexture('minecraft:block/water_still')
.flowingTexture('minecraft:block/water_flow')
.color(0xC77D50)
.displayName('Formulated Rye Whiskey')
.noBlock()
event.create('potion_strong_beer')
.stillTexture('minecraft:block/water_still')
.flowingTexture('minecraft:block/water_flow')
.color(0xC39E36)
.displayName('Alchemical Beer')
.noBlock()
event.create('potion_strong_cider')
.stillTexture('minecraft:block/water_still')
.flowingTexture('minecraft:block/water_flow')
.color(0xB0AE31)
.displayName('Alchemical Cider')
.noBlock()
event.create('potion_strong_rum')
.stillTexture('minecraft:block/water_still')
.flowingTexture('minecraft:block/water_flow')
.color(0x6E0122)
.displayName('Alchemical Rum')
.noBlock()
event.create('potion_strong_sake')
.stillTexture('minecraft:block/water_still')
.flowingTexture('minecraft:block/water_flow')
.color(0xB7D9BB)
.displayName('Alchemical Sake')
.noBlock()
event.create('potion_strong_vodka')
.stillTexture('minecraft:block/water_still')
.flowingTexture('minecraft:block/water_flow')
.color(0xDCDCDB)
.displayName('Alchemical Vodka')
.noBlock()
event.create('potion_strong_whiskey')
.stillTexture('minecraft:block/water_still')
.flowingTexture('minecraft:block/water_flow')
.color(0x583718)
.displayName('Alchemical Whiskey')
.noBlock()
event.create('potion_strong_corn_whiskey')
.stillTexture('minecraft:block/water_still')
.flowingTexture('minecraft:block/water_flow')
.color(0xD9C7B6)
.displayName('Alchemical Corn Whiskey')
.noBlock()
event.create('potion_strong_rye_whiskey')
.stillTexture('minecraft:block/water_still')
.flowingTexture('minecraft:block/water_flow')
.color(0xC77D50)
.displayName('Alchemical Rye Whiskey')
.noBlock()
}

View file

@ -1,5 +1,11 @@
const newItemsCreate = (event) => {
// galvanized_iron
customWelding(event,["forge:ingots/iron","forge:plates/zinc"],"kubejs:galvanized_iron",3);
customWelding(event,["forge:ingots/wrought_iron","forge:plates/zinc"],"kubejs:galvanized_iron",3);
customHeating(event,"kubejs:galvanized_iron",["tfc:metal/wrought_iron",144],1400 );
customHeating(event,"forge:ingots/galvanized_iron",["tfc:metal/wrought_iron",144],1400);
//shaft craft
customAnvil(event,"forge:ingots/galvanized_iron",["create:shaft",4],3,["hit_last","hit_second_last","hit_third_last"]);
}

View file

@ -0,0 +1,3 @@
const removeReworkedRecipes = (event) => {
event.remove({ mod: 'create' });
}

View file

@ -10,9 +10,12 @@ ServerEvents.tags('block', event => {
ServerEvents.tags('item', event => {
// register itemtags here
event.add('forge:ingots/galvanized_iron', 'kubejs:galvanized_iron');
})
ServerEvents.recipes(event => {
newCreateRecipes(event)
removeReworkedRecipes(event)
registerMinecraftRecipes(event)
newItemsCreate(event)
})

View file

@ -18,7 +18,7 @@ const customHeating = (event,input1,[result,amount],temperature) => {
event.custom({
type: "tfc:heating",
ingredient: {
item: input1
tag: input1
},
result_fluid: {
fluid: result,
@ -28,14 +28,15 @@ const customHeating = (event,input1,[result,amount],temperature) => {
})
}
const customAnvil = (event,input1,result,tier,[firstRule,secondRule,thirdRule]) => {
const customAnvil = (event,input1,[result,count],tier,[firstRule,secondRule,thirdRule]) => {
event.custom({
type: "tfc:anvil",
input: {
tag: input1
},
result: {
item: result
item: result,
count: count
},
tier: tier,
rules: [

View file

@ -2,5 +2,4 @@
StartupEvents.registry('item', event =>
{
newCreateItems(event);
newCreateFluids(event);
})