Skip to content

Commit

Permalink
Relic Rarity changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Celicath committed Dec 2, 2018
1 parent 8d3a7f7 commit 43df619
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/the_gatherer/relics/ExplorersTrail.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class ExplorersTrail extends CustomRelic {

public ExplorersTrail() {
super(ID, new Texture(GathererMod.GetRelicPath(RelicID)),
RelicTier.UNCOMMON, LandingSound.FLAT);
RelicTier.BOSS, LandingSound.FLAT);
this.counter = 0;
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/the_gatherer/relics/FlyingFruit.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class FlyingFruit extends CustomRelic implements CustomSavable<HashSet<St

public FlyingFruit() {
super(ID, new Texture(GathererMod.GetRelicPath(RelicID)),
RelicTier.STARTER, LandingSound.FLAT);
RelicTier.RARE, LandingSound.FLAT);
this.counter = 0;
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/the_gatherer/relics/Leftovers.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class Leftovers extends CustomRelic {

public Leftovers() {
super(ID, new Texture(GathererMod.GetRelicPath(RelicID)),
RelicTier.STARTER, LandingSound.MAGICAL);
RelicTier.RARE, LandingSound.MAGICAL);
}

@Override
Expand Down

0 comments on commit 43df619

Please sign in to comment.