From 12f7aa2de5290e37ff417d29b7b95ba72c00d0d9 Mon Sep 17 00:00:00 2001 From: Carson Fleming Date: Mon, 30 Jun 2025 20:09:33 -0400 Subject: Initial project with repair, enchant, fireball, fly, and powertool --- src/main/resources/plugin.yml | 62 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 src/main/resources/plugin.yml (limited to 'src/main/resources') 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 [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. -- cgit v1.2.3