Skip to content

Commit

Permalink
Merge pull request #434 from TheRobbie73/seitan-test
Browse files Browse the repository at this point in the history
fix seitan recipes
  • Loading branch information
Laskyyy authored Nov 23, 2024
2 parents 011867b + 014ae32 commit 9c6734c
Show file tree
Hide file tree
Showing 8 changed files with 54 additions and 44 deletions.
88 changes: 44 additions & 44 deletions kubejs/server_scripts/Bloodyfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,98 +15,98 @@ onEvent("recipes", (event) => {
.createSequencedAssembly(
["minecraft:porkchop"],
["createastral:seitan"],
[event.recipes.createDeploying("createastral:seitan", ["createastral:seitan","minecraft:rotten_flesh"]),
[event.recipes.createDeploying("createastral:protopork", ["createastral:protopork","minecraft:rotten_flesh"]),

event.recipes.createFilling("createastral:seitan",
["createastral:seitan",{ fluid: "tconstruct:blood", amount: 100 * mB }]),
event.recipes.createFilling("createastral:protopork",
["createastral:protopork",{ fluid: "tconstruct:blood", amount: 100 * mB }]),

event.recipes.createPressing("createastral:seitan",
"createastral:seitan"),
event.recipes.createCutting("createastral:seitan",
"createastral:seitan"),
event.recipes.createPressing("createastral:protopork",
"createastral:protopork"),
event.recipes.createCutting("createastral:protopork",
"createastral:protopork"),
]
)
.transitionalItem("createastral:seitan")
.transitionalItem("createastral:protopork")
.loops(1);

event.recipes
.createSequencedAssembly(
["minecraft:mutton"],
["createastral:seitan"],
[
event.recipes.createDeploying("createastral:seitan", [
"createastral:seitan",
event.recipes.createDeploying("createastral:protomutton", [
"createastral:protomutton",
"minecraft:string",
]),
event.recipes.createFilling("createastral:seitan",
["createastral:seitan",{ fluid: "tconstruct:blood", amount: 100 * mB }]),
event.recipes.createPressing("createastral:seitan",
"createastral:seitan"),
event.recipes.createCutting("createastral:seitan",
"createastral:seitan"),
event.recipes.createFilling("createastral:protomutton",
["createastral:protomutton",{ fluid: "tconstruct:blood", amount: 100 * mB }]),
event.recipes.createPressing("createastral:protomutton",
"createastral:protomutton"),
event.recipes.createCutting("createastral:protomutton",
"createastral:protomutton"),
]
)
.transitionalItem("createastral:seitan")
.transitionalItem("createastral:protomutton")
.loops(1);

event.recipes
.createSequencedAssembly(
["minecraft:beef"],
["createastral:seitan"],
[
event.recipes.createDeploying("createastral:seitan", [
"createastral:seitan",
event.recipes.createDeploying("createastral:protobeef", [
"createastral:protobeef",
"minecraft:moss_carpet",
]),
event.recipes.createFilling("createastral:seitan",
["createastral:seitan",{ fluid: "tconstruct:blood", amount: 100 * mB }]),
event.recipes.createPressing("createastral:seitan",
"createastral:seitan"),
event.recipes.createCutting("createastral:seitan",
"createastral:seitan"),
event.recipes.createFilling("createastral:protobeef",
["createastral:protobeef",{ fluid: "tconstruct:blood", amount: 100 * mB }]),
event.recipes.createPressing("createastral:protobeef",
"createastral:protobeef"),
event.recipes.createCutting("createastral:protobeef",
"createastral:protobeef"),
]
)
.transitionalItem("createastral:seitan")
.transitionalItem("createastral:protobeef")
.loops(1);

event.recipes
.createSequencedAssembly(
["minecraft:chicken"],
["createastral:seitan"],
[
event.recipes.createDeploying("createastral:seitan", [
"createastral:seitan",
event.recipes.createDeploying("createastral:protochicken", [
"createastral:protochicken",
"minecraft:wheat_seeds",
]),
event.recipes.createFilling("createastral:seitan",
["createastral:seitan",{ fluid: "tconstruct:blood", amount: 100 * mB }]),
event.recipes.createPressing("createastral:seitan",
"createastral:seitan"),
event.recipes.createCutting("createastral:seitan",
"createastral:seitan"),
event.recipes.createFilling("createastral:protochicken",
["createastral:protochicken",{ fluid: "tconstruct:blood", amount: 100 * mB }]),
event.recipes.createPressing("createastral:protochicken",
"createastral:protochicken"),
event.recipes.createCutting("createastral:protochicken",
"createastral:protochicken"),
]
)
.transitionalItem("createastral:seitan")
.transitionalItem("createastral:protochicken")
.loops(1);

event.recipes
.createSequencedAssembly(
["minecraft:rabbit"],
["createastral:seitan"],
[
event.recipes.createDeploying("createastral:seitan", [
"createastral:seitan",
event.recipes.createDeploying("createastral:protorabbit", [
"createastral:protorabbit",
"minecraft:carrot",
]),
event.recipes.createFilling("createastral:seitan",
["createastral:seitan",{ fluid: "tconstruct:blood", amount: 100 * mB }]),
event.recipes.createPressing("createastral:seitan",
"createastral:seitan"),
event.recipes.createCutting("createastral:seitan",
"createastral:seitan"),
event.recipes.createFilling("createastral:protorabbit",
["createastral:protorabbit",{ fluid: "tconstruct:blood", amount: 100 * mB }]),
event.recipes.createPressing("createastral:protorabbit",
"createastral:protorabbit"),
event.recipes.createCutting("createastral:protorabbit",
"createastral:protorabbit"),
]
)
.transitionalItem("createastral:seitan")
.transitionalItem("createastral:protorabbit")
.loops (1);

event.recipes
Expand Down
5 changes: 5 additions & 0 deletions kubejs/startup_scripts/item_registry.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,11 @@ onEvent("item.registry", (event) => {
.food((food) => {
food.hunger(2).saturation(0.5).alwaysEdible();
});
event.create("createastral:protobeef");
event.create("createastral:protochicken");
event.create("createastral:protomutton");
event.create("createastral:protopork");
event.create("createastral:protorabbit");

//Radiant Armor And Tools//
event.create("createastral:radiant_helmet", "helmet").tier("radiantarmor").glow(true).rarity("Epic");
Expand Down
5 changes: 5 additions & 0 deletions resources/createastral/lang/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,11 @@
"item.createastral.golden_bowl": "Golden Bowl",
"item.createastral.filled_golden_bowl": "Filled Golden Bowl",
"item.createastral.seitan": "Seitan",
"item.createastral.protopork": "Protopork",
"item.createastral.protobeef": "Protobeef",
"item.createastral.protochicken": "Protochicken",
"item.createastral.protomutton": "Protomutton",
"item.createastral.protorabbit": "Protorabbit",

"item.createastral.radiant_helmet": "Radiant Helmet",
"item.createastral.radiant_chestplate": "Radiant Chestplate",
Expand Down
Binary file added resources/createastral/textures/item/protobeef.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/createastral/textures/item/protomutton.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/createastral/textures/item/protopork.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/createastral/textures/item/protorabbit.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 9c6734c

Please sign in to comment.