Adding Custom Rewards
This page is about the adding of custom rewards
//Example of adding rewards in the rewards.json file of a content pack
{
"ExampleReward1": {
"ItemId": "(O)72",
"ItemCount": 5,
"TotalDonated": 0,
"creatureRequirements": [
"Fly"
]
},
"ExampleReward2": {
"ItemId": "(O)68",
"ItemCount": 1,
"TotalDonated": 10,
"creatureRequirements": null
}
}
//Example of adding rewards in the content.json file of a content patcher mod
{
"Action": "EditData",
"Target": "Nature.NITV/Rewards",
"Entries": {
"ExampleReward1": {
"ItemId": "(O)72",
"ItemCount": 5,
"TotalDonated": 0,
"creatureRequirements": [
"Fly"
]
},
"ExampleReward2": {
"ItemId": "(O)68",
"ItemCount": 1,
"TotalDonated": 10,
"creatureRequirements": null
}
}
}Last updated