Skip to content

Commit

Permalink
fix(balance): ✏️[Replaceable Scaffolding] add recycling
Browse files Browse the repository at this point in the history
Also [Responsive Scaffolding] cheaper
  • Loading branch information
Krutoy242 committed Jun 19, 2024
1 parent fb12512 commit 9ee5e4b
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions scripts/mods/cyclic.zs
Original file line number Diff line number Diff line change
Expand Up @@ -826,3 +826,22 @@ craft.remake(<cyclicmagic:placer_block>, ['pretty',
'': <ic2:casing:4>, // Lead Item Casing
'': <ore:dustBedrock>, // Grains of Infinity
});

// Scafold recycling
// [Stick]*3 from [Replaceable Scaffolding]
craft.make(<minecraft:stick> * 3, ['pretty',
'R R R',
'R R',
'R R R'], {
'R': <cyclicmagic:block_fragile_weak>, // Replaceable Scaffolding
});

// Cheaper for easier build material
// [Responsive Scaffolding]*16 from [Tiny Pile of Redstone Dust][+1]
craft.remake(<cyclicmagic:block_fragile_auto> * 16, ['pretty',
'# #',
'# ♥ #',
'# #'], {
'#': <ore:stickWood>, // Stick
'': <ore:dustTinyRedstone>, // Tiny Pile of Redstone Dust
});

0 comments on commit 9ee5e4b

Please sign in to comment.