Recipe: Cow Soul Vial -> Cow Spawn Egg + cleanup

This commit is contained in:
IntegerLimit 2023-04-06 19:47:27 +10:00
parent 922be0442e
commit cc6e0017b3
3 changed files with 16 additions and 13 deletions

View File

@ -418,19 +418,6 @@ cutter.recipeBuilder()
.EUt(30) .EUt(30)
.buildAndRegister(); .buildAndRegister();
// Change drops of pulverised obsidian and niter, add (temporary) conversion recipes
val basalzEntity = <entity:thermalfoundation:basalz>;
basalzEntity.removeDrop(<thermalfoundation:material:770>);
basalzEntity.addPlayerOnlyDrop(<metaitem:dustObsidian> % 80, 0, 2); // 80% is around the rate observed.
recipes.addShapeless(<metaitem:dustObsidian>, [<thermalfoundation:material:770>]);
val blitzEntity = <entity:thermalfoundation:blitz>;
blitzEntity.removeDrop(<thermalfoundation:material:772>);
blitzEntity.addPlayerOnlyDrop(<metaitem:dustSaltpeter> % 80, 0, 2); // 80% is around the rate observed.
recipes.addShapeless(<metaitem:dustSaltpeter>, [<thermalfoundation:material:772>]);
// Tooltips // Tooltips
// Not needed because of better tooltips. // Not needed because of better tooltips.

View File

@ -175,3 +175,6 @@ gemPerfect.generateRecipes(function(orePrefix as OrePrefix, material as Material
.outputs(Utils.item("gemExquisite", material) * 2) .outputs(Utils.item("gemExquisite", material) * 2)
.duration(100).EUt(1920).buildAndRegister(); .duration(100).EUt(1920).buildAndRegister();
} as IOreRecipeHandler); } as IOreRecipeHandler);
// Cow Egg
recipes.addShapeless(<minecraft:spawn_egg>.withTag({EntityTag: {id: "minecraft:cow"}}), [<enderio:item_soul_vial:1>.withTag({entityId: "minecraft:cow"})]);

View File

@ -391,6 +391,19 @@ mixer.recipeBuilder()
.inputs([<thermalfoundation:material:1028>, <metaitem:dustTitanium>]) .inputs([<thermalfoundation:material:1028>, <metaitem:dustTitanium>])
.duration(200).EUt(30).buildAndRegister(); .duration(200).EUt(30).buildAndRegister();
// Change drops of pulverised obsidian and niter, add (temporary) conversion recipes
val basalzEntity = <entity:thermalfoundation:basalz>;
basalzEntity.removeDrop(<thermalfoundation:material:770>);
basalzEntity.addPlayerOnlyDrop(<metaitem:dustObsidian> % 80, 0, 2); // 80% is around the rate observed.
recipes.addShapeless(<metaitem:dustObsidian>, [<thermalfoundation:material:770>]);
val blitzEntity = <entity:thermalfoundation:blitz>;
blitzEntity.removeDrop(<thermalfoundation:material:772>);
blitzEntity.addPlayerOnlyDrop(<metaitem:dustSaltpeter> % 80, 0, 2); // 80% is around the rate observed.
recipes.addShapeless(<metaitem:dustSaltpeter>, [<thermalfoundation:material:772>]);
// Temporary Conversion recipe between gt and thermal mana infused // Temporary Conversion recipe between gt and thermal mana infused
recipes.addShapeless(<thermalfoundation:material:136>, [<gregtech:meta_ingot:32021>]); recipes.addShapeless(<thermalfoundation:material:136>, [<gregtech:meta_ingot:32021>]);
recipes.addShapeless(<thermalfoundation:material:72>, [<gregtech:meta_dust:32021>]); recipes.addShapeless(<thermalfoundation:material:72>, [<gregtech:meta_dust:32021>]);