
Request for CraftTweaker Compatibility in Butchercraft Mod
L9Tigrotto opened this issue ยท 1 comments
Description
I would like to suggest adding CraftTweaker compatibility to the Butchercraft mod, allowing players to customize and add recipes dynamically.
Issue Encountered:
I attempted to use the following function in a CraftTweaker script:
<recipetype:butchercraft:meat_hook>.addRecipe(...);
However, this results in an error:
"... no such member addRecipe"
It seems that the meat_hook
recipe type is not currently exposed for CraftTweaker integration.
Would it be possible to add this feature in a future update? Thank you for your time and consideration!
Following up on my previous request for CraftTweaker compatibility in Butchercraft, I have now learned that <recipetype:butchercraft:meat_hook>
works with loot tables, meaning users can modify them directly via scripting:
var butchercraftMeatHookLootnames = [
"bisect_goat",
"bisect_pig",
"bisect_sheep",
"blood_bucket",
"butcher_cow",
"butcher_goat",
"butcher_pig",
"butcher_sheep",
"cow_leather",
"delimb_cow",
"deoffal_cow",
"disembowel_goat",
"disembowel_pig",
"disembowel_sheep",
"goat_leather",
"pig_leather",
"scrape_hide",
"sheep_leather",
"skin_cow",
"skin_goat",
"skin_pig",
"skin_sheep",
];
var butchercraftMeatHookLootTables = [
<resource:butchercraft:meat_hook/bisect_goat>,
<resource:butchercraft:meat_hook/bisect_pig>,
<resource:butchercraft:meat_hook/bisect_sheep>,
<resource:butchercraft:meat_hook/blood_bucket>,
<resource:butchercraft:meat_hook/butcher_cow>,
<resource:butchercraft:meat_hook/butcher_goat>,
<resource:butchercraft:meat_hook/butcher_pig>,
<resource:butchercraft:meat_hook/butcher_sheep>,
<resource:butchercraft:meat_hook/cow_leather>,
<resource:butchercraft:meat_hook/delimb_cow>,
<resource:butchercraft:meat_hook/deoffal_cow>,
<resource:butchercraft:meat_hook/disembowel_goat>,
<resource:butchercraft:meat_hook/disembowel_pig>,
<resource:butchercraft:meat_hook/disembowel_sheep>,
<resource:butchercraft:meat_hook/goat_leather>,
<resource:butchercraft:meat_hook/pig_leather>,
<resource:butchercraft:meat_hook/scrape_hide>,
<resource:butchercraft:meat_hook/sheep_leather>,
<resource:butchercraft:meat_hook/skin_cow>,
<resource:butchercraft:meat_hook/skin_goat>,
<resource:butchercraft:meat_hook/skin_pig>,
<resource:butchercraft:meat_hook/skin_sheep>,
];
var butchercraftMeatHookLootToRemove = [
<item:butchercraft:cubed_beef>,
<item:butchercraft:beef_stewmeat>,
<item:butchercraft:oxtail>,
<item:butchercraft:tongue>,
<item:butchercraft:cubed_pork>,
<item:butchercraft:pork_stewmeat>,
<item:butchercraft:cubed_lamb>,
<item:butchercraft:lamb_stewmeat>,
<item:butchercraft:cubed_goat>,
<item:butchercraft:goat_stewmeat>,
<item:butchercraft:cubed_chicken>,
<item:butchercraft:chicken_stewmeat>,
<item:butchercraft:cubed_rabbit>,
<item:butchercraft:rabbit_stewmeat>,
<item:butchercraft:stomach>,
<item:butchercraft:lung>,
<item:butchercraft:liver>,
<item:butchercraft:kidney>,
<item:butchercraft:heart>,
<item:butchercraft:brain>,
<item:butchercraft:eyeball>,
<item:butchercraft:wattle>,
<item:butchercraft:ear>,
<item:butchercraft:hoof>,
<item:butchercraft:snout>,
<item:butchercraft:chicken_foot>,
];
var butchercraftLength = butchercraftMeatHookLootnames.length;
for i in 0 .. butchercraftLength {
var name = butchercraftMeatHookLootnames[i];
var lootTable = butchercraftMeatHookLootTables[i];
loot.modifiers.register(
name + "_remove",
LootConditions.only(LootTableIdLootCondition.create(lootTable)),
(items, context) => {
for item in items
{
if (item in butchercraftMeatHookLootToRemove) { items.remove(item); }
}
return items;
}
);
}
While loot tables provide some modifiability, JEI does not update dynamically to reflect these changes. Additionally, there appears to be no method to add (or modify by removing first and the add the modified version) new recipes for the Grinder, for example:
<recipetype:butchercraft:grinder>.addRecipe(
/* output */ <item:butchercraft:ground_beef>,
/* input */ <item:butchercraft:beef_scraps> * 9,
/* component */ <item:butchercraft:grinder_tip>,
/* rolls */ 5);
Would it be possible to implement CraftTweaker support for adding Grinder recipes and modifying its existing ones? Thank you for considering this request!