owobot/util/textformat.js

18 lines
312 B
JavaScript
Raw Normal View History

const settings=require("../settings.json");
2024-07-18 16:18:27 -04:00
module.exports = function (text) {
return JSON.stringify({
translate: "[%s] %s",
color: "#FFAAFF",
with:[
{
text: settings.name,
color: "light_purple"
},
{
text: text,
color: "white"
}
]
2024-07-18 16:18:27 -04:00
})
}