Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joshet18/customcraft
https://github.com/joshet18/customcraft
customcraft plugin pmmp pocketmine pocketmine-mp
Last synced: about 15 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/joshet18/customcraft
- Owner: Joshet18
- License: gpl-3.0
- Created: 2022-08-05T13:10:40.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-03T10:52:25.000Z (over 1 year ago)
- Last Synced: 2024-11-19T08:36:17.537Z (2 months ago)
- Topics: customcraft, plugin, pmmp, pocketmine, pocketmine-mp
- Language: PHP
- Homepage:
- Size: 71.3 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![](https://poggit.pmmp.io/shield.state/CustomCraft)](https://poggit.pmmp.io/p/CustomCraft)
[![](https://poggit.pmmp.io/shield.api/CustomCraft)](https://poggit.pmmp.io/p/CustomCraft)
[![](https://poggit.pmmp.io/shield.dl.total/CustomCraft)](https://poggit.pmmp.io/p/CustomCraft)## 🔧 Setup:
1) Create json file in plugin folder (Furnace or Crafting_table)
2) Edit the format using the item's id/meta
3) Use the command /customcraft reload or restart the server to load all recipes## 📜 Formats:
- Crafting Table:
```JSON
{
"pattern": [
"AAA",
"AB ",
" B "
],
"key": {
"A": {
"item": "minecraft:cobble"
},
"B": {
"item": "minecraft:stick"
}
},
"result": {
"item": "minecraft:stone_pickaxe"
"count": 1,
"enchantments": {
"unbreaking": 10,
"efficiency": 10
},
"name": "Super Stone Pickaxe"
}
}
```
- Furnace:
```json
{
"tags": [
"furnace",
"blast_furnace",
"smoker_furnace"
],
"output": {
"item": "minecraft:cobble"
},
"input": {
"item": "minecraft:stick"
}
}
```
## 🗒️ Items List:
[Click](https://github.com/Joshet18/CustomCraft/blob/main/ItemsIds.md) to show list
## 📋 Permissions:
| Permission | Command |
|--------------------|------------------------|
| customcraft | `/customcraft` |
| customcraft.reload | `/customcraft reload` |
## 📖 Enchantments available:
| Name | Other plugin register require|
|-----------------------|------------------------------|
| protection | ❌ |
| fire_protection | ❌ |
| blast_protection | ❌ |
| projectile_protection | ❌ |
| feather_falling | ❌ |
| thorns | ❌ |
| respiration | ❌ |
| sharpness | ❌ |
| knockback | ❌ |
| fire_aspect | ❌ |
| efficiency | ❌ |
| silk_touch | ❌ |
| unbreaking | ❌ |
| power | ❌ |
| punch | ❌ |
| flame | ❌ |
| infinity | ❌ |
| mending | ❌ |
| vanishing | ❌ |
| swift_sneak | ❌ |
| fortune | ✔️ |
| looting | ✔️ |