Skip to content

Commit

Permalink
tweak: buff constructor & soldier
Browse files Browse the repository at this point in the history
  • Loading branch information
Restioson committed Jun 18, 2024
1 parent 8296311 commit 3073226
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/io/github/restioson/siege/game/SiegeKit.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public record SiegeKit(Text name, List<KitEquipable> equipment, List<AbstractKit
Text.translatable("game.siege.kit.kits.soldier"),
List.of(
new KitEquipment(Items.LEATHER_HELMET),
new KitEquipment(Items.DIAMOND_CHESTPLATE),
new KitEquipment(Items.NETHERITE_CHESTPLATE),
new KitEquipment(Items.LEATHER_LEGGINGS),
new KitEquipment(Items.IRON_BOOTS),
new KitEquipment(Items.IRON_SWORD, EquipmentSlot.MAINHAND),
Expand Down Expand Up @@ -83,7 +83,7 @@ public record SiegeKit(Text name, List<KitEquipable> equipment, List<AbstractKit
new KitEquipment(Items.LEATHER_LEGGINGS),
new KitEquipment(Items.LEATHER_BOOTS),
new KitEquipment(Items.WOODEN_AXE, EquipmentSlot.MAINHAND),
new KitEquipment(Items.WOODEN_SWORD)
new KitEquipment(Items.STONE_SWORD)
),
List.of(KitResource.PLANKS),
List.of()
Expand Down Expand Up @@ -458,7 +458,7 @@ public record KitResource(@Override Text name, Item attackerItem, Item defenderI
Items.BIRCH_PLANKS,
SiegePersonalResource.WOOD,
EquipmentSlot.OFFHAND,
12
16
);

public KitResource(Text name, Item item, @Nullable SiegePersonalResource resource, EquipmentSlot equipmentSlot, int max) {
Expand Down

0 comments on commit 3073226

Please sign in to comment.