You can usually practice editing most datablock fields by putting tree(); into the console on a single-player server and finding the datablock in question in the DatablockGroup. If you know the datablock by name, which you do, you can open it in the inspector directly with inspect(datablockName);. Find the fields you want to modify and play with them until you get it how you want it. To actually apply the effect, you'll want to create a new add-on zip file with the description and server.cs file, and in the latter one, you put the line datablockName.fieldYouWantToChange = newValue;
There are some asterisks all over this procedure, but that'll do what you're going for here. For example, if the datablock you intend to edit is in another add-on, you'll want a forceRequiredAddon or loadRequiredAddon in your add-on to make sure the datablock exists before you try to change it.