From c59fbf7a34fcd02ddb26486da1922a97082303ad Mon Sep 17 00:00:00 2001 From: "felden.r@grenoble.archi.fr" Date: Mon, 5 Jan 2026 15:39:24 +0100 Subject: [PATCH] =?UTF-8?q?Ajout=20armure=20et=20paxel=20en=20Diamond=20Sh?= =?UTF-8?q?ard=20+=20d=C3=A9sactivation=20minerai=20surface?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- .claude/settings.local.json | 3 +- README.md | 122 ++++++++++++++++-- diamond_shard_paxel.png | Bin 0 -> 285 bytes shard_armor/sharddiamondarmor_body.png | Bin 0 -> 166 bytes shard_armor/sharddiamondarmor_boots.png | Bin 0 -> 167 bytes shard_armor/sharddiamondarmor_head.png | Bin 0 -> 146 bytes shard_armor/sharddiamondarmor_layer_1.png | Bin 0 -> 1650 bytes shard_armor/sharddiamondarmor_layer_2.png | Bin 0 -> 869 bytes shard_armor/sharddiamondarmor_leggings.png | Bin 0 -> 160 bytes .../init/CustomOreGenModItems.java | 15 +++ .../init/CustomOreGenModTabs.java | 7 + .../item/SharddiamondbootsItem.java | 49 +++++++ .../item/SharddiamondchestplateItem.java | 49 +++++++ .../item/SharddiamondhelmetItem.java | 49 +++++++ .../item/SharddiamondleggingsItem.java | 49 +++++++ .../item/SharddiamondpaxelItem.java | 80 ++++++++++++ .../assets/custom_ore_gen/lang/en_us.json | 7 +- .../models/item/sharddiamondboots.json | 6 + .../models/item/sharddiamondchestplate.json | 6 + .../models/item/sharddiamondhelmet.json | 6 + .../models/item/sharddiamondleggings.json | 6 + .../models/item/sharddiamondpaxel.json | 6 + .../textures/item/sharddiamondboots.png | Bin 0 -> 167 bytes .../textures/item/sharddiamondchestplate.png | Bin 0 -> 166 bytes .../textures/item/sharddiamondhelmet.png | Bin 0 -> 146 bytes .../textures/item/sharddiamondleggings.png | Bin 0 -> 160 bytes .../textures/item/sharddiamondpaxel.png | Bin 0 -> 285 bytes .../armor/sharddiamondarmor_layer_1.png | Bin 0 -> 1650 bytes .../armor/sharddiamondarmor_layer_2.png | Bin 0 -> 869 bytes ...mondblockore_biome_modifier.json.disabled} | 0 .../recipes/sharddiamondboots.json | 18 +++ .../recipes/sharddiamondchestplate.json | 21 +++ .../recipes/sharddiamondhelmet.json | 18 +++ .../recipes/sharddiamondleggings.json | 21 +++ .../recipes/sharddiamondpaxel.json | 27 ++++ 35 files changed, 552 insertions(+), 13 deletions(-) create mode 100644 diamond_shard_paxel.png create mode 100644 shard_armor/sharddiamondarmor_body.png create mode 100644 shard_armor/sharddiamondarmor_boots.png create mode 100644 shard_armor/sharddiamondarmor_head.png create mode 100644 shard_armor/sharddiamondarmor_layer_1.png create mode 100644 shard_armor/sharddiamondarmor_layer_2.png create mode 100644 shard_armor/sharddiamondarmor_leggings.png create mode 100644 src/main/java/net/mcreator/customoregen/item/SharddiamondbootsItem.java create mode 100644 src/main/java/net/mcreator/customoregen/item/SharddiamondchestplateItem.java create mode 100644 src/main/java/net/mcreator/customoregen/item/SharddiamondhelmetItem.java create mode 100644 src/main/java/net/mcreator/customoregen/item/SharddiamondleggingsItem.java create mode 100644 src/main/java/net/mcreator/customoregen/item/SharddiamondpaxelItem.java create mode 100644 src/main/resources/assets/custom_ore_gen/models/item/sharddiamondboots.json create mode 100644 src/main/resources/assets/custom_ore_gen/models/item/sharddiamondchestplate.json create mode 100644 src/main/resources/assets/custom_ore_gen/models/item/sharddiamondhelmet.json create mode 100644 src/main/resources/assets/custom_ore_gen/models/item/sharddiamondleggings.json create mode 100644 src/main/resources/assets/custom_ore_gen/models/item/sharddiamondpaxel.json create mode 100644 src/main/resources/assets/custom_ore_gen/textures/item/sharddiamondboots.png create mode 100644 src/main/resources/assets/custom_ore_gen/textures/item/sharddiamondchestplate.png create mode 100644 src/main/resources/assets/custom_ore_gen/textures/item/sharddiamondhelmet.png create mode 100644 src/main/resources/assets/custom_ore_gen/textures/item/sharddiamondleggings.png create mode 100644 src/main/resources/assets/custom_ore_gen/textures/item/sharddiamondpaxel.png create mode 100644 src/main/resources/assets/custom_ore_gen/textures/models/armor/sharddiamondarmor_layer_1.png create mode 100644 src/main/resources/assets/custom_ore_gen/textures/models/armor/sharddiamondarmor_layer_2.png rename src/main/resources/data/custom_ore_gen/forge/biome_modifier/{sharddiamondblockore_biome_modifier.json => sharddiamondblockore_biome_modifier.json.disabled} (100%) create mode 100644 src/main/resources/data/custom_ore_gen/recipes/sharddiamondboots.json create mode 100644 src/main/resources/data/custom_ore_gen/recipes/sharddiamondchestplate.json create mode 100644 src/main/resources/data/custom_ore_gen/recipes/sharddiamondhelmet.json create mode 100644 src/main/resources/data/custom_ore_gen/recipes/sharddiamondleggings.json create mode 100644 src/main/resources/data/custom_ore_gen/recipes/sharddiamondpaxel.json diff --git a/.claude/settings.local.json b/.claude/settings.local.json index 632d096b0..261b43bbc 100644 --- a/.claude/settings.local.json +++ b/.claude/settings.local.json @@ -12,7 +12,8 @@ "Bash(grep:*)", "Bash(unzip:*)", "Bash(./gradlew:*)", - "WebSearch" + "WebSearch", + "Bash(git add:*)" ] } } diff --git a/README.md b/README.md index 23a742b32..dc8b541bb 100644 --- a/README.md +++ b/README.md @@ -70,12 +70,11 @@ Il est recommandé pour la bonne utilisation du mods d'utilisé des mods complé Le mod ajoute plusieurs variantes de minerais personnalisés : #### Variantes de Diamant -- **Shard Diamond Ore** (`sharddiamondblockore`) : Un minerai de diamant qui droppe des éclats de diamant +- **Deepslate Shard Diamond Ore** (`deepslatesharddiamondore`) : Un minerai de diamant qui droppe des éclats de diamant - Se génère dans tous les biomes (forge:any) - - Hauteur : 0 à 15 - - Taille des filons : 8 blocs + - Se génère uniquement en profondeur (deepslate) + - Taille des filons : 16 blocs - Drop : 1-2 Diamond Shards (Fortune supporté) -- **Deepslate Shard Diamond Ore** (`deepslatesharddiamondore`) : Version deepslate du minerai d'éclats de diamant - **Concentrated Diamond Ore** (`concentrateddiamondore`) : Un minerai de diamant plus concentré - Se génère dans les biomes froids (cold_biomes) - Drop : 1-2 Diamants (Fortune supporté) @@ -127,6 +126,16 @@ Le mod ajoute plusieurs variantes de minerais personnalisés : - Permet de créer des outils en éclats de diamant - Peut être crafté en diamant complet (9 éclats = 1 diamant) +#### Ore Biome Finder (`ore_biome_finder`) +- **Description** : Un outil permettant d'identifier les minerais présents dans le biome actuel +- **Stack** : 1 (non stackable) +- **Utilisation** : Clic droit pour afficher les informations du biome actuel +- **Informations affichées** : + - Nom du biome et ID + - Tags du mod applicables au biome (cold_biomes, hot_biomes, etc.) + - Liste des minerais trouvables dans ce biome +- **Craft** : Compass + Diamond Shards (voir recettes ci-dessous) + ### Outils en Diamond Shard Le mod introduit une nouvelle catégorie d'outils située entre le fer et le diamant : @@ -147,6 +156,31 @@ Le mod introduit une nouvelle catégorie d'outils située entre le fer et le dia - **Vitesse de minage** : 7.0 - **Dégâts d'attaque** : 6 +#### Paxel en Éclat de Diamant (`sharddiamondpaxel`) +- **Description** : Outil combiné pioche + pelle + hache, tout-en-un pour le minage +- **Durabilité** : 1000 utilisations +- **Vitesse de minage** : 6.5 +- **Dégâts d'attaque** : 1 (pas fait pour le combat) +- **Réparation** : Utilise des Diamond Shards +- **Fonctionnalités** : + - Mine tous les blocs (pierre, bois, terre, etc.) + - Efficace sur tous les types de blocs + - Remplace les 3 outils séparés + +### Armure en Diamond Shard + +Le mod introduit une armure intermédiaire située entre le fer et le diamant : + +| Pièce | Protection | Durabilité | Craft | +|-------|-----------|------------|-------| +| Casque | 3 | 250 | 5 Diamond Shards | +| Plastron | 7 | 300 | 8 Diamond Shards + 1 Diamant | +| Jambières | 5 | 280 | 7 Diamond Shards + 1 Diamant | +| Bottes | 2 | 230 | 4 Diamond Shards | +| **Total** | **17** | **1060** | **24 Shards + 2 Diamants** | + +**Comparaison** : Fer (15 armure, 535 durabilité) | Diamond Shard (17 armure, 1060 durabilité) | Diamant (20 armure, 2048 durabilité) + ## Distribution des Minerais par Biomes Le mod utilise une classification logique des biomes pour la génération des minerais via les biome modifiers de Forge. Le support de **Biomes O' Plenty** est inclus avec 69 biomes supplémentaires. @@ -160,13 +194,14 @@ Le mod utilise une classification logique des biomes pour la génération des mi | **Mountain** | High Emerald | 22 | 10 | | **Rare** | Lower Emerald | 10 | 10 | | **Tempered** | Iron, Deepslate Iron, Concentrated Coal | 23 | 23 | -| **All** | Shard Diamond, Deepslate Shard Diamond | - | - | +| **All** | Deepslate Shard Diamond | - | - | --- ### 🔷 forge:any (Tous les biomes) -**Minerais** : Shard Diamond Ore, Deepslate Shard Diamond Ore +**Minerais** : Deepslate Shard Diamond Ore - **TOUS** les biomes (vanilla + mods) +- **Se génère uniquement en profondeur (deepslate)** --- @@ -430,6 +465,14 @@ Le mod utilise un système de drops configurable (`ConfigurableOreDropsProcedure ## Recettes de Craft +### Ore Biome Finder +``` +[DiamantShard] [Compas] [DiamantShard] +[Compas] [ ] [Compas] +[DiamantShard] [Compas] [DiamantShard] + = 1 Ore Biome Finder +``` + ### Diamant à partir d'Éclats ``` [Éclat] [Éclat] [Éclat] @@ -444,12 +487,54 @@ Les recettes suivent le pattern standard des outils Minecraft : - **Pelle** : 1 Diamond Shard + 2 bâtons - **Hache** : 3 Diamond Shards + 2 bâtons +### Paxel en Diamond Shard +``` +[Hache] [Pelle] [Pioche] +[Bâton] [ ] [Bâton] + = 1 Paxel en Diamond Shard +``` + +### Armure en Diamond Shard +Les recettes suivent le pattern standard des armures Minecraft : +- **Casque** : 5 Diamond Shards +- **Plastron** : 8 Diamond Shards + 1 Diamant +- **Jambières** : 7 Diamond Shards + 1 Diamant +- **Bottes** : 4 Diamond Shards + +## Commandes + +### `/ores` ou `/ore` +Une commande permettant d'identifier les minerais présents dans le biome actuel. + +**Utilisation** : +- Jouez uniquement (doit être exécutée par un joueur) +- Affiche les mêmes informations que l'Ore Biome Finder + +**Informations affichées** : +- Nom du biome et ID (ex: `minecraft:plains`) +- Tags du mod applicables au biome (cold_biomes, hot_biomes, mountain_biomes, tempered_biomes, rare_biomes) +- Liste des minerais trouvables dans le biome actuel + +**Exemple de sortie** : +``` +=== Minerais dans: plains === +Biome ID: minecraft:plains +Tags du mod: tempered_biomes +Minerais trouvables: + * Charbon Concentre + * Fer (stone) + * Fer (deepslate) + * Diamant Shard (deepslate) + * Bloc Diamant Shard +``` + ## Intégration ### Mode Créatif -Les items sont intégrés via `CustomOreGenModTabs` : -- Diamond Shards et blocs de minerais -- Outils en Diamond Shard +Les items sont organisés dans les onglets créatifs via `CustomOreGenModTabs` : +- **INGREDIENTS** : Diamond Shards et blocs de minerais +- **TOOLS_AND_UTILITIES** : Pioche, pelle, hache, paxel et Ore Biome Finder +- **COMBAT** : Armure complète en Diamond Shard (casque, plastron, jambières, bottes) ### Langue Le mod inclut des fichiers de localisation en anglais (`en_us.json`) avec des noms descriptifs pour tous les blocs et objets. @@ -514,6 +599,7 @@ config/custom_ore_gen-common.toml ``` net.mcreator.customoregen/ ├── CustomOreGenMod.java # Classe principale du mod +├── OresCommand.java # Commande /ores pour détecter les minerais ├── block/ # Classes des blocs (16 minerais) │ ├── SharddiamondblockoreBlock.java │ ├── ConcentrateddiamondoreBlock.java @@ -536,9 +622,15 @@ net.mcreator.customoregen/ │ └── ConfigHelper.java # Helper pour la configuration ├── item/ # Classes des items │ ├── DiamondshardItem.java # Item Diamond Shard (RARE) +│ ├── OreBiomeFinderItem.java # Item Ore Biome Finder │ ├── SharddiamondpickaxeItem.java │ ├── SharddiamondshovelItem.java -│ └── SharddiamondaxeItem.java +│ ├── SharddiamondaxeItem.java +│ ├── SharddiamondpaxelItem.java # Paxel (outil combiné) +│ ├── SharddiamondhelmetItem.java # Casque en Diamond Shard +│ ├── SharddiamondchestplateItem.java # Plastron en Diamond Shard +│ ├── SharddiamondleggingsItem.java # Jambières en Diamond Shard +│ └── SharddiamondbootsItem.java # Bottes en Diamond Shard ├── procedures/ # Procédures et logique │ ├── ConfigurableOreDropsProcedure.java # Drops configurables │ └── OreexperienceProcedure.java # Drops d'XP @@ -551,6 +643,10 @@ net.mcreator.customoregen/ ### Classes Principales - **CustomOreGenMod** : Point d'entrée du mod, gère l'initialisation et le réseau +- **OresCommand** : Commande `/ores` pour identifier les minerais du biome actuel +- **OreBiomeFinderItem** : Item utilisable pour détecter les minerais du biome (clic droit) +- **SharddiamondpaxelItem** : Paxel combinant pioche + pelle + hache en un seul outil +- **Sharddiamondhelmet/chestplate/leggings/bootsItem** : Armure en Diamond Shard - **ModConfigs** : Configuration complète avec 4 sections (ore_generation, tool_stats, drops, features) - **ConfigurableOreDropsProcedure** : Gère les drops des minerais avec support Fortune/Silk Touch - **OreexperienceProcedure** : Gère les drops d'expérience lors du minage @@ -560,8 +656,12 @@ net.mcreator.customoregen/ Custom Ore Gem est conçu pour : - **Modifier la distribution des ressources** Minecraft avec de nouvelles variantes de minerais - **Fournir un système de drops configurable** pour les pack makers et moddeurs -- **Introduire une progression intermédiaire** à travers les Diamond Shards +- **Introduire une progression intermédiaire** à travers les Diamond Shards (outils et armure) +- **Offrir des outils d'exploration** avec l'Ore Biome Finder et la commande `/ores` +- **Proposer un outil tout-en-un** avec le Paxel en Diamond Shard (1000 durabilité) +- **Fournir une armure intermédiaire** entre fer et diamant (17 protection, 1060 durabilité) - **S'intégrer avec KubeJS** pour permettre des modifications avancées +- **Supporter Biomes O' Plenty** avec 69 biomes supplémentaires classés par température ## Crédits diff --git a/diamond_shard_paxel.png b/diamond_shard_paxel.png new file mode 100644 index 0000000000000000000000000000000000000000..ac10e3e9e00b2265a8bb31b03862fbf057a7755b GIT binary patch literal 285 zcmV+&0pk9NP)* zAPxM7VzR*hj>p@`HsF8HtKI(#_fG#GJG+KtL;g?ub>e^Cj>-R{r&s>>tV|@`01yuA zFZ%CN6#d^ZH~haxMFPo&fB;yNQ(nY>pSo0-0i+q?q{|N0BNYe}eBCLE%z0A%700000NkvXXu0mjfg`s?S literal 0 HcmV?d00001 diff --git a/shard_armor/sharddiamondarmor_body.png b/shard_armor/sharddiamondarmor_body.png new file mode 100644 index 0000000000000000000000000000000000000000..15cf585b904672771455749b8aa0f3f0b497fe7c GIT binary patch literal 166 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`xt=bLAr*1S2@)X=5pkdFc_u5d zvnh1Wm>HVzW`b)&#}~ xUPjIalY<6rOi5Q7SP~>$nK%U&r*SYbcx;+G%X80;*Fc*YJYD@<);T3K0RTq?GPM8z literal 0 HcmV?d00001 diff --git a/shard_armor/sharddiamondarmor_head.png b/shard_armor/sharddiamondarmor_head.png new file mode 100644 index 0000000000000000000000000000000000000000..b9a01f6307db9cd6a30798103db384a207f49634 GIT binary patch literal 146 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`k)AG&Ar*1S2@+ErBH}*ToAs>Y zV?H2q?97@&2l#F#w(vG(&inS7MPjiugE332yo5sbu{3L=V_6(_%NHjv;&I@2n8eed t<#6ys8&43k1H-fUl0pdu75gAYhMApP{yllKDF5XSv9Mx)V)G$9Bgy>~$nkS2m4O`0HxbPyF46(cH9jHuWfrl0hllU`4H`x2A= zO?U}eCHe}v5`7bZ)i{N=GVp7LZu zka%T;i+#P@iTC;l>HB?BdVaYn-9KKJj&CpPXU_2!1;xJJ?L-0i?Y4A&e^pvO8JC8) zN2T!DPRTsnC>|+m-5&to>}cuz^_J}V`l3|7ctnaP`Xv8!yR6$+Ba1_Q+#dkqAGdG$ z_^edFG%N*YIwkw*W=Y#qrMbbr-t7b>TR%G|RWBTtP3L+v_OX6)-_}PX1OOoGNTcMQ zXjR42_ExL%37w^~B*O2}0Kj)clsq2hD+_~G%JR6?LTM!aDT!uXY-^F`1`=d=ZT7|kFHYC;ercqiEDH9Tf1o%ZbzN)xcUPq6=Nr=h=N&1&(5uRzEES;f z-Djo~VfL{dS`7?A(kk)QgkJS;o{*;ZPivXvJs?mEtTw% zd8k1dBkU0ph0-L@4M&?4z{IXCt^ok9j^!)v3`yzLJ(51SO|6%@yHed09$?mTj|-dc zxbVu<5UG28M9OatDnJEe9g=rym!$MpsDk7SNYs{Vd-XX!&L)5uQkAJOj%87P{ZPH;5ps+1ES{zBuT>DDn+r5Q*!OZ= zmc<09(gB5udSIUU<;F@-N$LY1F0?vpdM$h4`Y1;tB#iJ3TtDMrof0T>&8#9WDUpqN zYFYbpBMBWP5?r1>>w5$+@G`9=7B~hN4G&ky0S_W!+wQLG$-U)wJ#$Ne1ZhsNtcN?> z-#aZNRpUJ~6Y~EiBtv4=xUl`b(}EG;5L}M*A}~GBhP}-!iSs2GgvN}D?*%Lrns;~|in6C+poXXL zoZlKos+W}`AXwZxLbUiJ`Ut2l01z^Gi+vr<63;n!{~wb|zxfW;u6gC?KMGhE+yw4m z6xsgXDW%yaA3>_ZC>!d2oVNtsFwGnNqP#!m~d3jiwBK<<@ zK$Y%QF?moHt@T!gu&|-dTnuCARScm54EhTN!1562I9|ec`+4VFunOoiH9{HOy7IXp zEmJ5;8%>AEJ>h``Ij{m?#W}IfoDo)OdJ-rz&6&orr4aw2iEj!3fWx~80iUcW1&KKZ z;IfuInN>If0Dp`!Nj>GN9ET=8nGOL2mcX*OG)izN+?|GqwSaXZ^C)SN`FHsM0 zq*owD6~(F2f*W%vT3wwKS?DtTF{3aJ4f^IcSUjRWS9=CCF``bRJl5QFzE?61)czd; z*8W(Kn5Sc8f1a5bXB`xq9t5v&q+7%yOmyhkxu-OLW#Q?~6Vj7UyKd!AI_dH}hE zkivr;$>Jtvv6?0kt9+5b7+aZyQ~T;Meb2oCh>_WB79w0wL`UeBCCShzY+q-@0MEsL zu-1_pj+hvvmg+>%Ra%sQ2Uw6mf~^?`*>1C>zAE wVOCfI<#qONxhc;yVd1({>rFzl@At6DUpoMtZn3VKSpWb407*qoM6N<$f{nfd1ONa4 literal 0 HcmV?d00001 diff --git a/shard_armor/sharddiamondarmor_layer_2.png b/shard_armor/sharddiamondarmor_layer_2.png new file mode 100644 index 0000000000000000000000000000000000000000..2888cd2404eeabb8cce501983b1fc8cfa318ec0f GIT binary patch literal 869 zcmV-r1DgDaP)q<+~^lYuw=a7r#LXfJ01?AptlC$*@-gj z<2|AZ62SR}C&NOJrzF@SD{mb_RK7|11n5_#W5b9Gg?+VH6dR5JqgE79d9z<6PJ=8R z?m*dSr;x+WV0089wbmwUz2B!eP{!7M)iBqWz*iS6GG~U%FYJ~K^DsnmvYqxBk4V~L zg{5^PmSn^#p8y8IjB=0+);NP(?{*3S>QV%mqGgWHaIN=#|2Viweu$gqHG||v zxB>ohjvE&;rsug?-lrFMf^>eo2*=gl83JjTETPV?SHwTI-#>=>$3s#w{GY*V&XEAF z=bF|x=cK#r`f?eK&)lfKa|8?YA%CBM-vu+yfNTRzLK+WNR18g$LDt?Iz^1WoX{~Ib z%y3bEot!(wQ>G7FY_lz|&&ufjF(rhu?eY-j{k{JV41xh$_g2l6%-ZA4GMIT16TQYP z|1TIk*RY(nUh9)CL(*KIeg#Y-T%Rw=HQTTv&KWF`+-`@+*;B)omNM~?toCvlIb9AR vgmU*7D@~XFkZ8}7ps6ATP5FDqzaZcz35i)?us+O@00000NkvXXu0mjf^#PGd literal 0 HcmV?d00001 diff --git a/shard_armor/sharddiamondarmor_leggings.png b/shard_armor/sharddiamondarmor_leggings.png new file mode 100644 index 0000000000000000000000000000000000000000..d74c7767701c50e46447f211690655e3161bb0ac GIT binary patch literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`>7Fi*Ar*1S2@)X=5pkdF4JBgb zWg1kL|FvQ~W@xskYR36 gnP{l^@gO6^t}WYE%w00|Hqc52Pgg&ebxsLQ0CNB_9smFU literal 0 HcmV?d00001 diff --git a/src/main/java/net/mcreator/customoregen/init/CustomOreGenModItems.java b/src/main/java/net/mcreator/customoregen/init/CustomOreGenModItems.java index 9a02c0f2a..8d8940048 100644 --- a/src/main/java/net/mcreator/customoregen/init/CustomOreGenModItems.java +++ b/src/main/java/net/mcreator/customoregen/init/CustomOreGenModItems.java @@ -17,6 +17,11 @@ import net.mcreator.customoregen.item.SharddiamondpickaxeItem; import net.mcreator.customoregen.item.SharddiamondaxeItem; import net.mcreator.customoregen.item.DiamondshardItem; import net.mcreator.customoregen.item.OreBiomeFinderItem; +import net.mcreator.customoregen.item.SharddiamondhelmetItem; +import net.mcreator.customoregen.item.SharddiamondchestplateItem; +import net.mcreator.customoregen.item.SharddiamondleggingsItem; +import net.mcreator.customoregen.item.SharddiamondbootsItem; +import net.mcreator.customoregen.item.SharddiamondpaxelItem; import net.mcreator.customoregen.CustomOreGenMod; public class CustomOreGenModItems { @@ -44,7 +49,17 @@ public class CustomOreGenModItems { // Start of user code block custom items public static final RegistryObject ORE_BIOME_FINDER = REGISTRY.register("ore_biome_finder", () -> new OreBiomeFinderItem()); + + // Diamond Shard Armor + public static final RegistryObject SHARDDIAMONDHELMET = REGISTRY.register("sharddiamondhelmet", () -> new SharddiamondhelmetItem()); + public static final RegistryObject SHARDDIAMONDCHESTPLATE = REGISTRY.register("sharddiamondchestplate", () -> new SharddiamondchestplateItem()); + public static final RegistryObject SHARDDIAMONDLEGGINGS = REGISTRY.register("sharddiamondleggings", () -> new SharddiamondleggingsItem()); + public static final RegistryObject SHARDDIAMONDBOOTS = REGISTRY.register("sharddiamondboots", () -> new SharddiamondbootsItem()); + + // Diamond Shard Paxel + public static final RegistryObject SHARDDIAMONDPAXEL = REGISTRY.register("sharddiamondpaxel", () -> new SharddiamondpaxelItem()); // End of user code block custom items + private static RegistryObject block(RegistryObject block) { return REGISTRY.register(block.getId().getPath(), () -> new BlockItem(block.get(), new Item.Properties())); } diff --git a/src/main/java/net/mcreator/customoregen/init/CustomOreGenModTabs.java b/src/main/java/net/mcreator/customoregen/init/CustomOreGenModTabs.java index 8ab6c26ca..4ce7cfd08 100644 --- a/src/main/java/net/mcreator/customoregen/init/CustomOreGenModTabs.java +++ b/src/main/java/net/mcreator/customoregen/init/CustomOreGenModTabs.java @@ -29,6 +29,13 @@ public class CustomOreGenModTabs { tabData.accept(CustomOreGenModItems.SHARDDIAMONDPICKAXE.get()); tabData.accept(CustomOreGenModItems.SHARDDIAMONDSHOVEL.get()); tabData.accept(CustomOreGenModItems.SHARDDIAMONDAXE.get()); + tabData.accept(CustomOreGenModItems.SHARDDIAMONDPAXEL.get()); + tabData.accept(CustomOreGenModItems.ORE_BIOME_FINDER.get()); + } else if (tabData.getTabKey() == CreativeModeTabs.COMBAT) { + tabData.accept(CustomOreGenModItems.SHARDDIAMONDHELMET.get()); + tabData.accept(CustomOreGenModItems.SHARDDIAMONDCHESTPLATE.get()); + tabData.accept(CustomOreGenModItems.SHARDDIAMONDLEGGINGS.get()); + tabData.accept(CustomOreGenModItems.SHARDDIAMONDBOOTS.get()); } } } diff --git a/src/main/java/net/mcreator/customoregen/item/SharddiamondbootsItem.java b/src/main/java/net/mcreator/customoregen/item/SharddiamondbootsItem.java new file mode 100644 index 000000000..393b5705c --- /dev/null +++ b/src/main/java/net/mcreator/customoregen/item/SharddiamondbootsItem.java @@ -0,0 +1,49 @@ +package net.mcreator.customoregen.item; + +import net.minecraft.world.item.crafting.Ingredient; +import net.minecraft.world.item.ArmorMaterial; +import net.minecraft.world.item.ArmorItem; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.Item; +import net.minecraft.sounds.SoundEvent; +import net.minecraft.sounds.SoundEvents; + +import net.mcreator.customoregen.init.CustomOreGenModItems; + +public class SharddiamondbootsItem extends ArmorItem { + public SharddiamondbootsItem() { + super(new ArmorMaterial() { + public int getDurabilityForType(ArmorItem.Type type) { + return 230; // Bottes + } + + public int getDefenseForType(ArmorItem.Type type) { + return 2; // Protection + } + + public int getEnchantmentValue() { + return 14; + } + + public SoundEvent getEquipSound() { + return SoundEvents.ARMOR_EQUIP_DIAMOND; + } + + public Ingredient getRepairIngredient() { + return Ingredient.of(new ItemStack(CustomOreGenModItems.DIAMONDSHARD.get())); + } + + public String getName() { + return "shard_diamond"; + } + + public float getToughness() { + return 1.0f; + } + + public float getKnockbackResistance() { + return 0.0f; + } + }, ArmorItem.Type.BOOTS, new Item.Properties()); + } +} diff --git a/src/main/java/net/mcreator/customoregen/item/SharddiamondchestplateItem.java b/src/main/java/net/mcreator/customoregen/item/SharddiamondchestplateItem.java new file mode 100644 index 000000000..457a38c69 --- /dev/null +++ b/src/main/java/net/mcreator/customoregen/item/SharddiamondchestplateItem.java @@ -0,0 +1,49 @@ +package net.mcreator.customoregen.item; + +import net.minecraft.world.item.crafting.Ingredient; +import net.minecraft.world.item.ArmorMaterial; +import net.minecraft.world.item.ArmorItem; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.Item; +import net.minecraft.sounds.SoundEvent; +import net.minecraft.sounds.SoundEvents; + +import net.mcreator.customoregen.init.CustomOreGenModItems; + +public class SharddiamondchestplateItem extends ArmorItem { + public SharddiamondchestplateItem() { + super(new ArmorMaterial() { + public int getDurabilityForType(ArmorItem.Type type) { + return 300; // Plastron + } + + public int getDefenseForType(ArmorItem.Type type) { + return 7; // Protection + } + + public int getEnchantmentValue() { + return 14; + } + + public SoundEvent getEquipSound() { + return SoundEvents.ARMOR_EQUIP_DIAMOND; + } + + public Ingredient getRepairIngredient() { + return Ingredient.of(new ItemStack(CustomOreGenModItems.DIAMONDSHARD.get())); + } + + public String getName() { + return "shard_diamond"; + } + + public float getToughness() { + return 1.0f; + } + + public float getKnockbackResistance() { + return 0.0f; + } + }, ArmorItem.Type.CHESTPLATE, new Item.Properties()); + } +} diff --git a/src/main/java/net/mcreator/customoregen/item/SharddiamondhelmetItem.java b/src/main/java/net/mcreator/customoregen/item/SharddiamondhelmetItem.java new file mode 100644 index 000000000..034ce5f24 --- /dev/null +++ b/src/main/java/net/mcreator/customoregen/item/SharddiamondhelmetItem.java @@ -0,0 +1,49 @@ +package net.mcreator.customoregen.item; + +import net.minecraft.world.item.crafting.Ingredient; +import net.minecraft.world.item.ArmorMaterial; +import net.minecraft.world.item.ArmorItem; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.Item; +import net.minecraft.sounds.SoundEvent; +import net.minecraft.sounds.SoundEvents; + +import net.mcreator.customoregen.init.CustomOreGenModItems; + +public class SharddiamondhelmetItem extends ArmorItem { + public SharddiamondhelmetItem() { + super(new ArmorMaterial() { + public int getDurabilityForType(ArmorItem.Type type) { + return 250; // Casque + } + + public int getDefenseForType(ArmorItem.Type type) { + return 3; // Protection + } + + public int getEnchantmentValue() { + return 14; + } + + public SoundEvent getEquipSound() { + return SoundEvents.ARMOR_EQUIP_DIAMOND; + } + + public Ingredient getRepairIngredient() { + return Ingredient.of(new ItemStack(CustomOreGenModItems.DIAMONDSHARD.get())); + } + + public String getName() { + return "shard_diamond"; + } + + public float getToughness() { + return 1.0f; + } + + public float getKnockbackResistance() { + return 0.0f; + } + }, ArmorItem.Type.HELMET, new Item.Properties()); + } +} diff --git a/src/main/java/net/mcreator/customoregen/item/SharddiamondleggingsItem.java b/src/main/java/net/mcreator/customoregen/item/SharddiamondleggingsItem.java new file mode 100644 index 000000000..c6281edc9 --- /dev/null +++ b/src/main/java/net/mcreator/customoregen/item/SharddiamondleggingsItem.java @@ -0,0 +1,49 @@ +package net.mcreator.customoregen.item; + +import net.minecraft.world.item.crafting.Ingredient; +import net.minecraft.world.item.ArmorMaterial; +import net.minecraft.world.item.ArmorItem; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.Item; +import net.minecraft.sounds.SoundEvent; +import net.minecraft.sounds.SoundEvents; + +import net.mcreator.customoregen.init.CustomOreGenModItems; + +public class SharddiamondleggingsItem extends ArmorItem { + public SharddiamondleggingsItem() { + super(new ArmorMaterial() { + public int getDurabilityForType(ArmorItem.Type type) { + return 280; // Jambières + } + + public int getDefenseForType(ArmorItem.Type type) { + return 5; // Protection + } + + public int getEnchantmentValue() { + return 14; + } + + public SoundEvent getEquipSound() { + return SoundEvents.ARMOR_EQUIP_DIAMOND; + } + + public Ingredient getRepairIngredient() { + return Ingredient.of(new ItemStack(CustomOreGenModItems.DIAMONDSHARD.get())); + } + + public String getName() { + return "shard_diamond"; + } + + public float getToughness() { + return 1.0f; + } + + public float getKnockbackResistance() { + return 0.0f; + } + }, ArmorItem.Type.LEGGINGS, new Item.Properties()); + } +} diff --git a/src/main/java/net/mcreator/customoregen/item/SharddiamondpaxelItem.java b/src/main/java/net/mcreator/customoregen/item/SharddiamondpaxelItem.java new file mode 100644 index 000000000..1d8f78193 --- /dev/null +++ b/src/main/java/net/mcreator/customoregen/item/SharddiamondpaxelItem.java @@ -0,0 +1,80 @@ +package net.mcreator.customoregen.item; + +import net.minecraft.world.item.crafting.Ingredient; +import net.minecraft.world.item.Tier; +import net.minecraft.world.item.PickaxeItem; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.Item; +import net.minecraft.tags.TagKey; +import net.minecraft.tags.BlockTags; +import net.minecraft.world.level.block.state.BlockState; + +import net.mcreator.customoregen.init.CustomOreGenModItems; + +public class SharddiamondpaxelItem extends PickaxeItem { + public SharddiamondpaxelItem() { + super(new Tier() { + public int getUses() { + return 1000; + } + + public float getSpeed() { + return 6.5f; + } + + public float getAttackDamageBonus() { + return 0f; + } + + public int getLevel() { + return 3; + } + + public int getEnchantmentValue() { + return 14; + } + + public Ingredient getRepairIngredient() { + return Ingredient.of(new ItemStack(CustomOreGenModItems.DIAMONDSHARD.get())); + } + }, 1, -2.8f, new Item.Properties()); + } + + @Override + public float getDestroySpeed(ItemStack stack, BlockState state) { + // Effective on all blocks that pickaxe, shovel, or axe can mine + if (state.is(BlockTags.MINEABLE_WITH_PICKAXE) || + state.is(BlockTags.MINEABLE_WITH_SHOVEL) || + state.is(BlockTags.MINEABLE_WITH_AXE)) { + return getSpeed(); + } + return super.getDestroySpeed(stack, state); + } + + @Override + public boolean isCorrectToolForDrops(ItemStack stack, BlockState state) { + // Can mine blocks that require pickaxe, shovel, or axe + if (state.is(BlockTags.MINEABLE_WITH_PICKAXE) || + state.is(BlockTags.MINEABLE_WITH_SHOVEL) || + state.is(BlockTags.MINEABLE_WITH_AXE)) { + return TierSortingCorrectToolForDrops(stack, state); + } + return false; + } + + private boolean TierSortingCorrectToolForDrops(ItemStack stack, BlockState state) { + // Check if tool tier is sufficient for the block + return getTier().getLevel() >= getRequiredToolLevel(state); + } + + private int getRequiredToolLevel(BlockState state) { + if (state.is(BlockTags.NEEDS_DIAMOND_TOOL)) { + return 3; + } else if (state.is(BlockTags.NEEDS_IRON_TOOL)) { + return 2; + } else if (state.is(BlockTags.NEEDS_STONE_TOOL)) { + return 1; + } + return 0; + } +} diff --git a/src/main/resources/assets/custom_ore_gen/lang/en_us.json b/src/main/resources/assets/custom_ore_gen/lang/en_us.json index a3b400cf8..d84cfbee9 100644 --- a/src/main/resources/assets/custom_ore_gen/lang/en_us.json +++ b/src/main/resources/assets/custom_ore_gen/lang/en_us.json @@ -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" } \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/models/item/sharddiamondboots.json b/src/main/resources/assets/custom_ore_gen/models/item/sharddiamondboots.json new file mode 100644 index 000000000..5a0df3348 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/item/sharddiamondboots.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "custom_ore_gen:item/sharddiamondboots" + } +} diff --git a/src/main/resources/assets/custom_ore_gen/models/item/sharddiamondchestplate.json b/src/main/resources/assets/custom_ore_gen/models/item/sharddiamondchestplate.json new file mode 100644 index 000000000..5ae97b043 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/item/sharddiamondchestplate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "custom_ore_gen:item/sharddiamondchestplate" + } +} diff --git a/src/main/resources/assets/custom_ore_gen/models/item/sharddiamondhelmet.json b/src/main/resources/assets/custom_ore_gen/models/item/sharddiamondhelmet.json new file mode 100644 index 000000000..680aef470 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/item/sharddiamondhelmet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "custom_ore_gen:item/sharddiamondhelmet" + } +} diff --git a/src/main/resources/assets/custom_ore_gen/models/item/sharddiamondleggings.json b/src/main/resources/assets/custom_ore_gen/models/item/sharddiamondleggings.json new file mode 100644 index 000000000..a713e2866 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/item/sharddiamondleggings.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "custom_ore_gen:item/sharddiamondleggings" + } +} diff --git a/src/main/resources/assets/custom_ore_gen/models/item/sharddiamondpaxel.json b/src/main/resources/assets/custom_ore_gen/models/item/sharddiamondpaxel.json new file mode 100644 index 000000000..60b6ac318 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/item/sharddiamondpaxel.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "custom_ore_gen:item/sharddiamondpaxel" + } +} diff --git a/src/main/resources/assets/custom_ore_gen/textures/item/sharddiamondboots.png b/src/main/resources/assets/custom_ore_gen/textures/item/sharddiamondboots.png new file mode 100644 index 0000000000000000000000000000000000000000..7b0c2c941f069ea80372fdd0916cadbb2c79c9ff GIT binary patch literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`d7dtgAr*1S2@)X=5pkdFjnq{7 z7#${EuABSg{RG*zL)&#}~ xUPjIalY<6rOi5Q7SP~>$nK%U&r*SYbcx;+G%X80;*Fc*YJYD@<);T3K0RTq?GPM8z literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/custom_ore_gen/textures/item/sharddiamondchestplate.png b/src/main/resources/assets/custom_ore_gen/textures/item/sharddiamondchestplate.png new file mode 100644 index 0000000000000000000000000000000000000000..15cf585b904672771455749b8aa0f3f0b497fe7c GIT binary patch literal 166 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`xt=bLAr*1S2@)X=5pkdFc_u5d zvnh1Wm>HVzW`bY zV?H2q?97@&2l#F#w(vG(&inS7MPjiugE332yo5sbu{3L=V_6(_%NHjv;&I@2n8eed t<#6ys8&43k1H-fUl0pdu75gAYhMApP{yllKDF7Fi*Ar*1S2@)X=5pkdF4JBgb zWg1kL|FvQ~W@xskYR36 gnP{l^@gO6^t}WYE%w00|Hqc52Pgg&ebxsLQ0CNB_9smFU literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/custom_ore_gen/textures/item/sharddiamondpaxel.png b/src/main/resources/assets/custom_ore_gen/textures/item/sharddiamondpaxel.png new file mode 100644 index 0000000000000000000000000000000000000000..ac10e3e9e00b2265a8bb31b03862fbf057a7755b GIT binary patch literal 285 zcmV+&0pk9NP)* zAPxM7VzR*hj>p@`HsF8HtKI(#_fG#GJG+KtL;g?ub>e^Cj>-R{r&s>>tV|@`01yuA zFZ%CN6#d^ZH~haxMFPo&fB;yNQ(nY>pSo0-0i+q?q{|N0BNYe}eBCLE%z0A%700000NkvXXu0mjfg`s?S literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/custom_ore_gen/textures/models/armor/sharddiamondarmor_layer_1.png b/src/main/resources/assets/custom_ore_gen/textures/models/armor/sharddiamondarmor_layer_1.png new file mode 100644 index 0000000000000000000000000000000000000000..7458059ed8faa2706bedce56de2b6dda9c190690 GIT binary patch literal 1650 zcmV-&295cNP)5XSv9Mx)V)G$9Bgy>~$nkS2m4O`0HxbPyF46(cH9jHuWfrl0hllU`4H`x2A= zO?U}eCHe}v5`7bZ)i{N=GVp7LZu zka%T;i+#P@iTC;l>HB?BdVaYn-9KKJj&CpPXU_2!1;xJJ?L-0i?Y4A&e^pvO8JC8) zN2T!DPRTsnC>|+m-5&to>}cuz^_J}V`l3|7ctnaP`Xv8!yR6$+Ba1_Q+#dkqAGdG$ z_^edFG%N*YIwkw*W=Y#qrMbbr-t7b>TR%G|RWBTtP3L+v_OX6)-_}PX1OOoGNTcMQ zXjR42_ExL%37w^~B*O2}0Kj)clsq2hD+_~G%JR6?LTM!aDT!uXY-^F`1`=d=ZT7|kFHYC;ercqiEDH9Tf1o%ZbzN)xcUPq6=Nr=h=N&1&(5uRzEES;f z-Djo~VfL{dS`7?A(kk)QgkJS;o{*;ZPivXvJs?mEtTw% zd8k1dBkU0ph0-L@4M&?4z{IXCt^ok9j^!)v3`yzLJ(51SO|6%@yHed09$?mTj|-dc zxbVu<5UG28M9OatDnJEe9g=rym!$MpsDk7SNYs{Vd-XX!&L)5uQkAJOj%87P{ZPH;5ps+1ES{zBuT>DDn+r5Q*!OZ= zmc<09(gB5udSIUU<;F@-N$LY1F0?vpdM$h4`Y1;tB#iJ3TtDMrof0T>&8#9WDUpqN zYFYbpBMBWP5?r1>>w5$+@G`9=7B~hN4G&ky0S_W!+wQLG$-U)wJ#$Ne1ZhsNtcN?> z-#aZNRpUJ~6Y~EiBtv4=xUl`b(}EG;5L}M*A}~GBhP}-!iSs2GgvN}D?*%Lrns;~|in6C+poXXL zoZlKos+W}`AXwZxLbUiJ`Ut2l01z^Gi+vr<63;n!{~wb|zxfW;u6gC?KMGhE+yw4m z6xsgXDW%yaA3>_ZC>!d2oVNtsFwGnNqP#!m~d3jiwBK<<@ zK$Y%QF?moHt@T!gu&|-dTnuCARScm54EhTN!1562I9|ec`+4VFunOoiH9{HOy7IXp zEmJ5;8%>AEJ>h``Ij{m?#W}IfoDo)OdJ-rz&6&orr4aw2iEj!3fWx~80iUcW1&KKZ z;IfuInN>If0Dp`!Nj>GN9ET=8nGOL2mcX*OG)izN+?|GqwSaXZ^C)SN`FHsM0 zq*owD6~(F2f*W%vT3wwKS?DtTF{3aJ4f^IcSUjRWS9=CCF``bRJl5QFzE?61)czd; z*8W(Kn5Sc8f1a5bXB`xq9t5v&q+7%yOmyhkxu-OLW#Q?~6Vj7UyKd!AI_dH}hE zkivr;$>Jtvv6?0kt9+5b7+aZyQ~T;Meb2oCh>_WB79w0wL`UeBCCShzY+q-@0MEsL zu-1_pj+hvvmg+>%Ra%sQ2Uw6mf~^?`*>1C>zAE wVOCfI<#qONxhc;yVd1({>rFzl@At6DUpoMtZn3VKSpWb407*qoM6N<$f{nfd1ONa4 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/custom_ore_gen/textures/models/armor/sharddiamondarmor_layer_2.png b/src/main/resources/assets/custom_ore_gen/textures/models/armor/sharddiamondarmor_layer_2.png new file mode 100644 index 0000000000000000000000000000000000000000..2888cd2404eeabb8cce501983b1fc8cfa318ec0f GIT binary patch literal 869 zcmV-r1DgDaP)q<+~^lYuw=a7r#LXfJ01?AptlC$*@-gj z<2|AZ62SR}C&NOJrzF@SD{mb_RK7|11n5_#W5b9Gg?+VH6dR5JqgE79d9z<6PJ=8R z?m*dSr;x+WV0089wbmwUz2B!eP{!7M)iBqWz*iS6GG~U%FYJ~K^DsnmvYqxBk4V~L zg{5^PmSn^#p8y8IjB=0+);NP(?{*3S>QV%mqGgWHaIN=#|2Viweu$gqHG||v zxB>ohjvE&;rsug?-lrFMf^>eo2*=gl83JjTETPV?SHwTI-#>=>$3s#w{GY*V&XEAF z=bF|x=cK#r`f?eK&)lfKa|8?YA%CBM-vu+yfNTRzLK+WNR18g$LDt?Iz^1WoX{~Ib z%y3bEot!(wQ>G7FY_lz|&&ufjF(rhu?eY-j{k{JV41xh$_g2l6%-ZA4GMIT16TQYP z|1TIk*RY(nUh9)CL(*KIeg#Y-T%Rw=HQTTv&KWF`+-`@+*;B)omNM~?toCvlIb9AR vgmU*7D@~XFkZ8}7ps6ATP5FDqzaZcz35i)?us+O@00000NkvXXu0mjf^#PGd literal 0 HcmV?d00001 diff --git a/src/main/resources/data/custom_ore_gen/forge/biome_modifier/sharddiamondblockore_biome_modifier.json b/src/main/resources/data/custom_ore_gen/forge/biome_modifier/sharddiamondblockore_biome_modifier.json.disabled similarity index 100% rename from src/main/resources/data/custom_ore_gen/forge/biome_modifier/sharddiamondblockore_biome_modifier.json rename to src/main/resources/data/custom_ore_gen/forge/biome_modifier/sharddiamondblockore_biome_modifier.json.disabled diff --git a/src/main/resources/data/custom_ore_gen/recipes/sharddiamondboots.json b/src/main/resources/data/custom_ore_gen/recipes/sharddiamondboots.json new file mode 100644 index 000000000..a82447063 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/recipes/sharddiamondboots.json @@ -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 + } +} diff --git a/src/main/resources/data/custom_ore_gen/recipes/sharddiamondchestplate.json b/src/main/resources/data/custom_ore_gen/recipes/sharddiamondchestplate.json new file mode 100644 index 000000000..ec936f26a --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/recipes/sharddiamondchestplate.json @@ -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 + } +} diff --git a/src/main/resources/data/custom_ore_gen/recipes/sharddiamondhelmet.json b/src/main/resources/data/custom_ore_gen/recipes/sharddiamondhelmet.json new file mode 100644 index 000000000..918d4dd00 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/recipes/sharddiamondhelmet.json @@ -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 + } +} diff --git a/src/main/resources/data/custom_ore_gen/recipes/sharddiamondleggings.json b/src/main/resources/data/custom_ore_gen/recipes/sharddiamondleggings.json new file mode 100644 index 000000000..f021efa65 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/recipes/sharddiamondleggings.json @@ -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 + } +} diff --git a/src/main/resources/data/custom_ore_gen/recipes/sharddiamondpaxel.json b/src/main/resources/data/custom_ore_gen/recipes/sharddiamondpaxel.json new file mode 100644 index 000000000..ebc9f3a55 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/recipes/sharddiamondpaxel.json @@ -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 + } +}