This commit is contained in:
Glitchlabs
2026-05-09 22:56:14 +02:00
commit b23c2129fc
411 changed files with 162068 additions and 0 deletions
@@ -0,0 +1,5 @@
{
"item.pickpocketing.pickpocketing_gloves": "Taschendieb-Handschuhe",
"item.pickpocketing.ender_pickpocketing_gloves": "Ender-Taschendieb-Handschuhe",
"pickpocketing.cooldown": "Du musst noch %d Sekunden warten!"
}
@@ -0,0 +1,5 @@
{
"item.pickpocketing.pickpocketing_gloves": "Pickpocketing Gloves",
"item.pickpocketing.ender_pickpocketing_gloves": "Ender Pickpocketing Gloves",
"pickpocketing.cooldown": "You must wait %d seconds!"
}
@@ -0,0 +1,6 @@
{
"parent": "item/handheld",
"textures": {
"layer0": "pickpocketing:item/ender_pickpocketing_gloves"
}
}
@@ -0,0 +1,7 @@
{
"parent": "item/handheld",
"textures": {
"layer0": "pickpocketing:item/pickpocketing_gloves"
}
}
@@ -0,0 +1,4 @@
{
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 795 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 877 B

@@ -0,0 +1,27 @@
{
"type": "minecraft:crafting_shaped",
"show_notification": false,
"category": "equipment",
"pattern": [
"SGS",
"SLS",
"GRG"
],
"key": {
"S": {
"item": "minecraft:string"
},
"G": {
"item": "minecraft:amethyst_shard"
},
"L": {
"item": "minecraft:ender_eye"
},
"R": {
"item": "minecraft:ominous_trial_key"
}
},
"result": {
"id": "pickpocketing:ender_pickpocketing_gloves"
}
}
@@ -0,0 +1,27 @@
{
"type": "minecraft:crafting_shaped",
"show_notification": false,
"category": "equipment",
"pattern": [
"SGS",
"SLS",
"GRG"
],
"key": {
"S": {
"item": "minecraft:string"
},
"G": {
"item": "minecraft:gold_nugget"
},
"L": {
"item": "minecraft:leather"
},
"R": {
"item": "minecraft:trial_key"
}
},
"result": {
"id": "pickpocketing:pickpocketing_gloves"
}
}
+31
View File
@@ -0,0 +1,31 @@
{
"schemaVersion": 1,
"id": "pickpocketing",
"version": "1.0.0",
"name": "Pickpocketing",
"description": "",
"authors": [],
"contact": {},
"license": "GPL-3.0",
"icon": "assets/pickpocketing/icon.png",
"environment": "*",
"entrypoints": {
"fabric-datagen": ["ovh.glitchlabs.pickpocketing.client.PickpocketingDataGenerator"],
"client": ["ovh.glitchlabs.pickpocketing.client.PickpocketingClient"],
"main": ["ovh.glitchlabs.pickpocketing.Pickpocketing"]
},
"mixins": [
"pickpocketing.mixins.json"
],
"depends": {
"fabricloader": ">=0.18.6",
"fabric-language-kotlin": ">=1.13.10+kotlin.2.3.20",
"fabric-api": "*",
"minecraft": "1.21.1"
}
}
@@ -0,0 +1,16 @@
{
"required": true,
"minVersion": "0.8",
"package": "ovh.glitchlabs.pickpocketing.mixin",
"compatibilityLevel": "JAVA_21",
"mixins": [
],
"client": [
],
"injectors": {
"defaultRequire": 1
},
"overwrites": {
"requireAnnotations": true
}
}