Skip to content

Commit

Permalink
fix(recipes): ✏️Buff [Evolved Orechid]
Browse files Browse the repository at this point in the history
- Now require x2 less mana - 4000 / second
- Does not spawn [Redstone Ore] anymore
- [Apatite Ore] now x2 less weight (other ores will spawn more frequent)
  • Loading branch information
Krutoy242 committed May 11, 2024
1 parent 119f977 commit 3dee039
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/excompressum.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ compat {
# The mana cost of the Evolved Orechid. GoG Orechid is 700, vanilla Orechid is 17500.
# Min: 0
# Max: 175000
I:"Evolved Orechid Mana Cost"=8000
I:"Evolved Orechid Mana Cost"=4000

# The mana cost of the Mana Sieve per Tick.
# Min: 1
Expand Down
3 changes: 2 additions & 1 deletion scripts/mods/botania.zs
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,11 @@ mods.botania.Orechid.removeOre('oreEmerald');
mods.botania.Orechid.removeOre('orePlatinum');
mods.botania.Orechid.removeOre('oreMithril');
mods.botania.Orechid.removeOre('oreSapphire');
mods.botania.Orechid.removeOre('oreRedstone');

// Buff Apatite
mods.botania.Orechid.removeOre('oreApatite');
mods.botania.Orechid.addOre('oreApatite', 15000);
mods.botania.Orechid.addOre('oreApatite', 7000);

// Add Orechid Ingem ores
mods.botania.OrechidIgnem.addOre('oreNetherChargedCertusQuartz', 800);
Expand Down

0 comments on commit 3dee039

Please sign in to comment.