дурка

This commit is contained in:
Dmitry 2023-12-28 21:05:30 +07:00
parent f101a67718
commit c70b06e02a
7 changed files with 2430 additions and 138 deletions

View file

@ -7,6 +7,16 @@
id: "73F3EFA4BB543915" id: "73F3EFA4BB543915"
order_index: 3 order_index: 3
quest_links: [ ] quest_links: [ ]
quests: [ ] quests: [{
id: "71F3AD23B0C6BF7F"
tasks: [{
id: "56777DCA0437D9AD"
item: "minecraft:crimson_nylium"
title: "Work In Progress"
type: "item"
}]
x: 0.0d
y: 0.0d
}]
title: "LV Age" title: "LV Age"
} }

View file

@ -7,6 +7,16 @@
id: "1BE688FC900D9161" id: "1BE688FC900D9161"
order_index: 4 order_index: 4
quest_links: [ ] quest_links: [ ]
quests: [ ] quests: [{
id: "417E70F0448DD049"
tasks: [{
id: "54D4EC9B2EA0A688"
item: "minecraft:crimson_nylium"
title: "Work In Progress"
type: "item"
}]
x: 0.0d
y: 0.0d
}]
title: "MV Age" title: "MV Age"
} }

File diff suppressed because it is too large Load diff

View file

@ -1,5 +1,5 @@
{ {
"modids": [ "modIds": [
"minecraft", "minecraft",
"tfc", "tfc",
"create", "create",

View file

@ -2344,6 +2344,11 @@ const registerMinecraftRecipes = (event) => {
.duration(100) .duration(100)
.EUt(16) .EUt(16)
//#endregion
//#region Выход: Кожа
event.remove({ id: 'minecraft:leather' })
//#endregion //#endregion

View file

@ -2422,7 +2422,7 @@ const registerTFCRecipes = (event) => {
'ABA', 'ABA',
'AAA' 'AAA'
], { ], {
A: '#forge:plates/wrought_iron', A: '#forge:double_plates/wrought_iron',
B: 'tfc:crucible' B: 'tfc:crucible'
}).id('tfc:crafting/blast_furnace') }).id('tfc:crafting/blast_furnace')

View file

@ -708,6 +708,7 @@ global.MINECRAFT_DISABLED_ITEMS = [
'minecraft:medium_amethyst_bud', 'minecraft:medium_amethyst_bud',
'minecraft:large_amethyst_bud', 'minecraft:large_amethyst_bud',
'minecraft:amethyst_cluster', 'minecraft:amethyst_cluster',
'minecraft:rabbit_hide',
'/spawn_egg/' '/spawn_egg/'
]; ];