Ajout armure et paxel en Diamond Shard + désactivation minerai surface
Nouvelles fonctionnalités : - Armure complète en Diamond Shard (casque, plastron, jambières, bottes) - Paxel en Diamond Shard (outil combiné pioche+pelle+hache, 1000 durabilité) - Désactivation du Shard Diamond Ore de surface (deepslate uniquement) - Mise à jour README.md avec toutes les nouvelles fonctionnalités Fichiers ajoutés : - Classes d'armure : Sharddiamondhelmet/chestplate/leggings/bootsItem.java - Classe paxel : SharddiamondpaxelItem.java - Recettes de craft pour armure et paxel - Modèles et textures pour tous les nouveaux items - Textures d'armure (layer 1 et 2) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
@@ -21,5 +21,10 @@
|
||||
"block.custom_ore_gen.puregoldenore": "Pure golden ore",
|
||||
"block.custom_ore_gen.highemeraldore": "emerald ore",
|
||||
"item.custom_ore_gen.sharddiamondshovel": "Shard diamond shovel",
|
||||
"item.custom_ore_gen.ore_biome_finder": "Ore Biome Finder"
|
||||
"item.custom_ore_gen.ore_biome_finder": "Ore Biome Finder",
|
||||
"item.custom_ore_gen.sharddiamondhelmet": "Shard Diamond Helmet",
|
||||
"item.custom_ore_gen.sharddiamondchestplate": "Shard Diamond Chestplate",
|
||||
"item.custom_ore_gen.sharddiamondleggings": "Shard Diamond Leggings",
|
||||
"item.custom_ore_gen.sharddiamondboots": "Shard Diamond Boots",
|
||||
"item.custom_ore_gen.sharddiamondpaxel": "Shard Diamond Paxel"
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "minecraft:item/generated",
|
||||
"textures": {
|
||||
"layer0": "custom_ore_gen:item/sharddiamondboots"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "minecraft:item/generated",
|
||||
"textures": {
|
||||
"layer0": "custom_ore_gen:item/sharddiamondchestplate"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "minecraft:item/generated",
|
||||
"textures": {
|
||||
"layer0": "custom_ore_gen:item/sharddiamondhelmet"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "minecraft:item/generated",
|
||||
"textures": {
|
||||
"layer0": "custom_ore_gen:item/sharddiamondleggings"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "minecraft:item/handheld",
|
||||
"textures": {
|
||||
"layer0": "custom_ore_gen:item/sharddiamondpaxel"
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 167 B |
|
After Width: | Height: | Size: 166 B |
|
After Width: | Height: | Size: 146 B |
|
After Width: | Height: | Size: 160 B |
|
After Width: | Height: | Size: 285 B |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 869 B |
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"category": "equipment",
|
||||
"pattern": [
|
||||
" ",
|
||||
"aaa",
|
||||
"a a"
|
||||
],
|
||||
"key": {
|
||||
"a": {
|
||||
"item": "custom_ore_gen:diamondshard"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "custom_ore_gen:sharddiamondboots",
|
||||
"count": 1
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"category": "equipment",
|
||||
"pattern": [
|
||||
"aDa",
|
||||
"aaa",
|
||||
"aaa"
|
||||
],
|
||||
"key": {
|
||||
"a": {
|
||||
"item": "custom_ore_gen:diamondshard"
|
||||
},
|
||||
"D": {
|
||||
"item": "minecraft:diamond"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "custom_ore_gen:sharddiamondchestplate",
|
||||
"count": 1
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"category": "equipment",
|
||||
"pattern": [
|
||||
"aaa",
|
||||
"a a",
|
||||
" "
|
||||
],
|
||||
"key": {
|
||||
"a": {
|
||||
"item": "custom_ore_gen:diamondshard"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "custom_ore_gen:sharddiamondhelmet",
|
||||
"count": 1
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"category": "equipment",
|
||||
"pattern": [
|
||||
"aDa",
|
||||
"a a",
|
||||
"a a"
|
||||
],
|
||||
"key": {
|
||||
"a": {
|
||||
"item": "custom_ore_gen:diamondshard"
|
||||
},
|
||||
"D": {
|
||||
"item": "minecraft:diamond"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "custom_ore_gen:sharddiamondleggings",
|
||||
"count": 1
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"category": "equipment",
|
||||
"pattern": [
|
||||
"APS",
|
||||
"S S",
|
||||
" "
|
||||
],
|
||||
"key": {
|
||||
"A": {
|
||||
"item": "custom_ore_gen:sharddiamondaxe"
|
||||
},
|
||||
"P": {
|
||||
"item": "custom_ore_gen:sharddiamondshovel"
|
||||
},
|
||||
"S": {
|
||||
"item": "custom_ore_gen:sharddiamondpickaxe"
|
||||
},
|
||||
" ": {
|
||||
"item": "minecraft:stick"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "custom_ore_gen:sharddiamondpaxel",
|
||||
"count": 1
|
||||
}
|
||||
}
|
||||