mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-03-29 17:23:34 -07:00
Stardew valley: Four small fixes (#6055)
* - Fixed the Dr Seuss Bundle asking for tigerseye (mineral) instead of tiger trout (fish) * - Made blue grass starter more consistent * - Fragments of the past does not rely on ginger island * - Removed legacy hard coded strange bun recipe that messed with chefsanity logic
This commit is contained in:
@@ -257,7 +257,7 @@ algorerhythm_bundle = BundleTemplate(CCRoom.bulletin_board, MemeBundleName.algor
|
||||
red_fish_items = [red_mullet, red_snapper, lava_eel, crimsonfish]
|
||||
blue_fish_items = [anchovy, tuna, sardine, bream, squid, ice_pip, albacore, blue_discus, midnight_squid, spook_fish, glacierfish]
|
||||
other_fish = [pufferfish, largemouth_bass, smallmouth_bass, rainbow_trout, walleye, perch, carp, catfish, pike, sunfish, herring, eel, octopus, sea_cucumber,
|
||||
super_cucumber, ghostfish, stonefish, sandfish, scorpion_carp, flounder, midnight_carp, tigerseye, bullhead, tilapia, chub, dorado, shad,
|
||||
super_cucumber, ghostfish, stonefish, sandfish, scorpion_carp, flounder, midnight_carp, bullhead, tilapia, chub, dorado, shad, tiger_trout,
|
||||
lingcod, halibut, slimejack, stingray, goby, blobfish, angler, legend, mutant_carp]
|
||||
dr_seuss_items = [other_fish, [fish.as_amount(2) for fish in other_fish], red_fish_items, blue_fish_items]
|
||||
dr_seuss_bundle = FixedPriceDeepBundleTemplate(CCRoom.crafts_room, MemeBundleName.dr_seuss, dr_seuss_items, 4, 4)
|
||||
|
||||
@@ -1182,7 +1182,7 @@ id,region,name,tags,content_packs
|
||||
2104,Fishing,Biome Balance,SPECIAL_ORDER_BOARD,
|
||||
2105,Haley's House,Rock Rejuvenation,SPECIAL_ORDER_BOARD,
|
||||
2106,Alex's House,Gifts for George,SPECIAL_ORDER_BOARD,
|
||||
2107,Museum,Fragments of the past,"GINGER_ISLAND,SPECIAL_ORDER_BOARD",
|
||||
2107,Museum,Fragments of the past,"SPECIAL_ORDER_BOARD",
|
||||
2108,Saloon,Gus' Famous Omelet,SPECIAL_ORDER_BOARD,
|
||||
2109,Farm,Crop Order,SPECIAL_ORDER_BOARD,
|
||||
2110,Railroad,Community Cleanup,SPECIAL_ORDER_BOARD,
|
||||
@@ -2227,7 +2227,7 @@ id,region,name,tags,content_packs
|
||||
3530,Farm,Craft Cookout Kit,"CRAFTSANITY,CRAFTSANITY_CRAFT",
|
||||
3531,Farm,Craft Fish Smoker,"CRAFTSANITY,CRAFTSANITY_CRAFT",
|
||||
3532,Farm,Craft Dehydrator,"CRAFTSANITY,CRAFTSANITY_CRAFT",
|
||||
3533,Farm,Craft Blue Grass Starter,"CRAFTSANITY,CRAFTSANITY_CRAFT,GINGER_ISLAND",
|
||||
3533,Farm,Craft Blue Grass Starter,"CRAFTSANITY,CRAFTSANITY_CRAFT,GINGER_ISLAND,REQUIRES_QI_ORDERS",
|
||||
3534,Farm,Craft Mystic Tree Seed,"CRAFTSANITY,CRAFTSANITY_CRAFT,REQUIRES_MASTERIES",
|
||||
3535,Farm,Craft Sonar Bobber,"CRAFTSANITY,CRAFTSANITY_CRAFT",
|
||||
3536,Farm,Craft Challenge Bait,"CRAFTSANITY,CRAFTSANITY_CRAFT,REQUIRES_MASTERIES",
|
||||
|
||||
|
@@ -297,7 +297,6 @@ class StardewLogic(ReceivedLogicMixin, HasLogicMixin, RegionLogicMixin, Travelin
|
||||
Material.stone: self.ability.can_mine_stone(),
|
||||
Material.wood: self.ability.can_chop_trees(),
|
||||
Meal.ice_cream: (self.season.has(Season.summer) & self.money.can_spend_at(Region.town, 250)) | self.money.can_spend_at(Region.oasis, 240),
|
||||
Meal.strange_bun: self.relationship.has_hearts(NPC.shane, 7) & self.has(Ingredient.wheat_flour) & self.has(Fish.periwinkle) & self.has(ArtisanGood.void_mayonnaise),
|
||||
MetalBar.copper: self.can_smelt(Ore.copper),
|
||||
MetalBar.gold: self.can_smelt(Ore.gold),
|
||||
MetalBar.iridium: self.can_smelt(Ore.iridium),
|
||||
|
||||
Reference in New Issue
Block a user