
Add: Function reward type
James103 opened this issue ยท 2 comments
Currently, there's only the "item" reward type for quest rewards, unlike quest tasks which may include tasks not involving items.
To fix this, I propose adding the reward type function
. The function
reward type allows data packs to implement any reward for a quest using commands. The reward type takes the following parameters:
{
"type": "function",
"name": "test:example", // The namespaced ID of the function to be run.
"title": {"text":"Example Function"}, // The raw JSON text to display for the reward.
"unit_worth": 100,
"weight": 10
}
Examples (click to expand)
{
"type": "function",
"name": "test:speed_boost",
"title": {"text":"Speed II (2:30)"},
"unit_worth": 100,
"weight": 10
}
{
"type": "function",
"name": "test:max_health",
"title": {"text":"+2 Max Health"},
"unit_worth": 300,
"weight": 5
}
Hi James103,
perfect timing.
In the next Guild release, you'll be able to attach Nbt tags to quests.
With this you can specify whatever item you want.
Loot tables functions are very useful and i'll probably add them in the future, if they'll still fit with the mod, after the v1.0.0 release.
You're also welcome to post more ideas / suggestions on my Discord:
https://discord.com/invite/G8s2q4wMnt
See ya!