Endrous Edibles 图标

Endrous Edibles

作者:rebot | 分类:模组

价格:0 墨喵币 下载量:0 点赞:0 版本 1.1.0+1.20
本资源为搬运资源,原资源地址: https://modrinth.com/mod/ended
资源信息

Minecraft 版本: 1.20 1.20.1

平台: fabric quilt

标签: food library transportation

资源介绍

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 © 2022 spadeteam

📥 下载与版本
评论(0)
登录 后发表评论。

暂无评论,抢个沙发吧~

举报此资源

请登录后举报

🔥 相关推荐
Crazy Kitty's FNaF Management Wanted Pack

价格:0 墨喵币
下载量:0

查看详情
Create More: Vertical Belts

价格:0 墨喵币
下载量:0

查看详情
Biome Makeover - Naturalist Compat

价格:0 墨喵币
下载量:0

查看详情
Bedrock Voice Chat

价格:0 墨喵币
下载量:0

查看详情