Skip to content

Commit

Permalink
fix(recipes): ✏️Remove all [Precious Emerald] usages
Browse files Browse the repository at this point in the history
Replace it with [Simple Machine Parts] and [Tank] (opeblocks)
  • Loading branch information
Krutoy242 committed Feb 28, 2024
1 parent a180cef commit 6f09bec
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 12 deletions.
10 changes: 5 additions & 5 deletions scripts/mods/cyclic.zs
Original file line number Diff line number Diff line change
Expand Up @@ -501,13 +501,13 @@ craft.remake(<cyclicmagic:tool_swap>, ['pretty',
'T': <cyclicmagic:glass_strong>, // Tempered Glass
});

// [Gentle Exchange Scepter] from [Precious Emerald][+2]
// [Gentle Exchange Scepter]
craft.remake(<cyclicmagic:tool_swap_match>, ['pretty',
' ▲ P',
' T ▲',
'T '], {
'': <ore:dustDimensional>, // Dimensional Blend
'P': <randomthings:ingredient:9>, // Precious Emerald
'P': <openblocks:tank>,
'T': <cyclicmagic:glass_strong>, // Tempered Glass
});

Expand Down Expand Up @@ -543,14 +543,14 @@ craft.remake(<cyclicmagic:block_anvil_magma>, ['pretty',
'T': <cyclicmagic:glass_strong>, // Tempered Glass
});

// [Ender Wing Prime] from [Precious Emerald][+2]
// [Ender Wing Prime]
recipes.remove(<cyclicmagic:tool_warp_home>);
craft.make(<cyclicmagic:tool_warp_home:16>, ['pretty',
' f f',
' P f',
'E '], {
'f': <twilightforest:raven_feather>,
'P': <randomthings:ingredient:9>, // Precious Emerald
'P': <openblocks:tank>,
'E': <randomthings:ingredient:1>, // Evil Tear
});

Expand Down Expand Up @@ -692,7 +692,7 @@ craft.remake(<cyclicmagic:harvester_block>, ['pretty',
'P e P',
'M B M',
'L L L'], {
'P': <randomthings:ingredient:9>, // Precious Emerald
'P': <enderio:item_material:69>,
'e': <ore:essence>, // Essence
'M': <extrautils2:decorativesolidwood>, // Magical Planks
'B': <cyclicmagic:battery>, // Battery
Expand Down
2 changes: 1 addition & 1 deletion scripts/mods/danknull.zs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ craft.remake(<danknull:danknull_dock>, ['pretty',
'P ♥ P',
'♥ ■ ♥',
'P ♥ P'], {
'P': <randomthings:ingredient:9>, // Precious Emerald
'P': <enderio:item_material:69>,
'': <compactmachines3:redstonetunneltool>, // Redstone Tunnel
'': <appliedenergistics2:smooth_sky_stone_block>, // Sky Stone Block
});
3 changes: 0 additions & 3 deletions scripts/mods/randomthings.zs
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,6 @@ recipes.addShaped('ender_bucket2',
// Clear reinforced bucket
utils.clearFluid(<randomthings:reinforcedenderbucket>);

// Add recipe
mods.inworldcrafting.ExplosionCrafting.explodeBlockRecipe(<randomthings:ingredient:9> * 9, <minecraft:emerald_block>);

// Floo dust
recipes.remove(<randomthings:ingredient:7>);
recipes.addShapeless('Floo Dust 8', <randomthings:ingredient:7> * 8, [<ore:enderpearl>, <ore:dustRedstone>, <ore:gunpowder>, <ore:cropBean>]);
Expand Down
6 changes: 3 additions & 3 deletions scripts/mods/rats.zs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ craft.remake(<rats:rat_upgrade_gemcutter>, ['pretty',
'P M P',
'▬ R ▬',
'P M P'], {
'P': <randomthings:ingredient:9>, // Precious Emerald
'P': <enderio:item_material:69>,
'R': <rats:rat_upgrade_basic>, // Rat Upgrade: Basic
'': <ore:ingotCarbon>, // Carbon Brick
'M': <extrautils2:decorativesolidwood>, // Magical Planks
Expand Down Expand Up @@ -139,9 +139,9 @@ mods.rt.RandomThingsTweaker.addImbuingRecipe(

// Ratlanean upgrade
remake('rat_upgrade_basic_ratlantean', <rats:rat_upgrade_basic_ratlantean>, [
[<randomthings:ingredient:9>, <rats:marbled_cheese>, <randomthings:ingredient:9>],
[<enderio:item_material:69>, <rats:marbled_cheese>, <enderio:item_material:69>],
[<rats:marbled_cheese>, <rats:rat_upgrade_basic>, <rats:marbled_cheese>],
[<randomthings:ingredient:9>, <rats:marbled_cheese>, <randomthings:ingredient:9>],
[<enderio:item_material:69>, <rats:marbled_cheese>, <enderio:item_material:69>],
]);

// Archeologist upgrade
Expand Down

0 comments on commit 6f09bec

Please sign in to comment.