summary refs log tree commit diff stats
path: root/__init__.py
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2023-11-24 11:30:15 -0500
committerGitHub <noreply@github.com>2023-11-24 10:30:15 -0600
commit53d71ca90b092e311310589a2654313cd569e4fe (patch)
treefc5b82bf7ee73d175793e727e7a5d7c8115db3fa /__init__.py
parentd5bb126bf8c643934f617a72fdeae0508a7deffd (diff)
downloadlingo-apworld-53d71ca90b092e311310589a2654313cd569e4fe.tar.gz
lingo-apworld-53d71ca90b092e311310589a2654313cd569e4fe.tar.bz2
lingo-apworld-53d71ca90b092e311310589a2654313cd569e4fe.zip
Lingo: Demote warpless painting items to filler (#2481)
Diffstat (limited to '__init__.py')
-rw-r--r--__init__.py13
1 files changed, 11 insertions, 2 deletions
diff --git a/__init__.py b/__init__.py index 1f426c9..3d98ae9 100644 --- a/__init__.py +++ b/__init__.py
@@ -1,7 +1,7 @@
1""" 1"""
2Archipelago init file for Lingo 2Archipelago init file for Lingo
3""" 3"""
4from BaseClasses import Item, Tutorial 4from BaseClasses import Item, ItemClassification, Tutorial
5from worlds.AutoWorld import WebWorld, World 5from worlds.AutoWorld import WebWorld, World
6from .items import ALL_ITEM_TABLE, LingoItem 6from .items import ALL_ITEM_TABLE, LingoItem
7from .locations import ALL_LOCATION_TABLE 7from .locations import ALL_LOCATION_TABLE
@@ -90,7 +90,16 @@ class LingoWorld(World):
90 90
91 def create_item(self, name: str) -> Item: 91 def create_item(self, name: str) -> Item:
92 item = ALL_ITEM_TABLE[name] 92 item = ALL_ITEM_TABLE[name]
93 return LingoItem(name, item.classification, item.code, self.player) 93
94 classification = item.classification
95 if hasattr(self, "options") and self.options.shuffle_paintings and len(item.painting_ids) > 0\
96 and len(item.door_ids) == 0 and all(painting_id not in self.player_logic.PAINTING_MAPPING
97 for painting_id in item.painting_ids):
98 # If this is a "door" that just moves one or more paintings, and painting shuffle is on and those paintings
99 # go nowhere, then this item should not be progression.
100 classification = ItemClassification.filler
101
102 return LingoItem(name, classification, item.code, self.player)
94 103
95 def set_rules(self): 104 def set_rules(self):
96 self.multiworld.completion_condition[self.player] = lambda state: state.has("Victory", self.player) 105 self.multiworld.completion_condition[self.player] = lambda state: state.has("Victory", self.player)