Mineuniverse
Log in Register
Mods

Endrous Edibles

A teleportation engine with built-in consumable support
by acikek
Claim this project
265 downloads
0 likes
Updated Jun 30, 2026
0 hypes

Inspired by Dimensional Edibles, this mod is the perfect solution for data pack creators and mod authors alike for transporting players to preset locations or dimensions via food.

Want to make potatoes teleport you to the End? Sure, here's the JSON file:


{
  "edible": {
    "item": "minecraft:potato"
  },
  "rules": [
    {
      "from": [
        "!minecraft:the_end"
      ],
      "destinations": {
        "fountain": {
          "pos": [0, 100, 0],
          "world": "minecraft:the_end"
        }
      }
    }
  ]
}

 

Oh, you want to use code instead? I got you:


Edible edible = EdibleBuilder.create()

    .edible(Ingredient.ofItems(Items.POTATO))
    .addRule(RuleBuilder.create()
        .addSource(new Identifier("minecraft:the_end"), false)
        .addDestination("fountain", DestinationBuilder.create()
            .world(World.END)
            .location(0, 100, 0)
            .build())
        .build())
    .build(new Identifier("example:end_potato"));

EndrousEdiblesAPI.registerEdible(edible);

 

Notes

  • You don't have to use this for food. At its core, this is a teleportation engine. There are both API methods and a command for retrieving and triggering edibles on players.
  • This example is very straightforward, but edibles' control flow can quickly become complex. I recommend reading the wiki—don't worry, it's light—before creating anything.
  • This mod was created for Atlas Greece.

License

MIT © spadeteam

No files available for download.

More from acikek

Calibrated Access
725,678
Data Criteria
691
The Printer
64,722
Void Crafting
6,185
qCraft Reimagined
4,291
Purpeille
31,625

You Might Also Like

Vivecraft
A Minecraft VR mod on a loader of your choice!
9,988,339
Athena
A crossplatform (Forge/Fabric) solution to connected block textures for 1.19.4+
99,799,527
Lodestone
A collection of code used throughout projects under the Lodestar team.
9,914,417
TheDragonLib
A library for most of sokratis12GR's Mods
9,910,232
Multi Mob Library
A library mod containing essential files for Daveyx0's mob mods
9,892,767
FTB Library (Forge) (Legacy)
FTB Library is a library mod that is used for some of our mods.
98,265,314