From 5047d3453c0dfafe9fd1ce90ede935413c6d6a68 Mon Sep 17 00:00:00 2001 From: tom-overton Date: Tue, 31 May 2022 01:52:05 -0700 Subject: Gen 7: Consider Flutes to be bad items --- src/com/sneed/pkrandom/constants/Gen7Constants.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/com/sneed/pkrandom/constants') diff --git a/src/com/sneed/pkrandom/constants/Gen7Constants.java b/src/com/sneed/pkrandom/constants/Gen7Constants.java index 3f92435..e549624 100644 --- a/src/com/sneed/pkrandom/constants/Gen7Constants.java +++ b/src/com/sneed/pkrandom/constants/Gen7Constants.java @@ -1023,6 +1023,7 @@ public class Gen7Constants { nonBadItems.banRange(Items.fightingMemory,17); // Memories nonBadItems.banRange(Items.relicCopper,7); // relic items nonBadItems.banSingles(Items.shoalSalt, Items.shoalShell); // Shoal items; have no purpose and sell for $10. + nonBadItems.banRange(Items.blueFlute, 5); // Flutes; have no purpose and sell for $10. regularShopItemsSM = new ArrayList<>(); @@ -1042,7 +1043,6 @@ public class Gen7Constants { opShopItems.add(Items.berryJuice); opShopItems.add(Items.rareCandy); opShopItems.add(Items.oldGateau); - opShopItems.addAll(IntStream.rangeClosed(Items.blueFlute, Items.shoalShell).boxed().collect(Collectors.toList())); opShopItems.addAll(IntStream.rangeClosed(Items.tinyMushroom, Items.nugget).boxed().collect(Collectors.toList())); opShopItems.add(Items.rareBone); opShopItems.addAll(IntStream.rangeClosed(Items.lansatBerry, Items.rowapBerry).boxed().collect(Collectors.toList())); -- cgit v1.2.3