summaryrefslogtreecommitdiff
path: root/src/main/resources
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/resources')
-rw-r--r--src/main/resources/plugin.yml62
1 files changed, 62 insertions, 0 deletions
diff --git a/src/main/resources/plugin.yml b/src/main/resources/plugin.yml
new file mode 100644
index 0000000..ec4a04a
--- /dev/null
+++ b/src/main/resources/plugin.yml
@@ -0,0 +1,62 @@
+name: Sandbox
+website: https://mc.cflems.net
+author: cflems
+version: 0.1.0
+description: Make your Minecraft server into your personal sandbox.
+main: net.cflems.mc.sandbox.Sandbox
+load: POSTWORLD
+api-version: '1.21.6'
+depend: [ ]
+commands:
+ enchant:
+ usage: /enchant <enchantment> [level] [player]
+ description: Enchants the item in your main hand.
+ fly:
+ usage: /fly [player]
+ description: Toggles your ability to fly.
+ repair:
+ usage: /repair [player]
+ description: Repairs the item in your main hand.
+ fireball:
+ usage: /fireball
+ description: Shoots a fireball.
+ powertool:
+ aliases: [ "pt" ]
+ usage: /powertool [command...]
+ description: Binds a command to the item in your main hand, or clears bound commands if none specified.
+permissions:
+ sandbox.*:
+ default: op
+ description: Permission to do anything with this plugin.
+ children:
+ sandbox.enchant: true
+ sandbox.enchant.others: true
+ sandbox.repair: true
+ sandbox.repair.others: true
+ sandbox.fly: true
+ sandbox.fly.others: true
+ sandbox.fireball: true
+ sandbox.powertool: true
+ sandbox.powertool.use: true
+ sandbox.powertool.reload: true
+ sandbox.enchant:
+ description: Permission to enchant your items.
+ sandbox.enchant.others:
+ description: Permission to enchant other people's items.
+ sandbox.fly:
+ description: Permission to toggle flight.
+ sandbox.fly.others:
+ description: Permission to toggle other people's flight.
+ sandbox.repair:
+ description: Permission to repair your items.
+ sandbox.repair.others:
+ description: Permission to repair other people's items.
+ sandbox.fireball:
+ description: Permission to use fireballs.
+ sandbox.powertool:
+ description: Permission to modify power tools.
+ sandbox.powertool.use:
+ default: true
+ description: Permission to use power tools.
+ sandbox.powertool.reload:
+ description: Permission to reload power tool bindings from disk.