AstralOrdana / Spelunkery

The Spelunkery mod for Minecraft
GNU Lesser General Public License v3.0
42 stars 20 forks source link

Make fungi compostable #183

Open thcrt opened 5 months ago

thcrt commented 5 months ago

Fungi such as the Conk Fungus should be compostable. This would fit in line with the compostability of vanilla mushrooms [source] and give another use to some items if they otherwise wouldn't be needed.

thcrt commented 5 months ago

For the time being, I'm using this KubeJS server script:

ServerEvents.compostableRecipes(event => {
    // Make Spelunkery fungi compostable
    // Vanilla mushrooms are already compostable with a chance of 65%,
    // so we replicate that here:
    event.add("spelunkery:button_mushroom", 0.65);
    event.add("spelunkery:crimini", 0.65);
    event.add("spelunkery:portabella", 0.65);
    event.add("spelunkery:conk_fungus", 0.65);
    event.add("spelunkery:inkcap_mushroom", 0.65);
    event.add("spelunkery:white_inkcap_mushroom", 0.65);
    event.add("spelunkery:phosphor_fungus", 0.65);
    event.add("spelunkery:mushgloom", 0.65);
    event.add("spelunkery:milly_bubcap", 0.65);
    event.add("spelunkery:sporophyte", 0.65);
    event.add("spelunkery:tall_sporophyte", 0.65);
    event.add("spelunkery:tangle_roots", 0.65);
    // Grilled Portabella gets a chance of 85% in line with Baked Potatoes
    event.add("spelunkery:grilled_portabella", 0.85);
});

Just adding it here in case it helps anyone else who comes across this.