Update kits.lua

master
TechDudie 2021-05-17 15:50:39 -05:00 committed by GitHub
parent 899c768f5e
commit 178766d8ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 0 deletions

View File

@ -75,3 +75,17 @@ kitpvp.api.register_kit({
armor = "leather",
armor_enchantments = {{protection = 1}, {protection = 1}, {protection = 1}, {protection = 1}}
})
kitpvp.api.register_kit({
name = "spy",
items = {
item("mcl_tools:sword_stone", {sharpness = 1}) --fighting
item("mcl_potions:invisibility", 2) --spying
item("mcl_potions:night_vision", 2) --spying
item("mcl_books:writable_book", 3) --keeping note of whats happening
item("mcl_tools:pick_iron", {efficiency = 1, unbreaking = 1}) --digging pesky blocks to keep spying
},
default_items = true,
armor = "iron",
armor_enchantments = {{protection = 1}, {protection = 1}, {protection = 1}, {protection = 1}}
})