diff --git a/src/main/java/me/shansen/EggCatcher/EggType.java b/src/main/java/me/shansen/EggCatcher/EggType.java index fbc80a4..135269c 100644 --- a/src/main/java/me/shansen/EggCatcher/EggType.java +++ b/src/main/java/me/shansen/EggCatcher/EggType.java @@ -44,7 +44,9 @@ public enum EggType { VILLAGER(EntityType.VILLAGER, 120, "Villager"), OCELOT(EntityType.OCELOT, 98, "Ocelot"), BAT(EntityType.BAT, 65, "Bat"), - WITCH(EntityType.WITCH, 66, "Witch"); + WITCH(EntityType.WITCH, 66, "Witch"), + HORSE(EntityType.HORSE, 100, "Horse"); + private final EntityType entityType; diff --git a/src/main/resources/config.yml b/src/main/resources/config.yml index 0137ae4..ac85f30 100644 --- a/src/main/resources/config.yml +++ b/src/main/resources/config.yml @@ -37,6 +37,7 @@ CatchChance: Ocelot: 100.0 Witch: 100.0 Bat: 100.0 + Horse: 100.0 VaultCost: Pig: 0.0 Sheep: 0.0 @@ -61,6 +62,7 @@ VaultCost: Ocelot: 0.0 Witch: 0.0 Bat: 0.0 + Horse: 0.0 ItemCost: ItemId: 371 ItemData: 0 @@ -88,6 +90,7 @@ ItemCost: Ocelot: 0 Witch: 0 Bat: 0 + Horse: 0 HealthPercentage: Pig: 100.0 Sheep: 100.0 @@ -112,6 +115,7 @@ HealthPercentage: Ocelot: 100.0 Witch: 100.0 Bat: 100.0 + Horse: 100.0 Messages: PermissionFail: "You do not have permission to catch this mob!" VaultFail: "It costs %s dollars to catch this mob!" @@ -121,5 +125,5 @@ Messages: CatchChanceFail: "You failed to catch this mob!" CatchChanceSuccess: "" HealthPercentageFail: "The mob has more than %s percent health left and cannot be caught!" -ConfigVersion: 1.28 +ConfigVersion: 2.00 CheckForUpdates: true \ No newline at end of file