mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
21 lines
637 B
Python
21 lines
637 B
Python
from Utils import cache_self1
|
|
from .base_logic import BaseLogicMixin, BaseLogic
|
|
from ..stardew_rule import StardewRule
|
|
|
|
|
|
class BookLogicMixin(BaseLogicMixin):
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
self.book = BookLogic(*args, **kwargs)
|
|
|
|
|
|
class BookLogic(BaseLogic):
|
|
|
|
@cache_self1
|
|
def has_book_power(self, book: str) -> StardewRule:
|
|
booksanity = self.content.features.booksanity
|
|
if booksanity.is_included(self.content.game_items[book]):
|
|
return self.logic.received(booksanity.to_item_name(book))
|
|
else:
|
|
return self.logic.has(book)
|