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