blob: de68cc040db7e0c3ee45a34e0f9106e3e24f4be7 (
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
# For materials, look at https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html
# For potion types, look at https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/potion/PotionType.html
# For effects, look at https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/potion/PotionEffectType.html
# If pvp is disabled in config.yml, only effects will be given to players.
items:
seeker:
'0':
material: DIAMOND_SWORD
amount: 1
enchantments:
sharpness: 1
name: 'Seeker Sword'
unbreakable: true
lore:
- 'This is the seeker sword'
'1':
material: STICK
amount: 1
enchantments:
knockback: 3
name: 'Wacky Stick'
lore:
- 'It will launch people very far'
- 'Use wisely!'
'helmet':
material: LEATHER_HELMET
'chestplate':
material: LEATHER_CHESTPLATE
'leggings':
material: LEATHER_LEGGINGS
'boots':
material: LEATHER_BOOTS
enchantments:
feather_falling: 4
hider:
'0':
material: STONE_SWORD
amount: 1
enchantments:
sharpness: 2
name: 'Hider Sword'
unbreakable: true
lore:
- 'This is the hider sword'
'1':
material: SPLASH_POTION
amount: 1
type: REGEN
'2':
material: POTION
amount: 2
type: INSTANT_HEAL
effects:
seeker:
'1':
type: SPEED
duration: 1000000
amplifier: 2
ambient: false
particles: false
'2':
type: JUMP
duration: 1000000
amplifier: 1
ambient: false
particles: false
'4':
type: WATER_BREATHING
duration: 1000000
amplifier: 10
ambient: false
particles: false
'5':
type: DOLPHINS_GRACE
duration: 1000000
amplifier: 1
ambient: false
particles: false
hider:
'1':
type: WATER_BREATHING
duration: 1000000
amplifier: 1
ambient: false
particles: false
'2':
type: DOLPHINS_GRACE
duration: 1000000
amplifier: 1
ambient: false
particles: false
|