#How do you apply tags or specify a potion? (Quick question)

5 messages · Page 1 of 1 (latest)

tame galleon
#

Let's say this is part of a recipe I am making:

   "item": "minecraft:potion"
 },```
How do I modify it so that the recipe is using a basic speed 1 potion? It seems that it's just the tag "minecraft:swiftness", but how do I apply that in the recipe?
fringe summitBOT
#

Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!

pseudo ibex
#

iirc it is just nbt data, try this ^^?

Item.of('minecraft:potion', {Potion: "minecraft:swiftness"})
tame galleon
#

That might be one way, but I did find:

      "type": "forge:nbt",
      "item": "minecraft:potion",
      "nbt": "{Potion:\"minecraft:swiftness\"}"
    },```
Just now. Both might work though. A second way is always nice to have.