update de todo, crafteos, quitar mierda y actualizar mods
This commit is contained in:
parent
a23866c1bf
commit
9f752d2cbe
@ -1076,7 +1076,30 @@
|
|||||||
"biomesoplenty:willow_wood",
|
"biomesoplenty:willow_wood",
|
||||||
"biomesoplenty:wilted_lily",
|
"biomesoplenty:wilted_lily",
|
||||||
"biomesoplenty:yellow_autumn_leaves",
|
"biomesoplenty:yellow_autumn_leaves",
|
||||||
"biomesoplenty:yellow_autumn_sapling"
|
"biomesoplenty:yellow_autumn_sapling",
|
||||||
|
"golemfirststonemod:item_dandori_banner",
|
||||||
|
"golemfirststonemod:block_button_copper",
|
||||||
|
"golemfirststonemod:item_spawn_golem_copper",
|
||||||
|
"golemfirststonemod:item_spawn_golem_tuff",
|
||||||
|
"golemfirststonemod:item_flame_of_creation_blue",
|
||||||
|
"golemfirststonemod:block_head_clay",
|
||||||
|
"golemfirststonemod:block_path_golem_prison",
|
||||||
|
"golemfirststonemod:block_villager_stone",
|
||||||
|
"golemfirststonemod:block_villager_oak",
|
||||||
|
"golemfirststonemod:block_villager_brick",
|
||||||
|
"golemfirststonemod:block_villager_diorite",
|
||||||
|
"golemfirststonemod:item_dandori_call",
|
||||||
|
"golemfirststonemod:item_dandori_staff",
|
||||||
|
"golemfirststonemod:item_dandori_attack",
|
||||||
|
"golemfirststonemod:item_dandori_dig",
|
||||||
|
"golemfirststonemod:item_dandori_throw",
|
||||||
|
"valkyrienskies:test_chair",
|
||||||
|
"valkyrienskies:test_hinge",
|
||||||
|
"valkyrienskies:test_flap",
|
||||||
|
"valkyrienskies:test_wing",
|
||||||
|
"valkyrienskies:ship_creator",
|
||||||
|
"valkyrienskies:ship_assembler",
|
||||||
|
"valkyrienskies:ship_creator_smaller"
|
||||||
],
|
],
|
||||||
"only_disable_interactions": [
|
"only_disable_interactions": [
|
||||||
"//Items here will not be able to be right-clicked (Interact)",
|
"//Items here will not be able to be right-clicked (Interact)",
|
||||||
|
2
manifest
2
manifest
@ -2,7 +2,7 @@ const vars = {
|
|||||||
id: "mcjaen2024",
|
id: "mcjaen2024",
|
||||||
icon: "https://git.ragestudio.net/srgooglo/jaen-united-2024/raw/branch/main/icon.gif",
|
icon: "https://git.ragestudio.net/srgooglo/jaen-united-2024/raw/branch/main/icon.gif",
|
||||||
name: "Jaen United Server",
|
name: "Jaen United Server",
|
||||||
version: "1.6.2",
|
version: "1.7.0",
|
||||||
author: "Jaen United",
|
author: "Jaen United",
|
||||||
description: "Jaen United Minecraft modpack",
|
description: "Jaen United Minecraft modpack",
|
||||||
}
|
}
|
||||||
|
Binary file not shown.
BIN
mods/Fastload-Reforged-mc1.20.1-3.4.0.jar
Normal file
BIN
mods/Fastload-Reforged-mc1.20.1-3.4.0.jar
Normal file
Binary file not shown.
BIN
mods/Necronomicon-Forge-1.4.1.jar
Normal file
BIN
mods/Necronomicon-Forge-1.4.1.jar
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
mods/ecologics-forge-1.20.1-2.2.0.jar
Normal file
BIN
mods/ecologics-forge-1.20.1-2.2.0.jar
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
46
scripts/golems_mod_recipes.zs
Normal file
46
scripts/golems_mod_recipes.zs
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
craftingTable.addShaped("stone_core", <item:golemfirststonemod:block_core_stone>, [
|
||||||
|
[<item:minecraft:chiseled_stone_bricks>, <item:create:experience_block>, <item:minecraft:chiseled_stone_bricks>],
|
||||||
|
[<item:create:experience_block>, <item:create:experience_block>, <item:create:experience_block>],
|
||||||
|
[<item:minecraft:chiseled_stone_bricks>, <item:create:experience_block>, <item:minecraft:chiseled_stone_bricks>]
|
||||||
|
]);
|
||||||
|
craftingTable.addShaped("wood_core", <item:golemfirststonemod:block_core_oak>, [
|
||||||
|
[<item:minecraft:stripped_oak_log>, <item:create:experience_block>, <item:minecraft:stripped_oak_log>],
|
||||||
|
[<item:create:experience_block>, <item:create:experience_block>, <item:create:experience_block>],
|
||||||
|
[<item:minecraft:stripped_oak_log>, <item:create:experience_block>, <item:minecraft:stripped_oak_log>]
|
||||||
|
]);
|
||||||
|
craftingTable.addShaped("brick_core", <item:golemfirststonemod:block_core_brick>, [
|
||||||
|
[<item:minecraft:mud_bricks>, <item:create:experience_block>, <item:minecraft:mud_bricks>],
|
||||||
|
[<item:create:experience_block>, <item:create:experience_block>, <item:create:experience_block>],
|
||||||
|
[<item:minecraft:mud_bricks>, <item:create:experience_block>, <item:minecraft:mud_bricks>]
|
||||||
|
]);
|
||||||
|
craftingTable.addShaped("diorite_core", <item:golemfirststonemod:block_core_diorite>, [
|
||||||
|
[<item:minecraft:polished_diorite>, <item:create:experience_block>, <item:minecraft:polished_diorite>],
|
||||||
|
[<item:create:experience_block>, <item:create:experience_block>, <item:create:experience_block>],
|
||||||
|
[<item:minecraft:polished_diorite>, <item:create:experience_block>, <item:minecraft:polished_diorite>]
|
||||||
|
]);
|
||||||
|
|
||||||
|
craftingTable.addShaped("cobble_golem", <item:golemfirststonemod:item_spawn_golem_cobble>, [
|
||||||
|
[<item:minecraft:cobblestone>, <item:minecraft:cobblestone>, <item:minecraft:cobblestone>],
|
||||||
|
[<item:minecraft:cobblestone>, <item:create:experience_block>, <item:minecraft:cobblestone>],
|
||||||
|
[<item:minecraft:cobblestone>, <item:minecraft:cobblestone>, <item:minecraft:cobblestone>]
|
||||||
|
]);
|
||||||
|
craftingTable.addShaped("oak_golem", <item:golemfirststonemod:item_spawn_golem_plank>, [
|
||||||
|
[<item:minecraft:arrow>, <item:minecraft:arrow>, <item:minecraft:arrow>],
|
||||||
|
[<item:minecraft:stripped_oak_log>, <item:create:experience_block>, <item:minecraft:stripped_oak_log>],
|
||||||
|
[<item:minecraft:stripped_oak_log>, <item:minecraft:stripped_oak_log>, <item:minecraft:stripped_oak_log>]
|
||||||
|
]);
|
||||||
|
craftingTable.addShaped("mossy_golem", <item:golemfirststonemod:item_spawn_golem_mossy>, [
|
||||||
|
[<item:minecraft:moss_block>, <item:minecraft:moss_block>, <item:minecraft:moss_block>],
|
||||||
|
[<item:minecraft:mossy_cobblestone>, <item:create:experience_block>, <item:minecraft:mossy_cobblestone>],
|
||||||
|
[<item:minecraft:mossy_cobblestone>, <item:minecraft:mossy_cobblestone>, <item:minecraft:mossy_cobblestone>]
|
||||||
|
]);
|
||||||
|
craftingTable.addShaped("grindstone_golem", <item:golemfirststonemod:item_spawn_golem_grindstone>, [
|
||||||
|
[<item:minecraft:stone>, <item:minecraft:stone>, <item:minecraft:stone>],
|
||||||
|
[<item:minecraft:stone>, <item:create:experience_block>, <item:minecraft:stone>],
|
||||||
|
[<tag:items:minecraft:planks>, <item:minecraft:air>, <tag:items:minecraft:planks>]
|
||||||
|
]);
|
||||||
|
craftingTable.addShaped("key_golem", <item:golemfirststonemod:item_spawn_golem_key>, [
|
||||||
|
[<item:minecraft:air>, <item:minecraft:air>, <item:minecraft:gold_ingot>],
|
||||||
|
[<item:minecraft:gold_ingot>, <item:minecraft:gold_ingot>, <item:minecraft:gold_ingot>],
|
||||||
|
[<item:minecraft:totem_of_undying>, <item:minecraft:gold_ingot>, <item:minecraft:air>]
|
||||||
|
]);
|
Loading…
x
Reference in New Issue
Block a user