소스 검색

Adding crossbows, shields, elytra, and tridents to default repair.vanilla.yml and fixing minor typo. (#4308)

* Changed comment over netherite items to say "Netherite repairables" instead of "Diamond repairables"
Added Crossbow to string repairables
Added Shield to wood repairables, with oak planks as material
Added Elytra and Trident to Other repairables, using phantom membrane and prismarine crystals respectively.

* Changed comment over netherite items to say "Netherite repairables" instead of "Diamond repairables"
Added Crossbow to string repairables
Added Shield to wood repairables, with oak planks as material
Added Elytra and Trident to Other repairables, using phantom membrane and prismarine crystals respectively.
Added warped fungus on a stick as a string repairable.

Signed-off-by: Momshroom <Momshroom@gmail.com>

* Added warped fungus on a stick as a string repairable.

Signed-off-by: Momshroom <Momshroom@gmail.com>
Momshroom 5 년 전
부모
커밋
c22a65f9f3
1개의 변경된 파일44개의 추가작업 그리고 1개의 파일을 삭제
  1. 44 1
      src/main/resources/repair.vanilla.yml

+ 44 - 1
src/main/resources/repair.vanilla.yml

@@ -45,6 +45,14 @@ Repairables:
     # Wooden repairables
     ###
     # Tools
+    SHIELD:
+        MinimumLevel: 0
+        XpMultiplier: .25
+        ItemType: OTHER
+        ItemMaterialCategory: WOOD
+        RepairMaterial: OAK_PLANKS
+        MinimumQuantity: 6
+        MaximumDurability: 336
     WOODEN_SWORD:
         MinimumLevel: 0
         XpMultiplier: .25
@@ -183,7 +191,7 @@ Repairables:
         XpMultiplier: 6
 
     #
-    # Diamond repairables
+    # Netherite repairables
     ###
     # Tools
     NETHERITE_SWORD:
@@ -243,3 +251,38 @@ Repairables:
     CARROT_ON_A_STICK:
         MinimumLevel: 0
         XpMultiplier: .5
+    CROSSBOW:
+        MinimumLevel: 0
+        XpMultiplier: .5
+        ItemType: TOOL
+        ItemMaterialCategory: STRING
+        RepairMaterial: STRING
+        MinimumQuantity: 3
+        MaximumDurability: 326
+    WARPED_FUNGUS_ON_A_STICK:
+        MinimumLevel: 0
+        XpMultiplier: .5
+        ItemType: TOOL
+        ItemMaterialCategory: STRING
+        RepairMaterial: STRING
+        MinimumQuantity: 3
+        MaximumDurability: 100
+    #
+    # Other
+    ###
+    ELYTRA:
+        MinimumLevel: 0
+        XpMultiplier: 3
+        ItemType: OTHER
+        ItemMaterialCategory: OTHER
+        RepairMaterial: PHANTOM_MEMBRANE
+        MinimumQuantity: 8
+        MaximumDurability: 432
+    TRIDENT:
+        MinimumLevel: 0
+        XpMultiplier: 3
+        ItemType: TOOL
+        ItemMaterialCategory: OTHER
+        RepairMaterial: PRISMARINE_CRYSTALS
+        MinimumQuantity: 16
+        MaximumDurability: 250