Skip to content

Commit

Permalink
Added new wolf breeds (black, basenji, white terrier)
Browse files Browse the repository at this point in the history
  • Loading branch information
nyuppo committed Nov 22, 2023
1 parent b0928db commit 5c70ed4
Show file tree
Hide file tree
Showing 13 changed files with 39 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/main/java/com/github/nyuppo/config/Variants.java
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,21 @@ public static String[] splitVariant(String namespacedVariant) {
.addModifier(new BreedingResultModifier(
MoreMobVariants.id("husky"),
MoreMobVariants.id("golden_retriever"),
0.5)),
new MobVariant(MoreMobVariants.id("black"), 1)
.addModifier(new BreedingResultModifier(
MoreMobVariants.id("husky"),
MoreMobVariants.id("german_shepherd"),
0.5)),
new MobVariant(MoreMobVariants.id("basenji"), 1)
.addModifier(new BreedingResultModifier(
MoreMobVariants.id("jupiter"),
MoreMobVariants.id("golden_retriever"),
0.5)),
new MobVariant(MoreMobVariants.id("white_terrier"), 1)
.addModifier(new BreedingResultModifier(
MoreMobVariants.id("default"),
MoreMobVariants.id("golden_retriever"),
0.5))
)));
defaultVariants.put(EntityType.ZOMBIE, new ArrayList<>(List.of(
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"weight": 1,
"breeding": {
"parent1": "moremobvariants:jupiter",
"parent2": "moremobvariants:golden_retriever",
"breeding_chance": 0.5
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"weight": 1,
"breeding": {
"parent1": "moremobvariants:husky",
"parent2": "moremobvariants:german_shepherd",
"breeding_chance": 0.5
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"weight": 1,
"breeding": {
"parent1": "moremobvariants:default",
"parent2": "moremobvariants:golden_retriever",
"breeding_chance": 0.5
}
}

0 comments on commit 5c70ed4

Please sign in to comment.