This addon allows servers to create "Boosters" which affect the sell price & token collection amounts when used in conjunction with our Harvester Hoes plugin.
Configuration - config.json
Copy {
"EnableBoosterCommand" : true ,
"TokenBoosterItem" : {
"displayName" : "&e&lToken &6&lBooster" ,
"lore" : [
" " ,
"&6&l* &e&lAMOUNT: &f{amount}x" ,
"&6&l* &e&lDURATION: &f{time} minutes" ,
" " ,
"&7&o(( Right-Click to activate! ))"
] ,
"type" : "SUNFLOWER" ,
"enchanted" : true ,
"unstackable" : true ,
"amount" : 1 ,
"enchants" : {}
} ,
"MoneyBoosterItem" : {
"displayName" : "&a&lAutoSell &2&lBooster" ,
"lore" : [
" " ,
"&6&l* &e&lAMOUNT: &f{amount}x" ,
"&6&l* &e&lDURATION: &f{time} minutes" ,
" " ,
"&7&o(( Right-Click to activate! ))"
] ,
"type" : "EMERALD" ,
"enchanted" : true ,
"unstackable" : true ,
"amount" : 1 ,
"enchants" : {}
}
}
Configuration - language.json
Copy {
"BoosterAppliedMessage" : {
"type" : "CHAT" ,
"message" : [
"&a&l[!] &2{amount} {type}&a booster applied for &f{time}&a minutes!"
]
} ,
"BoosterAlreadyActive" : {
"type" : "CHAT" ,
"message" : [
"&c&l[!] &cYou already have an active booster!"
]
} ,
"BoosterExpire" : {
"type" : "CHAT" ,
"message" : [
"&c&l[!] &cYour &4{amount} {type}&c booster has expired!"
]
} ,
"NoActiveBooster" : {
"type" : "CHAT" ,
"message" : [
"&c&l[!] &cYou don't have any active boosters!"
]
} ,
"ActiveBooster" : {
"type" : "CHAT" ,
"message" : [
"&a&l[!] &2{amount} {type}&a expires in {time}!"
]
}
}