Merge pull request #3 from TechDudie/main

Add Spy Kit
master
Code-Sploit 2021-05-18 05:37:50 +00:00 committed by GitHub
commit f2cc2c428e
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}}
})