summaryrefslogtreecommitdiff
path: root/src/main/resources/plugin.yml
blob: 3011fe1bdce061e4a308e7fc53939849939e0047 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
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 [power]
    description: Shoots a fireball, optionally with the desired power.
  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.fireball.custom: 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.fireball.custom:
    description: Permission to use fireballs with custom power.
  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.