Skip to content

Commit

Permalink
fixed only lvl 1 minis being unlocked
Browse files Browse the repository at this point in the history
  • Loading branch information
ItzKatze committed Jul 26, 2024
1 parent bc29a96 commit 94954f8
Show file tree
Hide file tree
Showing 6 changed files with 424 additions and 141 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,14 @@ public ItemCollection[] getCollections() {
new ItemCollectionReward(50, new UnlockRecipe() {
@Override
public SkyBlockRecipe<?> getRecipe() {
return ItemTypeLinker.BLAZE_MINION.getNewInstance(Minion.class).getRawRecipes().getFirst();
}}, new UnlockXP() {
return null;
}

@Override
public List<SkyBlockRecipe<?>> getRecipes() {
return ItemTypeLinker.BLAZE_MINION.getNewInstance(Minion.class).getRawRecipes();
}
}, new UnlockXP() {
@Override
public int xp() {
return 4;
Expand Down Expand Up @@ -103,8 +109,14 @@ public int xp() {
new ItemCollectionReward(50, new UnlockRecipe() {
@Override
public SkyBlockRecipe<?> getRecipe() {
return ItemTypeLinker.SPIDER_MINION.getNewInstance(Minion.class).getRawRecipes().getFirst();
}}, new UnlockXP() {
return null;
}

@Override
public List<SkyBlockRecipe<?>> getRecipes() {
return ItemTypeLinker.SPIDER_MINION.getNewInstance(Minion.class).getRawRecipes();
}
}, new UnlockXP() {
@Override
public int xp() {
return 4;
Expand Down Expand Up @@ -183,8 +195,14 @@ public CustomCollectionAward getAward() {
new ItemCollectionReward(50, new UnlockRecipe() {
@Override
public SkyBlockRecipe<?> getRecipe() {
return ItemTypeLinker.ENDERMAN_MINION.getNewInstance(Minion.class).getRawRecipes().getFirst();
}}, new UnlockXP() {
return null;
}

@Override
public List<SkyBlockRecipe<?>> getRecipes() {
return ItemTypeLinker.ENDERMAN_MINION.getNewInstance(Minion.class).getRawRecipes();
}
}, new UnlockXP() {
@Override
public int xp() {
return 4;
Expand Down Expand Up @@ -234,12 +252,12 @@ public int xp() {
@Override
public SkyBlockRecipe getRecipe() {
return new ShapelessRecipe(SkyBlockRecipe.RecipeType.COMBAT,
new SkyBlockItem(ItemType.ENCHANTED_EYE_OF_ENDER), 1)
.add(ItemType.ENCHANTED_ENDER_PEARL, 16)
.add(ItemType.BLAZE_POWDER, 16)
.add(ItemType.BLAZE_POWDER, 16)
.add(ItemType.BLAZE_POWDER, 16)
.add(ItemType.BLAZE_POWDER, 16);
new SkyBlockItem(ItemType.ENCHANTED_EYE_OF_ENDER), 1)
.add(ItemType.ENCHANTED_ENDER_PEARL, 16)
.add(ItemType.BLAZE_POWDER, 16)
.add(ItemType.BLAZE_POWDER, 16)
.add(ItemType.BLAZE_POWDER, 16)
.add(ItemType.BLAZE_POWDER, 16);
}
}, new UnlockXP() {
@Override
Expand Down Expand Up @@ -294,8 +312,14 @@ public int xp() {
new ItemCollectionReward(50, new UnlockRecipe() {
@Override
public SkyBlockRecipe<?> getRecipe() {
return ItemTypeLinker.SKELETON_MINION.getNewInstance(Minion.class).getRawRecipes().getFirst();
}}, new UnlockXP() {
return null;
}

@Override
public List<SkyBlockRecipe<?>> getRecipes() {
return ItemTypeLinker.SKELETON_MINION.getNewInstance(Minion.class).getRawRecipes();
}
}, new UnlockXP() {
@Override
public int xp() {
return 4;
Expand Down Expand Up @@ -431,8 +455,14 @@ public int xp() {
new ItemCollectionReward(20, new UnlockRecipe() {
@Override
public SkyBlockRecipe<?> getRecipe() {
return ItemTypeLinker.GHAST_MINION.getNewInstance(Minion.class).getRawRecipes().getFirst();
}}, new UnlockXP() {
return null;
}

@Override
public List<SkyBlockRecipe<?>> getRecipes() {
return ItemTypeLinker.GHAST_MINION.getNewInstance(Minion.class).getRawRecipes();
}
}, new UnlockXP() {
@Override
public int xp() {
return 4;
Expand Down Expand Up @@ -472,7 +502,7 @@ public int xp() {
public int xp() {
return 4;
}
}, new UnlockRecipe() {
}, new UnlockRecipe() {
@Override
public SkyBlockRecipe getRecipe() {
Map<Character, MaterialQuantifiable> ingredientMap = new HashMap<>();
Expand Down Expand Up @@ -503,8 +533,14 @@ public int xp() {
new ItemCollectionReward(50, new UnlockRecipe() {
@Override
public SkyBlockRecipe<?> getRecipe() {
return ItemTypeLinker.CREEPER_MINION.getNewInstance(Minion.class).getRawRecipes().getFirst();
}}, new UnlockXP() {
return null;
}

@Override
public List<SkyBlockRecipe<?>> getRecipes() {
return ItemTypeLinker.CREEPER_MINION.getNewInstance(Minion.class).getRawRecipes();
}
}, new UnlockXP() {
@Override
public int xp() {
return 4;
Expand Down Expand Up @@ -579,8 +615,14 @@ public int xp() {
new ItemCollectionReward(50, new UnlockRecipe() {
@Override
public SkyBlockRecipe<?> getRecipe() {
return ItemTypeLinker.MAGMA_CUBE_MINION.getNewInstance(Minion.class).getRawRecipes().getFirst();
}}, new UnlockXP() {
return null;
}

@Override
public List<SkyBlockRecipe<?>> getRecipes() {
return ItemTypeLinker.MAGMA_CUBE_MINION.getNewInstance(Minion.class).getRawRecipes();
}
}, new UnlockXP() {
@Override
public int xp() {
return 4;
Expand Down Expand Up @@ -643,8 +685,14 @@ public int xp() {
new ItemCollectionReward(50, new UnlockRecipe() {
@Override
public SkyBlockRecipe<?> getRecipe() {
return ItemTypeLinker.ZOMBIE_MINION.getNewInstance(Minion.class).getRawRecipes().getFirst();
}}, new UnlockXP() {
return null;
}

@Override
public List<SkyBlockRecipe<?>> getRecipes() {
return ItemTypeLinker.ZOMBIE_MINION.getNewInstance(Minion.class).getRawRecipes();
}
}, new UnlockXP() {
@Override
public int xp() {
return 4;
Expand Down Expand Up @@ -732,8 +780,14 @@ public int xp() {
new ItemCollectionReward(50, new UnlockRecipe() {
@Override
public SkyBlockRecipe<?> getRecipe() {
return ItemTypeLinker.SLIME_MINION.getNewInstance(Minion.class).getRawRecipes().getFirst();
}}, new UnlockXP() {
return null;
}

@Override
public List<SkyBlockRecipe<?>> getRecipes() {
return ItemTypeLinker.SLIME_MINION.getNewInstance(Minion.class).getRawRecipes();
}
}, new UnlockXP() {
@Override
public int xp() {
return 4;
Expand Down Expand Up @@ -802,8 +856,14 @@ public int xp() {
new ItemCollectionReward(50, new UnlockRecipe() {
@Override
public SkyBlockRecipe<?> getRecipe() {
return ItemTypeLinker.CAVE_SPIDER_MINION.getNewInstance(Minion.class).getRawRecipes().getFirst();
}}, new UnlockXP() {
return null;
}

@Override
public List<SkyBlockRecipe<?>> getRecipes() {
return ItemTypeLinker.CAVE_SPIDER_MINION.getNewInstance(Minion.class).getRawRecipes();
}
}, new UnlockXP() {
@Override
public int xp() {
return 4;
Expand Down
Loading

0 comments on commit 94954f8

Please sign in to comment.