Compatibility
Minecraft: Java Edition
1.21.x
1.20–1.20.2
Platforms
75% of ad revenue goes to creators
Support creators and Modrinth ad-free with Modrinth+Creators
Details
Licensed GPL-3.0-only
Published last year
Updated 3 weeks ago
Knives
Add throwing knifes to your server!
This plugin adds throwing knives as craftable weapons. Throwing knives are crafted with iron and sticks, the amount of crafted knives and maximum amount can be set in the cofig file.
Knives can be thrown by right clicking. This will remove a knife from the item.
Permissions
knives.use:
description: Allows you to use throwing knives.
default: true
knives.craft:
description: Allows you craft throwing knives.
default: true
Config
Edit or append your own custom knives:
knife1:
craft_amount: 5 # Integer
max_amount: 40 # Integer
damage: 2.0 # Double
cooldown: 500 # Integer In milliseconds
name: "<red>Iron Throwing Knife" # String
lore: # List<String>
- "A sharp knife"
material: IRON_SWORD # Material as enum (for a list of possibilities see https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html)
recipe: > # 2x2 or 3x3 grid of materials separated by '|'. '#' is an empty cell.
# | # | # |
# | IRON_INGOT | # |
STICK | # | # |
knife2:
craft_amount: 1
max_amount: 10
damage: 1.0
cooldown: 1000
name: "Potato"
lore: # List<String>
- "The unseen vegetable"
- "is the deadliest"
material: POTATO
mass: 2.5 # This is a factor defining how fast objects fall. Best to keep it between 0.3 and 3.
recipe: >
# | # |
# | POTATO |