50 lines
1.9 KiB
YAML
50 lines
1.9 KiB
YAML
name: Blacksmith
|
|
authors: [ EpicKnarvik97, aPunch, jrbudda, HurricanKai ]
|
|
version: '${project.version}'
|
|
main: net.knarcraft.blacksmith.BlacksmithPlugin
|
|
depend: [ Citizens, Vault ]
|
|
softdepend: [ ProtocolLib ]
|
|
prefix: "Blacksmith"
|
|
description: "A plugin that adds Blacksmith and Scrapper traits compatible with Citizens, allowing players to repair and salvage items"
|
|
website: "https://www.spigotmc.org/resources/blacksmith.105938/"
|
|
|
|
api-version: 1.20
|
|
|
|
commands:
|
|
blacksmith:
|
|
permission: blacksmith.edit
|
|
usage: /<command> <option> [new value]
|
|
description: Used for configuring the selected blacksmith NPC.
|
|
blacksmithConfig:
|
|
permission: blacksmith.admin
|
|
usage: /<command> <option/reload> [new value]
|
|
description: Used for configuring default blacksmith settings, or global blacksmith settings.
|
|
scrapper:
|
|
permission: blacksmith.edit
|
|
usage: /<command> <option> [new value]
|
|
description: Used for configuring the selected scrapper NPC.
|
|
scrapperConfig:
|
|
permission: blacksmith.admin
|
|
usage: /<command> <option/reload> [new value]
|
|
description: Used for configuring default scrapper settings, or global scrapper settings.
|
|
preset:
|
|
permission: blacksmith.preset
|
|
usage: /<command> <preset>[:filter]
|
|
description: Used to display which materials are part of a given preset. If a filter, such as diamond is used, the result of applying the filter is shown.
|
|
permissions:
|
|
blacksmith.admin:
|
|
description: Allows overall blacksmith and scrapper configuration.
|
|
default: op
|
|
children:
|
|
blacksmith.edit: true
|
|
blacksmith.use: true
|
|
blacksmith.preset: true
|
|
blacksmith.edit:
|
|
description: Allows changing settings for the selected blacksmith or scrapper NPC.
|
|
default: op
|
|
blacksmith.use:
|
|
description: Allows the player to repair items using blacksmiths and salvage items using scrappers.
|
|
default: true
|
|
blacksmith.preset:
|
|
description: Allows the player to use the /preset command.
|
|
default: op |