Files
Archipelago/worlds/stardew_valley/logic/received_logic.py
agilbert1412 1de91fab67 Stardew Valley: 7.x.x - The Jojapocalypse Update (#5432)
Major Content update for Stardew Valley

### Features
- New BundleRandomization Value: Meme Bundles - Over 100 custom bundles, designed to be jokes, references, trolls, etc
- New Setting: Bundles Per Room modifier
- New Setting: Backpack Size
- New Setting: Secretsanity - Checks for triggering easter eggs and secrets
- New Setting: Moviesanity - Checks for watching movies and sharing snacks with Villagers
- New Setting: Eatsanity - Checks for eating items
- New Setting: Hatsanity - Checks for wearing Hats
- New Setting: Start Without - Allows you to select any combination of various "starting" items, that you will actually not start with. Notably, tools, backpack slots, Day5 unlocks, etc.
- New Setting: Allowed Filler Items - Allows you to customize the filler items you'll get
- New Setting: Endgame Locations - Checks for various expensive endgame tasks and purchases
- New Shipsanity value: Crops and Fish
- New Settings: Jojapocalypse and settings to customize it
- Bundle Plando: Replaced with BundleWhitelist and BundleBlacklist, for more customization freedom
- Added a couple of Host.yaml settings to help hosts allow or ban specific difficult settings that could cause problems if the people don't know what they are signing up for.

Plus a truckload of improvements on the mod side, not seen in this PR.

### Removed features
- Integration for Stardew Valley Expanded. It is simply disabled, the code is all still there, but I'm extremely tired of providing tech support for it, plus Stardew Valley 1.7 was announced and that will break it again, so I'm done. When a maintainer steps up, it can be re-enabled.
2026-02-15 18:02:21 +01:00

47 lines
1.8 KiB
Python

from typing import Optional
from BaseClasses import ItemClassification
from .base_logic import BaseLogic, BaseLogicMixin
from .logic_event import all_events
from ..items import item_table
from ..stardew_rule import StardewRule, Received, TotalReceived, True_
class ReceivedLogicMixin(BaseLogic, BaseLogicMixin):
def received(self, item: str, count: Optional[int] = 1) -> StardewRule:
assert count >= 0, "Can't receive a negative amount of item."
if count == 0:
return True_()
if item in all_events:
return Received(item, self.player, count, event=True)
assert item_table[item].classification & ItemClassification.progression, f"Item [{item_table[item].name}] has to be progression to be used in logic"
return Received(item, self.player, count)
def received_all(self, *items: str):
assert items, "Can't receive all of no items."
return self.logic.and_(*(self.received(item) for item in items))
def received_any(self, *items: str):
assert items, "Can't receive any of no items."
return self.logic.or_(*(self.received(item) for item in items))
def received_once(self, *items: str, count: int):
assert items, "Can't receive once of no items."
assert count >= 0, "Can't receive a negative amount of item."
return self.logic.count(count, *(self.received(item) for item in items))
def received_n(self, *items: str, count: int):
assert items, "Can't receive n of no items."
assert count >= 0, "Can't receive a negative amount of item."
for item in items:
assert item_table[item].classification & ItemClassification.progression, f"Item [{item_table[item].name}] has to be progression to be used in logic"
return TotalReceived(count, items, self.player)