EatAndesite

Quick rating

EatAndesite

No reviews yet

Create add-on that lets you hold right-click to eat andesite (and any block you pick), for a little hunger and some Slowness. Fully configurable.

Food & Culinary
Mod Loaders
Forge
NeoForge
Fabric
Minecraft

Community voices

Reviews

Versions
Loading versions…
Match includes

Click once to include, again to exclude, again to clear

Rating Any
Any 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0
Min
Max
Play Status
Reviews
Time Played
hrs+
Verified developers only
Has developer response
List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

Compatibility

Supported Environments

Dev Environment
Client Required
Server Required

About

Project Details

Type
Mod
License
MIT License
Latest Version
eatandesite-neoforge-1.21.1-1.0.0-1.21.1.jar
Authors
CurseForge
Modrinth

For authors

Embed Badge

If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

CurseForge ID
Modrinth ID

Resources

External Links

Source Issues Wiki Discord

About

Description

JOIN OUR DISCORD

About

EatAndesite is a Create add-on that does exactly what the name says: it lets you eat andesite, with the full vanilla eating animation, sound and crunch particles. Each bite costs a little hunger and gives a short dose of Slowness — because swallowing rock isn't good for you.

Requires Create (hard dependency) — install it alongside Create.

Install on both the client and the server. Create itself needs both sides too, so a Create pack already has you covered. Works in singleplayer out of the box.

Free to use in any modpack — public or private, no permission needed.

What it does

  • Eat andesite — aim at open air and hold right-click for the normal ~1.6 s eat motion. When the bite finishes, one item is consumed (creative players keep theirs).
  • Building is untouched — right-clicking a surface places andesite exactly like vanilla, no sneaking needed. Eating never gets in the way of building.
  • There's a catch — every bite drains a little hunger and applies brief Slowness. It's a downside, not a food source.
  • Fully configurable — you decide exactly which blocks and items are edible and how punishing (or generous) each bite is. Defaults are plain andesite and polished andesite.

For modpack makers

All behavior lives in config/eatandesite.json (generated on first launch). Plain JSON, editable in any text editor. Every value is range-checked on load, so a typo or out-of-range number can never crash the game — it's just clamped back into a safe range. The mod references zero Create classes: edible items are matched purely by their id string.

Default config

{
  "enabled": true,
  "edibleItems": [
    "minecraft:andesite",
    "minecraft:polished_andesite"
  ],
  "hungerLossPoints": 1,
  "slownessDurationTicks": 100,
  "slownessAmplifier": 0,
  "eatDurationTicks": 32,
  "replaceBlockPlacement": false
}

Every key explained

  • enabled (default true) — master switch; false means nothing is edible.
  • edibleItems (default andesite + polished andesite) — which items/blocks are edible, as namespace:path. null falls back to defaults.
  • hungerLossPoints (default 1, range 020) — food points removed per bite (2 = one drumstick icon; 1 = half). 0 = no hunger cost.
  • slownessDurationTicks (default 100, range 01,000,000) — Slowness length in ticks (20 = 1 s; 100 = 5 s). 0 disables Slowness.
  • slownessAmplifier (default 0, range 0255) — Slowness level (0 = I, 1 = II, …).
  • eatDurationTicks (default 32, range 172,000) — hold time to finish a bite (32 ≈ 1.6 s, like vanilla food).
  • replaceBlockPlacement (default false) — false: placement stays vanilla, so right-click places and you eat by aiming at air or with sneak + right-click. true: inverts it, so right-click eats and sneak + right-click places. Non-block items are always eaten.

Tips for edibleItems

  • Ids are case-insensitive; a missing namespace defaults to minecraft (andesite == minecraft:andesite).
  • A Create pack will usually want the alloy: "create:andesite_alloy".
  • List only plain items/blocks. Anything with its own use logic (potions, bows, tridents, milk buckets, existing food) keeps its own behavior and won't become andesite-food.

Reset — delete config/eatandesite.json and relaunch. A hand-edited file is loaded non-destructively: if it's malformed, the mod keeps your file intact rather than overwriting it.

Feedback

Please report any bugs, errors, or feature suggestions on Discord: https://discord.gg/HTkn94BXmA

JOIN OUR DISCORD

About

EatAndesite is a Create add-on that does exactly what the name says: it lets you eat andesite, with the full vanilla eating animation, sound and crunch particles. Each bite costs a little hunger and gives a short dose of Slowness — because swallowing rock isn't good for you.

Requires Create (hard dependency) — install it alongside Create.

Install on both the client and the server. Create itself needs both sides too, so a Create pack already has you covered. Works in singleplayer out of the box.

Free to use in any modpack — public or private, no permission needed.

What it does

  • Eat andesite — aim at open air and hold right-click for the normal ~1.6 s eat motion. When the bite finishes, one item is consumed (creative players keep theirs).
  • Building is untouched — right-clicking a surface places andesite exactly like vanilla, no sneaking needed. Eating never gets in the way of building.
  • There's a catch — every bite drains a little hunger and applies brief Slowness. It's a downside, not a food source.
  • Fully configurable — you decide exactly which blocks and items are edible and how punishing (or generous) each bite is. Defaults are plain andesite and polished andesite.

For modpack makers

All behavior lives in config/eatandesite.json (generated on first launch). Plain JSON, editable in any text editor. Every value is range-checked on load, so a typo or out-of-range number can never crash the game — it's just clamped back into a safe range. The mod references zero Create classes: edible items are matched purely by their id string.

Default config

{
  "enabled": true,
  "edibleItems": [
    "minecraft:andesite",
    "minecraft:polished_andesite"
  ],
  "hungerLossPoints": 1,
  "slownessDurationTicks": 100,
  "slownessAmplifier": 0,
  "eatDurationTicks": 32,
  "replaceBlockPlacement": false
}
Key Default What it does Safe range
enabled true Master switch. false = nothing is edible.
edibleItems andesite + polished andesite Which items/blocks are edible, as namespace:path. null → defaults
hungerLossPoints 1 Food points removed per bite (2 = one drumstick; 1 = half). 0 = no cost. 020
slownessDurationTicks 100 Slowness length in ticks (20 = 1 s; 100 = 5 s). 0 disables it. 01,000,000
slownessAmplifier 0 Slowness level (0 = I, 1 = II, …). 0255
eatDurationTicks 32 Hold time to finish a bite (32 ≈ 1.6 s, like vanilla food). 172,000
replaceBlockPlacement false false: placement stays vanilla — right-click places, and you eat by aiming at air or with sneak + right-click. true: inverts it, so right-click eats and sneak + right-click places. Non-block items are always eaten.

Tips for edibleItems

  • Ids are case-insensitive; a missing namespace defaults to minecraft (andesite == minecraft:andesite).
  • A Create pack will usually want the alloy: "create:andesite_alloy".
  • List only plain items/blocks. Anything with its own use logic (potions, bows, tridents, milk buckets, existing food) keeps its own behavior and won't become andesite-food.

Reset — delete config/eatandesite.json and relaunch. A hand-edited file is loaded non-destructively: if it's malformed, the mod keeps your file intact rather than overwriting it.

Feedback

Please report any bugs, errors, or feature suggestions on Discord: https://discord.gg/HTkn94BXmA

Screenshots

Gallery

This project has no gallery images yet.

Versions

Files

Relations

Project Relations

More like this

Similar Mods

Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.

On ModDex

Community snapshot

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

<1,000
Total Downloads
CurseForge
<1,000
Modrinth
<1,000
Last Updated
CurseForge
Modrinth
Created
CurseForge
Modrinth
Last synced
When ModDex last fetched this project from CurseForge or Modrinth. Every project is re-checked on a schedule, and any project that ships a new file is synced automatically within hours of the release.
New file updates sync automatically
How syncing works