mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00

This is a major update for Stardew Valley, for version 3.x.x. Changes include a large number of new features, including Seasons Randomizer, SeedShuffle, Museumsanity, Friendsanity, Complete Collection Goal, Full House Goal, friendship multiplier Co-authored-by: Jouramie <jouramie@hotmail.com>
14 lines
247 B
Python
14 lines
247 B
Python
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class GameItem:
|
|
name: str
|
|
item_id: int
|
|
|
|
def __repr__(self):
|
|
return f"{self.name} [{self.item_id}]"
|
|
|
|
def __lt__(self, other):
|
|
return self.name < other.name
|